mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-02-16 23:40:43 +01:00
eap-tls-common: Introduce eap_tls_variant_ops
eap_tls_variant_ops will allow methods such as TTLS, PEAP, etc. to specify their own handlers for the Phase 2 operations.
This commit is contained in:
parent
d558724676
commit
7aa35bf6c7
@ -82,6 +82,8 @@ struct eap_tls_state {
|
|||||||
char *client_cert;
|
char *client_cert;
|
||||||
char *client_key;
|
char *client_key;
|
||||||
char *passphrase;
|
char *passphrase;
|
||||||
|
|
||||||
|
const struct eap_tls_variant_ops *variant_ops;
|
||||||
};
|
};
|
||||||
|
|
||||||
static void __eap_tls_common_state_reset(struct eap_tls_state *eap_tls)
|
static void __eap_tls_common_state_reset(struct eap_tls_state *eap_tls)
|
||||||
@ -222,8 +224,8 @@ int eap_tls_common_settings_check(struct l_settings *settings,
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool eap_tls_common_settings_load(struct eap_state *eap,
|
bool eap_tls_common_settings_load(struct eap_state *eap,
|
||||||
struct l_settings *settings,
|
struct l_settings *settings, const char *prefix,
|
||||||
const char *prefix)
|
const struct eap_tls_variant_ops *variant_ops)
|
||||||
{
|
{
|
||||||
struct eap_tls_state *eap_tls;
|
struct eap_tls_state *eap_tls;
|
||||||
char setting_key[72];
|
char setting_key[72];
|
||||||
@ -231,6 +233,7 @@ bool eap_tls_common_settings_load(struct eap_state *eap,
|
|||||||
eap_tls = l_new(struct eap_tls_state, 1);
|
eap_tls = l_new(struct eap_tls_state, 1);
|
||||||
|
|
||||||
eap_tls->version_negotiated = EAP_TLS_VERSION_NOT_NEGOTIATED;
|
eap_tls->version_negotiated = EAP_TLS_VERSION_NOT_NEGOTIATED;
|
||||||
|
eap_tls->variant_ops = variant_ops;
|
||||||
|
|
||||||
snprintf(setting_key, sizeof(setting_key), "%sCACert", prefix);
|
snprintf(setting_key, sizeof(setting_key), "%sCACert", prefix);
|
||||||
eap_tls->ca_cert = l_settings_get_string(settings, "Security",
|
eap_tls->ca_cert = l_settings_get_string(settings, "Security",
|
||||||
|
@ -39,6 +39,16 @@ enum eap_tls_version {
|
|||||||
EAP_TLS_VERSION_NOT_NEGOTIATED = 0x08,
|
EAP_TLS_VERSION_NOT_NEGOTIATED = 0x08,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct eap_tls_variant_ops {
|
||||||
|
enum eap_tls_version version_max_supported;
|
||||||
|
|
||||||
|
bool (*tunnel_ready)(struct eap_state *eap, const char *peer_identity);
|
||||||
|
bool (*tunnel_handle_request)(struct eap_state *eap,
|
||||||
|
const uint8_t *data, size_t data_len);
|
||||||
|
void (*reset)(void *variant_data);
|
||||||
|
void (*destroy)(void *variant_data);
|
||||||
|
};
|
||||||
|
|
||||||
void eap_tls_common_state_free(struct eap_state *eap);
|
void eap_tls_common_state_free(struct eap_state *eap);
|
||||||
|
|
||||||
int eap_tls_common_settings_check(struct l_settings *settings,
|
int eap_tls_common_settings_check(struct l_settings *settings,
|
||||||
@ -46,5 +56,5 @@ int eap_tls_common_settings_check(struct l_settings *settings,
|
|||||||
const char *prefix,
|
const char *prefix,
|
||||||
struct l_queue **out_missing);
|
struct l_queue **out_missing);
|
||||||
bool eap_tls_common_settings_load(struct eap_state *eap,
|
bool eap_tls_common_settings_load(struct eap_state *eap,
|
||||||
struct l_settings *settings,
|
struct l_settings *settings, const char *prefix,
|
||||||
const char *prefix);
|
const struct eap_tls_variant_ops *variant_ops);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user