eapol/eapol_framework/eapol_common/type/simple_config/eap/include/eap_type_simple_config.h
changeset 0 c8830336c852
child 2 1c7bc153c08e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eapol/eapol_framework/eapol_common/type/simple_config/eap/include/eap_type_simple_config.h	Thu Dec 17 08:47:43 2009 +0200
@@ -0,0 +1,660 @@
+/*
+* Copyright (c) 2001-2006 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  EAP and WLAN authentication protocols.
+*
+*/
+
+
+
+
+#if !defined(_EAP_TYPE_SIMPLE_CONFIG_H_)
+#define _EAP_TYPE_SIMPLE_CONFIG_H_
+
+#if defined(USE_EAP_SIMPLE_CONFIG)
+
+#include "eap_tools.h"
+#include "eap_am_export.h"
+#include "abs_eap_am_type_simple_config.h"
+#include "eap_am_network_id.h"
+#include "abs_eap_base_type.h"
+#include "eap_base_type.h"
+#include "eap_variable_data.h"
+#include "abs_eap_base_timer.h"
+#include "eap_crypto_api.h"
+#include "eap_protocol_layer.h"
+#include "eap_type_simple_config_types.h"
+#include "abs_simple_config_base_record.h"
+#include "eap_master_session_key.h"
+#include "simple_config_types.h"
+
+class eap_simple_config_header_c;
+class abs_eap_am_tools_c;
+class abs_eap_base_type_c;
+class eap_am_type_simple_config_c;
+class simple_config_base_record_c;
+
+//--------------------------------------------------
+
+
+/// This class is implementation of SIMPLE_CONFIG type. See more detailed design and architecture document <a href="../../type/simple_config/documentation/EAP_SIMPLE_CONFIG.doc">EAP_SIMPLE_CONFIG.doc</a>.
+class EAP_EXPORT eap_type_simple_config_c
+: public abs_eap_base_timer_c
+, public eap_base_type_c
+, public abs_eap_am_type_simple_config_c
+, public abs_simple_config_base_record_c
+{
+private:
+	//--------------------------------------------------
+
+	/// This is pointer to the tools class.
+	abs_eap_am_tools_c * const m_am_tools;
+
+	/// This is pointer to adaptation module of SIMPLE_CONFIG type.
+	eap_am_type_simple_config_c * m_am_type_simple_config;
+
+	/// This is pointer to SIMPLE_CONFIG implementation.
+	simple_config_base_record_c * m_simple_config_record;
+
+	/// This is the realm part of NAI of the authenticator.
+	/// Client uses this as a realm part on the NAI.
+	eap_variable_data_c m_nai_realm;
+
+	/// This is the full NAI of the client.
+	eap_variable_data_c m_NAI;
+
+	/// This is network identity of the sent packet from this authentication session.
+	eap_am_network_id_c m_send_network_id;
+
+	/// This is offset in bytes of the EAP-type header in the packet buffer.
+	/// Offset is described in abs_eap_base_type_c::get_header_offset().
+	u32_t m_simple_config_header_offset;
+
+	/// This is maximum transfer unit in bytes.
+	/// MTU is described in abs_eap_base_type_c::get_header_offset().
+	u32_t m_MTU;
+
+	/// This is length of the trailer in bytes.
+	/// Trailer length is described in abs_eap_base_type_c::get_header_offset().
+	u32_t m_trailer_length;
+
+	/// This is the state of this authentication session.
+	eap_type_simple_config_state_variable_e m_state;
+
+	/// This is the saved previous state of this authentication session.
+	eap_type_simple_config_state_variable_e m_saved_previous_state;
+
+	/// This is the state of reassembly.
+	eap_type_simple_config_reassembly_state_e m_reassembly_state;
+
+	/// This is the saved previous state of reassembly.
+	eap_type_simple_config_reassembly_state_e m_saved_previous_reassembly_state;
+
+	/// This is the offset of next fragment to be send from m_simple_config_message_buffer.
+	u32_t m_simple_config_message_send_offset;
+
+	/// This is the buffer for SIMPLE_CONFIG-message reassembly and fragmentation.
+	eap_variable_data_c m_simple_config_message_buffer;
+
+	u8_t m_first_fragment_eap_identifier;
+
+	bool m_free_am_type_simple_config;
+
+	bool m_free_simple_config_record;
+
+	/// This indicates whether this object was generated successfully.
+	bool m_is_valid;
+
+	/// This indicates whether this object is client (true) or server (false).
+	/// In terms of EAP-protocol whether this network entity is EAP-supplicant (true) or EAP-authenticator (false).
+	bool m_is_client;
+
+	/// True value of this flag indicates the identifier of the EAP-Response/Identity must be checked.
+	/// This is not possible cases where identifier of the EAP-Request/Identity is generated by other network entities.
+	bool m_check_identifier_of_eap_identity_response;
+
+
+	/// True value means this is a test version of SIMPLE_CONFIG.
+	bool m_simple_config_test_version;
+
+	/// This flag forces check of NAI realm. Realm must be the same as given in EAP_SIMPLE_CONFIG_manual_realm configuration option.
+	/// Default value is false, check is not done by default.
+	bool m_check_nai_realm;
+
+	/// This flag indicates whether the EAP-Failure was received.
+	/// On successfull authentication bogus EAP-Failure is ignored.
+	bool m_failure_message_received;
+
+	/// This variable is set true when authentication finished successfully.
+	bool m_authentication_finished_successfully;
+
+	/// This variable stores the last used EAP-Identifier.
+	/// Client will always send EAP-Response with this identifier.
+	/// Server will always send EAP-Request with this identifier increased by one.
+	/// Server increase this identifier after successfull packet send.
+	u8_t m_last_eap_identifier;
+
+	/// This flag is set true when shutdown is called.
+	/// This is for internal sanity check.
+	bool m_shutdown_was_called;
+	
+	// This variable contains the type of the WSC message (fragment) being sent.
+	simple_config_Message_Type_e m_simple_config_message_type;
+
+	//--------------------------------------------------
+
+	/**
+	 * This function returns the domain name, realm part of NAI.
+	 */
+	EAP_FUNC_IMPORT eap_variable_data_c * get_nai_realm();
+
+	/**
+	 * This function returns the full NAI.
+	 */
+	EAP_FUNC_IMPORT eap_variable_data_c * get_NAI();
+
+	/**
+	 * This is the situation before the update_buffer_indexes() call.
+	 * @code
+	 * 
+	 * |<---------buffer_offset-------->|<----------buffer_free----------------->|
+	 * |                                |                                        |
+	 * |          +-----+---------------+--------------------+                   |
+	 * |          | EAP |  data         | new payload        |                   |
+	 * |          +-----+---------------+--------------------+                   |
+	 * |          |                                                              |
+	 * |<-offset->|<----MTU----------------------------------------------------->|<-trailer->|
+	 * |                                                                                     |
+	 * |<-----------------------maximum_buffer_size----------------------------------------->|
+	 *                                                                                    
+	 * @endcode
+	 *
+	 * This is the situation after the update_buffer_indexes() call.
+	 * @code
+	 * 
+	 * |<-----------------buffer_offset--------------------->|<---buffer_free--->|
+	 * |                                                     |                   |
+	 * |          +-----+---------------+--------------------+                   |
+	 * |          | EAP |  data         | new payload        |                   |
+	 * |          +-----+---------------+--------------------+                   |
+	 * |          |                                                              |
+	 * |<-offset->|<----MTU----------------------------------------------------->|<-trailer->|
+	 * |                                                                                     |
+	 * |<-----------------------maximum_buffer_size----------------------------------------->|
+	 *
+	 * @endcode
+	 *
+	 * Note maximum_buffer_size could be larger than (m_simple_config_header_offset + m_MTU + m_trailer_length).
+	 */
+	EAP_FUNC_IMPORT void update_buffer_indexes(
+		const u32_t maximum_buffer_size,
+		const u32_t payload_size,
+		u32_t * const buffer_offset,
+		u32_t * const buffer_free);
+
+	/**
+	 * This is the situation before the update_payload_indexes() call.
+	 * @code
+	 * 
+	 * |<---------buffer_offset-------->|<----------buffer_free----------------->|
+	 * |                                |                                        |
+	 * |                |<-data_offset->|<--------data_free--------------------->|
+	 * |                |               |                                        |
+	 * |                |               |<---payload_size--->|                   |
+	 * |                |               |                    |                   |
+	 * |          +-----+---------------+--------------------+                   |
+	 * |          | EAP |  data         | new payload        |                   |
+	 * |          +-----+---------------+--------------------+                   |
+	 * |          |                                                              |
+	 * |<-offset->|<----MTU----------------------------------------------------->|<-trailer->|
+	 * |                                                                                     |
+	 * |<-----------------------maximum_buffer_size----------------------------------------->|
+	 *                                                                                    
+	 * @endcode
+	 *
+	 * This is the situation after the update_payload_indexes() call.
+	 * @code
+	 * 
+	 * |<-----------------buffer_offset--------------------->|<---buffer_free--->|
+	 * |                                                     |                   |
+	 * |                |<----------data_offset------------->|<----data_free---->|
+	 * |                |                                    |                   |
+	 * |                |               |<---payload_size--->|                   |
+	 * |                |               |                    |                   |
+	 * |          +-----+---------------+--------------------+                   |
+	 * |          | EAP |  data         | new payload        |                   |
+	 * |          +-----+---------------+--------------------+                   |
+	 * |          |                                                              |
+	 * |<-offset->|<----MTU----------------------------------------------------->|<-trailer->|
+	 * |                                                                                     |
+	 * |<-----------------------maximum_buffer_size----------------------------------------->|
+	 *
+	 * @endcode
+	 *
+	 * Note maximum_buffer_size could be larger than (m_simple_config_header_offset + m_MTU + m_trailer_length).
+	 */
+	EAP_FUNC_IMPORT void update_payload_indexes(
+		const u32_t maximum_buffer_size,
+		const u32_t eap_header_size,
+		const u32_t payload_size,
+		u32_t * const data_offset,
+		u32_t * const data_free,
+		u32_t * const buffer_offset,
+		u32_t * const buffer_free);
+
+	/**
+	 * This function reads the identity payload. Identity is stored to handler->get_identity().
+	 */
+	EAP_FUNC_IMPORT eap_status_e parse_identity(
+		const u8_t * const identity, ///< This is pointer to received EAP-Identity buffer.
+		const u32_t identity_length ///< This is length of received EAP-Identity buffer.
+		);
+
+	/**
+	 * This function chechs NAI.
+	 */
+	EAP_FUNC_IMPORT eap_status_e check_NAI(
+		const u8_t * const identity,
+		const u32_t identity_length,
+		const u8_t * const at_character);
+
+	/**
+	 * This function traces the EAP packet.
+	 */
+	EAP_FUNC_IMPORT void packet_trace(
+		eap_const_string prefix,
+		const eap_am_network_id_c * const receive_network_id,
+		eap_header_wr_c * const received_eap,
+		const u32_t eap_packet_length);
+
+	/**
+	 * This function finishes the successfull authentication.
+	 * Generated keys are offered to lower layer.
+	 * Connection handle is initialised.
+	 */
+	EAP_FUNC_IMPORT eap_status_e finish_successful_authentication();
+
+	/**
+	 * This function sends a notification of possible failed authentication
+	 * to lower layer.
+	 */
+	EAP_FUNC_IMPORT eap_status_e send_final_notification();
+
+
+	/**
+	 * This function returns the state of this authentication session.
+	 */
+	EAP_FUNC_IMPORT eap_type_simple_config_state_variable_e get_state() const;
+
+	/**
+	 * This function sets the new state and notifies the lower layer of this change.
+	 */
+	EAP_FUNC_IMPORT void set_state(const eap_type_simple_config_state_variable_e state);
+
+	/**
+	 * This function saves the current m_state to m_saved_previous_state.
+	 * The saved state is restored in error case.
+	 */
+	EAP_FUNC_IMPORT void save_current_state();
+
+	/**
+	 * This function restores the saved state.
+	 */
+	EAP_FUNC_IMPORT void restore_saved_previous_state();
+
+
+	/**
+	 * This function returns the state of reassembly.
+	 */
+	EAP_FUNC_IMPORT eap_type_simple_config_reassembly_state_e get_reassembly_state() const;
+
+	/**
+	 * This function sets the new reassembly state.
+	 */
+	EAP_FUNC_IMPORT void set_reassembly_state(const eap_type_simple_config_reassembly_state_e state);
+
+	/**
+	 * This function saves the current m_reassembly_state to m_saved_previous_reassembly_state.
+	 * The saved state is restored in error case.
+	 */
+	EAP_FUNC_IMPORT void save_current_reassembly_state();
+
+	/**
+	 * This function restores the saved reassembly state.
+	 */
+	EAP_FUNC_IMPORT void restore_saved_reassembly_state();
+
+
+	/**
+	 * This function returns the send network identity of this session.
+	 */
+	EAP_FUNC_IMPORT eap_am_network_id_c * get_send_network_id();
+
+	/**
+	 * This function stores the last EAP-Identifier.
+	 */
+	EAP_FUNC_IMPORT void set_last_eap_identifier(const u8_t last_eap_identifier);
+
+	/**
+	 * This function returns the last stored EAP-Identifier.
+	 */
+	EAP_FUNC_IMPORT u8_t get_last_eap_identifier() const;
+
+	eap_status_e check_received_eap_identifier(
+		const eap_header_wr_c * const eap_header);
+
+
+	/**
+	 * This function returns string of the current state. This is for trace purposes.
+	 */
+	EAP_FUNC_IMPORT eap_const_string get_state_string() const;
+
+	/**
+	 * This function returns string of the current state. This is for trace purposes.
+	 */
+	EAP_FUNC_IMPORT eap_const_string get_saved_previous_state_string() const;
+
+	/**
+	 * This function returns string of the current reassembly state. This is for trace purposes.
+	 */
+	EAP_FUNC_IMPORT eap_const_string get_reassembly_state_string() const;
+
+
+	/**
+	 * This function sets the m_failure_message_received flag true.
+	 */
+	EAP_FUNC_IMPORT void set_failure_message_received();
+
+	/**
+	 * This function sets the m_failure_message_received flag false.
+	 */
+	EAP_FUNC_IMPORT void unset_failure_message_received();
+
+	/**
+	 * This function returns the m_failure_message_received flag.
+	 */
+	EAP_FUNC_IMPORT bool get_failure_message_received() const;
+
+	/**
+	 * This function sends an simple config fragment acknowledge.
+	 */
+	EAP_FUNC_IMPORT eap_status_e send_sc_frag_ack();
+
+	/**
+	 * This function sends EAP-SIMPLE_CONFIG Start message.
+	 */
+	EAP_FUNC_IMPORT eap_status_e send_simple_config_start_message(
+		const u8_t next_eap_identifier ///< This is EAP-Identifier of next EAP packet.
+		);
+
+	/**
+	 * This function sends starts EAP-SIMPLE_CONFIG after a start message is received.
+	 */
+	EAP_FUNC_IMPORT eap_status_e start_simple_config_authentication(
+		const eap_am_network_id_c * const receive_network_id, ///< This is the network identity of the received EAP packet.
+		const eap_variable_data_c * const NAI ///< This is the full NAI of the client.
+		);
+
+	/**
+	 * This function extracts the SIMPLE_CONFIG-record message from m_simple_config_message_buffer and forwards it to simple_config_base_record_c object.
+	 */
+	EAP_FUNC_IMPORT eap_status_e simple_config_message_process(
+		const eap_am_network_id_c * const receive_network_id, ///< This is the network identity of the received EAP packet.
+		eap_simple_config_header_c * const received_simple_config, ///< This is pointer to EAP header including EAP-SIMPLE_CONFIG fields.
+		const u32_t simple_config_packet_length ///< This is length of received EAP-SIMPLE_CONFIG packet.
+		);
+
+	/**
+	 * This function sends the EAP-SIMPLE_CONFIG message from rm_simple_config_reassembly_buffer.
+	 */
+	EAP_FUNC_IMPORT eap_status_e eap_simple_config_fragment_send();
+
+	EAP_FUNC_IMPORT eap_status_e handle_eap_identity_query(
+		const eap_am_network_id_c * const receive_network_id,
+		const u8_t eap_identifier,
+		const bool use_manual_username,
+		const eap_variable_data_c * const manual_username,
+		const bool use_manual_realm,
+		const eap_variable_data_c * const manual_realm
+		);
+
+	//--------------------------------------------------
+protected:
+	//--------------------------------------------------
+
+	//--------------------------------------------------
+public:
+	//--------------------------------------------------
+
+	/**
+	 * Destructor cancels all timers and deletes member attributes.
+	 */
+	EAP_FUNC_IMPORT virtual ~eap_type_simple_config_c();
+
+	/**
+	 * Constructor initializes all member attributes.
+	 */
+	EAP_FUNC_IMPORT eap_type_simple_config_c(
+		abs_eap_am_tools_c * const tools, ///< This is pointer to the tools AM of current platform.
+		abs_eap_base_type_c * const partner, ///< This is back pointer to object which created this object.
+		eap_am_type_simple_config_c * const am_type_simple_config, ///< This is pointer to adaptation module of EAP-SIMPLE_CONFIG type.
+		const bool free_am_type_simple_config,
+		simple_config_base_record_c * const simple_config_record, /// This is pointer to SIMPLE_CONFIG implementation.
+		const bool free_simple_config_record,
+		const bool is_client_when_true, ///< Indicates whether this is client (true) or server (false).
+		const eap_type_value_e current_eap_type, ///< This the current EAP-type (SIMPLE_CONFIG or PEAP).
+		const eap_am_network_id_c * const receive_network_id ///< The network id used for this session.
+		);
+
+	/**
+	 * This function creates reassembly state string.
+	 */
+	EAP_FUNC_IMPORT static eap_const_string get_reassembly_state_string(eap_type_simple_config_reassembly_state_e state);
+
+	/**
+	 * This function creates state string.
+	 */
+	EAP_FUNC_IMPORT static eap_const_string get_state_string(eap_type_simple_config_state_variable_e state);
+
+
+	/**
+	 * This function tells if the object is a client or a server..
+	 */
+	EAP_FUNC_IMPORT bool get_is_client();
+
+	// This is commented in abs_eap_am_type_simple_config_c::complete_eap_identity_query().
+	EAP_FUNC_IMPORT eap_status_e complete_eap_identity_query(
+		const eap_am_network_id_c * const receive_network_id,
+		const u8_t eap_identifier,
+		const eap_status_e completion_status,
+		const bool use_manual_username,
+		const eap_variable_data_c * const manual_username,
+		const bool use_manual_realm,
+		const eap_variable_data_c * const manual_realm
+		);
+
+	/**
+	 * The partner class calls this function when EAP-SIMPLE_CONFIG packet is received.
+	 * see also eap_base_type_c::packet_process().
+	 */
+	EAP_FUNC_IMPORT eap_status_e packet_process(
+		const eap_am_network_id_c * const receive_network_id, ///< This is the network identity of the received EAP packet.
+		eap_header_wr_c * const eap, ///< This is pointer to EAP header and data.
+		const u32_t eap_packet_length ///< This is length of received EAP packet.
+		);
+
+	/**
+	 * This function processes the EAP-Response/Identity.
+	 */
+	EAP_FUNC_IMPORT eap_status_e eap_identity_response_packet_process(
+		const eap_am_network_id_c * const receive_network_id, ///< This is the network identity of the received EAP packet.
+		eap_header_wr_c * const received_eap, ///< This is pointer to EAP header and data.
+		const u32_t eap_packet_length ///< This is length of received EAP packet.
+		);
+
+	/**
+	 * This function processes the EAP-SIMPLE_CONFIG packets.
+	 */
+	EAP_FUNC_IMPORT eap_status_e simple_config_packet_process(
+		const eap_am_network_id_c * const receive_network_id, ///< This is the network identity of the received EAP packet.
+		eap_simple_config_header_c * const received_simple_config, ///< This is pointer to EAP header including EAP-SIMPLE_CONFIG fields.
+		const u32_t simple_config_packet_length ///< This is length of received EAP-SIMPLE_CONFIG packet.
+		);
+
+	// This is commented in abs_eap_base_timer_c::timer_delete_data().
+	EAP_FUNC_IMPORT eap_status_e timer_expired(
+		const u32_t id, void *data
+		);
+
+	// This is commented in abs_eap_base_timer_c::timer_delete_data().
+	EAP_FUNC_IMPORT eap_status_e timer_delete_data(
+		const u32_t id, void *data
+		);
+
+	// This is commented in eap_base_type_c::set_is_valid().
+	EAP_FUNC_IMPORT void set_is_valid();
+
+	// This is commented in eap_base_type_c::get_is_valid().
+	EAP_FUNC_IMPORT bool get_is_valid();
+
+	// This is commented in eap_base_type_c::configure().
+	EAP_FUNC_IMPORT eap_status_e configure();
+
+	// This is commented in eap_base_type_c::shutdown().
+	EAP_FUNC_IMPORT eap_status_e shutdown();
+
+	// This is commented in eap_base_type_c::query_eap_identity().
+	EAP_FUNC_IMPORT eap_status_e query_eap_identity(
+		const bool must_be_synchronous,
+		eap_variable_data_c * const identity,
+		const eap_am_network_id_c * const receive_network_id,
+		const u8_t eap_identifier);
+
+	// This is commented in eap_base_type_c::query_eap_identity().
+	EAP_FUNC_IMPORT eap_status_e set_initial_eap_identifier(
+		const eap_am_network_id_c * const receive_network_id,
+		const u8_t initial_identifier);
+
+	// This is commented in eap_base_type_c::eap_acknowledge().
+	EAP_FUNC_IMPORT eap_status_e eap_acknowledge(
+		const eap_am_network_id_c * const receive_network_id);
+
+	/**
+	 * This function must reset the state of object to same as 
+	 * state was after the configure() function call.
+	 * If object reset succeeds this function must return eap_status_ok.
+	 * If object reset fails this function must return corresponding error status.
+	 * @return This function returns the status of reset operation.
+	 */
+	EAP_FUNC_IMPORT eap_status_e reset();
+
+	/// @see abs_simple_config_base_record_c::state_notification().
+	EAP_FUNC_IMPORT void state_notification(
+		const abs_eap_state_notification_c * const state
+		);
+
+	/// @see abs_simple_config_base_record_c::packet_send().
+	EAP_FUNC_IMPORT eap_status_e simple_config_packet_send(
+		eap_buf_chain_wr_c * const sent_packet,
+		const simple_config_Message_Type_e message_type);
+
+	/// @see abs_simple_config_base_record_c::packet_send().
+	EAP_FUNC_IMPORT eap_status_e packet_send(
+		const eap_am_network_id_c * const network_id,
+		eap_buf_chain_wr_c * const sent_packet,
+		const u32_t header_offset,
+		const u32_t data_length,
+		const u32_t buffer_length);
+
+	/// @see abs_simple_config_base_record_c::get_header_offset().
+	EAP_FUNC_IMPORT u32_t get_header_offset(
+		u32_t * const MTU,
+		u32_t * const trailer_length
+		);
+
+	/// @see abs_simple_config_base_record_c::restart_authentication().
+	EAP_FUNC_IMPORT eap_status_e restart_authentication(
+		const eap_am_network_id_c * const receive_network_id,
+		const bool is_client_when_true,
+		const bool force_clean_restart,
+		const bool from_timer);
+
+	/// @see abs_simple_config_base_record_c::read_configure().
+	EAP_FUNC_IMPORT virtual eap_status_e read_configure(
+		const eap_configuration_field_c * const field,
+		eap_variable_data_c * const data
+		);
+
+	/// @see abs_simple_config_base_record_c::write_configure().
+	EAP_FUNC_IMPORT virtual eap_status_e write_configure(
+		const eap_configuration_field_c * const field,
+		eap_variable_data_c * const data
+		);
+
+	/// @see abs_simple_config_base_record_c::set_timer().
+	EAP_FUNC_IMPORT eap_status_e set_timer(
+		abs_eap_base_timer_c * const p_initializer, 
+		const u32_t p_id, 
+		void * const p_data,
+		const u32_t p_time_ms);
+
+	/// @see abs_simple_config_base_record_c::cancel_timer().
+	EAP_FUNC_IMPORT eap_status_e cancel_timer(
+		abs_eap_base_timer_c * const p_initializer, 
+		const u32_t p_id);
+
+	/// @see abs_simple_config_base_record_c::cancel_all_timers().
+	EAP_FUNC_IMPORT eap_status_e cancel_all_timers();
+
+	/// @see abs_simple_config_base_record_c::load_module().
+	EAP_FUNC_IMPORT eap_status_e load_module(
+		const eap_type_value_e type,
+		const eap_type_value_e /* tunneling_type */,
+		abs_eap_base_type_c * const partner,
+		eap_base_type_c ** const eap_type,
+		const bool is_client_when_true,
+		const eap_am_network_id_c * const receive_network_id);
+
+	/// @see abs_simple_config_base_record_c::unload_module().
+	EAP_FUNC_IMPORT eap_status_e unload_module(const eap_type_value_e type);
+
+	/// @see abs_simple_config_base_record_c::packet_data_crypto_keys().
+	EAP_FUNC_IMPORT eap_status_e packet_data_crypto_keys(
+		const eap_am_network_id_c * const send_network_id,
+		const eap_master_session_key_c * const master_session_key);
+
+	/// @see abs_simple_config_base_record_c::check_is_valid_eap_type().
+	EAP_FUNC_IMPORT eap_status_e check_is_valid_eap_type(const eap_type_value_e eap_type);
+
+	/// @see abs_simple_config_base_record_c::get_eap_type_list().
+	EAP_FUNC_IMPORT eap_status_e get_eap_type_list(
+		eap_array_c<eap_type_value_e> * const eap_type_list);
+
+	/// @see abs_simple_config_base_record_c::set_session_timeout().
+	EAP_FUNC_IMPORT eap_status_e set_session_timeout(
+		const u32_t session_timeout_ms);
+
+	EAP_FUNC_IMPORT eap_status_e add_rogue_ap(eap_array_c<eap_rogue_ap_entry_c> & rogue_ap_list);
+
+	//--------------------------------------------------
+}; // class eap_type_simple_config_c
+
+#endif //#if defined(USE_EAP_SIMPLE_CONFIG)
+
+#endif //#if !defined(_EAP_TYPE_SIMPLE_CONFIG_H_)
+
+//--------------------------------------------------
+
+
+
+// End.