123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868 |
- /*
- * EAP peer/server: EAP-SIM/AKA shared routines
- * Copyright (c) 2004-2008, Jouni Malinen <j@w1.fi>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * Alternatively, this software may be distributed under the terms of BSD
- * license.
- *
- * See README and COPYING for more details.
- */
- #include "includes.h"
- #include "common.h"
- #include "eap_common/eap_defs.h"
- #include "sha1.h"
- #include "crypto.h"
- #include "aes_wrap.h"
- #include "wpabuf.h"
- #include "eap_common/eap_sim_common.h"
- static int eap_sim_prf(const u8 *key, u8 *x, size_t xlen)
- {
- return fips186_2_prf(key, EAP_SIM_MK_LEN, x, xlen);
- }
- void eap_sim_derive_mk(const u8 *identity, size_t identity_len,
- const u8 *nonce_mt, u16 selected_version,
- const u8 *ver_list, size_t ver_list_len,
- int num_chal, const u8 *kc, u8 *mk)
- {
- u8 sel_ver[2];
- const unsigned char *addr[5];
- size_t len[5];
- addr[0] = identity;
- len[0] = identity_len;
- addr[1] = kc;
- len[1] = num_chal * EAP_SIM_KC_LEN;
- addr[2] = nonce_mt;
- len[2] = EAP_SIM_NONCE_MT_LEN;
- addr[3] = ver_list;
- len[3] = ver_list_len;
- addr[4] = sel_ver;
- len[4] = 2;
- WPA_PUT_BE16(sel_ver, selected_version);
- /* MK = SHA1(Identity|n*Kc|NONCE_MT|Version List|Selected Version) */
- sha1_vector(5, addr, len, mk);
- wpa_hexdump_key(MSG_DEBUG, "EAP-SIM: MK", mk, EAP_SIM_MK_LEN);
- }
- void eap_aka_derive_mk(const u8 *identity, size_t identity_len,
- const u8 *ik, const u8 *ck, u8 *mk)
- {
- const u8 *addr[3];
- size_t len[3];
- addr[0] = identity;
- len[0] = identity_len;
- addr[1] = ik;
- len[1] = EAP_AKA_IK_LEN;
- addr[2] = ck;
- len[2] = EAP_AKA_CK_LEN;
- /* MK = SHA1(Identity|IK|CK) */
- sha1_vector(3, addr, len, mk);
- wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: IK", ik, EAP_AKA_IK_LEN);
- wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: CK", ck, EAP_AKA_CK_LEN);
- wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: MK", mk, EAP_SIM_MK_LEN);
- }
- int eap_sim_derive_keys(const u8 *mk, u8 *k_encr, u8 *k_aut, u8 *msk, u8 *emsk)
- {
- u8 buf[EAP_SIM_K_ENCR_LEN + EAP_SIM_K_AUT_LEN +
- EAP_SIM_KEYING_DATA_LEN + EAP_EMSK_LEN], *pos;
- if (eap_sim_prf(mk, buf, sizeof(buf)) < 0) {
- wpa_printf(MSG_ERROR, "EAP-SIM: Failed to derive keys");
- return -1;
- }
- pos = buf;
- os_memcpy(k_encr, pos, EAP_SIM_K_ENCR_LEN);
- pos += EAP_SIM_K_ENCR_LEN;
- os_memcpy(k_aut, pos, EAP_SIM_K_AUT_LEN);
- pos += EAP_SIM_K_AUT_LEN;
- os_memcpy(msk, pos, EAP_SIM_KEYING_DATA_LEN);
- pos += EAP_SIM_KEYING_DATA_LEN;
- os_memcpy(emsk, pos, EAP_EMSK_LEN);
- wpa_hexdump_key(MSG_DEBUG, "EAP-SIM: K_encr",
- k_encr, EAP_SIM_K_ENCR_LEN);
- wpa_hexdump_key(MSG_DEBUG, "EAP-SIM: K_aut",
- k_aut, EAP_SIM_K_AUT_LEN);
- wpa_hexdump_key(MSG_DEBUG, "EAP-SIM: keying material (MSK)",
- msk, EAP_SIM_KEYING_DATA_LEN);
- wpa_hexdump_key(MSG_DEBUG, "EAP-SIM: EMSK", emsk, EAP_EMSK_LEN);
- os_memset(buf, 0, sizeof(buf));
- return 0;
- }
- int eap_sim_derive_keys_reauth(u16 _counter,
- const u8 *identity, size_t identity_len,
- const u8 *nonce_s, const u8 *mk, u8 *msk,
- u8 *emsk)
- {
- u8 xkey[SHA1_MAC_LEN];
- u8 buf[EAP_SIM_KEYING_DATA_LEN + EAP_EMSK_LEN + 32];
- u8 counter[2];
- const u8 *addr[4];
- size_t len[4];
- while (identity_len > 0 && identity[identity_len - 1] == 0) {
- wpa_printf(MSG_DEBUG, "EAP-SIM: Workaround - drop null "
- "character from the end of identity");
- identity_len--;
- }
- addr[0] = identity;
- len[0] = identity_len;
- addr[1] = counter;
- len[1] = 2;
- addr[2] = nonce_s;
- len[2] = EAP_SIM_NONCE_S_LEN;
- addr[3] = mk;
- len[3] = EAP_SIM_MK_LEN;
- WPA_PUT_BE16(counter, _counter);
- wpa_printf(MSG_DEBUG, "EAP-SIM: Deriving keying data from reauth");
- wpa_hexdump_ascii(MSG_DEBUG, "EAP-SIM: Identity",
- identity, identity_len);
- wpa_hexdump(MSG_DEBUG, "EAP-SIM: counter", counter, 2);
- wpa_hexdump(MSG_DEBUG, "EAP-SIM: NONCE_S", nonce_s,
- EAP_SIM_NONCE_S_LEN);
- wpa_hexdump_key(MSG_DEBUG, "EAP-SIM: MK", mk, EAP_SIM_MK_LEN);
- /* XKEY' = SHA1(Identity|counter|NONCE_S|MK) */
- sha1_vector(4, addr, len, xkey);
- wpa_hexdump(MSG_DEBUG, "EAP-SIM: XKEY'", xkey, SHA1_MAC_LEN);
- if (eap_sim_prf(xkey, buf, sizeof(buf)) < 0) {
- wpa_printf(MSG_ERROR, "EAP-SIM: Failed to derive keys");
- return -1;
- }
- if (msk) {
- os_memcpy(msk, buf, EAP_SIM_KEYING_DATA_LEN);
- wpa_hexdump(MSG_DEBUG, "EAP-SIM: keying material (MSK)",
- msk, EAP_SIM_KEYING_DATA_LEN);
- }
- if (emsk) {
- os_memcpy(emsk, buf + EAP_SIM_KEYING_DATA_LEN, EAP_EMSK_LEN);
- wpa_hexdump(MSG_DEBUG, "EAP-SIM: EMSK", emsk, EAP_EMSK_LEN);
- }
- os_memset(buf, 0, sizeof(buf));
- return 0;
- }
- int eap_sim_verify_mac(const u8 *k_aut, const struct wpabuf *req,
- const u8 *mac, const u8 *extra, size_t extra_len)
- {
- unsigned char hmac[SHA1_MAC_LEN];
- const u8 *addr[2];
- size_t len[2];
- u8 *tmp;
- if (mac == NULL || wpabuf_len(req) < EAP_SIM_MAC_LEN ||
- mac < wpabuf_head_u8(req) ||
- mac > wpabuf_head_u8(req) + wpabuf_len(req) - EAP_SIM_MAC_LEN)
- return -1;
- tmp = os_malloc(wpabuf_len(req));
- if (tmp == NULL)
- return -1;
- addr[0] = tmp;
- len[0] = wpabuf_len(req);
- addr[1] = extra;
- len[1] = extra_len;
- /* HMAC-SHA1-128 */
- os_memcpy(tmp, wpabuf_head(req), wpabuf_len(req));
- os_memset(tmp + (mac - wpabuf_head_u8(req)), 0, EAP_SIM_MAC_LEN);
- wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Verify MAC - msg",
- tmp, wpabuf_len(req));
- wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Verify MAC - extra data",
- extra, extra_len);
- wpa_hexdump_key(MSG_MSGDUMP, "EAP-SIM: Verify MAC - K_aut",
- k_aut, EAP_SIM_K_AUT_LEN);
- hmac_sha1_vector(k_aut, EAP_SIM_K_AUT_LEN, 2, addr, len, hmac);
- wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Verify MAC: MAC",
- hmac, EAP_SIM_MAC_LEN);
- os_free(tmp);
- return (os_memcmp(hmac, mac, EAP_SIM_MAC_LEN) == 0) ? 0 : 1;
- }
- void eap_sim_add_mac(const u8 *k_aut, const u8 *msg, size_t msg_len, u8 *mac,
- const u8 *extra, size_t extra_len)
- {
- unsigned char hmac[SHA1_MAC_LEN];
- const u8 *addr[2];
- size_t len[2];
- addr[0] = msg;
- len[0] = msg_len;
- addr[1] = extra;
- len[1] = extra_len;
- /* HMAC-SHA1-128 */
- os_memset(mac, 0, EAP_SIM_MAC_LEN);
- wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Add MAC - msg", msg, msg_len);
- wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Add MAC - extra data",
- extra, extra_len);
- wpa_hexdump_key(MSG_MSGDUMP, "EAP-SIM: Add MAC - K_aut",
- k_aut, EAP_SIM_K_AUT_LEN);
- hmac_sha1_vector(k_aut, EAP_SIM_K_AUT_LEN, 2, addr, len, hmac);
- os_memcpy(mac, hmac, EAP_SIM_MAC_LEN);
- wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Add MAC: MAC",
- mac, EAP_SIM_MAC_LEN);
- }
- int eap_sim_parse_attr(const u8 *start, const u8 *end,
- struct eap_sim_attrs *attr, int aka, int encr)
- {
- const u8 *pos = start, *apos;
- size_t alen, plen, i, list_len;
- os_memset(attr, 0, sizeof(*attr));
- attr->id_req = NO_ID_REQ;
- attr->notification = -1;
- attr->counter = -1;
- attr->selected_version = -1;
- attr->client_error_code = -1;
- while (pos < end) {
- if (pos + 2 > end) {
- wpa_printf(MSG_INFO, "EAP-SIM: Attribute overflow(1)");
- return -1;
- }
- wpa_printf(MSG_MSGDUMP, "EAP-SIM: Attribute: Type=%d Len=%d",
- pos[0], pos[1] * 4);
- if (pos + pos[1] * 4 > end) {
- wpa_printf(MSG_INFO, "EAP-SIM: Attribute overflow "
- "(pos=%p len=%d end=%p)",
- pos, pos[1] * 4, end);
- return -1;
- }
- if (pos[1] == 0) {
- wpa_printf(MSG_INFO, "EAP-SIM: Attribute underflow");
- return -1;
- }
- apos = pos + 2;
- alen = pos[1] * 4 - 2;
- wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Attribute data",
- apos, alen);
- switch (pos[0]) {
- case EAP_SIM_AT_RAND:
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_RAND");
- apos += 2;
- alen -= 2;
- if ((!aka && (alen % GSM_RAND_LEN)) ||
- (aka && alen != EAP_AKA_RAND_LEN)) {
- wpa_printf(MSG_INFO, "EAP-SIM: Invalid AT_RAND"
- " (len %lu)",
- (unsigned long) alen);
- return -1;
- }
- attr->rand = apos;
- attr->num_chal = alen / GSM_RAND_LEN;
- break;
- case EAP_SIM_AT_AUTN:
- wpa_printf(MSG_DEBUG, "EAP-AKA: AT_AUTN");
- if (!aka) {
- wpa_printf(MSG_DEBUG, "EAP-SIM: "
- "Unexpected AT_AUTN");
- return -1;
- }
- apos += 2;
- alen -= 2;
- if (alen != EAP_AKA_AUTN_LEN) {
- wpa_printf(MSG_INFO, "EAP-AKA: Invalid AT_AUTN"
- " (len %lu)",
- (unsigned long) alen);
- return -1;
- }
- attr->autn = apos;
- break;
- case EAP_SIM_AT_PADDING:
- if (!encr) {
- wpa_printf(MSG_ERROR, "EAP-SIM: Unencrypted "
- "AT_PADDING");
- return -1;
- }
- wpa_printf(MSG_DEBUG, "EAP-SIM: (encr) AT_PADDING");
- for (i = 2; i < alen; i++) {
- if (apos[i] != 0) {
- wpa_printf(MSG_INFO, "EAP-SIM: (encr) "
- "AT_PADDING used a non-zero"
- " padding byte");
- wpa_hexdump(MSG_DEBUG, "EAP-SIM: "
- "(encr) padding bytes",
- apos + 2, alen - 2);
- return -1;
- }
- }
- break;
- case EAP_SIM_AT_NONCE_MT:
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_NONCE_MT");
- if (alen != 2 + EAP_SIM_NONCE_MT_LEN) {
- wpa_printf(MSG_INFO, "EAP-SIM: Invalid "
- "AT_NONCE_MT length");
- return -1;
- }
- attr->nonce_mt = apos + 2;
- break;
- case EAP_SIM_AT_PERMANENT_ID_REQ:
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_PERMANENT_ID_REQ");
- attr->id_req = PERMANENT_ID;
- break;
- case EAP_SIM_AT_MAC:
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_MAC");
- if (alen != 2 + EAP_SIM_MAC_LEN) {
- wpa_printf(MSG_INFO, "EAP-SIM: Invalid AT_MAC "
- "length");
- return -1;
- }
- attr->mac = apos + 2;
- break;
- case EAP_SIM_AT_NOTIFICATION:
- if (alen != 2) {
- wpa_printf(MSG_INFO, "EAP-SIM: Invalid "
- "AT_NOTIFICATION length %lu",
- (unsigned long) alen);
- return -1;
- }
- attr->notification = apos[0] * 256 + apos[1];
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_NOTIFICATION %d",
- attr->notification);
- break;
- case EAP_SIM_AT_ANY_ID_REQ:
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_ANY_ID_REQ");
- attr->id_req = ANY_ID;
- break;
- case EAP_SIM_AT_IDENTITY:
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_IDENTITY");
- attr->identity = apos + 2;
- attr->identity_len = alen - 2;
- break;
- case EAP_SIM_AT_VERSION_LIST:
- if (aka) {
- wpa_printf(MSG_DEBUG, "EAP-AKA: "
- "Unexpected AT_VERSION_LIST");
- return -1;
- }
- list_len = apos[0] * 256 + apos[1];
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_VERSION_LIST");
- if (list_len < 2 || list_len > alen - 2) {
- wpa_printf(MSG_WARNING, "EAP-SIM: Invalid "
- "AT_VERSION_LIST (list_len=%lu "
- "attr_len=%lu)",
- (unsigned long) list_len,
- (unsigned long) alen);
- return -1;
- }
- attr->version_list = apos + 2;
- attr->version_list_len = list_len;
- break;
- case EAP_SIM_AT_SELECTED_VERSION:
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_SELECTED_VERSION");
- if (alen != 2) {
- wpa_printf(MSG_INFO, "EAP-SIM: Invalid "
- "AT_SELECTED_VERSION length %lu",
- (unsigned long) alen);
- return -1;
- }
- attr->selected_version = apos[0] * 256 + apos[1];
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_SELECTED_VERSION "
- "%d", attr->selected_version);
- break;
- case EAP_SIM_AT_FULLAUTH_ID_REQ:
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_FULLAUTH_ID_REQ");
- attr->id_req = FULLAUTH_ID;
- break;
- case EAP_SIM_AT_COUNTER:
- if (!encr) {
- wpa_printf(MSG_ERROR, "EAP-SIM: Unencrypted "
- "AT_COUNTER");
- return -1;
- }
- if (alen != 2) {
- wpa_printf(MSG_INFO, "EAP-SIM: (encr) Invalid "
- "AT_COUNTER (alen=%lu)",
- (unsigned long) alen);
- return -1;
- }
- attr->counter = apos[0] * 256 + apos[1];
- wpa_printf(MSG_DEBUG, "EAP-SIM: (encr) AT_COUNTER %d",
- attr->counter);
- break;
- case EAP_SIM_AT_COUNTER_TOO_SMALL:
- if (!encr) {
- wpa_printf(MSG_ERROR, "EAP-SIM: Unencrypted "
- "AT_COUNTER_TOO_SMALL");
- return -1;
- }
- if (alen != 2) {
- wpa_printf(MSG_INFO, "EAP-SIM: (encr) Invalid "
- "AT_COUNTER_TOO_SMALL (alen=%lu)",
- (unsigned long) alen);
- return -1;
- }
- wpa_printf(MSG_DEBUG, "EAP-SIM: (encr) "
- "AT_COUNTER_TOO_SMALL");
- attr->counter_too_small = 1;
- break;
- case EAP_SIM_AT_NONCE_S:
- if (!encr) {
- wpa_printf(MSG_ERROR, "EAP-SIM: Unencrypted "
- "AT_NONCE_S");
- return -1;
- }
- wpa_printf(MSG_DEBUG, "EAP-SIM: (encr) "
- "AT_NONCE_S");
- if (alen != 2 + EAP_SIM_NONCE_S_LEN) {
- wpa_printf(MSG_INFO, "EAP-SIM: (encr) Invalid "
- "AT_NONCE_S (alen=%lu)",
- (unsigned long) alen);
- return -1;
- }
- attr->nonce_s = apos + 2;
- break;
- case EAP_SIM_AT_CLIENT_ERROR_CODE:
- if (alen != 2) {
- wpa_printf(MSG_INFO, "EAP-SIM: Invalid "
- "AT_CLIENT_ERROR_CODE length %lu",
- (unsigned long) alen);
- return -1;
- }
- attr->client_error_code = apos[0] * 256 + apos[1];
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_CLIENT_ERROR_CODE "
- "%d", attr->client_error_code);
- break;
- case EAP_SIM_AT_IV:
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_IV");
- if (alen != 2 + EAP_SIM_MAC_LEN) {
- wpa_printf(MSG_INFO, "EAP-SIM: Invalid AT_IV "
- "length %lu", (unsigned long) alen);
- return -1;
- }
- attr->iv = apos + 2;
- break;
- case EAP_SIM_AT_ENCR_DATA:
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_ENCR_DATA");
- attr->encr_data = apos + 2;
- attr->encr_data_len = alen - 2;
- if (attr->encr_data_len % 16) {
- wpa_printf(MSG_INFO, "EAP-SIM: Invalid "
- "AT_ENCR_DATA length %lu",
- (unsigned long)
- attr->encr_data_len);
- return -1;
- }
- break;
- case EAP_SIM_AT_NEXT_PSEUDONYM:
- if (!encr) {
- wpa_printf(MSG_ERROR, "EAP-SIM: Unencrypted "
- "AT_NEXT_PSEUDONYM");
- return -1;
- }
- wpa_printf(MSG_DEBUG, "EAP-SIM: (encr) "
- "AT_NEXT_PSEUDONYM");
- plen = apos[0] * 256 + apos[1];
- if (plen > alen - 2) {
- wpa_printf(MSG_INFO, "EAP-SIM: (encr) Invalid"
- " AT_NEXT_PSEUDONYM (actual"
- " len %lu, attr len %lu)",
- (unsigned long) plen,
- (unsigned long) alen);
- return -1;
- }
- attr->next_pseudonym = pos + 4;
- attr->next_pseudonym_len = plen;
- break;
- case EAP_SIM_AT_NEXT_REAUTH_ID:
- if (!encr) {
- wpa_printf(MSG_ERROR, "EAP-SIM: Unencrypted "
- "AT_NEXT_REAUTH_ID");
- return -1;
- }
- wpa_printf(MSG_DEBUG, "EAP-SIM: (encr) "
- "AT_NEXT_REAUTH_ID");
- plen = apos[0] * 256 + apos[1];
- if (plen > alen - 2) {
- wpa_printf(MSG_INFO, "EAP-SIM: (encr) Invalid"
- " AT_NEXT_REAUTH_ID (actual"
- " len %lu, attr len %lu)",
- (unsigned long) plen,
- (unsigned long) alen);
- return -1;
- }
- attr->next_reauth_id = pos + 4;
- attr->next_reauth_id_len = plen;
- break;
- case EAP_SIM_AT_RES:
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_RES");
- attr->res_len_bits = WPA_GET_BE16(apos);
- apos += 2;
- alen -= 2;
- if (!aka || alen < EAP_AKA_MIN_RES_LEN ||
- alen > EAP_AKA_MAX_RES_LEN) {
- wpa_printf(MSG_INFO, "EAP-SIM: Invalid AT_RES "
- "(len %lu)",
- (unsigned long) alen);
- return -1;
- }
- attr->res = apos;
- attr->res_len = alen;
- break;
- case EAP_SIM_AT_AUTS:
- wpa_printf(MSG_DEBUG, "EAP-AKA: AT_AUTS");
- if (!aka) {
- wpa_printf(MSG_DEBUG, "EAP-SIM: "
- "Unexpected AT_AUTS");
- return -1;
- }
- if (alen != EAP_AKA_AUTS_LEN) {
- wpa_printf(MSG_INFO, "EAP-AKA: Invalid AT_AUTS"
- " (len %lu)",
- (unsigned long) alen);
- return -1;
- }
- attr->auts = apos;
- break;
- case EAP_SIM_AT_CHECKCODE:
- wpa_printf(MSG_DEBUG, "EAP-AKA: AT_CHECKCODE");
- if (!aka) {
- wpa_printf(MSG_DEBUG, "EAP-SIM: "
- "Unexpected AT_CHECKCODE");
- return -1;
- }
- apos += 2;
- alen -= 2;
- if (alen != 0 && alen != EAP_AKA_CHECKCODE_LEN) {
- wpa_printf(MSG_INFO, "EAP-AKA: Invalid "
- "AT_CHECKCODE (len %lu)",
- (unsigned long) alen);
- return -1;
- }
- attr->checkcode = apos;
- attr->checkcode_len = alen;
- break;
- case EAP_SIM_AT_RESULT_IND:
- if (encr) {
- wpa_printf(MSG_ERROR, "EAP-SIM: Encrypted "
- "AT_RESULT_IND");
- return -1;
- }
- if (alen != 2) {
- wpa_printf(MSG_INFO, "EAP-SIM: Invalid "
- "AT_RESULT_IND (alen=%lu)",
- (unsigned long) alen);
- return -1;
- }
- wpa_printf(MSG_DEBUG, "EAP-SIM: AT_RESULT_IND");
- attr->result_ind = 1;
- break;
- default:
- if (pos[0] < 128) {
- wpa_printf(MSG_INFO, "EAP-SIM: Unrecognized "
- "non-skippable attribute %d",
- pos[0]);
- return -1;
- }
- wpa_printf(MSG_DEBUG, "EAP-SIM: Unrecognized skippable"
- " attribute %d ignored", pos[0]);
- break;
- }
- pos += pos[1] * 4;
- }
- wpa_printf(MSG_DEBUG, "EAP-SIM: Attributes parsed successfully "
- "(aka=%d encr=%d)", aka, encr);
- return 0;
- }
- u8 * eap_sim_parse_encr(const u8 *k_encr, const u8 *encr_data,
- size_t encr_data_len, const u8 *iv,
- struct eap_sim_attrs *attr, int aka)
- {
- u8 *decrypted;
- if (!iv) {
- wpa_printf(MSG_INFO, "EAP-SIM: Encrypted data, but no IV");
- return NULL;
- }
- decrypted = os_malloc(encr_data_len);
- if (decrypted == NULL)
- return NULL;
- os_memcpy(decrypted, encr_data, encr_data_len);
- if (aes_128_cbc_decrypt(k_encr, iv, decrypted, encr_data_len)) {
- os_free(decrypted);
- return NULL;
- }
- wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Decrypted AT_ENCR_DATA",
- decrypted, encr_data_len);
- if (eap_sim_parse_attr(decrypted, decrypted + encr_data_len, attr,
- aka, 1)) {
- wpa_printf(MSG_INFO, "EAP-SIM: (encr) Failed to parse "
- "decrypted AT_ENCR_DATA");
- os_free(decrypted);
- return NULL;
- }
- return decrypted;
- }
- #define EAP_SIM_INIT_LEN 128
- struct eap_sim_msg {
- struct wpabuf *buf;
- size_t mac, iv, encr; /* index from buf */
- };
- struct eap_sim_msg * eap_sim_msg_init(int code, int id, int type, int subtype)
- {
- struct eap_sim_msg *msg;
- struct eap_hdr *eap;
- u8 *pos;
- msg = os_zalloc(sizeof(*msg));
- if (msg == NULL)
- return NULL;
- msg->buf = wpabuf_alloc(EAP_SIM_INIT_LEN);
- if (msg->buf == NULL) {
- os_free(msg);
- return NULL;
- }
- eap = wpabuf_put(msg->buf, sizeof(*eap));
- eap->code = code;
- eap->identifier = id;
- pos = wpabuf_put(msg->buf, 4);
- *pos++ = type;
- *pos++ = subtype;
- *pos++ = 0; /* Reserved */
- *pos++ = 0; /* Reserved */
- return msg;
- }
- struct wpabuf * eap_sim_msg_finish(struct eap_sim_msg *msg, const u8 *k_aut,
- const u8 *extra, size_t extra_len)
- {
- struct eap_hdr *eap;
- struct wpabuf *buf;
- if (msg == NULL)
- return NULL;
- eap = wpabuf_mhead(msg->buf);
- eap->length = host_to_be16(wpabuf_len(msg->buf));
- if (k_aut && msg->mac) {
- eap_sim_add_mac(k_aut, (u8 *) wpabuf_head(msg->buf),
- wpabuf_len(msg->buf),
- (u8 *) wpabuf_mhead(msg->buf) + msg->mac,
- extra, extra_len);
- }
- buf = msg->buf;
- os_free(msg);
- return buf;
- }
- void eap_sim_msg_free(struct eap_sim_msg *msg)
- {
- if (msg) {
- wpabuf_free(msg->buf);
- os_free(msg);
- }
- }
- u8 * eap_sim_msg_add_full(struct eap_sim_msg *msg, u8 attr,
- const u8 *data, size_t len)
- {
- int attr_len = 2 + len;
- int pad_len;
- u8 *start;
- if (msg == NULL)
- return NULL;
- pad_len = (4 - attr_len % 4) % 4;
- attr_len += pad_len;
- if (wpabuf_resize(&msg->buf, attr_len))
- return NULL;
- start = wpabuf_put(msg->buf, 0);
- wpabuf_put_u8(msg->buf, attr);
- wpabuf_put_u8(msg->buf, attr_len / 4);
- wpabuf_put_data(msg->buf, data, len);
- if (pad_len)
- os_memset(wpabuf_put(msg->buf, pad_len), 0, pad_len);
- return start;
- }
- u8 * eap_sim_msg_add(struct eap_sim_msg *msg, u8 attr, u16 value,
- const u8 *data, size_t len)
- {
- int attr_len = 4 + len;
- int pad_len;
- u8 *start;
- if (msg == NULL)
- return NULL;
- pad_len = (4 - attr_len % 4) % 4;
- attr_len += pad_len;
- if (wpabuf_resize(&msg->buf, attr_len))
- return NULL;
- start = wpabuf_put(msg->buf, 0);
- wpabuf_put_u8(msg->buf, attr);
- wpabuf_put_u8(msg->buf, attr_len / 4);
- wpabuf_put_be16(msg->buf, value);
- if (data)
- wpabuf_put_data(msg->buf, data, len);
- else
- wpabuf_put(msg->buf, len);
- if (pad_len)
- os_memset(wpabuf_put(msg->buf, pad_len), 0, pad_len);
- return start;
- }
- u8 * eap_sim_msg_add_mac(struct eap_sim_msg *msg, u8 attr)
- {
- u8 *pos = eap_sim_msg_add(msg, attr, 0, NULL, EAP_SIM_MAC_LEN);
- if (pos)
- msg->mac = (pos - wpabuf_head_u8(msg->buf)) + 4;
- return pos;
- }
- int eap_sim_msg_add_encr_start(struct eap_sim_msg *msg, u8 attr_iv,
- u8 attr_encr)
- {
- u8 *pos = eap_sim_msg_add(msg, attr_iv, 0, NULL, EAP_SIM_IV_LEN);
- if (pos == NULL)
- return -1;
- msg->iv = (pos - wpabuf_head_u8(msg->buf)) + 4;
- if (os_get_random(wpabuf_mhead_u8(msg->buf) + msg->iv,
- EAP_SIM_IV_LEN)) {
- msg->iv = 0;
- return -1;
- }
- pos = eap_sim_msg_add(msg, attr_encr, 0, NULL, 0);
- if (pos == NULL) {
- msg->iv = 0;
- return -1;
- }
- msg->encr = pos - wpabuf_head_u8(msg->buf);
- return 0;
- }
- int eap_sim_msg_add_encr_end(struct eap_sim_msg *msg, u8 *k_encr, int attr_pad)
- {
- size_t encr_len;
- if (msg == NULL || k_encr == NULL || msg->iv == 0 || msg->encr == 0)
- return -1;
- encr_len = wpabuf_len(msg->buf) - msg->encr - 4;
- if (encr_len % 16) {
- u8 *pos;
- int pad_len = 16 - (encr_len % 16);
- if (pad_len < 4) {
- wpa_printf(MSG_WARNING, "EAP-SIM: "
- "eap_sim_msg_add_encr_end - invalid pad_len"
- " %d", pad_len);
- return -1;
- }
- wpa_printf(MSG_DEBUG, " *AT_PADDING");
- pos = eap_sim_msg_add(msg, attr_pad, 0, NULL, pad_len - 4);
- if (pos == NULL)
- return -1;
- os_memset(pos + 4, 0, pad_len - 4);
- encr_len += pad_len;
- }
- wpa_printf(MSG_DEBUG, " (AT_ENCR_DATA data len %lu)",
- (unsigned long) encr_len);
- wpabuf_mhead_u8(msg->buf)[msg->encr + 1] = encr_len / 4 + 1;
- return aes_128_cbc_encrypt(k_encr, wpabuf_head_u8(msg->buf) + msg->iv,
- wpabuf_mhead_u8(msg->buf) + msg->encr + 4,
- encr_len);
- }
- void eap_sim_report_notification(void *msg_ctx, int notification, int aka)
- {
- #ifndef CONFIG_NO_STDOUT_DEBUG
- const char *type = aka ? "AKA" : "SIM";
- #endif /* CONFIG_NO_STDOUT_DEBUG */
- switch (notification) {
- case EAP_SIM_GENERAL_FAILURE_AFTER_AUTH:
- wpa_printf(MSG_WARNING, "EAP-%s: General failure "
- "notification (after authentication)", type);
- break;
- case EAP_SIM_TEMPORARILY_DENIED:
- wpa_printf(MSG_WARNING, "EAP-%s: Failure notification: "
- "User has been temporarily denied access to the "
- "requested service", type);
- break;
- case EAP_SIM_NOT_SUBSCRIBED:
- wpa_printf(MSG_WARNING, "EAP-%s: Failure notification: "
- "User has not subscribed to the requested service",
- type);
- break;
- case EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH:
- wpa_printf(MSG_WARNING, "EAP-%s: General failure "
- "notification (before authentication)", type);
- break;
- case EAP_SIM_SUCCESS:
- wpa_printf(MSG_INFO, "EAP-%s: Successful authentication "
- "notification", type);
- break;
- default:
- if (notification >= 32768) {
- wpa_printf(MSG_INFO, "EAP-%s: Unrecognized "
- "non-failure notification %d",
- type, notification);
- } else {
- wpa_printf(MSG_WARNING, "EAP-%s: Unrecognized "
- "failure notification %d",
- type, notification);
- }
- }
- }
|