2008-02-28 02:34:43 +01:00
/*
* WPA Supplicant - Glue code to setup EAPOL and RSN modules
2015-01-25 15:49:18 +01:00
* Copyright ( c ) 2003 - 2015 , Jouni Malinen < j @ w1 . fi >
2008-02-28 02:34:43 +01:00
*
2012-02-11 15:46:35 +01:00
* This software may be distributed under the terms of the BSD license .
* See README for more details .
2008-02-28 02:34:43 +01:00
*/
# include "includes.h"
# include "common.h"
# include "eapol_supp/eapol_supp_sm.h"
2009-11-29 17:28:08 +01:00
# include "rsn_supp/wpa.h"
2008-02-28 02:34:43 +01:00
# include "eloop.h"
# include "config.h"
# include "l2_packet/l2_packet.h"
2009-11-29 16:51:55 +01:00
# include "common/wpa_common.h"
2008-02-28 02:34:43 +01:00
# include "wpa_supplicant_i.h"
2009-03-26 19:37:05 +01:00
# include "driver_i.h"
2009-11-29 17:28:08 +01:00
# include "rsn_supp/pmksa_cache.h"
2009-03-20 21:26:41 +01:00
# include "sme.h"
2009-11-29 16:51:55 +01:00
# include "common/ieee802_11_defs.h"
# include "common/wpa_ctrl.h"
2008-02-28 02:34:43 +01:00
# include "wpas_glue.h"
2008-11-28 18:46:22 +01:00
# include "wps_supplicant.h"
2010-01-02 14:26:50 +01:00
# include "bss.h"
2010-01-03 17:48:11 +01:00
# include "scan.h"
2011-07-05 11:22:32 +02:00
# include "notify.h"
2014-03-25 20:39:02 +01:00
# include "wpas_kay.h"
2008-02-28 02:34:43 +01:00
# ifndef CONFIG_NO_CONFIG_BLOBS
# if defined(IEEE8021X_EAPOL) || !defined(CONFIG_NO_WPA)
static void wpa_supplicant_set_config_blob ( void * ctx ,
struct wpa_config_blob * blob )
{
struct wpa_supplicant * wpa_s = ctx ;
wpa_config_set_blob ( wpa_s - > conf , blob ) ;
2008-10-02 13:10:53 +02:00
if ( wpa_s - > conf - > update_config ) {
int ret = wpa_config_write ( wpa_s - > confname , wpa_s - > conf ) ;
if ( ret ) {
wpa_printf ( MSG_DEBUG , " Failed to update config after "
" blob set " ) ;
}
}
2008-02-28 02:34:43 +01:00
}
static const struct wpa_config_blob *
wpa_supplicant_get_config_blob ( void * ctx , const char * name )
{
struct wpa_supplicant * wpa_s = ctx ;
return wpa_config_get_blob ( wpa_s - > conf , name ) ;
}
# endif /* defined(IEEE8021X_EAPOL) || !defined(CONFIG_NO_WPA) */
# endif /* CONFIG_NO_CONFIG_BLOBS */
# if defined(IEEE8021X_EAPOL) || !defined(CONFIG_NO_WPA)
static u8 * wpa_alloc_eapol ( const struct wpa_supplicant * wpa_s , u8 type ,
const void * data , u16 data_len ,
size_t * msg_len , void * * data_pos )
{
struct ieee802_1x_hdr * hdr ;
* msg_len = sizeof ( * hdr ) + data_len ;
hdr = os_malloc ( * msg_len ) ;
if ( hdr = = NULL )
return NULL ;
hdr - > version = wpa_s - > conf - > eapol_version ;
hdr - > type = type ;
hdr - > length = host_to_be16 ( data_len ) ;
if ( data )
os_memcpy ( hdr + 1 , data , data_len ) ;
else
os_memset ( hdr + 1 , 0 , data_len ) ;
if ( data_pos )
* data_pos = hdr + 1 ;
return ( u8 * ) hdr ;
}
/**
* wpa_ether_send - Send Ethernet frame
* @ wpa_s : Pointer to wpa_supplicant data
* @ dest : Destination MAC address
* @ proto : Ethertype in host byte order
* @ buf : Frame payload starting from IEEE 802.1 X header
* @ len : Frame payload length
* Returns : > = 0 on success , < 0 on failure
*/
static int wpa_ether_send ( struct wpa_supplicant * wpa_s , const u8 * dest ,
u16 proto , const u8 * buf , size_t len )
{
2014-10-10 17:01:15 +02:00
# ifdef CONFIG_TESTING_OPTIONS
if ( wpa_s - > ext_eapol_frame_io & & proto = = ETH_P_EAPOL ) {
size_t hex_len = 2 * len + 1 ;
char * hex = os_malloc ( hex_len ) ;
if ( hex = = NULL )
return - 1 ;
wpa_snprintf_hex ( hex , hex_len , buf , len ) ;
wpa_msg ( wpa_s , MSG_INFO , " EAPOL-TX " MACSTR " %s " ,
MAC2STR ( dest ) , hex ) ;
os_free ( hex ) ;
return 0 ;
}
# endif /* CONFIG_TESTING_OPTIONS */
2008-02-28 02:34:43 +01:00
if ( wpa_s - > l2 ) {
return l2_packet_send ( wpa_s - > l2 , dest , proto , buf , len ) ;
}
2014-12-11 14:40:07 +01:00
return - 1 ;
2008-02-28 02:34:43 +01:00
}
# endif /* IEEE8021X_EAPOL || !CONFIG_NO_WPA */
# ifdef IEEE8021X_EAPOL
/**
* wpa_supplicant_eapol_send - Send IEEE 802.1 X EAPOL packet to Authenticator
* @ ctx : Pointer to wpa_supplicant data ( wpa_s )
* @ type : IEEE 802.1 X packet type ( IEEE802_1X_TYPE_ * )
* @ buf : EAPOL payload ( after IEEE 802.1 X header )
* @ len : EAPOL payload length
* Returns : > = 0 on success , < 0 on failure
*
* This function adds Ethernet and IEEE 802.1 X header and sends the EAPOL frame
* to the current Authenticator .
*/
static int wpa_supplicant_eapol_send ( void * ctx , int type , const u8 * buf ,
size_t len )
{
struct wpa_supplicant * wpa_s = ctx ;
u8 * msg , * dst , bssid [ ETH_ALEN ] ;
size_t msglen ;
int res ;
/* TODO: could add l2_packet_sendmsg that allows fragments to avoid
* extra copy here */
2008-08-31 21:57:28 +02:00
if ( wpa_key_mgmt_wpa_psk ( wpa_s - > key_mgmt ) | |
2008-02-28 02:34:43 +01:00
wpa_s - > key_mgmt = = WPA_KEY_MGMT_NONE ) {
/* Current SSID is not using IEEE 802.1X/EAP, so drop possible
* EAPOL frames ( mainly , EAPOL - Start ) from EAPOL state
* machines . */
wpa_printf ( MSG_DEBUG , " WPA: drop TX EAPOL in non-IEEE 802.1X "
" mode (type=%d len=%lu) " , type ,
( unsigned long ) len ) ;
return - 1 ;
}
if ( pmksa_cache_get_current ( wpa_s - > wpa ) & &
type = = IEEE802_1X_TYPE_EAPOL_START ) {
2014-09-08 16:18:01 +02:00
/*
* We were trying to use PMKSA caching and sending EAPOL - Start
* would abort that and trigger full EAPOL authentication .
* However , we ' ve already waited for the AP / Authenticator to
* start 4 - way handshake or EAP authentication , and apparently
* it has not done so since the startWhen timer has reached zero
* to get the state machine sending EAPOL - Start . This is not
* really supposed to happen , but an interoperability issue with
* a deployed AP has been identified where the connection fails
* due to that AP failing to operate correctly if PMKID is
* included in the Association Request frame . To work around
* this , assume PMKSA caching failed and try to initiate full
* EAP authentication .
*/
if ( ! wpa_s - > current_ssid | |
wpa_s - > current_ssid - > eap_workaround ) {
wpa_printf ( MSG_DEBUG ,
" RSN: Timeout on waiting for the AP to initiate 4-way handshake for PMKSA caching or EAP authentication - try to force it to start EAP authentication " ) ;
} else {
wpa_printf ( MSG_DEBUG ,
" RSN: PMKSA caching - do not send EAPOL-Start " ) ;
return - 1 ;
}
2008-02-28 02:34:43 +01:00
}
2008-06-03 17:08:48 +02:00
if ( is_zero_ether_addr ( wpa_s - > bssid ) ) {
2008-02-28 02:34:43 +01:00
wpa_printf ( MSG_DEBUG , " BSSID not set when trying to send an "
" EAPOL frame " ) ;
if ( wpa_drv_get_bssid ( wpa_s , bssid ) = = 0 & &
2008-06-03 17:08:48 +02:00
! is_zero_ether_addr ( bssid ) ) {
2008-02-28 02:34:43 +01:00
dst = bssid ;
wpa_printf ( MSG_DEBUG , " Using current BSSID " MACSTR
" from the driver as the EAPOL destination " ,
MAC2STR ( dst ) ) ;
} else {
dst = wpa_s - > last_eapol_src ;
wpa_printf ( MSG_DEBUG , " Using the source address of the "
" last received EAPOL frame " MACSTR " as "
" the EAPOL destination " ,
MAC2STR ( dst ) ) ;
}
} else {
/* BSSID was already set (from (Re)Assoc event, so use it as
* the EAPOL destination . */
dst = wpa_s - > bssid ;
}
msg = wpa_alloc_eapol ( wpa_s , type , buf , len , & msglen , NULL ) ;
if ( msg = = NULL )
return - 1 ;
wpa_printf ( MSG_DEBUG , " TX EAPOL: dst= " MACSTR , MAC2STR ( dst ) ) ;
wpa_hexdump ( MSG_MSGDUMP , " TX EAPOL " , msg , msglen ) ;
res = wpa_ether_send ( wpa_s , dst , ETH_P_EAPOL , msg , msglen ) ;
os_free ( msg ) ;
return res ;
}
/**
* wpa_eapol_set_wep_key - set WEP key for the driver
* @ ctx : Pointer to wpa_supplicant data ( wpa_s )
* @ unicast : 1 = individual unicast key , 0 = broadcast key
* @ keyidx : WEP key index ( 0. .3 )
* @ key : Pointer to key data
* @ keylen : Key length in bytes
* Returns : 0 on success or < 0 on error .
*/
static int wpa_eapol_set_wep_key ( void * ctx , int unicast , int keyidx ,
const u8 * key , size_t keylen )
{
struct wpa_supplicant * wpa_s = ctx ;
if ( wpa_s - > key_mgmt = = WPA_KEY_MGMT_IEEE8021X_NO_WPA ) {
int cipher = ( keylen = = 5 ) ? WPA_CIPHER_WEP40 :
WPA_CIPHER_WEP104 ;
if ( unicast )
wpa_s - > pairwise_cipher = cipher ;
else
wpa_s - > group_cipher = cipher ;
}
return wpa_drv_set_key ( wpa_s , WPA_ALG_WEP ,
2011-01-09 18:44:28 +01:00
unicast ? wpa_s - > bssid : NULL ,
2011-01-09 11:09:04 +01:00
keyidx , unicast , NULL , 0 , key , keylen ) ;
2008-02-28 02:34:43 +01:00
}
static void wpa_supplicant_aborted_cached ( void * ctx )
{
struct wpa_supplicant * wpa_s = ctx ;
wpa_sm_aborted_cached ( wpa_s - > wpa ) ;
}
2014-01-08 09:24:05 +01:00
static const char * result_str ( enum eapol_supp_result result )
{
switch ( result ) {
case EAPOL_SUPP_RESULT_FAILURE :
return " FAILURE " ;
case EAPOL_SUPP_RESULT_SUCCESS :
return " SUCCESS " ;
case EAPOL_SUPP_RESULT_EXPECTED_FAILURE :
return " EXPECTED_FAILURE " ;
}
return " ? " ;
}
static void wpa_supplicant_eapol_cb ( struct eapol_sm * eapol ,
enum eapol_supp_result result ,
2008-02-28 02:34:43 +01:00
void * ctx )
{
struct wpa_supplicant * wpa_s = ctx ;
int res , pmk_len ;
u8 pmk [ PMK_LEN ] ;
2014-01-08 09:24:05 +01:00
wpa_printf ( MSG_DEBUG , " EAPOL authentication completed - result=%s " ,
result_str ( result ) ) ;
2008-02-28 02:34:43 +01:00
2008-11-28 18:46:22 +01:00
if ( wpas_wps_eapol_cb ( wpa_s ) > 0 )
2008-11-23 18:34:26 +01:00
return ;
2014-01-08 09:24:05 +01:00
wpa_s - > eap_expected_failure = result = =
EAPOL_SUPP_RESULT_EXPECTED_FAILURE ;
if ( result ! = EAPOL_SUPP_RESULT_SUCCESS ) {
2008-10-02 16:27:24 +02:00
/*
* Make sure we do not get stuck here waiting for long EAPOL
* timeout if the AP does not disconnect in case of
* authentication failure .
*/
wpa_supplicant_req_auth_timeout ( wpa_s , 2 , 0 ) ;
2014-03-25 20:39:02 +01:00
} else {
ieee802_1x_notify_create_actor ( wpa_s , wpa_s - > last_eapol_src ) ;
2008-10-02 16:27:24 +02:00
}
2014-01-08 09:24:05 +01:00
if ( result ! = EAPOL_SUPP_RESULT_SUCCESS | |
! ( wpa_s - > drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE ) )
2008-02-28 02:34:43 +01:00
return ;
2008-08-31 21:57:28 +02:00
if ( ! wpa_key_mgmt_wpa_ieee8021x ( wpa_s - > key_mgmt ) )
2008-02-28 02:34:43 +01:00
return ;
wpa_printf ( MSG_DEBUG , " Configure PMK for driver-based RSN 4-way "
" handshake " ) ;
pmk_len = PMK_LEN ;
2011-01-31 23:06:13 +01:00
if ( wpa_key_mgmt_ft ( wpa_s - > key_mgmt ) ) {
# ifdef CONFIG_IEEE80211R
u8 buf [ 2 * PMK_LEN ] ;
wpa_printf ( MSG_DEBUG , " RSN: Use FT XXKey as PMK for "
" driver-based 4-way hs and FT " ) ;
res = eapol_sm_get_key ( eapol , buf , 2 * PMK_LEN ) ;
if ( res = = 0 ) {
os_memcpy ( pmk , buf + PMK_LEN , PMK_LEN ) ;
os_memset ( buf , 0 , sizeof ( buf ) ) ;
}
# else /* CONFIG_IEEE80211R */
res = - 1 ;
# endif /* CONFIG_IEEE80211R */
} else {
res = eapol_sm_get_key ( eapol , pmk , PMK_LEN ) ;
if ( res ) {
/*
* EAP - LEAP is an exception from other EAP methods : it
* uses only 16 - byte PMK .
*/
res = eapol_sm_get_key ( eapol , pmk , 16 ) ;
pmk_len = 16 ;
}
2008-02-28 02:34:43 +01:00
}
if ( res ) {
wpa_printf ( MSG_DEBUG , " Failed to get PMK from EAPOL state "
" machines " ) ;
return ;
}
2011-01-31 23:06:13 +01:00
wpa_hexdump_key ( MSG_DEBUG , " RSN: Configure PMK for driver-based 4-way "
" handshake " , pmk , pmk_len ) ;
2008-02-28 02:34:43 +01:00
if ( wpa_drv_set_key ( wpa_s , WPA_ALG_PMK , NULL , 0 , 0 , NULL , 0 , pmk ,
pmk_len ) ) {
wpa_printf ( MSG_DEBUG , " Failed to set PMK to the driver " ) ;
}
wpa_supplicant_cancel_scan ( wpa_s ) ;
wpa_supplicant_cancel_auth_timeout ( wpa_s ) ;
wpa_supplicant_set_state ( wpa_s , WPA_COMPLETED ) ;
}
static void wpa_supplicant_notify_eapol_done ( void * ctx )
{
struct wpa_supplicant * wpa_s = ctx ;
wpa_msg ( wpa_s , MSG_DEBUG , " WPA: EAPOL processing complete " ) ;
2008-08-31 21:57:28 +02:00
if ( wpa_key_mgmt_wpa_ieee8021x ( wpa_s - > key_mgmt ) ) {
2008-02-28 02:34:43 +01:00
wpa_supplicant_set_state ( wpa_s , WPA_4WAY_HANDSHAKE ) ;
} else {
wpa_supplicant_cancel_auth_timeout ( wpa_s ) ;
wpa_supplicant_set_state ( wpa_s , WPA_COMPLETED ) ;
}
}
# endif /* IEEE8021X_EAPOL */
# ifndef CONFIG_NO_WPA
static int wpa_get_beacon_ie ( struct wpa_supplicant * wpa_s )
{
int ret = 0 ;
2010-01-02 14:26:50 +01:00
struct wpa_bss * curr = NULL , * bss ;
2008-02-28 02:34:43 +01:00
struct wpa_ssid * ssid = wpa_s - > current_ssid ;
const u8 * ie ;
2010-01-02 14:26:50 +01:00
dl_list_for_each ( bss , & wpa_s - > bss , struct wpa_bss , list ) {
if ( os_memcmp ( bss - > bssid , wpa_s - > bssid , ETH_ALEN ) ! = 0 )
2008-02-28 02:34:43 +01:00
continue ;
if ( ssid = = NULL | |
2010-01-02 14:26:50 +01:00
( ( bss - > ssid_len = = ssid - > ssid_len & &
os_memcmp ( bss - > ssid , ssid - > ssid , ssid - > ssid_len ) = = 0 ) | |
2008-02-28 02:34:43 +01:00
ssid - > ssid_len = = 0 ) ) {
2010-01-02 14:26:50 +01:00
curr = bss ;
2008-02-28 02:34:43 +01:00
break ;
}
}
if ( curr ) {
2010-01-02 14:26:50 +01:00
ie = wpa_bss_get_vendor_ie ( curr , WPA_IE_VENDOR_TYPE ) ;
2008-02-28 02:34:43 +01:00
if ( wpa_sm_set_ap_wpa_ie ( wpa_s - > wpa , ie , ie ? 2 + ie [ 1 ] : 0 ) )
ret = - 1 ;
2010-01-02 14:26:50 +01:00
ie = wpa_bss_get_ie ( curr , WLAN_EID_RSN ) ;
2008-02-28 02:34:43 +01:00
if ( wpa_sm_set_ap_rsn_ie ( wpa_s - > wpa , ie , ie ? 2 + ie [ 1 ] : 0 ) )
ret = - 1 ;
} else {
ret = - 1 ;
}
return ret ;
}
static int wpa_supplicant_get_beacon_ie ( void * ctx )
{
struct wpa_supplicant * wpa_s = ctx ;
if ( wpa_get_beacon_ie ( wpa_s ) = = 0 ) {
return 0 ;
}
/* No WPA/RSN IE found in the cached scan results. Try to get updated
* scan results from the driver . */
2010-01-02 15:41:38 +01:00
if ( wpa_supplicant_update_scan_results ( wpa_s ) < 0 )
2008-02-28 02:34:43 +01:00
return - 1 ;
return wpa_get_beacon_ie ( wpa_s ) ;
}
static u8 * _wpa_alloc_eapol ( void * wpa_s , u8 type ,
const void * data , u16 data_len ,
size_t * msg_len , void * * data_pos )
{
return wpa_alloc_eapol ( wpa_s , type , data , data_len , msg_len , data_pos ) ;
}
static int _wpa_ether_send ( void * wpa_s , const u8 * dest , u16 proto ,
const u8 * buf , size_t len )
{
return wpa_ether_send ( wpa_s , dest , proto , buf , len ) ;
}
static void _wpa_supplicant_cancel_auth_timeout ( void * wpa_s )
{
wpa_supplicant_cancel_auth_timeout ( wpa_s ) ;
}
2009-12-26 09:35:08 +01:00
static void _wpa_supplicant_set_state ( void * wpa_s , enum wpa_states state )
2008-02-28 02:34:43 +01:00
{
wpa_supplicant_set_state ( wpa_s , state ) ;
}
/**
* wpa_supplicant_get_state - Get the connection state
* @ wpa_s : Pointer to wpa_supplicant data
* Returns : The current connection state ( WPA_ * )
*/
2009-12-26 09:35:08 +01:00
static enum wpa_states wpa_supplicant_get_state ( struct wpa_supplicant * wpa_s )
2008-02-28 02:34:43 +01:00
{
return wpa_s - > wpa_state ;
}
2009-12-26 09:35:08 +01:00
static enum wpa_states _wpa_supplicant_get_state ( void * wpa_s )
2008-02-28 02:34:43 +01:00
{
return wpa_supplicant_get_state ( wpa_s ) ;
}
static void _wpa_supplicant_deauthenticate ( void * wpa_s , int reason_code )
{
wpa_supplicant_deauthenticate ( wpa_s , reason_code ) ;
2008-06-09 15:26:47 +02:00
/* Schedule a scan to make sure we continue looking for networks */
2009-04-20 10:35:21 +02:00
wpa_supplicant_req_scan ( wpa_s , 5 , 0 ) ;
2008-02-28 02:34:43 +01:00
}
static void * wpa_supplicant_get_network_ctx ( void * wpa_s )
{
return wpa_supplicant_get_ssid ( wpa_s ) ;
}
static int wpa_supplicant_get_bssid ( void * ctx , u8 * bssid )
{
struct wpa_supplicant * wpa_s = ctx ;
return wpa_drv_get_bssid ( wpa_s , bssid ) ;
}
2009-12-26 09:35:08 +01:00
static int wpa_supplicant_set_key ( void * _wpa_s , enum wpa_alg alg ,
2008-02-28 02:34:43 +01:00
const u8 * addr , int key_idx , int set_tx ,
const u8 * seq , size_t seq_len ,
const u8 * key , size_t key_len )
{
2008-11-08 03:43:12 +01:00
struct wpa_supplicant * wpa_s = _wpa_s ;
if ( alg = = WPA_ALG_TKIP & & key_idx = = 0 & & key_len = = 32 ) {
/* Clear the MIC error counter when setting a new PTK. */
wpa_s - > mic_errors_seen = 0 ;
}
2011-10-28 13:39:44 +02:00
# ifdef CONFIG_TESTING_GET_GTK
if ( key_idx > 0 & & addr & & is_broadcast_ether_addr ( addr ) & &
alg ! = WPA_ALG_NONE & & key_len < = sizeof ( wpa_s - > last_gtk ) ) {
os_memcpy ( wpa_s - > last_gtk , key , key_len ) ;
wpa_s - > last_gtk_len = key_len ;
}
# endif /* CONFIG_TESTING_GET_GTK */
2008-02-28 02:34:43 +01:00
return wpa_drv_set_key ( wpa_s , alg , addr , key_idx , set_tx , seq , seq_len ,
key , key_len ) ;
}
static int wpa_supplicant_mlme_setprotection ( void * wpa_s , const u8 * addr ,
int protection_type ,
int key_type )
{
return wpa_drv_mlme_setprotection ( wpa_s , addr , protection_type ,
key_type ) ;
}
static int wpa_supplicant_add_pmkid ( void * wpa_s ,
const u8 * bssid , const u8 * pmkid )
{
return wpa_drv_add_pmkid ( wpa_s , bssid , pmkid ) ;
}
static int wpa_supplicant_remove_pmkid ( void * wpa_s ,
const u8 * bssid , const u8 * pmkid )
{
return wpa_drv_remove_pmkid ( wpa_s , bssid , pmkid ) ;
}
# ifdef CONFIG_IEEE80211R
static int wpa_supplicant_update_ft_ies ( void * ctx , const u8 * md ,
const u8 * ies , size_t ies_len )
{
struct wpa_supplicant * wpa_s = ctx ;
2009-03-20 21:26:41 +01:00
if ( wpa_s - > drv_flags & WPA_DRIVER_FLAGS_SME )
return sme_update_ft_ies ( wpa_s , md , ies , ies_len ) ;
2008-02-28 02:34:43 +01:00
return wpa_drv_update_ft_ies ( wpa_s , md , ies , ies_len ) ;
}
static int wpa_supplicant_send_ft_action ( void * ctx , u8 action ,
const u8 * target_ap ,
const u8 * ies , size_t ies_len )
{
struct wpa_supplicant * wpa_s = ctx ;
2014-12-06 17:13:29 +01:00
int ret ;
u8 * data , * pos ;
size_t data_len ;
if ( action ! = 1 ) {
wpa_printf ( MSG_ERROR , " Unsupported send_ft_action action %d " ,
action ) ;
return - 1 ;
}
/*
* Action frame payload :
* Category [ 1 ] = 6 ( Fast BSS Transition )
* Action [ 1 ] = 1 ( Fast BSS Transition Request )
* STA Address
* Target AP Address
* FT IEs
*/
data_len = 2 + 2 * ETH_ALEN + ies_len ;
data = os_malloc ( data_len ) ;
if ( data = = NULL )
return - 1 ;
pos = data ;
* pos + + = 0x06 ; /* FT Action category */
* pos + + = action ;
os_memcpy ( pos , wpa_s - > own_addr , ETH_ALEN ) ;
pos + = ETH_ALEN ;
os_memcpy ( pos , target_ap , ETH_ALEN ) ;
pos + = ETH_ALEN ;
os_memcpy ( pos , ies , ies_len ) ;
ret = wpa_drv_send_action ( wpa_s , wpa_s - > assoc_freq , 0 ,
wpa_s - > bssid , wpa_s - > own_addr , wpa_s - > bssid ,
data , data_len , 0 ) ;
os_free ( data ) ;
return ret ;
2008-02-28 02:34:43 +01:00
}
2010-03-13 17:28:15 +01:00
static int wpa_supplicant_mark_authenticated ( void * ctx , const u8 * target_ap )
{
struct wpa_supplicant * wpa_s = ctx ;
struct wpa_driver_auth_params params ;
struct wpa_bss * bss ;
bss = wpa_bss_get_bssid ( wpa_s , target_ap ) ;
if ( bss = = NULL )
return - 1 ;
os_memset ( & params , 0 , sizeof ( params ) ) ;
params . bssid = target_ap ;
params . freq = bss - > freq ;
params . ssid = bss - > ssid ;
params . ssid_len = bss - > ssid_len ;
params . auth_alg = WPA_AUTH_ALG_FT ;
params . local_state_change = 1 ;
return wpa_drv_authenticate ( wpa_s , & params ) ;
}
2008-02-28 02:34:43 +01:00
# endif /* CONFIG_IEEE80211R */
2010-10-07 09:26:56 +02:00
# ifdef CONFIG_TDLS
2011-09-26 12:55:25 +02:00
static int wpa_supplicant_tdls_get_capa ( void * ctx , int * tdls_supported ,
2014-12-29 04:44:37 +01:00
int * tdls_ext_setup ,
int * tdls_chan_switch )
2011-09-26 12:55:25 +02:00
{
struct wpa_supplicant * wpa_s = ctx ;
* tdls_supported = 0 ;
* tdls_ext_setup = 0 ;
2014-12-29 04:44:37 +01:00
* tdls_chan_switch = 0 ;
2011-09-26 12:55:25 +02:00
if ( ! wpa_s - > drv_capa_known )
return - 1 ;
if ( wpa_s - > drv_flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT )
* tdls_supported = 1 ;
if ( wpa_s - > drv_flags & WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP )
* tdls_ext_setup = 1 ;
2014-12-29 04:44:37 +01:00
if ( wpa_s - > drv_flags & WPA_DRIVER_FLAGS_TDLS_CHANNEL_SWITCH )
* tdls_chan_switch = 1 ;
2011-09-26 12:55:25 +02:00
return 0 ;
}
2010-10-07 09:26:56 +02:00
static int wpa_supplicant_send_tdls_mgmt ( void * ctx , const u8 * dst ,
u8 action_code , u8 dialog_token ,
2014-03-26 17:04:50 +01:00
u16 status_code , u32 peer_capab ,
2014-09-29 20:47:51 +02:00
int initiator , const u8 * buf ,
size_t len )
2010-10-07 09:26:56 +02:00
{
struct wpa_supplicant * wpa_s = ctx ;
return wpa_drv_send_tdls_mgmt ( wpa_s , dst , action_code , dialog_token ,
2014-09-29 20:47:51 +02:00
status_code , peer_capab , initiator , buf ,
len ) ;
2010-10-07 09:26:56 +02:00
}
static int wpa_supplicant_tdls_oper ( void * ctx , int oper , const u8 * peer )
{
struct wpa_supplicant * wpa_s = ctx ;
return wpa_drv_tdls_oper ( wpa_s , oper , peer ) ;
}
2011-10-23 13:02:57 +02:00
static int wpa_supplicant_tdls_peer_addset (
2013-05-06 14:47:44 +02:00
void * ctx , const u8 * peer , int add , u16 aid , u16 capability ,
2013-02-05 15:41:01 +01:00
const u8 * supp_rates , size_t supp_rates_len ,
const struct ieee80211_ht_capabilities * ht_capab ,
2013-02-25 09:31:50 +01:00
const struct ieee80211_vht_capabilities * vht_capab ,
2014-09-29 20:47:53 +02:00
u8 qosinfo , int wmm , const u8 * ext_capab , size_t ext_capab_len ,
2014-01-06 14:06:13 +01:00
const u8 * supp_channels , size_t supp_channels_len ,
const u8 * supp_oper_classes , size_t supp_oper_classes_len )
2011-10-23 13:02:57 +02:00
{
struct wpa_supplicant * wpa_s = ctx ;
struct hostapd_sta_add_params params ;
2013-02-14 17:23:33 +01:00
os_memset ( & params , 0 , sizeof ( params ) ) ;
2011-10-23 13:02:57 +02:00
params . addr = peer ;
2013-05-06 14:57:03 +02:00
params . aid = aid ;
2011-10-23 13:02:57 +02:00
params . capability = capability ;
params . flags = WPA_STA_TDLS_PEER | WPA_STA_AUTHORIZED ;
2013-02-05 15:41:01 +01:00
/*
2014-09-29 20:47:53 +02:00
* Don ' t rely only on qosinfo for WMM capability . It may be 0 even when
* present . Allow the WMM IE to also indicate QoS support .
2013-02-05 15:41:01 +01:00
*/
2014-09-29 20:47:53 +02:00
if ( wmm | | qosinfo )
2013-02-05 15:41:01 +01:00
params . flags | = WPA_STA_WMM ;
params . ht_capabilities = ht_capab ;
2013-02-25 09:31:50 +01:00
params . vht_capabilities = vht_capab ;
2013-02-05 15:41:01 +01:00
params . qosinfo = qosinfo ;
2011-10-23 13:02:57 +02:00
params . listen_interval = 0 ;
params . supp_rates = supp_rates ;
params . supp_rates_len = supp_rates_len ;
params . set = ! add ;
2013-02-05 15:50:36 +01:00
params . ext_capab = ext_capab ;
params . ext_capab_len = ext_capab_len ;
2014-01-06 14:06:13 +01:00
params . supp_channels = supp_channels ;
params . supp_channels_len = supp_channels_len ;
params . supp_oper_classes = supp_oper_classes ;
params . supp_oper_classes_len = supp_oper_classes_len ;
2011-10-23 13:02:57 +02:00
return wpa_drv_sta_add ( wpa_s , & params ) ;
}
2014-12-29 06:20:51 +01:00
static int wpa_supplicant_tdls_enable_channel_switch (
void * ctx , const u8 * addr , u8 oper_class ,
const struct hostapd_freq_params * params )
{
struct wpa_supplicant * wpa_s = ctx ;
return wpa_drv_tdls_enable_channel_switch ( wpa_s , addr , oper_class ,
params ) ;
}
static int wpa_supplicant_tdls_disable_channel_switch ( void * ctx , const u8 * addr )
{
struct wpa_supplicant * wpa_s = ctx ;
return wpa_drv_tdls_disable_channel_switch ( wpa_s , addr ) ;
}
2010-10-07 09:26:56 +02:00
# endif /* CONFIG_TDLS */
2013-06-07 19:04:12 +02:00
# endif /* CONFIG_NO_WPA */
2010-10-07 09:26:56 +02:00
2011-10-24 18:04:40 +02:00
enum wpa_ctrl_req_type wpa_supplicant_ctrl_req_from_string ( const char * field )
{
if ( os_strcmp ( field , " IDENTITY " ) = = 0 )
return WPA_CTRL_REQ_EAP_IDENTITY ;
else if ( os_strcmp ( field , " PASSWORD " ) = = 0 )
return WPA_CTRL_REQ_EAP_PASSWORD ;
else if ( os_strcmp ( field , " NEW_PASSWORD " ) = = 0 )
return WPA_CTRL_REQ_EAP_NEW_PASSWORD ;
else if ( os_strcmp ( field , " PIN " ) = = 0 )
return WPA_CTRL_REQ_EAP_PIN ;
else if ( os_strcmp ( field , " OTP " ) = = 0 )
return WPA_CTRL_REQ_EAP_OTP ;
else if ( os_strcmp ( field , " PASSPHRASE " ) = = 0 )
return WPA_CTRL_REQ_EAP_PASSPHRASE ;
2013-10-19 16:32:05 +02:00
else if ( os_strcmp ( field , " SIM " ) = = 0 )
return WPA_CTRL_REQ_SIM ;
2011-10-24 18:04:40 +02:00
return WPA_CTRL_REQ_UNKNOWN ;
}
2011-10-24 18:00:19 +02:00
const char * wpa_supplicant_ctrl_req_to_string ( enum wpa_ctrl_req_type field ,
const char * default_txt ,
const char * * txt )
{
const char * ret = NULL ;
* txt = default_txt ;
switch ( field ) {
case WPA_CTRL_REQ_EAP_IDENTITY :
* txt = " Identity " ;
ret = " IDENTITY " ;
break ;
case WPA_CTRL_REQ_EAP_PASSWORD :
* txt = " Password " ;
ret = " PASSWORD " ;
break ;
case WPA_CTRL_REQ_EAP_NEW_PASSWORD :
* txt = " New Password " ;
ret = " NEW_PASSWORD " ;
break ;
case WPA_CTRL_REQ_EAP_PIN :
* txt = " PIN " ;
ret = " PIN " ;
break ;
case WPA_CTRL_REQ_EAP_OTP :
ret = " OTP " ;
break ;
case WPA_CTRL_REQ_EAP_PASSPHRASE :
* txt = " Private key passphrase " ;
ret = " PASSPHRASE " ;
break ;
2013-10-19 16:32:05 +02:00
case WPA_CTRL_REQ_SIM :
ret = " SIM " ;
break ;
2011-10-24 18:00:19 +02:00
default :
break ;
}
/* txt needs to be something */
if ( * txt = = NULL ) {
wpa_printf ( MSG_WARNING , " No message for request %d " , field ) ;
ret = NULL ;
}
return ret ;
}
2009-05-29 21:35:31 +02:00
# ifdef IEEE8021X_EAPOL
2008-02-28 02:34:43 +01:00
# if defined(CONFIG_CTRL_IFACE) || !defined(CONFIG_NO_STDOUT_DEBUG)
2011-10-24 18:00:19 +02:00
static void wpa_supplicant_eap_param_needed ( void * ctx ,
enum wpa_ctrl_req_type field ,
const char * default_txt )
2008-02-28 02:34:43 +01:00
{
struct wpa_supplicant * wpa_s = ctx ;
struct wpa_ssid * ssid = wpa_s - > current_ssid ;
2011-10-24 18:00:19 +02:00
const char * field_name , * txt = NULL ;
2008-02-28 02:34:43 +01:00
char * buf ;
size_t buflen ;
int len ;
if ( ssid = = NULL )
return ;
2011-10-24 18:03:04 +02:00
wpas_notify_network_request ( wpa_s , ssid , field , default_txt ) ;
2011-10-24 18:00:19 +02:00
field_name = wpa_supplicant_ctrl_req_to_string ( field , default_txt ,
& txt ) ;
if ( field_name = = NULL ) {
wpa_printf ( MSG_WARNING , " Unhandled EAP param %d needed " ,
field ) ;
return ;
}
2013-01-12 18:51:18 +01:00
wpas_notify_eap_status ( wpa_s , " eap parameter needed " , field_name ) ;
2008-02-28 02:34:43 +01:00
buflen = 100 + os_strlen ( txt ) + ssid - > ssid_len ;
buf = os_malloc ( buflen ) ;
if ( buf = = NULL )
return ;
len = os_snprintf ( buf , buflen ,
WPA_CTRL_REQ " %s-%d:%s needed for SSID " ,
2011-10-24 18:00:19 +02:00
field_name , ssid - > id , txt ) ;
Check os_snprintf() result more consistently - automatic 1
This converts os_snprintf() result validation cases to use
os_snprintf_error() where the exact rule used in os_snprintf_error() was
used. These changes were done automatically with spatch using the
following semantic patch:
@@
identifier E1;
expression E2,E3,E4,E5,E6;
statement S1;
@@
(
E1 = os_snprintf(E2, E3, ...);
|
int E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else
E1 = os_snprintf(E2, E3, ...);
|
if (E5)
E1 = os_snprintf(E2, E3, ...);
else if (E6)
E1 = os_snprintf(E2, E3, ...);
else
E1 = 0;
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else if (E6) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
return -1;
}
|
if (E5) {
...
E1 = os_snprintf(E2, E3, ...);
} else {
...
E1 = os_snprintf(E2, E3, ...);
}
)
? os_free(E4);
- if (E1 < 0 || \( E1 >= E3 \| (size_t) E1 >= E3 \| (unsigned int) E1 >= E3 \| E1 >= (int) E3 \))
+ if (os_snprintf_error(E3, E1))
(
S1
|
{ ... }
)
Signed-off-by: Jouni Malinen <j@w1.fi>
2014-12-08 10:15:51 +01:00
if ( os_snprintf_error ( buflen , len ) ) {
2008-02-28 02:34:43 +01:00
os_free ( buf ) ;
return ;
}
if ( ssid - > ssid & & buflen > len + ssid - > ssid_len ) {
os_memcpy ( buf + len , ssid - > ssid , ssid - > ssid_len ) ;
len + = ssid - > ssid_len ;
buf [ len ] = ' \0 ' ;
}
buf [ buflen - 1 ] = ' \0 ' ;
wpa_msg ( wpa_s , MSG_INFO , " %s " , buf ) ;
os_free ( buf ) ;
}
# else /* CONFIG_CTRL_IFACE || !CONFIG_NO_STDOUT_DEBUG */
# define wpa_supplicant_eap_param_needed NULL
# endif /* CONFIG_CTRL_IFACE || !CONFIG_NO_STDOUT_DEBUG */
2009-04-22 15:01:37 +02:00
static void wpa_supplicant_port_cb ( void * ctx , int authorized )
{
struct wpa_supplicant * wpa_s = ctx ;
2010-07-18 05:25:41 +02:00
# ifdef CONFIG_AP
if ( wpa_s - > ap_iface ) {
wpa_printf ( MSG_DEBUG , " AP mode active - skip EAPOL Supplicant "
" port status: %s " ,
authorized ? " Authorized " : " Unauthorized " ) ;
return ;
}
# endif /* CONFIG_AP */
2009-04-22 15:01:37 +02:00
wpa_printf ( MSG_DEBUG , " EAPOL: Supplicant port status: %s " ,
authorized ? " Authorized " : " Unauthorized " ) ;
wpa_drv_set_supp_port ( wpa_s , authorized ) ;
}
2011-07-05 11:22:32 +02:00
static void wpa_supplicant_cert_cb ( void * ctx , int depth , const char * subject ,
2015-01-14 12:29:40 +01:00
const char * altsubject [ ] , int num_altsubject ,
2011-07-05 11:22:32 +02:00
const char * cert_hash ,
const struct wpabuf * cert )
{
struct wpa_supplicant * wpa_s = ctx ;
2015-01-14 12:29:40 +01:00
wpas_notify_certification ( wpa_s , depth , subject , altsubject ,
num_altsubject , cert_hash , cert ) ;
2011-07-05 11:22:32 +02:00
}
2012-06-04 20:10:01 +02:00
static void wpa_supplicant_status_cb ( void * ctx , const char * status ,
const char * parameter )
{
struct wpa_supplicant * wpa_s = ctx ;
wpas_notify_eap_status ( wpa_s , status , parameter ) ;
}
2012-09-02 12:04:18 +02:00
static void wpa_supplicant_set_anon_id ( void * ctx , const u8 * id , size_t len )
{
struct wpa_supplicant * wpa_s = ctx ;
char * str ;
int res ;
wpa_hexdump_ascii ( MSG_DEBUG , " EAP method updated anonymous_identity " ,
id , len ) ;
if ( wpa_s - > current_ssid = = NULL )
return ;
if ( id = = NULL ) {
if ( wpa_config_set ( wpa_s - > current_ssid , " anonymous_identity " ,
" NULL " , 0 ) < 0 )
return ;
} else {
str = os_malloc ( len * 2 + 1 ) ;
if ( str = = NULL )
return ;
wpa_snprintf_hex ( str , len * 2 + 1 , id , len ) ;
res = wpa_config_set ( wpa_s - > current_ssid , " anonymous_identity " ,
str , 0 ) ;
os_free ( str ) ;
if ( res < 0 )
return ;
}
if ( wpa_s - > conf - > update_config ) {
res = wpa_config_write ( wpa_s - > confname , wpa_s - > conf ) ;
if ( res ) {
wpa_printf ( MSG_DEBUG , " Failed to update config after "
" anonymous_id update " ) ;
}
}
}
2009-05-29 21:35:31 +02:00
# endif /* IEEE8021X_EAPOL */
2009-04-22 15:01:37 +02:00
2008-02-28 02:34:43 +01:00
int wpa_supplicant_init_eapol ( struct wpa_supplicant * wpa_s )
{
# ifdef IEEE8021X_EAPOL
struct eapol_ctx * ctx ;
ctx = os_zalloc ( sizeof ( * ctx ) ) ;
if ( ctx = = NULL ) {
wpa_printf ( MSG_ERROR , " Failed to allocate EAPOL context. " ) ;
return - 1 ;
}
ctx - > ctx = wpa_s ;
ctx - > msg_ctx = wpa_s ;
ctx - > eapol_send_ctx = wpa_s ;
ctx - > preauth = 0 ;
ctx - > eapol_done_cb = wpa_supplicant_notify_eapol_done ;
ctx - > eapol_send = wpa_supplicant_eapol_send ;
ctx - > set_wep_key = wpa_eapol_set_wep_key ;
2013-03-16 11:20:21 +01:00
# ifndef CONFIG_NO_CONFIG_BLOBS
2008-02-28 02:34:43 +01:00
ctx - > set_config_blob = wpa_supplicant_set_config_blob ;
ctx - > get_config_blob = wpa_supplicant_get_config_blob ;
2013-03-16 11:20:21 +01:00
# endif /* CONFIG_NO_CONFIG_BLOBS */
2008-02-28 02:34:43 +01:00
ctx - > aborted_cached = wpa_supplicant_aborted_cached ;
ctx - > opensc_engine_path = wpa_s - > conf - > opensc_engine_path ;
ctx - > pkcs11_engine_path = wpa_s - > conf - > pkcs11_engine_path ;
ctx - > pkcs11_module_path = wpa_s - > conf - > pkcs11_module_path ;
2014-10-12 10:53:51 +02:00
ctx - > openssl_ciphers = wpa_s - > conf - > openssl_ciphers ;
2008-11-28 19:32:13 +01:00
ctx - > wps = wpa_s - > wps ;
2008-02-28 02:34:43 +01:00
ctx - > eap_param_needed = wpa_supplicant_eap_param_needed ;
2009-04-22 15:01:37 +02:00
ctx - > port_cb = wpa_supplicant_port_cb ;
2008-02-28 02:34:43 +01:00
ctx - > cb = wpa_supplicant_eapol_cb ;
2011-07-05 11:22:32 +02:00
ctx - > cert_cb = wpa_supplicant_cert_cb ;
2015-01-14 11:14:31 +01:00
ctx - > cert_in_cb = wpa_s - > conf - > cert_in_cb ;
2012-06-04 20:10:01 +02:00
ctx - > status_cb = wpa_supplicant_status_cb ;
2012-09-02 12:04:18 +02:00
ctx - > set_anon_id = wpa_supplicant_set_anon_id ;
2008-02-28 02:34:43 +01:00
ctx - > cb_ctx = wpa_s ;
wpa_s - > eapol = eapol_sm_init ( ctx ) ;
if ( wpa_s - > eapol = = NULL ) {
os_free ( ctx ) ;
wpa_printf ( MSG_ERROR , " Failed to initialize EAPOL state "
" machines. " ) ;
return - 1 ;
}
# endif /* IEEE8021X_EAPOL */
return 0 ;
}
2012-12-18 14:14:54 +01:00
# ifndef CONFIG_NO_WPA
2015-01-25 15:49:18 +01:00
static void wpa_supplicant_set_rekey_offload ( void * ctx ,
const u8 * kek , size_t kek_len ,
const u8 * kck , size_t kck_len ,
2011-07-12 20:22:51 +02:00
const u8 * replay_ctr )
{
struct wpa_supplicant * wpa_s = ctx ;
2015-01-25 15:49:18 +01:00
wpa_drv_set_rekey_info ( wpa_s , kek , kek_len , kck , kck_len , replay_ctr ) ;
2011-07-12 20:22:51 +02:00
}
2012-12-18 14:14:54 +01:00
# endif /* CONFIG_NO_WPA */
2011-07-12 20:22:51 +02:00
2014-10-23 17:21:49 +02:00
static int wpa_supplicant_key_mgmt_set_pmk ( void * ctx , const u8 * pmk ,
size_t pmk_len )
{
struct wpa_supplicant * wpa_s = ctx ;
if ( wpa_s - > conf - > key_mgmt_offload )
return wpa_drv_set_key ( wpa_s , WPA_ALG_PMK , NULL , 0 , 0 ,
NULL , 0 , pmk , pmk_len ) ;
else
return 0 ;
}
2008-02-28 02:34:43 +01:00
int wpa_supplicant_init_wpa ( struct wpa_supplicant * wpa_s )
{
# ifndef CONFIG_NO_WPA
struct wpa_sm_ctx * ctx ;
ctx = os_zalloc ( sizeof ( * ctx ) ) ;
if ( ctx = = NULL ) {
wpa_printf ( MSG_ERROR , " Failed to allocate WPA context. " ) ;
return - 1 ;
}
ctx - > ctx = wpa_s ;
2009-01-17 16:54:40 +01:00
ctx - > msg_ctx = wpa_s ;
2008-02-28 02:34:43 +01:00
ctx - > set_state = _wpa_supplicant_set_state ;
ctx - > get_state = _wpa_supplicant_get_state ;
ctx - > deauthenticate = _wpa_supplicant_deauthenticate ;
ctx - > set_key = wpa_supplicant_set_key ;
ctx - > get_network_ctx = wpa_supplicant_get_network_ctx ;
ctx - > get_bssid = wpa_supplicant_get_bssid ;
ctx - > ether_send = _wpa_ether_send ;
ctx - > get_beacon_ie = wpa_supplicant_get_beacon_ie ;
ctx - > alloc_eapol = _wpa_alloc_eapol ;
ctx - > cancel_auth_timeout = _wpa_supplicant_cancel_auth_timeout ;
ctx - > add_pmkid = wpa_supplicant_add_pmkid ;
ctx - > remove_pmkid = wpa_supplicant_remove_pmkid ;
# ifndef CONFIG_NO_CONFIG_BLOBS
ctx - > set_config_blob = wpa_supplicant_set_config_blob ;
ctx - > get_config_blob = wpa_supplicant_get_config_blob ;
# endif /* CONFIG_NO_CONFIG_BLOBS */
ctx - > mlme_setprotection = wpa_supplicant_mlme_setprotection ;
# ifdef CONFIG_IEEE80211R
ctx - > update_ft_ies = wpa_supplicant_update_ft_ies ;
ctx - > send_ft_action = wpa_supplicant_send_ft_action ;
2010-03-13 17:28:15 +01:00
ctx - > mark_authenticated = wpa_supplicant_mark_authenticated ;
2008-02-28 02:34:43 +01:00
# endif /* CONFIG_IEEE80211R */
2010-10-07 09:26:56 +02:00
# ifdef CONFIG_TDLS
2011-09-26 12:55:25 +02:00
ctx - > tdls_get_capa = wpa_supplicant_tdls_get_capa ;
2010-10-07 09:26:56 +02:00
ctx - > send_tdls_mgmt = wpa_supplicant_send_tdls_mgmt ;
ctx - > tdls_oper = wpa_supplicant_tdls_oper ;
2011-10-23 13:02:57 +02:00
ctx - > tdls_peer_addset = wpa_supplicant_tdls_peer_addset ;
2014-12-29 06:20:51 +01:00
ctx - > tdls_enable_channel_switch =
wpa_supplicant_tdls_enable_channel_switch ;
ctx - > tdls_disable_channel_switch =
wpa_supplicant_tdls_disable_channel_switch ;
2010-10-07 09:26:56 +02:00
# endif /* CONFIG_TDLS */
2011-07-12 20:22:51 +02:00
ctx - > set_rekey_offload = wpa_supplicant_set_rekey_offload ;
2014-10-23 17:21:49 +02:00
ctx - > key_mgmt_set_pmk = wpa_supplicant_key_mgmt_set_pmk ;
2008-02-28 02:34:43 +01:00
wpa_s - > wpa = wpa_sm_init ( ctx ) ;
if ( wpa_s - > wpa = = NULL ) {
wpa_printf ( MSG_ERROR , " Failed to initialize WPA state "
" machine " ) ;
2015-01-06 22:01:00 +01:00
os_free ( ctx ) ;
2008-02-28 02:34:43 +01:00
return - 1 ;
}
# endif /* CONFIG_NO_WPA */
return 0 ;
}
void wpa_supplicant_rsn_supp_set_config ( struct wpa_supplicant * wpa_s ,
struct wpa_ssid * ssid )
{
struct rsn_supp_config conf ;
if ( ssid ) {
os_memset ( & conf , 0 , sizeof ( conf ) ) ;
2008-07-06 09:50:53 +02:00
conf . network_ctx = ssid ;
2008-02-28 02:34:43 +01:00
conf . peerkey_enabled = ssid - > peerkey ;
conf . allowed_pairwise_cipher = ssid - > pairwise_cipher ;
2008-04-28 16:06:43 +02:00
# ifdef IEEE8021X_EAPOL
2012-11-12 19:07:53 +01:00
conf . proactive_key_caching = ssid - > proactive_key_caching < 0 ?
wpa_s - > conf - > okc : ssid - > proactive_key_caching ;
2008-02-28 02:34:43 +01:00
conf . eap_workaround = ssid - > eap_workaround ;
conf . eap_conf_ctx = & ssid - > eap ;
2008-04-28 16:06:43 +02:00
# endif /* IEEE8021X_EAPOL */
2008-02-28 02:34:43 +01:00
conf . ssid = ssid - > ssid ;
conf . ssid_len = ssid - > ssid_len ;
2008-11-06 18:57:21 +01:00
conf . wpa_ptk_rekey = ssid - > wpa_ptk_rekey ;
2013-03-16 18:13:31 +01:00
# ifdef CONFIG_P2P
2013-04-04 18:09:10 +02:00
if ( ssid - > p2p_group & & wpa_s - > current_bss & &
! wpa_s - > p2p_disable_ip_addr_req ) {
2013-03-16 18:13:31 +01:00
struct wpabuf * p2p ;
p2p = wpa_bss_get_vendor_ie_multi ( wpa_s - > current_bss ,
P2P_IE_VENDOR_TYPE ) ;
if ( p2p ) {
u8 group_capab ;
group_capab = p2p_get_group_capab ( p2p ) ;
if ( group_capab &
P2P_GROUP_CAPAB_IP_ADDR_ALLOCATION )
conf . p2p = 1 ;
wpabuf_free ( p2p ) ;
}
}
# endif /* CONFIG_P2P */
2008-02-28 02:34:43 +01:00
}
wpa_sm_set_config ( wpa_s - > wpa , ssid ? & conf : NULL ) ;
}