eap_method is only used within ESP-IDF.
 
Symbols
loading...
Files
loading...
SummarySyntaxRelatedReferences

Fields

Field
Declared as
Description
bool (*)(struct eap_sm *sm, void *priv)
u8 * (*)(struct eap_sm *sm, void *priv, size_t *len)
int (*)(struct eap_sm *sm, void *priv, char *buf, size_t buflen, int verbose)
get_status - Get EAP method status @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() @priv: Pointer to private EAP method data from eap_method::init() @buf: Buffer for status information @buflen: Maximum buffer length @verbose: Whether to include verbose status information Returns: Number of bytes written to buf Query EAP method for status information. This function fills in a text area with current status information from the EAP method. If the buffer (buf) is not large enough, status information will be truncated to fit the buffer.
bool (*)(struct eap_sm *sm, void *priv)
has_reauth_data - Whether method is ready for fast reauthentication @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() @priv: Pointer to private EAP method data from eap_method::init() Returns: %TRUE or %FALSE based on whether fast reauthentication is possible This function is an optional handler that only EAP methods supporting fast re-authentication need to implement.
void (*)(struct eap_sm *sm, void *priv)
deinit_for_reauth - Release data that is not needed for fast re-auth @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() @priv: Pointer to private EAP method data from eap_method::init() This function is an optional handler that only EAP methods supporting fast re-authentication need to implement. This is called when authentication has been completed and EAP state machine is requesting that enough state information is maintained for fast re-authentication.
void * (*)(struct eap_sm *sm, void *priv)
init_for_reauth - Prepare for start of fast re-authentication @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() @priv: Pointer to private EAP method data from eap_method::init() This function is an optional handler that only EAP methods supporting fast re-authentication need to implement. This is called when EAP authentication is started and EAP state machine is requesting fast re-authentication to be used.
const u8 * (*)(struct eap_sm *sm, void *priv, size_t *len)
get_identity - Get method specific identity for re-authentication @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() @priv: Pointer to private EAP method data from eap_method::init() @len: Length of the returned identity Returns: Pointer to the method specific identity or %NULL if default identity is to be used This function is an optional handler that only EAP methods that use method specific identity need to implement.
void (*)(struct eap_method *method)
free - Free EAP method data @method: Pointer to the method data registered with eap_server_method_register(). This function will be called when the EAP method is being unregistered. If the EAP method allocated resources during registration (e.g., allocated struct eap_method), they should be freed in this function. No other method functions will be called after this call. If this function is not defined (i.e., function pointer is %NULL), a default handler is used to release the method data with free(method). This is suitable for most cases.
int
version - Version of the EAP server method interface The EAP server method implementation should set this variable to EAP_SERVER_METHOD_INTERFACE_VERSION. This is used to verify that the EAP method is using supported API version when using dynamically loadable EAP methods.
struct eap_method *
next - Pointer to the next EAP method This variable is used internally in the EAP method registration code to create a linked list of registered EAP methods.
u8 * (*)(struct eap_sm *sm, void *priv, size_t *len)
get_emsk - Get EAP method specific keying extended material (EMSK) @sm: Pointer to EAP state machine allocated with eap_sm_init() @priv: Pointer to private EAP method data from eap_method::init() @len: Pointer to a variable to store EMSK length Returns: EMSK or %NULL if not available This function can be used to get the extended keying material from the EAP method. The key may already be stored in the method-specific private data or this function may derive the key.
u8 * (*)(struct eap_sm *sm, void *priv, size_t *len)
getSessionId - Get EAP method specific Session-Id @sm: Pointer to EAP state machine allocated with eap_server_sm_init() @priv: Pointer to private EAP method data from eap_method::init() @len: Pointer to a variable to store Session-Id length Returns: Session-Id or %NULL if not available This function can be used to get the Session-Id from the EAP method. The Session-Id may already be stored in the method-specific private data or this function may derive the Session-Id.
int
vendor - EAP Vendor-ID (EAP_VENDOR_*) (0 = IETF).
method - EAP type number (EAP_TYPE_*).
const char *
name - Name of the method (e.g., "TLS").
void * (*)(struct eap_sm *sm)
init - Initialize an EAP method @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() Returns: Pointer to allocated private data, or %NULL on failure This function is used to initialize the EAP method explicitly instead of using METHOD_INIT state as specific in RFC 4137. The method is expected to initialize it method-specific state and return a pointer that will be used as the priv argument to other calls.
void (*)(struct eap_sm *sm, void *priv)
deinit - Deinitialize an EAP method @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() @priv: Pointer to private EAP method data from eap_method::init() Deinitialize the EAP method and free any allocated private data.
struct wpabuf * (*)(struct eap_sm *sm, void *priv, struct eap_method_ret *ret, const struct wpabuf *reqData)
process - Process an EAP request @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() @priv: Pointer to private EAP method data from eap_method::init() @ret: Return values from EAP request validation and processing @reqData: EAP request to be processed (eapReqData) Returns: Pointer to allocated EAP response packet (eapRespData) This function is a combination of m.check(), m.process(), and m.buildResp() procedures defined in section 4.4 of RFC 4137 In other words, this function validates the incoming request, processes it, and build a response packet. m.check() and m.process() return values are returned through struct eap_method_ret *ret variable. Caller is responsible for freeing the returned EAP response packet.
void * (*)(struct eap_sm *sm)
void (*)(struct eap_sm *sm, void *priv)
struct wpabuf * (*)(struct eap_sm *sm, void *priv, u8 id)
int (*)(struct eap_sm *sm, void *priv)
bool (*)(struct eap_sm *sm, void *priv, struct wpabuf *respData)
bool (*)(struct eap_sm *sm, void *priv)
bool (*)(struct eap_sm *sm, void *priv)

References

from examples