1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063 |
- #include "includes.h"
- #include "common.h"
- #include "crypto/sha1.h"
- #include "crypto/tls.h"
- #include "eap_i.h"
- #include "eap_tls_common.h"
- #include "eap_config.h"
- static struct wpabuf * eap_tls_msg_alloc(EapType type, size_t payload_len,
- u8 code, u8 identifier)
- {
- if (type == EAP_UNAUTH_TLS_TYPE)
- return eap_msg_alloc(EAP_VENDOR_UNAUTH_TLS,
- EAP_VENDOR_TYPE_UNAUTH_TLS, payload_len,
- code, identifier);
- return eap_msg_alloc(EAP_VENDOR_IETF, type, payload_len, code,
- identifier);
- }
- static int eap_tls_check_blob(struct eap_sm *sm, const char **name,
- const u8 **data, size_t *data_len)
- {
- const struct wpa_config_blob *blob;
- if (*name == NULL || os_strncmp(*name, "blob://", 7) != 0)
- return 0;
- blob = eap_get_config_blob(sm, *name + 7);
- if (blob == NULL) {
- wpa_printf(MSG_ERROR, "%s: Named configuration blob '%s' not "
- "found", __func__, *name + 7);
- return -1;
- }
- *name = NULL;
- *data = blob->data;
- *data_len = blob->len;
- return 0;
- }
- static void eap_tls_params_flags(struct tls_connection_params *params,
- const char *txt)
- {
- if (txt == NULL)
- return;
- if (os_strstr(txt, "tls_allow_md5=1"))
- params->flags |= TLS_CONN_ALLOW_SIGN_RSA_MD5;
- if (os_strstr(txt, "tls_disable_time_checks=1"))
- params->flags |= TLS_CONN_DISABLE_TIME_CHECKS;
- if (os_strstr(txt, "tls_disable_session_ticket=1"))
- params->flags |= TLS_CONN_DISABLE_SESSION_TICKET;
- if (os_strstr(txt, "tls_disable_session_ticket=0"))
- params->flags &= ~TLS_CONN_DISABLE_SESSION_TICKET;
- }
- static void eap_tls_params_from_conf1(struct tls_connection_params *params,
- struct eap_peer_config *config)
- {
- params->ca_cert = (char *) config->ca_cert;
- params->ca_path = (char *) config->ca_path;
- params->client_cert = (char *) config->client_cert;
- params->private_key = (char *) config->private_key;
- params->private_key_passwd = (char *) config->private_key_passwd;
- params->dh_file = (char *) config->dh_file;
- params->subject_match = (char *) config->subject_match;
- params->altsubject_match = (char *) config->altsubject_match;
- params->engine = config->engine;
- params->engine_id = config->engine_id;
- params->pin = config->pin;
- params->key_id = config->key_id;
- params->cert_id = config->cert_id;
- params->ca_cert_id = config->ca_cert_id;
- eap_tls_params_flags(params, config->phase1);
- }
- static void eap_tls_params_from_conf2(struct tls_connection_params *params,
- struct eap_peer_config *config)
- {
- params->ca_cert = (char *) config->ca_cert2;
- params->ca_path = (char *) config->ca_path2;
- params->client_cert = (char *) config->client_cert2;
- params->private_key = (char *) config->private_key2;
- params->private_key_passwd = (char *) config->private_key2_passwd;
- params->dh_file = (char *) config->dh_file2;
- params->subject_match = (char *) config->subject_match2;
- params->altsubject_match = (char *) config->altsubject_match2;
- params->engine = config->engine2;
- params->engine_id = config->engine2_id;
- params->pin = config->pin2;
- params->key_id = config->key2_id;
- params->cert_id = config->cert2_id;
- params->ca_cert_id = config->ca_cert2_id;
- eap_tls_params_flags(params, config->phase2);
- }
- static int eap_tls_params_from_conf(struct eap_sm *sm,
- struct eap_ssl_data *data,
- struct tls_connection_params *params,
- struct eap_peer_config *config, int phase2)
- {
- os_memset(params, 0, sizeof(*params));
- if (sm->workaround && data->eap_type != EAP_TYPE_FAST) {
-
- params->flags |= TLS_CONN_DISABLE_SESSION_TICKET;
- }
- if (phase2) {
- wpa_printf(MSG_DEBUG, "TLS: using phase2 config options");
- eap_tls_params_from_conf2(params, config);
- } else {
- wpa_printf(MSG_DEBUG, "TLS: using phase1 config options");
- eap_tls_params_from_conf1(params, config);
- }
-
- if (eap_tls_check_blob(sm, ¶ms->ca_cert, ¶ms->ca_cert_blob,
- ¶ms->ca_cert_blob_len) ||
- eap_tls_check_blob(sm, ¶ms->client_cert,
- ¶ms->client_cert_blob,
- ¶ms->client_cert_blob_len) ||
- eap_tls_check_blob(sm, ¶ms->private_key,
- ¶ms->private_key_blob,
- ¶ms->private_key_blob_len) ||
- eap_tls_check_blob(sm, ¶ms->dh_file, ¶ms->dh_blob,
- ¶ms->dh_blob_len)) {
- wpa_printf(MSG_INFO, "SSL: Failed to get configuration blobs");
- return -1;
- }
- return 0;
- }
- static int eap_tls_init_connection(struct eap_sm *sm,
- struct eap_ssl_data *data,
- struct eap_peer_config *config,
- struct tls_connection_params *params)
- {
- int res;
- data->conn = tls_connection_init(data->ssl_ctx);
- if (data->conn == NULL) {
- wpa_printf(MSG_INFO, "SSL: Failed to initialize new TLS "
- "connection");
- return -1;
- }
- res = tls_connection_set_params(data->ssl_ctx, data->conn, params);
- if (res == TLS_SET_PARAMS_ENGINE_PRV_INIT_FAILED) {
-
- os_free(config->pin);
- config->pin = NULL;
- } else if (res == TLS_SET_PARAMS_ENGINE_PRV_VERIFY_FAILED) {
- wpa_printf(MSG_INFO, "TLS: Failed to load private key");
-
- os_free(config->pin);
- config->pin = NULL;
- eap_sm_request_pin(sm);
- sm->ignore = TRUE;
- tls_connection_deinit(data->ssl_ctx, data->conn);
- data->conn = NULL;
- return -1;
- } else if (res) {
- wpa_printf(MSG_INFO, "TLS: Failed to set TLS connection "
- "parameters");
- tls_connection_deinit(data->ssl_ctx, data->conn);
- data->conn = NULL;
- return -1;
- }
- return 0;
- }
- int eap_peer_tls_ssl_init(struct eap_sm *sm, struct eap_ssl_data *data,
- struct eap_peer_config *config, u8 eap_type)
- {
- struct tls_connection_params params;
- if (config == NULL)
- return -1;
- data->eap = sm;
- data->eap_type = eap_type;
- data->phase2 = sm->init_phase2;
- data->ssl_ctx = sm->init_phase2 && sm->ssl_ctx2 ? sm->ssl_ctx2 :
- sm->ssl_ctx;
- if (eap_tls_params_from_conf(sm, data, ¶ms, config, data->phase2) <
- 0)
- return -1;
- if (eap_tls_init_connection(sm, data, config, ¶ms) < 0)
- return -1;
- data->tls_out_limit = config->fragment_size;
- if (data->phase2) {
-
- if (data->tls_out_limit > 100)
- data->tls_out_limit -= 100;
- }
- if (config->phase1 &&
- os_strstr(config->phase1, "include_tls_length=1")) {
- wpa_printf(MSG_DEBUG, "TLS: Include TLS Message Length in "
- "unfragmented packets");
- data->include_tls_length = 1;
- }
- return 0;
- }
- void eap_peer_tls_ssl_deinit(struct eap_sm *sm, struct eap_ssl_data *data)
- {
- tls_connection_deinit(data->ssl_ctx, data->conn);
- eap_peer_tls_reset_input(data);
- eap_peer_tls_reset_output(data);
- }
- u8 * eap_peer_tls_derive_key(struct eap_sm *sm, struct eap_ssl_data *data,
- const char *label, size_t len)
- {
- #ifndef CONFIG_FIPS
- struct tls_keys keys;
- #endif
- u8 *rnd = NULL, *out;
- out = os_malloc(len);
- if (out == NULL)
- return NULL;
-
- if (tls_connection_prf(data->ssl_ctx, data->conn, label, 0, out, len)
- == 0)
- return out;
- #ifndef CONFIG_FIPS
-
- if (tls_connection_get_keys(data->ssl_ctx, data->conn, &keys))
- goto fail;
- if (keys.client_random == NULL || keys.server_random == NULL ||
- keys.master_key == NULL)
- goto fail;
- rnd = os_malloc(keys.client_random_len + keys.server_random_len);
- if (rnd == NULL)
- goto fail;
- os_memcpy(rnd, keys.client_random, keys.client_random_len);
- os_memcpy(rnd + keys.client_random_len, keys.server_random,
- keys.server_random_len);
- if (tls_prf_sha1_md5(keys.master_key, keys.master_key_len,
- label, rnd, keys.client_random_len +
- keys.server_random_len, out, len))
- goto fail;
- os_free(rnd);
- return out;
- fail:
- #endif
- os_free(out);
- os_free(rnd);
- return NULL;
- }
- static int eap_peer_tls_reassemble_fragment(struct eap_ssl_data *data,
- const struct wpabuf *in_data)
- {
- size_t tls_in_len, in_len;
- tls_in_len = data->tls_in ? wpabuf_len(data->tls_in) : 0;
- in_len = in_data ? wpabuf_len(in_data) : 0;
- if (tls_in_len + in_len == 0) {
-
- wpa_printf(MSG_WARNING, "SSL: Invalid reassembly state: "
- "tls_in_left=%lu tls_in_len=%lu in_len=%lu",
- (unsigned long) data->tls_in_left,
- (unsigned long) tls_in_len,
- (unsigned long) in_len);
- eap_peer_tls_reset_input(data);
- return -1;
- }
- if (tls_in_len + in_len > 65536) {
-
- wpa_printf(MSG_INFO, "SSL: Too long TLS fragment (size over "
- "64 kB)");
- eap_peer_tls_reset_input(data);
- return -1;
- }
- if (in_len > data->tls_in_left) {
-
- wpa_printf(MSG_INFO, "SSL: more data than TLS message length "
- "indicated");
- eap_peer_tls_reset_input(data);
- return -1;
- }
- if (wpabuf_resize(&data->tls_in, in_len) < 0) {
- wpa_printf(MSG_INFO, "SSL: Could not allocate memory for TLS "
- "data");
- eap_peer_tls_reset_input(data);
- return -1;
- }
- if (in_data)
- wpabuf_put_buf(data->tls_in, in_data);
- data->tls_in_left -= in_len;
- if (data->tls_in_left > 0) {
- wpa_printf(MSG_DEBUG, "SSL: Need %lu bytes more input "
- "data", (unsigned long) data->tls_in_left);
- return 1;
- }
- return 0;
- }
- static const struct wpabuf * eap_peer_tls_data_reassemble(
- struct eap_ssl_data *data, const struct wpabuf *in_data,
- int *need_more_input)
- {
- *need_more_input = 0;
- if (data->tls_in_left > wpabuf_len(in_data) || data->tls_in) {
-
- int res = eap_peer_tls_reassemble_fragment(data, in_data);
- if (res) {
- if (res == 1)
- *need_more_input = 1;
- return NULL;
- }
-
- } else {
-
- data->tls_in_left = 0;
- data->tls_in = wpabuf_dup(in_data);
- if (data->tls_in == NULL)
- return NULL;
- }
- return data->tls_in;
- }
- static int eap_tls_process_input(struct eap_sm *sm, struct eap_ssl_data *data,
- const u8 *in_data, size_t in_len,
- struct wpabuf **out_data)
- {
- const struct wpabuf *msg;
- int need_more_input;
- struct wpabuf *appl_data;
- struct wpabuf buf;
- wpabuf_set(&buf, in_data, in_len);
- msg = eap_peer_tls_data_reassemble(data, &buf, &need_more_input);
- if (msg == NULL)
- return need_more_input ? 1 : -1;
-
- if (data->tls_out) {
-
- wpa_printf(MSG_INFO, "SSL: eap_tls_process_input - pending "
- "tls_out data even though tls_out_len = 0");
- wpabuf_free(data->tls_out);
- WPA_ASSERT(data->tls_out == NULL);
- }
- appl_data = NULL;
- data->tls_out = tls_connection_handshake(data->ssl_ctx, data->conn,
- msg, &appl_data);
- eap_peer_tls_reset_input(data);
- if (appl_data &&
- tls_connection_established(data->ssl_ctx, data->conn) &&
- !tls_connection_get_failed(data->ssl_ctx, data->conn)) {
- wpa_hexdump_buf_key(MSG_MSGDUMP, "SSL: Application data",
- appl_data);
- *out_data = appl_data;
- return 2;
- }
- wpabuf_free(appl_data);
- return 0;
- }
- static int eap_tls_process_output(struct eap_ssl_data *data, EapType eap_type,
- int peap_version, u8 id, int ret,
- struct wpabuf **out_data)
- {
- size_t len;
- u8 *flags;
- int more_fragments, length_included;
- if (data->tls_out == NULL)
- return -1;
- len = wpabuf_len(data->tls_out) - data->tls_out_pos;
- wpa_printf(MSG_DEBUG, "SSL: %lu bytes left to be sent out (of total "
- "%lu bytes)",
- (unsigned long) len,
- (unsigned long) wpabuf_len(data->tls_out));
-
- if (len > data->tls_out_limit) {
- more_fragments = 1;
- len = data->tls_out_limit;
- wpa_printf(MSG_DEBUG, "SSL: sending %lu bytes, more fragments "
- "will follow", (unsigned long) len);
- } else
- more_fragments = 0;
- length_included = data->tls_out_pos == 0 &&
- (wpabuf_len(data->tls_out) > data->tls_out_limit ||
- data->include_tls_length);
- if (!length_included &&
- eap_type == EAP_TYPE_PEAP && peap_version == 0 &&
- !tls_connection_established(data->eap->ssl_ctx, data->conn)) {
-
- length_included = 1;
- }
- *out_data = eap_tls_msg_alloc(eap_type, 1 + length_included * 4 + len,
- EAP_CODE_RESPONSE, id);
- if (*out_data == NULL)
- return -1;
- flags = wpabuf_put(*out_data, 1);
- *flags = peap_version;
- if (more_fragments)
- *flags |= EAP_TLS_FLAGS_MORE_FRAGMENTS;
- if (length_included) {
- *flags |= EAP_TLS_FLAGS_LENGTH_INCLUDED;
- wpabuf_put_be32(*out_data, wpabuf_len(data->tls_out));
- }
- wpabuf_put_data(*out_data,
- wpabuf_head_u8(data->tls_out) + data->tls_out_pos,
- len);
- data->tls_out_pos += len;
- if (!more_fragments)
- eap_peer_tls_reset_output(data);
- return ret;
- }
- int eap_peer_tls_process_helper(struct eap_sm *sm, struct eap_ssl_data *data,
- EapType eap_type, int peap_version,
- u8 id, const u8 *in_data, size_t in_len,
- struct wpabuf **out_data)
- {
- int ret = 0;
- *out_data = NULL;
- if (data->tls_out && wpabuf_len(data->tls_out) > 0 && in_len > 0) {
- wpa_printf(MSG_DEBUG, "SSL: Received non-ACK when output "
- "fragments are waiting to be sent out");
- return -1;
- }
- if (data->tls_out == NULL || wpabuf_len(data->tls_out) == 0) {
-
- int res = eap_tls_process_input(sm, data, in_data, in_len,
- out_data);
- if (res) {
-
- return res;
- }
-
- }
- if (data->tls_out == NULL) {
-
- eap_peer_tls_reset_output(data);
- return -1;
- }
- if (tls_connection_get_failed(data->ssl_ctx, data->conn)) {
-
- wpa_printf(MSG_DEBUG, "SSL: Failed - tls_out available to "
- "report error");
- ret = -1;
-
- }
- if (data->tls_out == NULL || wpabuf_len(data->tls_out) == 0) {
-
- wpa_printf(MSG_DEBUG, "SSL: No data to be sent out");
- wpabuf_free(data->tls_out);
- data->tls_out = NULL;
- return 1;
- }
-
- return eap_tls_process_output(data, eap_type, peap_version, id, ret,
- out_data);
- }
- struct wpabuf * eap_peer_tls_build_ack(u8 id, EapType eap_type,
- int peap_version)
- {
- struct wpabuf *resp;
- resp = eap_tls_msg_alloc(eap_type, 1, EAP_CODE_RESPONSE, id);
- if (resp == NULL)
- return NULL;
- wpa_printf(MSG_DEBUG, "SSL: Building ACK (type=%d id=%d ver=%d)",
- (int) eap_type, id, peap_version);
- wpabuf_put_u8(resp, peap_version);
- return resp;
- }
- int eap_peer_tls_reauth_init(struct eap_sm *sm, struct eap_ssl_data *data)
- {
- eap_peer_tls_reset_input(data);
- eap_peer_tls_reset_output(data);
- return tls_connection_shutdown(data->ssl_ctx, data->conn);
- }
- int eap_peer_tls_status(struct eap_sm *sm, struct eap_ssl_data *data,
- char *buf, size_t buflen, int verbose)
- {
- char name[128];
- int len = 0, ret;
- if (tls_get_cipher(data->ssl_ctx, data->conn, name, sizeof(name)) == 0)
- {
- ret = os_snprintf(buf + len, buflen - len,
- "EAP TLS cipher=%s\n", name);
- if (ret < 0 || (size_t) ret >= buflen - len)
- return len;
- len += ret;
- }
- return len;
- }
- const u8 * eap_peer_tls_process_init(struct eap_sm *sm,
- struct eap_ssl_data *data,
- EapType eap_type,
- struct eap_method_ret *ret,
- const struct wpabuf *reqData,
- size_t *len, u8 *flags)
- {
- const u8 *pos;
- size_t left;
- unsigned int tls_msg_len;
- if (tls_get_errors(data->ssl_ctx)) {
- wpa_printf(MSG_INFO, "SSL: TLS errors detected");
- ret->ignore = TRUE;
- return NULL;
- }
- if (eap_type == EAP_UNAUTH_TLS_TYPE)
- pos = eap_hdr_validate(EAP_VENDOR_UNAUTH_TLS,
- EAP_VENDOR_TYPE_UNAUTH_TLS, reqData,
- &left);
- else
- pos = eap_hdr_validate(EAP_VENDOR_IETF, eap_type, reqData,
- &left);
- if (pos == NULL) {
- ret->ignore = TRUE;
- return NULL;
- }
- if (left == 0) {
- wpa_printf(MSG_DEBUG, "SSL: Invalid TLS message: no Flags "
- "octet included");
- if (!sm->workaround) {
- ret->ignore = TRUE;
- return NULL;
- }
- wpa_printf(MSG_DEBUG, "SSL: Workaround - assume no Flags "
- "indicates ACK frame");
- *flags = 0;
- } else {
- *flags = *pos++;
- left--;
- }
- wpa_printf(MSG_DEBUG, "SSL: Received packet(len=%lu) - "
- "Flags 0x%02x", (unsigned long) wpabuf_len(reqData),
- *flags);
- if (*flags & EAP_TLS_FLAGS_LENGTH_INCLUDED) {
- if (left < 4) {
- wpa_printf(MSG_INFO, "SSL: Short frame with TLS "
- "length");
- ret->ignore = TRUE;
- return NULL;
- }
- tls_msg_len = WPA_GET_BE32(pos);
- wpa_printf(MSG_DEBUG, "SSL: TLS Message Length: %d",
- tls_msg_len);
- if (data->tls_in_left == 0) {
- data->tls_in_total = tls_msg_len;
- data->tls_in_left = tls_msg_len;
- wpabuf_free(data->tls_in);
- data->tls_in = NULL;
- }
- pos += 4;
- left -= 4;
- if (left > tls_msg_len) {
- wpa_printf(MSG_INFO, "SSL: TLS Message Length (%d "
- "bytes) smaller than this fragment (%d "
- "bytes)", (int) tls_msg_len, (int) left);
- ret->ignore = TRUE;
- return NULL;
- }
- }
- ret->ignore = FALSE;
- ret->methodState = METHOD_MAY_CONT;
- ret->decision = DECISION_FAIL;
- ret->allowNotifications = TRUE;
- *len = left;
- return pos;
- }
- void eap_peer_tls_reset_input(struct eap_ssl_data *data)
- {
- data->tls_in_left = data->tls_in_total = 0;
- wpabuf_free(data->tls_in);
- data->tls_in = NULL;
- }
- void eap_peer_tls_reset_output(struct eap_ssl_data *data)
- {
- data->tls_out_pos = 0;
- wpabuf_free(data->tls_out);
- data->tls_out = NULL;
- }
- int eap_peer_tls_decrypt(struct eap_sm *sm, struct eap_ssl_data *data,
- const struct wpabuf *in_data,
- struct wpabuf **in_decrypted)
- {
- const struct wpabuf *msg;
- int need_more_input;
- msg = eap_peer_tls_data_reassemble(data, in_data, &need_more_input);
- if (msg == NULL)
- return need_more_input ? 1 : -1;
- *in_decrypted = tls_connection_decrypt(data->ssl_ctx, data->conn, msg);
- eap_peer_tls_reset_input(data);
- if (*in_decrypted == NULL) {
- wpa_printf(MSG_INFO, "SSL: Failed to decrypt Phase 2 data");
- return -1;
- }
- return 0;
- }
- int eap_peer_tls_encrypt(struct eap_sm *sm, struct eap_ssl_data *data,
- EapType eap_type, int peap_version, u8 id,
- const struct wpabuf *in_data,
- struct wpabuf **out_data)
- {
- if (in_data) {
- eap_peer_tls_reset_output(data);
- data->tls_out = tls_connection_encrypt(data->ssl_ctx,
- data->conn, in_data);
- if (data->tls_out == NULL) {
- wpa_printf(MSG_INFO, "SSL: Failed to encrypt Phase 2 "
- "data (in_len=%lu)",
- (unsigned long) wpabuf_len(in_data));
- eap_peer_tls_reset_output(data);
- return -1;
- }
- }
- return eap_tls_process_output(data, eap_type, peap_version, id, 0,
- out_data);
- }
- int eap_peer_select_phase2_methods(struct eap_peer_config *config,
- const char *prefix,
- struct eap_method_type **types,
- size_t *num_types)
- {
- char *start, *pos, *buf;
- struct eap_method_type *methods = NULL, *_methods;
- u8 method;
- size_t num_methods = 0, prefix_len;
- if (config == NULL || config->phase2 == NULL)
- goto get_defaults;
- start = buf = os_strdup(config->phase2);
- if (buf == NULL)
- return -1;
- prefix_len = os_strlen(prefix);
- while (start && *start != '\0') {
- int vendor;
- pos = os_strstr(start, prefix);
- if (pos == NULL)
- break;
- if (start != pos && *(pos - 1) != ' ') {
- start = pos + prefix_len;
- continue;
- }
- start = pos + prefix_len;
- pos = os_strchr(start, ' ');
- if (pos)
- *pos++ = '\0';
- method = eap_get_phase2_type(start, &vendor);
- if (vendor == EAP_VENDOR_IETF && method == EAP_TYPE_NONE) {
- wpa_printf(MSG_ERROR, "TLS: Unsupported Phase2 EAP "
- "method '%s'", start);
- } else {
- num_methods++;
- _methods = os_realloc_array(methods, num_methods,
- sizeof(*methods));
- if (_methods == NULL) {
- os_free(methods);
- os_free(buf);
- return -1;
- }
- methods = _methods;
- methods[num_methods - 1].vendor = vendor;
- methods[num_methods - 1].method = method;
- }
- start = pos;
- }
- os_free(buf);
- get_defaults:
- if (methods == NULL)
- methods = eap_get_phase2_types(config, &num_methods);
- if (methods == NULL) {
- wpa_printf(MSG_ERROR, "TLS: No Phase2 EAP methods available");
- return -1;
- }
- wpa_hexdump(MSG_DEBUG, "TLS: Phase2 EAP types",
- (u8 *) methods,
- num_methods * sizeof(struct eap_method_type));
- *types = methods;
- *num_types = num_methods;
- return 0;
- }
- int eap_peer_tls_phase2_nak(struct eap_method_type *types, size_t num_types,
- struct eap_hdr *hdr, struct wpabuf **resp)
- {
- u8 *pos = (u8 *) (hdr + 1);
- size_t i;
-
- wpa_printf(MSG_DEBUG, "TLS: Phase 2 Request: Nak type=%d", *pos);
- wpa_hexdump(MSG_DEBUG, "TLS: Allowed Phase2 EAP types",
- (u8 *) types, num_types * sizeof(struct eap_method_type));
- *resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_NAK, num_types,
- EAP_CODE_RESPONSE, hdr->identifier);
- if (*resp == NULL)
- return -1;
- for (i = 0; i < num_types; i++) {
- if (types[i].vendor == EAP_VENDOR_IETF &&
- types[i].method < 256)
- wpabuf_put_u8(*resp, types[i].method);
- }
- eap_update_len(*resp);
- return 0;
- }
|