2 * EAP-FAST server (RFC 4851)
3 * Copyright (c) 2004-2008, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
18 #include "crypto/aes_wrap.h"
19 #include "crypto/sha1.h"
20 #include "crypto/tls.h"
21 #include "crypto/random.h"
22 #include "eap_common/eap_tlv_common.h"
23 #include "eap_common/eap_fast_common.h"
25 #include "eap_tls_common.h"
28 static void eap_fast_reset(struct eap_sm *sm, void *priv);
31 /* Private PAC-Opaque TLV types */
32 #define PAC_OPAQUE_TYPE_PAD 0
33 #define PAC_OPAQUE_TYPE_KEY 1
34 #define PAC_OPAQUE_TYPE_LIFETIME 2
35 #define PAC_OPAQUE_TYPE_IDENTITY 3
37 struct eap_fast_data {
38 struct eap_ssl_data ssl;
40 START, PHASE1, PHASE2_START, PHASE2_ID, PHASE2_METHOD,
41 CRYPTO_BINDING, REQUEST_PAC, SUCCESS, FAILURE
45 const struct eap_method *phase2_method;
50 u8 crypto_binding_nonce[32];
53 struct eap_fast_key_block_provisioning *key_block_p;
55 u8 simck[EAP_FAST_SIMCK_LEN];
56 u8 cmk[EAP_FAST_CMK_LEN];
59 u8 pac_opaque_encr[16];
64 int anon_provisioning;
65 int send_new_pac; /* server triggered re-keying of Tunnel PAC */
66 struct wpabuf *pending_phase2_resp;
67 u8 *identity; /* from PAC-Opaque */
73 int pac_key_refresh_time;
77 static int eap_fast_process_phase2_start(struct eap_sm *sm,
78 struct eap_fast_data *data);
81 static const char * eap_fast_state_txt(int state)
89 return "PHASE2_START";
93 return "PHASE2_METHOD";
95 return "CRYPTO_BINDING";
108 static void eap_fast_state(struct eap_fast_data *data, int state)
110 wpa_printf(MSG_DEBUG, "EAP-FAST: %s -> %s",
111 eap_fast_state_txt(data->state),
112 eap_fast_state_txt(state));
117 static EapType eap_fast_req_failure(struct eap_sm *sm,
118 struct eap_fast_data *data)
120 /* TODO: send Result TLV(FAILURE) */
121 eap_fast_state(data, FAILURE);
122 return EAP_TYPE_NONE;
126 static int eap_fast_session_ticket_cb(void *ctx, const u8 *ticket, size_t len,
127 const u8 *client_random,
128 const u8 *server_random,
131 struct eap_fast_data *data = ctx;
132 const u8 *pac_opaque;
133 size_t pac_opaque_len;
134 u8 *buf, *pos, *end, *pac_key = NULL;
135 os_time_t lifetime = 0;
138 size_t identity_len = 0;
140 wpa_printf(MSG_DEBUG, "EAP-FAST: SessionTicket callback");
141 wpa_hexdump(MSG_DEBUG, "EAP-FAST: SessionTicket (PAC-Opaque)",
144 if (len < 4 || WPA_GET_BE16(ticket) != PAC_TYPE_PAC_OPAQUE) {
145 wpa_printf(MSG_DEBUG, "EAP-FAST: Ignore invalid "
150 pac_opaque_len = WPA_GET_BE16(ticket + 2);
151 pac_opaque = ticket + 4;
152 if (pac_opaque_len < 8 || pac_opaque_len % 8 ||
153 pac_opaque_len > len - 4) {
154 wpa_printf(MSG_DEBUG, "EAP-FAST: Ignore invalid PAC-Opaque "
155 "(len=%lu left=%lu)",
156 (unsigned long) pac_opaque_len,
157 (unsigned long) len);
160 wpa_hexdump(MSG_DEBUG, "EAP-FAST: Received PAC-Opaque",
161 pac_opaque, pac_opaque_len);
163 buf = os_malloc(pac_opaque_len - 8);
165 wpa_printf(MSG_DEBUG, "EAP-FAST: Failed to allocate memory "
166 "for decrypting PAC-Opaque");
170 if (aes_unwrap(data->pac_opaque_encr, (pac_opaque_len - 8) / 8,
171 pac_opaque, buf) < 0) {
172 wpa_printf(MSG_DEBUG, "EAP-FAST: Failed to decrypt "
176 * This may have been caused by server changing the PAC-Opaque
177 * encryption key, so just ignore this PAC-Opaque instead of
178 * failing the authentication completely. Provisioning can now
179 * be used to provision a new PAC.
184 end = buf + pac_opaque_len - 8;
185 wpa_hexdump_key(MSG_DEBUG, "EAP-FAST: Decrypted PAC-Opaque",
189 while (pos + 1 < end) {
190 if (pos + 2 + pos[1] > end)
194 case PAC_OPAQUE_TYPE_PAD:
197 case PAC_OPAQUE_TYPE_KEY:
198 if (pos[1] != EAP_FAST_PAC_KEY_LEN) {
199 wpa_printf(MSG_DEBUG, "EAP-FAST: Invalid "
200 "PAC-Key length %d", pos[1]);
205 wpa_hexdump_key(MSG_DEBUG, "EAP-FAST: PAC-Key from "
206 "decrypted PAC-Opaque",
207 pac_key, EAP_FAST_PAC_KEY_LEN);
209 case PAC_OPAQUE_TYPE_LIFETIME:
211 wpa_printf(MSG_DEBUG, "EAP-FAST: Invalid "
212 "PAC-Key lifetime length %d",
217 lifetime = WPA_GET_BE32(pos + 2);
219 case PAC_OPAQUE_TYPE_IDENTITY:
221 identity_len = pos[1];
228 if (pac_key == NULL) {
229 wpa_printf(MSG_DEBUG, "EAP-FAST: No PAC-Key included in "
236 wpa_hexdump_ascii(MSG_DEBUG, "EAP-FAST: Identity from "
237 "PAC-Opaque", identity, identity_len);
238 os_free(data->identity);
239 data->identity = os_malloc(identity_len);
240 if (data->identity) {
241 os_memcpy(data->identity, identity, identity_len);
242 data->identity_len = identity_len;
246 if (os_get_time(&now) < 0 || lifetime <= 0 || now.sec > lifetime) {
247 wpa_printf(MSG_DEBUG, "EAP-FAST: PAC-Key not valid anymore "
248 "(lifetime=%ld now=%ld)", lifetime, now.sec);
249 data->send_new_pac = 2;
251 * Allow PAC to be used to allow a PAC update with some level
252 * of server authentication (i.e., do not fall back to full TLS
253 * handshake since we cannot be sure that the peer would be
254 * able to validate server certificate now). However, reject
255 * the authentication since the PAC was not valid anymore. Peer
256 * can connect again with the newly provisioned PAC after this.
258 } else if (lifetime - now.sec < data->pac_key_refresh_time) {
259 wpa_printf(MSG_DEBUG, "EAP-FAST: PAC-Key soft timeout; send "
260 "an update if authentication succeeds");
261 data->send_new_pac = 1;
264 eap_fast_derive_master_secret(pac_key, server_random, client_random,
273 static void eap_fast_derive_key_auth(struct eap_sm *sm,
274 struct eap_fast_data *data)
278 /* RFC 4851, Section 5.1:
279 * Extra key material after TLS key_block: session_key_seed[40]
282 sks = eap_fast_derive_key(sm->ssl_ctx, data->ssl.conn, "key expansion",
285 wpa_printf(MSG_DEBUG, "EAP-FAST: Failed to derive "
291 * RFC 4851, Section 5.2:
292 * S-IMCK[0] = session_key_seed
294 wpa_hexdump_key(MSG_DEBUG,
295 "EAP-FAST: session_key_seed (SKS = S-IMCK[0])",
296 sks, EAP_FAST_SKS_LEN);
298 os_memcpy(data->simck, sks, EAP_FAST_SIMCK_LEN);
303 static void eap_fast_derive_key_provisioning(struct eap_sm *sm,
304 struct eap_fast_data *data)
306 os_free(data->key_block_p);
307 data->key_block_p = (struct eap_fast_key_block_provisioning *)
308 eap_fast_derive_key(sm->ssl_ctx, data->ssl.conn,
310 sizeof(*data->key_block_p));
311 if (data->key_block_p == NULL) {
312 wpa_printf(MSG_DEBUG, "EAP-FAST: Failed to derive key block");
316 * RFC 4851, Section 5.2:
317 * S-IMCK[0] = session_key_seed
319 wpa_hexdump_key(MSG_DEBUG,
320 "EAP-FAST: session_key_seed (SKS = S-IMCK[0])",
321 data->key_block_p->session_key_seed,
322 sizeof(data->key_block_p->session_key_seed));
324 os_memcpy(data->simck, data->key_block_p->session_key_seed,
326 wpa_hexdump_key(MSG_DEBUG, "EAP-FAST: server_challenge",
327 data->key_block_p->server_challenge,
328 sizeof(data->key_block_p->server_challenge));
329 wpa_hexdump_key(MSG_DEBUG, "EAP-FAST: client_challenge",
330 data->key_block_p->client_challenge,
331 sizeof(data->key_block_p->client_challenge));
335 static int eap_fast_get_phase2_key(struct eap_sm *sm,
336 struct eap_fast_data *data,
337 u8 *isk, size_t isk_len)
342 os_memset(isk, 0, isk_len);
344 if (data->phase2_method == NULL || data->phase2_priv == NULL) {
345 wpa_printf(MSG_DEBUG, "EAP-FAST: Phase 2 method not "
350 if (data->phase2_method->getKey == NULL)
353 if ((key = data->phase2_method->getKey(sm, data->phase2_priv,
354 &key_len)) == NULL) {
355 wpa_printf(MSG_DEBUG, "EAP-FAST: Could not get key material "
360 if (key_len > isk_len)
363 data->phase2_method->vendor == EAP_VENDOR_IETF &&
364 data->phase2_method->method == EAP_TYPE_MSCHAPV2) {
366 * EAP-FAST uses reverse order for MS-MPPE keys when deriving
367 * MSK from EAP-MSCHAPv2. Swap the keys here to get the correct
368 * ISK for EAP-FAST cryptobinding.
370 os_memcpy(isk, key + 16, 16);
371 os_memcpy(isk + 16, key, 16);
373 os_memcpy(isk, key, key_len);
380 static int eap_fast_update_icmk(struct eap_sm *sm, struct eap_fast_data *data)
382 u8 isk[32], imck[60];
384 wpa_printf(MSG_DEBUG, "EAP-FAST: Deriving ICMK[%d] (S-IMCK and CMK)",
385 data->simck_idx + 1);
388 * RFC 4851, Section 5.2:
389 * IMCK[j] = T-PRF(S-IMCK[j-1], "Inner Methods Compound Keys",
391 * S-IMCK[j] = first 40 octets of IMCK[j]
392 * CMK[j] = last 20 octets of IMCK[j]
395 if (eap_fast_get_phase2_key(sm, data, isk, sizeof(isk)) < 0)
397 wpa_hexdump_key(MSG_MSGDUMP, "EAP-FAST: ISK[j]", isk, sizeof(isk));
398 sha1_t_prf(data->simck, EAP_FAST_SIMCK_LEN,
399 "Inner Methods Compound Keys",
400 isk, sizeof(isk), imck, sizeof(imck));
402 os_memcpy(data->simck, imck, EAP_FAST_SIMCK_LEN);
403 wpa_hexdump_key(MSG_MSGDUMP, "EAP-FAST: S-IMCK[j]",
404 data->simck, EAP_FAST_SIMCK_LEN);
405 os_memcpy(data->cmk, imck + EAP_FAST_SIMCK_LEN, EAP_FAST_CMK_LEN);
406 wpa_hexdump_key(MSG_MSGDUMP, "EAP-FAST: CMK[j]",
407 data->cmk, EAP_FAST_CMK_LEN);
413 static void * eap_fast_init(struct eap_sm *sm)
415 struct eap_fast_data *data;
417 TLS_CIPHER_ANON_DH_AES128_SHA,
418 TLS_CIPHER_AES128_SHA,
419 TLS_CIPHER_RSA_DHE_AES128_SHA,
424 data = os_zalloc(sizeof(*data));
427 data->fast_version = EAP_FAST_VERSION;
428 data->force_version = -1;
429 if (sm->user && sm->user->force_version >= 0) {
430 data->force_version = sm->user->force_version;
431 wpa_printf(MSG_DEBUG, "EAP-FAST: forcing version %d",
432 data->force_version);
433 data->fast_version = data->force_version;
437 if (eap_server_tls_ssl_init(sm, &data->ssl, 0)) {
438 wpa_printf(MSG_INFO, "EAP-FAST: Failed to initialize SSL.");
439 eap_fast_reset(sm, data);
443 if (tls_connection_set_cipher_list(sm->ssl_ctx, data->ssl.conn,
445 wpa_printf(MSG_INFO, "EAP-FAST: Failed to set TLS cipher "
447 eap_fast_reset(sm, data);
451 if (tls_connection_set_session_ticket_cb(sm->ssl_ctx, data->ssl.conn,
452 eap_fast_session_ticket_cb,
454 wpa_printf(MSG_INFO, "EAP-FAST: Failed to set SessionTicket "
456 eap_fast_reset(sm, data);
460 if (sm->pac_opaque_encr_key == NULL) {
461 wpa_printf(MSG_INFO, "EAP-FAST: No PAC-Opaque encryption key "
463 eap_fast_reset(sm, data);
466 os_memcpy(data->pac_opaque_encr, sm->pac_opaque_encr_key,
467 sizeof(data->pac_opaque_encr));
469 if (sm->eap_fast_a_id == NULL) {
470 wpa_printf(MSG_INFO, "EAP-FAST: No A-ID configured");
471 eap_fast_reset(sm, data);
474 data->srv_id = os_malloc(sm->eap_fast_a_id_len);
475 if (data->srv_id == NULL) {
476 eap_fast_reset(sm, data);
479 os_memcpy(data->srv_id, sm->eap_fast_a_id, sm->eap_fast_a_id_len);
480 data->srv_id_len = sm->eap_fast_a_id_len;
482 if (sm->eap_fast_a_id_info == NULL) {
483 wpa_printf(MSG_INFO, "EAP-FAST: No A-ID-Info configured");
484 eap_fast_reset(sm, data);
487 data->srv_id_info = os_strdup(sm->eap_fast_a_id_info);
488 if (data->srv_id_info == NULL) {
489 eap_fast_reset(sm, data);
493 /* PAC-Key lifetime in seconds (hard limit) */
494 data->pac_key_lifetime = sm->pac_key_lifetime;
497 * PAC-Key refresh time in seconds (soft limit on remaining hard
498 * limit). The server will generate a new PAC-Key when this number of
499 * seconds (or fewer) of the lifetime remains.
501 data->pac_key_refresh_time = sm->pac_key_refresh_time;
507 static void eap_fast_reset(struct eap_sm *sm, void *priv)
509 struct eap_fast_data *data = priv;
512 if (data->phase2_priv && data->phase2_method)
513 data->phase2_method->reset(sm, data->phase2_priv);
514 eap_server_tls_ssl_deinit(sm, &data->ssl);
515 os_free(data->srv_id);
516 os_free(data->srv_id_info);
517 os_free(data->key_block_p);
518 wpabuf_free(data->pending_phase2_resp);
519 os_free(data->identity);
524 static struct wpabuf * eap_fast_build_start(struct eap_sm *sm,
525 struct eap_fast_data *data, u8 id)
529 req = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_FAST,
530 1 + sizeof(struct pac_tlv_hdr) + data->srv_id_len,
531 EAP_CODE_REQUEST, id);
533 wpa_printf(MSG_ERROR, "EAP-FAST: Failed to allocate memory for"
535 eap_fast_state(data, FAILURE);
539 wpabuf_put_u8(req, EAP_TLS_FLAGS_START | data->fast_version);
541 /* RFC 4851, 4.1.1. Authority ID Data */
542 eap_fast_put_tlv(req, PAC_TYPE_A_ID, data->srv_id, data->srv_id_len);
544 eap_fast_state(data, PHASE1);
550 static int eap_fast_phase1_done(struct eap_sm *sm, struct eap_fast_data *data)
554 wpa_printf(MSG_DEBUG, "EAP-FAST: Phase1 done, starting Phase2");
556 if (tls_get_cipher(sm->ssl_ctx, data->ssl.conn, cipher, sizeof(cipher))
558 wpa_printf(MSG_DEBUG, "EAP-FAST: Failed to get cipher "
560 eap_fast_state(data, FAILURE);
563 data->anon_provisioning = os_strstr(cipher, "ADH") != NULL;
565 if (data->anon_provisioning) {
566 wpa_printf(MSG_DEBUG, "EAP-FAST: Anonymous provisioning");
567 eap_fast_derive_key_provisioning(sm, data);
569 eap_fast_derive_key_auth(sm, data);
571 eap_fast_state(data, PHASE2_START);
577 static struct wpabuf * eap_fast_build_phase2_req(struct eap_sm *sm,
578 struct eap_fast_data *data,
583 if (data->phase2_priv == NULL) {
584 wpa_printf(MSG_DEBUG, "EAP-FAST: Phase 2 method not "
588 req = data->phase2_method->buildReq(sm, data->phase2_priv, id);
592 wpa_hexdump_buf_key(MSG_MSGDUMP, "EAP-FAST: Phase 2 EAP-Request", req);
593 return eap_fast_tlv_eap_payload(req);
597 static struct wpabuf * eap_fast_build_crypto_binding(
598 struct eap_sm *sm, struct eap_fast_data *data)
601 struct eap_tlv_result_tlv *result;
602 struct eap_tlv_crypto_binding_tlv *binding;
604 buf = wpabuf_alloc(2 * sizeof(*result) + sizeof(*binding));
608 if (data->send_new_pac || data->anon_provisioning ||
610 data->final_result = 0;
612 data->final_result = 1;
614 if (!data->final_result || data->eap_seq > 1) {
615 /* Intermediate-Result */
616 wpa_printf(MSG_DEBUG, "EAP-FAST: Add Intermediate-Result TLV "
618 result = wpabuf_put(buf, sizeof(*result));
619 result->tlv_type = host_to_be16(
620 EAP_TLV_TYPE_MANDATORY |
621 EAP_TLV_INTERMEDIATE_RESULT_TLV);
622 result->length = host_to_be16(2);
623 result->status = host_to_be16(EAP_TLV_RESULT_SUCCESS);
626 if (data->final_result) {
628 wpa_printf(MSG_DEBUG, "EAP-FAST: Add Result TLV "
630 result = wpabuf_put(buf, sizeof(*result));
631 result->tlv_type = host_to_be16(EAP_TLV_TYPE_MANDATORY |
633 result->length = host_to_be16(2);
634 result->status = host_to_be16(EAP_TLV_RESULT_SUCCESS);
637 /* Crypto-Binding TLV */
638 binding = wpabuf_put(buf, sizeof(*binding));
639 binding->tlv_type = host_to_be16(EAP_TLV_TYPE_MANDATORY |
640 EAP_TLV_CRYPTO_BINDING_TLV);
641 binding->length = host_to_be16(sizeof(*binding) -
642 sizeof(struct eap_tlv_hdr));
643 binding->version = EAP_FAST_VERSION;
644 binding->received_version = data->peer_version;
645 binding->subtype = EAP_TLV_CRYPTO_BINDING_SUBTYPE_REQUEST;
646 if (random_get_bytes(binding->nonce, sizeof(binding->nonce)) < 0) {
652 * RFC 4851, Section 4.2.8:
653 * The nonce in a request MUST have its least significant bit set to 0.
655 binding->nonce[sizeof(binding->nonce) - 1] &= ~0x01;
657 os_memcpy(data->crypto_binding_nonce, binding->nonce,
658 sizeof(binding->nonce));
661 * RFC 4851, Section 5.3:
663 * Compound-MAC = HMAC-SHA1( CMK, Crypto-Binding TLV )
666 hmac_sha1(data->cmk, EAP_FAST_CMK_LEN,
667 (u8 *) binding, sizeof(*binding),
668 binding->compound_mac);
670 wpa_printf(MSG_DEBUG, "EAP-FAST: Add Crypto-Binding TLV: Version %d "
671 "Received Version %d SubType %d",
672 binding->version, binding->received_version,
674 wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: NONCE",
675 binding->nonce, sizeof(binding->nonce));
676 wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: Compound MAC",
677 binding->compound_mac, sizeof(binding->compound_mac));
683 static struct wpabuf * eap_fast_build_pac(struct eap_sm *sm,
684 struct eap_fast_data *data)
686 u8 pac_key[EAP_FAST_PAC_KEY_LEN];
687 u8 *pac_buf, *pac_opaque;
690 size_t buf_len, srv_id_info_len, pac_len;
691 struct eap_tlv_hdr *pac_tlv;
692 struct pac_tlv_hdr *pac_info;
693 struct eap_tlv_result_tlv *result;
696 if (random_get_bytes(pac_key, EAP_FAST_PAC_KEY_LEN) < 0 ||
697 os_get_time(&now) < 0)
699 wpa_hexdump_key(MSG_DEBUG, "EAP-FAST: Generated PAC-Key",
700 pac_key, EAP_FAST_PAC_KEY_LEN);
702 pac_len = (2 + EAP_FAST_PAC_KEY_LEN) + (2 + 4) +
703 (2 + sm->identity_len) + 8;
704 pac_buf = os_malloc(pac_len);
708 srv_id_info_len = os_strlen(data->srv_id_info);
711 *pos++ = PAC_OPAQUE_TYPE_KEY;
712 *pos++ = EAP_FAST_PAC_KEY_LEN;
713 os_memcpy(pos, pac_key, EAP_FAST_PAC_KEY_LEN);
714 pos += EAP_FAST_PAC_KEY_LEN;
716 *pos++ = PAC_OPAQUE_TYPE_LIFETIME;
718 WPA_PUT_BE32(pos, now.sec + data->pac_key_lifetime);
722 *pos++ = PAC_OPAQUE_TYPE_IDENTITY;
723 *pos++ = sm->identity_len;
724 os_memcpy(pos, sm->identity, sm->identity_len);
725 pos += sm->identity_len;
728 pac_len = pos - pac_buf;
729 while (pac_len % 8) {
730 *pos++ = PAC_OPAQUE_TYPE_PAD;
734 pac_opaque = os_malloc(pac_len + 8);
735 if (pac_opaque == NULL) {
739 if (aes_wrap(data->pac_opaque_encr, pac_len / 8, pac_buf,
748 wpa_hexdump(MSG_DEBUG, "EAP-FAST: PAC-Opaque",
749 pac_opaque, pac_len);
751 buf_len = sizeof(*pac_tlv) +
752 sizeof(struct pac_tlv_hdr) + EAP_FAST_PAC_KEY_LEN +
753 sizeof(struct pac_tlv_hdr) + pac_len +
754 data->srv_id_len + srv_id_info_len + 100 + sizeof(*result);
755 buf = wpabuf_alloc(buf_len);
762 wpa_printf(MSG_DEBUG, "EAP-FAST: Add Result TLV (status=SUCCESS)");
763 result = wpabuf_put(buf, sizeof(*result));
764 WPA_PUT_BE16((u8 *) &result->tlv_type,
765 EAP_TLV_TYPE_MANDATORY | EAP_TLV_RESULT_TLV);
766 WPA_PUT_BE16((u8 *) &result->length, 2);
767 WPA_PUT_BE16((u8 *) &result->status, EAP_TLV_RESULT_SUCCESS);
770 wpa_printf(MSG_DEBUG, "EAP-FAST: Add PAC TLV");
771 pac_tlv = wpabuf_put(buf, sizeof(*pac_tlv));
772 pac_tlv->tlv_type = host_to_be16(EAP_TLV_TYPE_MANDATORY |
776 eap_fast_put_tlv(buf, PAC_TYPE_PAC_KEY, pac_key, EAP_FAST_PAC_KEY_LEN);
779 eap_fast_put_tlv(buf, PAC_TYPE_PAC_OPAQUE, pac_opaque, pac_len);
783 pac_info = wpabuf_put(buf, sizeof(*pac_info));
784 pac_info->type = host_to_be16(PAC_TYPE_PAC_INFO);
786 /* PAC-Lifetime (inside PAC-Info) */
787 eap_fast_put_tlv_hdr(buf, PAC_TYPE_CRED_LIFETIME, 4);
788 wpabuf_put_be32(buf, now.sec + data->pac_key_lifetime);
790 /* A-ID (inside PAC-Info) */
791 eap_fast_put_tlv(buf, PAC_TYPE_A_ID, data->srv_id, data->srv_id_len);
793 /* Note: headers may be misaligned after A-ID */
796 eap_fast_put_tlv(buf, PAC_TYPE_I_ID, sm->identity,
800 /* A-ID-Info (inside PAC-Info) */
801 eap_fast_put_tlv(buf, PAC_TYPE_A_ID_INFO, data->srv_id_info,
804 /* PAC-Type (inside PAC-Info) */
805 eap_fast_put_tlv_hdr(buf, PAC_TYPE_PAC_TYPE, 2);
806 wpabuf_put_be16(buf, PAC_TYPE_TUNNEL_PAC);
808 /* Update PAC-Info and PAC TLV Length fields */
809 pos = wpabuf_put(buf, 0);
810 pac_info->len = host_to_be16(pos - (u8 *) (pac_info + 1));
811 pac_tlv->length = host_to_be16(pos - (u8 *) (pac_tlv + 1));
817 static int eap_fast_encrypt_phase2(struct eap_sm *sm,
818 struct eap_fast_data *data,
819 struct wpabuf *plain, int piggyback)
823 wpa_hexdump_buf_key(MSG_DEBUG, "EAP-FAST: Encrypting Phase 2 TLVs",
825 encr = eap_server_tls_encrypt(sm, &data->ssl, plain);
828 if (data->ssl.tls_out && piggyback) {
829 wpa_printf(MSG_DEBUG, "EAP-FAST: Piggyback Phase 2 data "
830 "(len=%d) with last Phase 1 Message (len=%d "
832 (int) wpabuf_len(encr),
833 (int) wpabuf_len(data->ssl.tls_out),
834 (int) data->ssl.tls_out_pos);
835 if (wpabuf_resize(&data->ssl.tls_out, wpabuf_len(encr)) < 0) {
836 wpa_printf(MSG_WARNING, "EAP-FAST: Failed to resize "
841 wpabuf_put_buf(data->ssl.tls_out, encr);
844 wpabuf_free(data->ssl.tls_out);
845 data->ssl.tls_out_pos = 0;
846 data->ssl.tls_out = encr;
853 static struct wpabuf * eap_fast_buildReq(struct eap_sm *sm, void *priv, u8 id)
855 struct eap_fast_data *data = priv;
856 struct wpabuf *req = NULL;
859 if (data->ssl.state == FRAG_ACK) {
860 return eap_server_tls_build_ack(id, EAP_TYPE_FAST,
864 if (data->ssl.state == WAIT_FRAG_ACK) {
865 return eap_server_tls_build_msg(&data->ssl, EAP_TYPE_FAST,
866 data->fast_version, id);
869 switch (data->state) {
871 return eap_fast_build_start(sm, data, id);
873 if (tls_connection_established(sm->ssl_ctx, data->ssl.conn)) {
874 if (eap_fast_phase1_done(sm, data) < 0)
876 if (data->state == PHASE2_START) {
878 * Try to generate Phase 2 data to piggyback
879 * with the end of Phase 1 to avoid extra
882 wpa_printf(MSG_DEBUG, "EAP-FAST: Try to start "
884 if (eap_fast_process_phase2_start(sm, data))
886 req = eap_fast_build_phase2_req(sm, data, id);
893 req = eap_fast_build_phase2_req(sm, data, id);
896 req = eap_fast_build_crypto_binding(sm, data);
897 if (data->phase2_method) {
899 * Include the start of the next EAP method in the
900 * sequence in the same message with Crypto-Binding to
904 eap = eap_fast_build_phase2_req(sm, data, id);
905 req = wpabuf_concat(req, eap);
906 eap_fast_state(data, PHASE2_METHOD);
910 req = eap_fast_build_pac(sm, data);
913 wpa_printf(MSG_DEBUG, "EAP-FAST: %s - unexpected state %d",
914 __func__, data->state);
919 eap_fast_encrypt_phase2(sm, data, req, piggyback) < 0)
922 return eap_server_tls_build_msg(&data->ssl, EAP_TYPE_FAST,
923 data->fast_version, id);
927 static Boolean eap_fast_check(struct eap_sm *sm, void *priv,
928 struct wpabuf *respData)
933 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_FAST, respData, &len);
934 if (pos == NULL || len < 1) {
935 wpa_printf(MSG_INFO, "EAP-FAST: Invalid frame");
943 static int eap_fast_phase2_init(struct eap_sm *sm, struct eap_fast_data *data,
946 if (data->phase2_priv && data->phase2_method) {
947 data->phase2_method->reset(sm, data->phase2_priv);
948 data->phase2_method = NULL;
949 data->phase2_priv = NULL;
951 data->phase2_method = eap_server_get_eap_method(EAP_VENDOR_IETF,
953 if (!data->phase2_method)
956 if (data->key_block_p) {
957 sm->auth_challenge = data->key_block_p->server_challenge;
958 sm->peer_challenge = data->key_block_p->client_challenge;
961 data->phase2_priv = data->phase2_method->init(sm);
963 sm->auth_challenge = NULL;
964 sm->peer_challenge = NULL;
966 return data->phase2_priv == NULL ? -1 : 0;
970 static void eap_fast_process_phase2_response(struct eap_sm *sm,
971 struct eap_fast_data *data,
972 u8 *in_data, size_t in_len)
974 u8 next_type = EAP_TYPE_NONE;
979 const struct eap_method *m = data->phase2_method;
980 void *priv = data->phase2_priv;
983 wpa_printf(MSG_DEBUG, "EAP-FAST: %s - Phase2 not "
984 "initialized?!", __func__);
988 hdr = (struct eap_hdr *) in_data;
989 pos = (u8 *) (hdr + 1);
991 if (in_len > sizeof(*hdr) && *pos == EAP_TYPE_NAK) {
992 left = in_len - sizeof(*hdr);
993 wpa_hexdump(MSG_DEBUG, "EAP-FAST: Phase2 type Nak'ed; "
994 "allowed types", pos + 1, left - 1);
995 #ifdef EAP_SERVER_TNC
996 if (m && m->vendor == EAP_VENDOR_IETF &&
997 m->method == EAP_TYPE_TNC) {
998 wpa_printf(MSG_DEBUG, "EAP-FAST: Peer Nak'ed required "
1000 next_type = eap_fast_req_failure(sm, data);
1001 eap_fast_phase2_init(sm, data, next_type);
1004 #endif /* EAP_SERVER_TNC */
1005 eap_sm_process_nak(sm, pos + 1, left - 1);
1006 if (sm->user && sm->user_eap_method_index < EAP_MAX_METHODS &&
1007 sm->user->methods[sm->user_eap_method_index].method !=
1009 next_type = sm->user->methods[
1010 sm->user_eap_method_index++].method;
1011 wpa_printf(MSG_DEBUG, "EAP-FAST: try EAP type %d",
1014 next_type = eap_fast_req_failure(sm, data);
1016 eap_fast_phase2_init(sm, data, next_type);
1020 wpabuf_set(&buf, in_data, in_len);
1022 if (m->check(sm, priv, &buf)) {
1023 wpa_printf(MSG_DEBUG, "EAP-FAST: Phase2 check() asked to "
1024 "ignore the packet");
1025 next_type = eap_fast_req_failure(sm, data);
1029 m->process(sm, priv, &buf);
1031 if (!m->isDone(sm, priv))
1034 if (!m->isSuccess(sm, priv)) {
1035 wpa_printf(MSG_DEBUG, "EAP-FAST: Phase2 method failed");
1036 next_type = eap_fast_req_failure(sm, data);
1037 eap_fast_phase2_init(sm, data, next_type);
1041 switch (data->state) {
1043 if (eap_user_get(sm, sm->identity, sm->identity_len, 1) != 0) {
1044 wpa_hexdump_ascii(MSG_DEBUG, "EAP-FAST: Phase2 "
1045 "Identity not found in the user "
1047 sm->identity, sm->identity_len);
1048 next_type = eap_fast_req_failure(sm, data);
1052 eap_fast_state(data, PHASE2_METHOD);
1053 if (data->anon_provisioning) {
1055 * Only EAP-MSCHAPv2 is allowed for anonymous
1058 next_type = EAP_TYPE_MSCHAPV2;
1059 sm->user_eap_method_index = 0;
1061 next_type = sm->user->methods[0].method;
1062 sm->user_eap_method_index = 1;
1064 wpa_printf(MSG_DEBUG, "EAP-FAST: try EAP type %d", next_type);
1067 case CRYPTO_BINDING:
1068 eap_fast_update_icmk(sm, data);
1069 eap_fast_state(data, CRYPTO_BINDING);
1071 next_type = EAP_TYPE_NONE;
1072 #ifdef EAP_SERVER_TNC
1073 if (sm->tnc && !data->tnc_started) {
1074 wpa_printf(MSG_DEBUG, "EAP-FAST: Initialize TNC");
1075 next_type = EAP_TYPE_TNC;
1076 data->tnc_started = 1;
1078 #endif /* EAP_SERVER_TNC */
1083 wpa_printf(MSG_DEBUG, "EAP-FAST: %s - unexpected state %d",
1084 __func__, data->state);
1088 eap_fast_phase2_init(sm, data, next_type);
1092 static void eap_fast_process_phase2_eap(struct eap_sm *sm,
1093 struct eap_fast_data *data,
1094 u8 *in_data, size_t in_len)
1096 struct eap_hdr *hdr;
1099 hdr = (struct eap_hdr *) in_data;
1100 if (in_len < (int) sizeof(*hdr)) {
1101 wpa_printf(MSG_INFO, "EAP-FAST: Too short Phase 2 "
1102 "EAP frame (len=%lu)", (unsigned long) in_len);
1103 eap_fast_req_failure(sm, data);
1106 len = be_to_host16(hdr->length);
1108 wpa_printf(MSG_INFO, "EAP-FAST: Length mismatch in "
1109 "Phase 2 EAP frame (len=%lu hdr->length=%lu)",
1110 (unsigned long) in_len, (unsigned long) len);
1111 eap_fast_req_failure(sm, data);
1114 wpa_printf(MSG_DEBUG, "EAP-FAST: Received Phase 2: code=%d "
1115 "identifier=%d length=%lu", hdr->code, hdr->identifier,
1116 (unsigned long) len);
1117 switch (hdr->code) {
1118 case EAP_CODE_RESPONSE:
1119 eap_fast_process_phase2_response(sm, data, (u8 *) hdr, len);
1122 wpa_printf(MSG_INFO, "EAP-FAST: Unexpected code=%d in "
1123 "Phase 2 EAP header", hdr->code);
1129 static int eap_fast_parse_tlvs(struct wpabuf *data,
1130 struct eap_fast_tlv_parse *tlv)
1132 int mandatory, tlv_type, len, res;
1135 os_memset(tlv, 0, sizeof(*tlv));
1137 pos = wpabuf_mhead(data);
1138 end = pos + wpabuf_len(data);
1139 while (pos + 4 < end) {
1140 mandatory = pos[0] & 0x80;
1141 tlv_type = WPA_GET_BE16(pos) & 0x3fff;
1143 len = WPA_GET_BE16(pos);
1145 if (pos + len > end) {
1146 wpa_printf(MSG_INFO, "EAP-FAST: TLV overflow");
1149 wpa_printf(MSG_DEBUG, "EAP-FAST: Received Phase 2: "
1150 "TLV type %d length %d%s",
1151 tlv_type, len, mandatory ? " (mandatory)" : "");
1153 res = eap_fast_parse_tlv(tlv, tlv_type, pos, len);
1158 wpa_printf(MSG_DEBUG, "EAP-FAST: Nak unknown "
1159 "mandatory TLV type %d", tlv_type);
1160 /* TODO: generate Nak TLV */
1163 wpa_printf(MSG_DEBUG, "EAP-FAST: Ignored "
1164 "unknown optional TLV type %d",
1176 static int eap_fast_validate_crypto_binding(
1177 struct eap_fast_data *data, struct eap_tlv_crypto_binding_tlv *b,
1180 u8 cmac[SHA1_MAC_LEN];
1182 wpa_printf(MSG_DEBUG, "EAP-FAST: Reply Crypto-Binding TLV: "
1183 "Version %d Received Version %d SubType %d",
1184 b->version, b->received_version, b->subtype);
1185 wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: NONCE",
1186 b->nonce, sizeof(b->nonce));
1187 wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: Compound MAC",
1188 b->compound_mac, sizeof(b->compound_mac));
1190 if (b->version != EAP_FAST_VERSION ||
1191 b->received_version != EAP_FAST_VERSION) {
1192 wpa_printf(MSG_DEBUG, "EAP-FAST: Unexpected version "
1193 "in Crypto-Binding: version %d "
1194 "received_version %d", b->version,
1195 b->received_version);
1199 if (b->subtype != EAP_TLV_CRYPTO_BINDING_SUBTYPE_RESPONSE) {
1200 wpa_printf(MSG_DEBUG, "EAP-FAST: Unexpected subtype in "
1201 "Crypto-Binding: %d", b->subtype);
1205 if (os_memcmp(data->crypto_binding_nonce, b->nonce, 31) != 0 ||
1206 (data->crypto_binding_nonce[31] | 1) != b->nonce[31]) {
1207 wpa_printf(MSG_DEBUG, "EAP-FAST: Invalid nonce in "
1212 os_memcpy(cmac, b->compound_mac, sizeof(cmac));
1213 os_memset(b->compound_mac, 0, sizeof(cmac));
1214 wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: Crypto-Binding TLV for "
1215 "Compound MAC calculation",
1216 (u8 *) b, bind_len);
1217 hmac_sha1(data->cmk, EAP_FAST_CMK_LEN, (u8 *) b, bind_len,
1219 if (os_memcmp(cmac, b->compound_mac, sizeof(cmac)) != 0) {
1220 wpa_hexdump(MSG_MSGDUMP,
1221 "EAP-FAST: Calculated Compound MAC",
1222 b->compound_mac, sizeof(cmac));
1223 wpa_printf(MSG_INFO, "EAP-FAST: Compound MAC did not "
1232 static int eap_fast_pac_type(u8 *pac, size_t len, u16 type)
1234 struct eap_tlv_pac_type_tlv *tlv;
1236 if (pac == NULL || len != sizeof(*tlv))
1239 tlv = (struct eap_tlv_pac_type_tlv *) pac;
1241 return be_to_host16(tlv->tlv_type) == PAC_TYPE_PAC_TYPE &&
1242 be_to_host16(tlv->length) == 2 &&
1243 be_to_host16(tlv->pac_type) == type;
1247 static void eap_fast_process_phase2_tlvs(struct eap_sm *sm,
1248 struct eap_fast_data *data,
1249 struct wpabuf *in_data)
1251 struct eap_fast_tlv_parse tlv;
1252 int check_crypto_binding = data->state == CRYPTO_BINDING;
1254 if (eap_fast_parse_tlvs(in_data, &tlv) < 0) {
1255 wpa_printf(MSG_DEBUG, "EAP-FAST: Failed to parse received "
1260 if (tlv.result == EAP_TLV_RESULT_FAILURE) {
1261 wpa_printf(MSG_DEBUG, "EAP-FAST: Result TLV indicated "
1263 eap_fast_state(data, FAILURE);
1267 if (data->state == REQUEST_PAC) {
1269 if (tlv.pac == NULL || tlv.pac_len < 6) {
1270 wpa_printf(MSG_DEBUG, "EAP-FAST: No PAC "
1271 "Acknowledgement received");
1272 eap_fast_state(data, FAILURE);
1276 type = WPA_GET_BE16(tlv.pac);
1277 len = WPA_GET_BE16(tlv.pac + 2);
1278 res = WPA_GET_BE16(tlv.pac + 4);
1280 if (type != PAC_TYPE_PAC_ACKNOWLEDGEMENT || len != 2 ||
1281 res != EAP_TLV_RESULT_SUCCESS) {
1282 wpa_printf(MSG_DEBUG, "EAP-FAST: PAC TLV did not "
1283 "contain acknowledgement");
1284 eap_fast_state(data, FAILURE);
1288 wpa_printf(MSG_DEBUG, "EAP-FAST: PAC-Acknowledgement received "
1289 "- PAC provisioning succeeded");
1290 eap_fast_state(data, (data->anon_provisioning ||
1291 data->send_new_pac == 2) ?
1296 if (check_crypto_binding) {
1297 if (tlv.crypto_binding == NULL) {
1298 wpa_printf(MSG_DEBUG, "EAP-FAST: No Crypto-Binding "
1300 eap_fast_state(data, FAILURE);
1304 if (data->final_result &&
1305 tlv.result != EAP_TLV_RESULT_SUCCESS) {
1306 wpa_printf(MSG_DEBUG, "EAP-FAST: Crypto-Binding TLV "
1307 "without Success Result");
1308 eap_fast_state(data, FAILURE);
1312 if (!data->final_result &&
1313 tlv.iresult != EAP_TLV_RESULT_SUCCESS) {
1314 wpa_printf(MSG_DEBUG, "EAP-FAST: Crypto-Binding TLV "
1315 "without intermediate Success Result");
1316 eap_fast_state(data, FAILURE);
1320 if (eap_fast_validate_crypto_binding(data, tlv.crypto_binding,
1321 tlv.crypto_binding_len)) {
1322 eap_fast_state(data, FAILURE);
1326 wpa_printf(MSG_DEBUG, "EAP-FAST: Valid Crypto-Binding TLV "
1328 if (data->final_result) {
1329 wpa_printf(MSG_DEBUG, "EAP-FAST: Authentication "
1330 "completed successfully");
1333 if (data->anon_provisioning &&
1334 sm->eap_fast_prov != ANON_PROV &&
1335 sm->eap_fast_prov != BOTH_PROV) {
1336 wpa_printf(MSG_DEBUG, "EAP-FAST: Client is trying to "
1337 "use unauthenticated provisioning which is "
1339 eap_fast_state(data, FAILURE);
1343 if (sm->eap_fast_prov != AUTH_PROV &&
1344 sm->eap_fast_prov != BOTH_PROV &&
1345 tlv.request_action == EAP_TLV_ACTION_PROCESS_TLV &&
1346 eap_fast_pac_type(tlv.pac, tlv.pac_len,
1347 PAC_TYPE_TUNNEL_PAC)) {
1348 wpa_printf(MSG_DEBUG, "EAP-FAST: Client is trying to "
1349 "use authenticated provisioning which is "
1351 eap_fast_state(data, FAILURE);
1355 if (data->anon_provisioning ||
1356 (tlv.request_action == EAP_TLV_ACTION_PROCESS_TLV &&
1357 eap_fast_pac_type(tlv.pac, tlv.pac_len,
1358 PAC_TYPE_TUNNEL_PAC))) {
1359 wpa_printf(MSG_DEBUG, "EAP-FAST: Requested a new "
1361 eap_fast_state(data, REQUEST_PAC);
1362 } else if (data->send_new_pac) {
1363 wpa_printf(MSG_DEBUG, "EAP-FAST: Server triggered "
1364 "re-keying of Tunnel PAC");
1365 eap_fast_state(data, REQUEST_PAC);
1366 } else if (data->final_result)
1367 eap_fast_state(data, SUCCESS);
1370 if (tlv.eap_payload_tlv) {
1371 eap_fast_process_phase2_eap(sm, data, tlv.eap_payload_tlv,
1372 tlv.eap_payload_tlv_len);
1377 static void eap_fast_process_phase2(struct eap_sm *sm,
1378 struct eap_fast_data *data,
1379 struct wpabuf *in_buf)
1381 struct wpabuf *in_decrypted;
1383 wpa_printf(MSG_DEBUG, "EAP-FAST: Received %lu bytes encrypted data for"
1384 " Phase 2", (unsigned long) wpabuf_len(in_buf));
1386 if (data->pending_phase2_resp) {
1387 wpa_printf(MSG_DEBUG, "EAP-PEAP: Pending Phase 2 response - "
1388 "skip decryption and use old data");
1389 eap_fast_process_phase2_tlvs(sm, data,
1390 data->pending_phase2_resp);
1391 wpabuf_free(data->pending_phase2_resp);
1392 data->pending_phase2_resp = NULL;
1396 in_decrypted = tls_connection_decrypt(sm->ssl_ctx, data->ssl.conn,
1398 if (in_decrypted == NULL) {
1399 wpa_printf(MSG_INFO, "EAP-FAST: Failed to decrypt Phase 2 "
1401 eap_fast_state(data, FAILURE);
1405 wpa_hexdump_buf_key(MSG_DEBUG, "EAP-FAST: Decrypted Phase 2 TLVs",
1408 eap_fast_process_phase2_tlvs(sm, data, in_decrypted);
1410 if (sm->method_pending == METHOD_PENDING_WAIT) {
1411 wpa_printf(MSG_DEBUG, "EAP-FAST: Phase2 method is in "
1412 "pending wait state - save decrypted response");
1413 wpabuf_free(data->pending_phase2_resp);
1414 data->pending_phase2_resp = in_decrypted;
1418 wpabuf_free(in_decrypted);
1422 static int eap_fast_process_version(struct eap_sm *sm, void *priv,
1425 struct eap_fast_data *data = priv;
1427 data->peer_version = peer_version;
1429 if (data->force_version >= 0 && peer_version != data->force_version) {
1430 wpa_printf(MSG_INFO, "EAP-FAST: peer did not select the forced"
1431 " version (forced=%d peer=%d) - reject",
1432 data->force_version, peer_version);
1436 if (peer_version < data->fast_version) {
1437 wpa_printf(MSG_DEBUG, "EAP-FAST: peer ver=%d, own ver=%d; "
1439 peer_version, data->fast_version, peer_version);
1440 data->fast_version = peer_version;
1447 static int eap_fast_process_phase1(struct eap_sm *sm,
1448 struct eap_fast_data *data)
1450 if (eap_server_tls_phase1(sm, &data->ssl) < 0) {
1451 wpa_printf(MSG_INFO, "EAP-FAST: TLS processing failed");
1452 eap_fast_state(data, FAILURE);
1456 if (!tls_connection_established(sm->ssl_ctx, data->ssl.conn) ||
1457 wpabuf_len(data->ssl.tls_out) > 0)
1461 * Phase 1 was completed with the received message (e.g., when using
1462 * abbreviated handshake), so Phase 2 can be started immediately
1463 * without having to send through an empty message to the peer.
1466 return eap_fast_phase1_done(sm, data);
1470 static int eap_fast_process_phase2_start(struct eap_sm *sm,
1471 struct eap_fast_data *data)
1475 if (data->identity) {
1476 os_free(sm->identity);
1477 sm->identity = data->identity;
1478 data->identity = NULL;
1479 sm->identity_len = data->identity_len;
1480 data->identity_len = 0;
1481 sm->require_identity_match = 1;
1482 if (eap_user_get(sm, sm->identity, sm->identity_len, 1) != 0) {
1483 wpa_hexdump_ascii(MSG_DEBUG, "EAP-FAST: "
1484 "Phase2 Identity not found "
1485 "in the user database",
1486 sm->identity, sm->identity_len);
1487 next_type = eap_fast_req_failure(sm, data);
1489 wpa_printf(MSG_DEBUG, "EAP-FAST: Identity already "
1490 "known - skip Phase 2 Identity Request");
1491 next_type = sm->user->methods[0].method;
1492 sm->user_eap_method_index = 1;
1495 eap_fast_state(data, PHASE2_METHOD);
1497 eap_fast_state(data, PHASE2_ID);
1498 next_type = EAP_TYPE_IDENTITY;
1501 return eap_fast_phase2_init(sm, data, next_type);
1505 static void eap_fast_process_msg(struct eap_sm *sm, void *priv,
1506 const struct wpabuf *respData)
1508 struct eap_fast_data *data = priv;
1510 switch (data->state) {
1512 if (eap_fast_process_phase1(sm, data))
1515 /* fall through to PHASE2_START */
1517 eap_fast_process_phase2_start(sm, data);
1521 case CRYPTO_BINDING:
1523 eap_fast_process_phase2(sm, data, data->ssl.tls_in);
1526 wpa_printf(MSG_DEBUG, "EAP-FAST: Unexpected state %d in %s",
1527 data->state, __func__);
1533 static void eap_fast_process(struct eap_sm *sm, void *priv,
1534 struct wpabuf *respData)
1536 struct eap_fast_data *data = priv;
1537 if (eap_server_tls_process(sm, &data->ssl, respData, data,
1538 EAP_TYPE_FAST, eap_fast_process_version,
1539 eap_fast_process_msg) < 0)
1540 eap_fast_state(data, FAILURE);
1544 static Boolean eap_fast_isDone(struct eap_sm *sm, void *priv)
1546 struct eap_fast_data *data = priv;
1547 return data->state == SUCCESS || data->state == FAILURE;
1551 static u8 * eap_fast_getKey(struct eap_sm *sm, void *priv, size_t *len)
1553 struct eap_fast_data *data = priv;
1556 if (data->state != SUCCESS)
1559 eapKeyData = os_malloc(EAP_FAST_KEY_LEN);
1560 if (eapKeyData == NULL)
1563 eap_fast_derive_eap_msk(data->simck, eapKeyData);
1564 *len = EAP_FAST_KEY_LEN;
1570 static u8 * eap_fast_get_emsk(struct eap_sm *sm, void *priv, size_t *len)
1572 struct eap_fast_data *data = priv;
1575 if (data->state != SUCCESS)
1578 eapKeyData = os_malloc(EAP_EMSK_LEN);
1579 if (eapKeyData == NULL)
1582 eap_fast_derive_eap_emsk(data->simck, eapKeyData);
1583 *len = EAP_EMSK_LEN;
1589 static Boolean eap_fast_isSuccess(struct eap_sm *sm, void *priv)
1591 struct eap_fast_data *data = priv;
1592 return data->state == SUCCESS;
1596 int eap_server_fast_register(void)
1598 struct eap_method *eap;
1601 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
1602 EAP_VENDOR_IETF, EAP_TYPE_FAST, "FAST");
1606 eap->init = eap_fast_init;
1607 eap->reset = eap_fast_reset;
1608 eap->buildReq = eap_fast_buildReq;
1609 eap->check = eap_fast_check;
1610 eap->process = eap_fast_process;
1611 eap->isDone = eap_fast_isDone;
1612 eap->getKey = eap_fast_getKey;
1613 eap->get_emsk = eap_fast_get_emsk;
1614 eap->isSuccess = eap_fast_isSuccess;
1616 ret = eap_server_method_register(eap);
1618 eap_server_method_free(eap);