eap_server_sim.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797
  1. /*
  2. * hostapd / EAP-SIM (RFC 4186)
  3. * Copyright (c) 2005-2008, Jouni Malinen <j@w1.fi>
  4. *
  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.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "eap_server/eap_i.h"
  17. #include "eap_common/eap_sim_common.h"
  18. #include "eap_server/eap_sim_db.h"
  19. struct eap_sim_data {
  20. u8 mk[EAP_SIM_MK_LEN];
  21. u8 nonce_mt[EAP_SIM_NONCE_MT_LEN];
  22. u8 nonce_s[EAP_SIM_NONCE_S_LEN];
  23. u8 k_aut[EAP_SIM_K_AUT_LEN];
  24. u8 k_encr[EAP_SIM_K_ENCR_LEN];
  25. u8 msk[EAP_SIM_KEYING_DATA_LEN];
  26. u8 emsk[EAP_EMSK_LEN];
  27. u8 kc[EAP_SIM_MAX_CHAL][EAP_SIM_KC_LEN];
  28. u8 sres[EAP_SIM_MAX_CHAL][EAP_SIM_SRES_LEN];
  29. u8 rand[EAP_SIM_MAX_CHAL][GSM_RAND_LEN];
  30. int num_chal;
  31. enum {
  32. START, CHALLENGE, REAUTH, NOTIFICATION, SUCCESS, FAILURE
  33. } state;
  34. char *next_pseudonym;
  35. char *next_reauth_id;
  36. u16 counter;
  37. struct eap_sim_reauth *reauth;
  38. u16 notification;
  39. int use_result_ind;
  40. };
  41. static const char * eap_sim_state_txt(int state)
  42. {
  43. switch (state) {
  44. case START:
  45. return "START";
  46. case CHALLENGE:
  47. return "CHALLENGE";
  48. case REAUTH:
  49. return "REAUTH";
  50. case SUCCESS:
  51. return "SUCCESS";
  52. case FAILURE:
  53. return "FAILURE";
  54. case NOTIFICATION:
  55. return "NOTIFICATION";
  56. default:
  57. return "Unknown?!";
  58. }
  59. }
  60. static void eap_sim_state(struct eap_sim_data *data, int state)
  61. {
  62. wpa_printf(MSG_DEBUG, "EAP-SIM: %s -> %s",
  63. eap_sim_state_txt(data->state),
  64. eap_sim_state_txt(state));
  65. data->state = state;
  66. }
  67. static void * eap_sim_init(struct eap_sm *sm)
  68. {
  69. struct eap_sim_data *data;
  70. if (sm->eap_sim_db_priv == NULL) {
  71. wpa_printf(MSG_WARNING, "EAP-SIM: eap_sim_db not configured");
  72. return NULL;
  73. }
  74. data = os_zalloc(sizeof(*data));
  75. if (data == NULL)
  76. return NULL;
  77. data->state = START;
  78. return data;
  79. }
  80. static void eap_sim_reset(struct eap_sm *sm, void *priv)
  81. {
  82. struct eap_sim_data *data = priv;
  83. os_free(data->next_pseudonym);
  84. os_free(data->next_reauth_id);
  85. os_free(data);
  86. }
  87. static struct wpabuf * eap_sim_build_start(struct eap_sm *sm,
  88. struct eap_sim_data *data, u8 id)
  89. {
  90. struct eap_sim_msg *msg;
  91. u8 ver[2];
  92. wpa_printf(MSG_DEBUG, "EAP-SIM: Generating Start");
  93. msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, EAP_TYPE_SIM,
  94. EAP_SIM_SUBTYPE_START);
  95. if (eap_sim_db_identity_known(sm->eap_sim_db_priv, sm->identity,
  96. sm->identity_len)) {
  97. wpa_printf(MSG_DEBUG, " AT_PERMANENT_ID_REQ");
  98. eap_sim_msg_add(msg, EAP_SIM_AT_PERMANENT_ID_REQ, 0, NULL, 0);
  99. } else {
  100. /*
  101. * RFC 4186, Chap. 4.2.4 recommends that identity from EAP is
  102. * ignored and the SIM/Start is used to request the identity.
  103. */
  104. wpa_printf(MSG_DEBUG, " AT_ANY_ID_REQ");
  105. eap_sim_msg_add(msg, EAP_SIM_AT_ANY_ID_REQ, 0, NULL, 0);
  106. }
  107. wpa_printf(MSG_DEBUG, " AT_VERSION_LIST");
  108. ver[0] = 0;
  109. ver[1] = EAP_SIM_VERSION;
  110. eap_sim_msg_add(msg, EAP_SIM_AT_VERSION_LIST, sizeof(ver),
  111. ver, sizeof(ver));
  112. return eap_sim_msg_finish(msg, NULL, NULL, 0);
  113. }
  114. static int eap_sim_build_encr(struct eap_sm *sm, struct eap_sim_data *data,
  115. struct eap_sim_msg *msg, u16 counter,
  116. const u8 *nonce_s)
  117. {
  118. os_free(data->next_pseudonym);
  119. data->next_pseudonym =
  120. eap_sim_db_get_next_pseudonym(sm->eap_sim_db_priv, 0);
  121. os_free(data->next_reauth_id);
  122. if (data->counter <= EAP_SIM_MAX_FAST_REAUTHS) {
  123. data->next_reauth_id =
  124. eap_sim_db_get_next_reauth_id(sm->eap_sim_db_priv, 0);
  125. } else {
  126. wpa_printf(MSG_DEBUG, "EAP-SIM: Max fast re-authentication "
  127. "count exceeded - force full authentication");
  128. data->next_reauth_id = NULL;
  129. }
  130. if (data->next_pseudonym == NULL && data->next_reauth_id == NULL &&
  131. counter == 0 && nonce_s == NULL)
  132. return 0;
  133. wpa_printf(MSG_DEBUG, " AT_IV");
  134. wpa_printf(MSG_DEBUG, " AT_ENCR_DATA");
  135. eap_sim_msg_add_encr_start(msg, EAP_SIM_AT_IV, EAP_SIM_AT_ENCR_DATA);
  136. if (counter > 0) {
  137. wpa_printf(MSG_DEBUG, " *AT_COUNTER (%u)", counter);
  138. eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, counter, NULL, 0);
  139. }
  140. if (nonce_s) {
  141. wpa_printf(MSG_DEBUG, " *AT_NONCE_S");
  142. eap_sim_msg_add(msg, EAP_SIM_AT_NONCE_S, 0, nonce_s,
  143. EAP_SIM_NONCE_S_LEN);
  144. }
  145. if (data->next_pseudonym) {
  146. wpa_printf(MSG_DEBUG, " *AT_NEXT_PSEUDONYM (%s)",
  147. data->next_pseudonym);
  148. eap_sim_msg_add(msg, EAP_SIM_AT_NEXT_PSEUDONYM,
  149. os_strlen(data->next_pseudonym),
  150. (u8 *) data->next_pseudonym,
  151. os_strlen(data->next_pseudonym));
  152. }
  153. if (data->next_reauth_id) {
  154. wpa_printf(MSG_DEBUG, " *AT_NEXT_REAUTH_ID (%s)",
  155. data->next_reauth_id);
  156. eap_sim_msg_add(msg, EAP_SIM_AT_NEXT_REAUTH_ID,
  157. os_strlen(data->next_reauth_id),
  158. (u8 *) data->next_reauth_id,
  159. os_strlen(data->next_reauth_id));
  160. }
  161. if (eap_sim_msg_add_encr_end(msg, data->k_encr, EAP_SIM_AT_PADDING)) {
  162. wpa_printf(MSG_WARNING, "EAP-SIM: Failed to encrypt "
  163. "AT_ENCR_DATA");
  164. return -1;
  165. }
  166. return 0;
  167. }
  168. static struct wpabuf * eap_sim_build_challenge(struct eap_sm *sm,
  169. struct eap_sim_data *data,
  170. u8 id)
  171. {
  172. struct eap_sim_msg *msg;
  173. wpa_printf(MSG_DEBUG, "EAP-SIM: Generating Challenge");
  174. msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, EAP_TYPE_SIM,
  175. EAP_SIM_SUBTYPE_CHALLENGE);
  176. wpa_printf(MSG_DEBUG, " AT_RAND");
  177. eap_sim_msg_add(msg, EAP_SIM_AT_RAND, 0, (u8 *) data->rand,
  178. data->num_chal * GSM_RAND_LEN);
  179. if (eap_sim_build_encr(sm, data, msg, 0, NULL)) {
  180. eap_sim_msg_free(msg);
  181. return NULL;
  182. }
  183. if (sm->eap_sim_aka_result_ind) {
  184. wpa_printf(MSG_DEBUG, " AT_RESULT_IND");
  185. eap_sim_msg_add(msg, EAP_SIM_AT_RESULT_IND, 0, NULL, 0);
  186. }
  187. wpa_printf(MSG_DEBUG, " AT_MAC");
  188. eap_sim_msg_add_mac(msg, EAP_SIM_AT_MAC);
  189. return eap_sim_msg_finish(msg, data->k_aut, data->nonce_mt,
  190. EAP_SIM_NONCE_MT_LEN);
  191. }
  192. static struct wpabuf * eap_sim_build_reauth(struct eap_sm *sm,
  193. struct eap_sim_data *data, u8 id)
  194. {
  195. struct eap_sim_msg *msg;
  196. wpa_printf(MSG_DEBUG, "EAP-SIM: Generating Re-authentication");
  197. if (os_get_random(data->nonce_s, EAP_SIM_NONCE_S_LEN))
  198. return NULL;
  199. wpa_hexdump_key(MSG_MSGDUMP, "EAP-SIM: NONCE_S",
  200. data->nonce_s, EAP_SIM_NONCE_S_LEN);
  201. eap_sim_derive_keys(data->mk, data->k_encr, data->k_aut, data->msk,
  202. data->emsk);
  203. eap_sim_derive_keys_reauth(data->counter, sm->identity,
  204. sm->identity_len, data->nonce_s, data->mk,
  205. data->msk, data->emsk);
  206. msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, EAP_TYPE_SIM,
  207. EAP_SIM_SUBTYPE_REAUTHENTICATION);
  208. if (eap_sim_build_encr(sm, data, msg, data->counter, data->nonce_s)) {
  209. eap_sim_msg_free(msg);
  210. return NULL;
  211. }
  212. if (sm->eap_sim_aka_result_ind) {
  213. wpa_printf(MSG_DEBUG, " AT_RESULT_IND");
  214. eap_sim_msg_add(msg, EAP_SIM_AT_RESULT_IND, 0, NULL, 0);
  215. }
  216. wpa_printf(MSG_DEBUG, " AT_MAC");
  217. eap_sim_msg_add_mac(msg, EAP_SIM_AT_MAC);
  218. return eap_sim_msg_finish(msg, data->k_aut, NULL, 0);
  219. }
  220. static struct wpabuf * eap_sim_build_notification(struct eap_sm *sm,
  221. struct eap_sim_data *data,
  222. u8 id)
  223. {
  224. struct eap_sim_msg *msg;
  225. wpa_printf(MSG_DEBUG, "EAP-SIM: Generating Notification");
  226. msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, EAP_TYPE_SIM,
  227. EAP_SIM_SUBTYPE_NOTIFICATION);
  228. wpa_printf(MSG_DEBUG, " AT_NOTIFICATION (%d)", data->notification);
  229. eap_sim_msg_add(msg, EAP_SIM_AT_NOTIFICATION, data->notification,
  230. NULL, 0);
  231. if (data->use_result_ind) {
  232. if (data->reauth) {
  233. wpa_printf(MSG_DEBUG, " AT_IV");
  234. wpa_printf(MSG_DEBUG, " AT_ENCR_DATA");
  235. eap_sim_msg_add_encr_start(msg, EAP_SIM_AT_IV,
  236. EAP_SIM_AT_ENCR_DATA);
  237. wpa_printf(MSG_DEBUG, " *AT_COUNTER (%u)",
  238. data->counter);
  239. eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, data->counter,
  240. NULL, 0);
  241. if (eap_sim_msg_add_encr_end(msg, data->k_encr,
  242. EAP_SIM_AT_PADDING)) {
  243. wpa_printf(MSG_WARNING, "EAP-SIM: Failed to "
  244. "encrypt AT_ENCR_DATA");
  245. eap_sim_msg_free(msg);
  246. return NULL;
  247. }
  248. }
  249. wpa_printf(MSG_DEBUG, " AT_MAC");
  250. eap_sim_msg_add_mac(msg, EAP_SIM_AT_MAC);
  251. }
  252. return eap_sim_msg_finish(msg, data->k_aut, NULL, 0);
  253. }
  254. static struct wpabuf * eap_sim_buildReq(struct eap_sm *sm, void *priv, u8 id)
  255. {
  256. struct eap_sim_data *data = priv;
  257. switch (data->state) {
  258. case START:
  259. return eap_sim_build_start(sm, data, id);
  260. case CHALLENGE:
  261. return eap_sim_build_challenge(sm, data, id);
  262. case REAUTH:
  263. return eap_sim_build_reauth(sm, data, id);
  264. case NOTIFICATION:
  265. return eap_sim_build_notification(sm, data, id);
  266. default:
  267. wpa_printf(MSG_DEBUG, "EAP-SIM: Unknown state %d in "
  268. "buildReq", data->state);
  269. break;
  270. }
  271. return NULL;
  272. }
  273. static Boolean eap_sim_check(struct eap_sm *sm, void *priv,
  274. struct wpabuf *respData)
  275. {
  276. struct eap_sim_data *data = priv;
  277. const u8 *pos;
  278. size_t len;
  279. u8 subtype;
  280. pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_SIM, respData, &len);
  281. if (pos == NULL || len < 3) {
  282. wpa_printf(MSG_INFO, "EAP-SIM: Invalid frame");
  283. return TRUE;
  284. }
  285. subtype = *pos;
  286. if (subtype == EAP_SIM_SUBTYPE_CLIENT_ERROR)
  287. return FALSE;
  288. switch (data->state) {
  289. case START:
  290. if (subtype != EAP_SIM_SUBTYPE_START) {
  291. wpa_printf(MSG_INFO, "EAP-SIM: Unexpected response "
  292. "subtype %d", subtype);
  293. return TRUE;
  294. }
  295. break;
  296. case CHALLENGE:
  297. if (subtype != EAP_SIM_SUBTYPE_CHALLENGE) {
  298. wpa_printf(MSG_INFO, "EAP-SIM: Unexpected response "
  299. "subtype %d", subtype);
  300. return TRUE;
  301. }
  302. break;
  303. case REAUTH:
  304. if (subtype != EAP_SIM_SUBTYPE_REAUTHENTICATION) {
  305. wpa_printf(MSG_INFO, "EAP-SIM: Unexpected response "
  306. "subtype %d", subtype);
  307. return TRUE;
  308. }
  309. break;
  310. case NOTIFICATION:
  311. if (subtype != EAP_SIM_SUBTYPE_NOTIFICATION) {
  312. wpa_printf(MSG_INFO, "EAP-SIM: Unexpected response "
  313. "subtype %d", subtype);
  314. return TRUE;
  315. }
  316. break;
  317. default:
  318. wpa_printf(MSG_INFO, "EAP-SIM: Unexpected state (%d) for "
  319. "processing a response", data->state);
  320. return TRUE;
  321. }
  322. return FALSE;
  323. }
  324. static int eap_sim_supported_ver(struct eap_sim_data *data, int version)
  325. {
  326. return version == EAP_SIM_VERSION;
  327. }
  328. static void eap_sim_process_start(struct eap_sm *sm,
  329. struct eap_sim_data *data,
  330. struct wpabuf *respData,
  331. struct eap_sim_attrs *attr)
  332. {
  333. const u8 *identity;
  334. size_t identity_len;
  335. u8 ver_list[2];
  336. wpa_printf(MSG_DEBUG, "EAP-SIM: Receive start response");
  337. if (attr->identity) {
  338. os_free(sm->identity);
  339. sm->identity = os_malloc(attr->identity_len);
  340. if (sm->identity) {
  341. os_memcpy(sm->identity, attr->identity,
  342. attr->identity_len);
  343. sm->identity_len = attr->identity_len;
  344. }
  345. }
  346. identity = NULL;
  347. identity_len = 0;
  348. if (sm->identity && sm->identity_len > 0 &&
  349. sm->identity[0] == EAP_SIM_PERMANENT_PREFIX) {
  350. identity = sm->identity;
  351. identity_len = sm->identity_len;
  352. } else {
  353. identity = eap_sim_db_get_permanent(sm->eap_sim_db_priv,
  354. sm->identity,
  355. sm->identity_len,
  356. &identity_len);
  357. if (identity == NULL) {
  358. data->reauth = eap_sim_db_get_reauth_entry(
  359. sm->eap_sim_db_priv, sm->identity,
  360. sm->identity_len);
  361. if (data->reauth) {
  362. wpa_printf(MSG_DEBUG, "EAP-SIM: Using fast "
  363. "re-authentication");
  364. identity = data->reauth->identity;
  365. identity_len = data->reauth->identity_len;
  366. data->counter = data->reauth->counter;
  367. os_memcpy(data->mk, data->reauth->mk,
  368. EAP_SIM_MK_LEN);
  369. }
  370. }
  371. }
  372. if (identity == NULL) {
  373. wpa_printf(MSG_DEBUG, "EAP-SIM: Could not get proper permanent"
  374. " user name");
  375. eap_sim_state(data, FAILURE);
  376. return;
  377. }
  378. wpa_hexdump_ascii(MSG_DEBUG, "EAP-SIM: Identity",
  379. identity, identity_len);
  380. if (data->reauth) {
  381. eap_sim_state(data, REAUTH);
  382. return;
  383. }
  384. if (attr->nonce_mt == NULL || attr->selected_version < 0) {
  385. wpa_printf(MSG_DEBUG, "EAP-SIM: Start/Response missing "
  386. "required attributes");
  387. eap_sim_state(data, FAILURE);
  388. return;
  389. }
  390. if (!eap_sim_supported_ver(data, attr->selected_version)) {
  391. wpa_printf(MSG_DEBUG, "EAP-SIM: Peer selected unsupported "
  392. "version %d", attr->selected_version);
  393. eap_sim_state(data, FAILURE);
  394. return;
  395. }
  396. data->counter = 0; /* reset re-auth counter since this is full auth */
  397. data->reauth = NULL;
  398. data->num_chal = eap_sim_db_get_gsm_triplets(
  399. sm->eap_sim_db_priv, identity, identity_len,
  400. EAP_SIM_MAX_CHAL,
  401. (u8 *) data->rand, (u8 *) data->kc, (u8 *) data->sres, sm);
  402. if (data->num_chal == EAP_SIM_DB_PENDING) {
  403. wpa_printf(MSG_DEBUG, "EAP-SIM: GSM authentication triplets "
  404. "not yet available - pending request");
  405. sm->method_pending = METHOD_PENDING_WAIT;
  406. return;
  407. }
  408. if (data->num_chal < 2) {
  409. wpa_printf(MSG_INFO, "EAP-SIM: Failed to get GSM "
  410. "authentication triplets for the peer");
  411. eap_sim_state(data, FAILURE);
  412. return;
  413. }
  414. identity_len = sm->identity_len;
  415. while (identity_len > 0 && sm->identity[identity_len - 1] == '\0') {
  416. wpa_printf(MSG_DEBUG, "EAP-SIM: Workaround - drop last null "
  417. "character from identity");
  418. identity_len--;
  419. }
  420. wpa_hexdump_ascii(MSG_DEBUG, "EAP-SIM: Identity for MK derivation",
  421. sm->identity, identity_len);
  422. os_memcpy(data->nonce_mt, attr->nonce_mt, EAP_SIM_NONCE_MT_LEN);
  423. WPA_PUT_BE16(ver_list, EAP_SIM_VERSION);
  424. eap_sim_derive_mk(sm->identity, identity_len, attr->nonce_mt,
  425. attr->selected_version, ver_list, sizeof(ver_list),
  426. data->num_chal, (const u8 *) data->kc, data->mk);
  427. eap_sim_derive_keys(data->mk, data->k_encr, data->k_aut, data->msk,
  428. data->emsk);
  429. eap_sim_state(data, CHALLENGE);
  430. }
  431. static void eap_sim_process_challenge(struct eap_sm *sm,
  432. struct eap_sim_data *data,
  433. struct wpabuf *respData,
  434. struct eap_sim_attrs *attr)
  435. {
  436. const u8 *identity;
  437. size_t identity_len;
  438. if (attr->mac == NULL ||
  439. eap_sim_verify_mac(data->k_aut, respData, attr->mac,
  440. (u8 *) data->sres,
  441. data->num_chal * EAP_SIM_SRES_LEN)) {
  442. wpa_printf(MSG_WARNING, "EAP-SIM: Challenge message "
  443. "did not include valid AT_MAC");
  444. eap_sim_state(data, FAILURE);
  445. return;
  446. }
  447. wpa_printf(MSG_DEBUG, "EAP-SIM: Challenge response includes the "
  448. "correct AT_MAC");
  449. if (sm->eap_sim_aka_result_ind && attr->result_ind) {
  450. data->use_result_ind = 1;
  451. data->notification = EAP_SIM_SUCCESS;
  452. eap_sim_state(data, NOTIFICATION);
  453. } else
  454. eap_sim_state(data, SUCCESS);
  455. identity = eap_sim_db_get_permanent(sm->eap_sim_db_priv, sm->identity,
  456. sm->identity_len, &identity_len);
  457. if (identity == NULL) {
  458. identity = sm->identity;
  459. identity_len = sm->identity_len;
  460. }
  461. if (data->next_pseudonym) {
  462. eap_sim_db_add_pseudonym(sm->eap_sim_db_priv, identity,
  463. identity_len,
  464. data->next_pseudonym);
  465. data->next_pseudonym = NULL;
  466. }
  467. if (data->next_reauth_id) {
  468. eap_sim_db_add_reauth(sm->eap_sim_db_priv, identity,
  469. identity_len,
  470. data->next_reauth_id, data->counter + 1,
  471. data->mk);
  472. data->next_reauth_id = NULL;
  473. }
  474. }
  475. static void eap_sim_process_reauth(struct eap_sm *sm,
  476. struct eap_sim_data *data,
  477. struct wpabuf *respData,
  478. struct eap_sim_attrs *attr)
  479. {
  480. struct eap_sim_attrs eattr;
  481. u8 *decrypted = NULL;
  482. const u8 *identity, *id2;
  483. size_t identity_len, id2_len;
  484. if (attr->mac == NULL ||
  485. eap_sim_verify_mac(data->k_aut, respData, attr->mac, data->nonce_s,
  486. EAP_SIM_NONCE_S_LEN)) {
  487. wpa_printf(MSG_WARNING, "EAP-SIM: Re-authentication message "
  488. "did not include valid AT_MAC");
  489. goto fail;
  490. }
  491. if (attr->encr_data == NULL || attr->iv == NULL) {
  492. wpa_printf(MSG_WARNING, "EAP-SIM: Reauthentication "
  493. "message did not include encrypted data");
  494. goto fail;
  495. }
  496. decrypted = eap_sim_parse_encr(data->k_encr, attr->encr_data,
  497. attr->encr_data_len, attr->iv, &eattr,
  498. 0);
  499. if (decrypted == NULL) {
  500. wpa_printf(MSG_WARNING, "EAP-SIM: Failed to parse encrypted "
  501. "data from reauthentication message");
  502. goto fail;
  503. }
  504. if (eattr.counter != data->counter) {
  505. wpa_printf(MSG_WARNING, "EAP-SIM: Re-authentication message "
  506. "used incorrect counter %u, expected %u",
  507. eattr.counter, data->counter);
  508. goto fail;
  509. }
  510. os_free(decrypted);
  511. decrypted = NULL;
  512. wpa_printf(MSG_DEBUG, "EAP-SIM: Re-authentication response includes "
  513. "the correct AT_MAC");
  514. if (sm->eap_sim_aka_result_ind && attr->result_ind) {
  515. data->use_result_ind = 1;
  516. data->notification = EAP_SIM_SUCCESS;
  517. eap_sim_state(data, NOTIFICATION);
  518. } else
  519. eap_sim_state(data, SUCCESS);
  520. if (data->reauth) {
  521. identity = data->reauth->identity;
  522. identity_len = data->reauth->identity_len;
  523. } else {
  524. identity = sm->identity;
  525. identity_len = sm->identity_len;
  526. }
  527. id2 = eap_sim_db_get_permanent(sm->eap_sim_db_priv, identity,
  528. identity_len, &id2_len);
  529. if (id2) {
  530. identity = id2;
  531. identity_len = id2_len;
  532. }
  533. if (data->next_pseudonym) {
  534. eap_sim_db_add_pseudonym(sm->eap_sim_db_priv, identity,
  535. identity_len, data->next_pseudonym);
  536. data->next_pseudonym = NULL;
  537. }
  538. if (data->next_reauth_id) {
  539. eap_sim_db_add_reauth(sm->eap_sim_db_priv, identity,
  540. identity_len, data->next_reauth_id,
  541. data->counter + 1, data->mk);
  542. data->next_reauth_id = NULL;
  543. } else {
  544. eap_sim_db_remove_reauth(sm->eap_sim_db_priv, data->reauth);
  545. data->reauth = NULL;
  546. }
  547. return;
  548. fail:
  549. eap_sim_state(data, FAILURE);
  550. eap_sim_db_remove_reauth(sm->eap_sim_db_priv, data->reauth);
  551. data->reauth = NULL;
  552. os_free(decrypted);
  553. }
  554. static void eap_sim_process_client_error(struct eap_sm *sm,
  555. struct eap_sim_data *data,
  556. struct wpabuf *respData,
  557. struct eap_sim_attrs *attr)
  558. {
  559. wpa_printf(MSG_DEBUG, "EAP-SIM: Client reported error %d",
  560. attr->client_error_code);
  561. if (data->notification == EAP_SIM_SUCCESS && data->use_result_ind)
  562. eap_sim_state(data, SUCCESS);
  563. else
  564. eap_sim_state(data, FAILURE);
  565. }
  566. static void eap_sim_process_notification(struct eap_sm *sm,
  567. struct eap_sim_data *data,
  568. struct wpabuf *respData,
  569. struct eap_sim_attrs *attr)
  570. {
  571. wpa_printf(MSG_DEBUG, "EAP-SIM: Client replied to notification");
  572. if (data->notification == EAP_SIM_SUCCESS && data->use_result_ind)
  573. eap_sim_state(data, SUCCESS);
  574. else
  575. eap_sim_state(data, FAILURE);
  576. }
  577. static void eap_sim_process(struct eap_sm *sm, void *priv,
  578. struct wpabuf *respData)
  579. {
  580. struct eap_sim_data *data = priv;
  581. const u8 *pos, *end;
  582. u8 subtype;
  583. size_t len;
  584. struct eap_sim_attrs attr;
  585. pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_SIM, respData, &len);
  586. if (pos == NULL || len < 3)
  587. return;
  588. end = pos + len;
  589. subtype = *pos;
  590. pos += 3;
  591. if (eap_sim_parse_attr(pos, end, &attr, 0, 0)) {
  592. wpa_printf(MSG_DEBUG, "EAP-SIM: Failed to parse attributes");
  593. eap_sim_state(data, FAILURE);
  594. return;
  595. }
  596. if (subtype == EAP_SIM_SUBTYPE_CLIENT_ERROR) {
  597. eap_sim_process_client_error(sm, data, respData, &attr);
  598. return;
  599. }
  600. switch (data->state) {
  601. case START:
  602. eap_sim_process_start(sm, data, respData, &attr);
  603. break;
  604. case CHALLENGE:
  605. eap_sim_process_challenge(sm, data, respData, &attr);
  606. break;
  607. case REAUTH:
  608. eap_sim_process_reauth(sm, data, respData, &attr);
  609. break;
  610. case NOTIFICATION:
  611. eap_sim_process_notification(sm, data, respData, &attr);
  612. break;
  613. default:
  614. wpa_printf(MSG_DEBUG, "EAP-SIM: Unknown state %d in "
  615. "process", data->state);
  616. break;
  617. }
  618. }
  619. static Boolean eap_sim_isDone(struct eap_sm *sm, void *priv)
  620. {
  621. struct eap_sim_data *data = priv;
  622. return data->state == SUCCESS || data->state == FAILURE;
  623. }
  624. static u8 * eap_sim_getKey(struct eap_sm *sm, void *priv, size_t *len)
  625. {
  626. struct eap_sim_data *data = priv;
  627. u8 *key;
  628. if (data->state != SUCCESS)
  629. return NULL;
  630. key = os_malloc(EAP_SIM_KEYING_DATA_LEN);
  631. if (key == NULL)
  632. return NULL;
  633. os_memcpy(key, data->msk, EAP_SIM_KEYING_DATA_LEN);
  634. *len = EAP_SIM_KEYING_DATA_LEN;
  635. return key;
  636. }
  637. static u8 * eap_sim_get_emsk(struct eap_sm *sm, void *priv, size_t *len)
  638. {
  639. struct eap_sim_data *data = priv;
  640. u8 *key;
  641. if (data->state != SUCCESS)
  642. return NULL;
  643. key = os_malloc(EAP_EMSK_LEN);
  644. if (key == NULL)
  645. return NULL;
  646. os_memcpy(key, data->emsk, EAP_EMSK_LEN);
  647. *len = EAP_EMSK_LEN;
  648. return key;
  649. }
  650. static Boolean eap_sim_isSuccess(struct eap_sm *sm, void *priv)
  651. {
  652. struct eap_sim_data *data = priv;
  653. return data->state == SUCCESS;
  654. }
  655. int eap_server_sim_register(void)
  656. {
  657. struct eap_method *eap;
  658. int ret;
  659. eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
  660. EAP_VENDOR_IETF, EAP_TYPE_SIM, "SIM");
  661. if (eap == NULL)
  662. return -1;
  663. eap->init = eap_sim_init;
  664. eap->reset = eap_sim_reset;
  665. eap->buildReq = eap_sim_buildReq;
  666. eap->check = eap_sim_check;
  667. eap->process = eap_sim_process;
  668. eap->isDone = eap_sim_isDone;
  669. eap->getKey = eap_sim_getKey;
  670. eap->isSuccess = eap_sim_isSuccess;
  671. eap->get_emsk = eap_sim_get_emsk;
  672. ret = eap_server_method_register(eap);
  673. if (ret)
  674. eap_server_method_free(eap);
  675. return ret;
  676. }