eap_server_aka.c 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271
  1. /*
  2. * hostapd / EAP-AKA (RFC 4187) and EAP-AKA' (draft-arkko-eap-aka-kdf)
  3. * Copyright (c) 2005-2008, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "crypto/sha256.h"
  11. #include "crypto/crypto.h"
  12. #include "crypto/random.h"
  13. #include "eap_common/eap_sim_common.h"
  14. #include "eap_server/eap_i.h"
  15. #include "eap_server/eap_sim_db.h"
  16. struct eap_aka_data {
  17. u8 mk[EAP_SIM_MK_LEN];
  18. u8 nonce_s[EAP_SIM_NONCE_S_LEN];
  19. u8 k_aut[EAP_AKA_PRIME_K_AUT_LEN];
  20. u8 k_encr[EAP_SIM_K_ENCR_LEN];
  21. u8 k_re[EAP_AKA_PRIME_K_RE_LEN]; /* EAP-AKA' only */
  22. u8 msk[EAP_SIM_KEYING_DATA_LEN];
  23. u8 emsk[EAP_EMSK_LEN];
  24. u8 rand[EAP_AKA_RAND_LEN];
  25. u8 autn[EAP_AKA_AUTN_LEN];
  26. u8 ck[EAP_AKA_CK_LEN];
  27. u8 ik[EAP_AKA_IK_LEN];
  28. u8 res[EAP_AKA_RES_MAX_LEN];
  29. size_t res_len;
  30. enum {
  31. IDENTITY, CHALLENGE, REAUTH, NOTIFICATION, SUCCESS, FAILURE
  32. } state;
  33. char *next_pseudonym;
  34. char *next_reauth_id;
  35. u16 counter;
  36. struct eap_sim_reauth *reauth;
  37. int auts_reported; /* whether the current AUTS has been reported to the
  38. * eap_sim_db */
  39. u16 notification;
  40. int use_result_ind;
  41. struct wpabuf *id_msgs;
  42. int pending_id;
  43. u8 eap_method;
  44. u8 *network_name;
  45. size_t network_name_len;
  46. u16 kdf;
  47. };
  48. static void eap_aka_determine_identity(struct eap_sm *sm,
  49. struct eap_aka_data *data,
  50. int before_identity, int after_reauth);
  51. static const char * eap_aka_state_txt(int state)
  52. {
  53. switch (state) {
  54. case IDENTITY:
  55. return "IDENTITY";
  56. case CHALLENGE:
  57. return "CHALLENGE";
  58. case REAUTH:
  59. return "REAUTH";
  60. case SUCCESS:
  61. return "SUCCESS";
  62. case FAILURE:
  63. return "FAILURE";
  64. case NOTIFICATION:
  65. return "NOTIFICATION";
  66. default:
  67. return "Unknown?!";
  68. }
  69. }
  70. static void eap_aka_state(struct eap_aka_data *data, int state)
  71. {
  72. wpa_printf(MSG_DEBUG, "EAP-AKA: %s -> %s",
  73. eap_aka_state_txt(data->state),
  74. eap_aka_state_txt(state));
  75. data->state = state;
  76. }
  77. static void * eap_aka_init(struct eap_sm *sm)
  78. {
  79. struct eap_aka_data *data;
  80. if (sm->eap_sim_db_priv == NULL) {
  81. wpa_printf(MSG_WARNING, "EAP-AKA: eap_sim_db not configured");
  82. return NULL;
  83. }
  84. data = os_zalloc(sizeof(*data));
  85. if (data == NULL)
  86. return NULL;
  87. data->eap_method = EAP_TYPE_AKA;
  88. data->state = IDENTITY;
  89. eap_aka_determine_identity(sm, data, 1, 0);
  90. data->pending_id = -1;
  91. return data;
  92. }
  93. #ifdef EAP_SERVER_AKA_PRIME
  94. static void * eap_aka_prime_init(struct eap_sm *sm)
  95. {
  96. struct eap_aka_data *data;
  97. /* TODO: make ANID configurable; see 3GPP TS 24.302 */
  98. char *network_name = "WLAN";
  99. if (sm->eap_sim_db_priv == NULL) {
  100. wpa_printf(MSG_WARNING, "EAP-AKA: eap_sim_db not configured");
  101. return NULL;
  102. }
  103. data = os_zalloc(sizeof(*data));
  104. if (data == NULL)
  105. return NULL;
  106. data->eap_method = EAP_TYPE_AKA_PRIME;
  107. data->network_name = (u8 *) os_strdup(network_name);
  108. if (data->network_name == NULL) {
  109. os_free(data);
  110. return NULL;
  111. }
  112. data->network_name_len = os_strlen(network_name);
  113. data->state = IDENTITY;
  114. eap_aka_determine_identity(sm, data, 1, 0);
  115. data->pending_id = -1;
  116. return data;
  117. }
  118. #endif /* EAP_SERVER_AKA_PRIME */
  119. static void eap_aka_reset(struct eap_sm *sm, void *priv)
  120. {
  121. struct eap_aka_data *data = priv;
  122. os_free(data->next_pseudonym);
  123. os_free(data->next_reauth_id);
  124. wpabuf_free(data->id_msgs);
  125. os_free(data->network_name);
  126. os_free(data);
  127. }
  128. static int eap_aka_add_id_msg(struct eap_aka_data *data,
  129. const struct wpabuf *msg)
  130. {
  131. if (msg == NULL)
  132. return -1;
  133. if (data->id_msgs == NULL) {
  134. data->id_msgs = wpabuf_dup(msg);
  135. return data->id_msgs == NULL ? -1 : 0;
  136. }
  137. if (wpabuf_resize(&data->id_msgs, wpabuf_len(msg)) < 0)
  138. return -1;
  139. wpabuf_put_buf(data->id_msgs, msg);
  140. return 0;
  141. }
  142. static void eap_aka_add_checkcode(struct eap_aka_data *data,
  143. struct eap_sim_msg *msg)
  144. {
  145. const u8 *addr;
  146. size_t len;
  147. u8 hash[SHA256_MAC_LEN];
  148. wpa_printf(MSG_DEBUG, " AT_CHECKCODE");
  149. if (data->id_msgs == NULL) {
  150. /*
  151. * No EAP-AKA/Identity packets were exchanged - send empty
  152. * checkcode.
  153. */
  154. eap_sim_msg_add(msg, EAP_SIM_AT_CHECKCODE, 0, NULL, 0);
  155. return;
  156. }
  157. /* Checkcode is SHA1 hash over all EAP-AKA/Identity packets. */
  158. addr = wpabuf_head(data->id_msgs);
  159. len = wpabuf_len(data->id_msgs);
  160. wpa_hexdump(MSG_MSGDUMP, "EAP-AKA: AT_CHECKCODE data", addr, len);
  161. if (data->eap_method == EAP_TYPE_AKA_PRIME)
  162. sha256_vector(1, &addr, &len, hash);
  163. else
  164. sha1_vector(1, &addr, &len, hash);
  165. eap_sim_msg_add(msg, EAP_SIM_AT_CHECKCODE, 0, hash,
  166. data->eap_method == EAP_TYPE_AKA_PRIME ?
  167. EAP_AKA_PRIME_CHECKCODE_LEN : EAP_AKA_CHECKCODE_LEN);
  168. }
  169. static int eap_aka_verify_checkcode(struct eap_aka_data *data,
  170. const u8 *checkcode, size_t checkcode_len)
  171. {
  172. const u8 *addr;
  173. size_t len;
  174. u8 hash[SHA256_MAC_LEN];
  175. size_t hash_len;
  176. if (checkcode == NULL)
  177. return -1;
  178. if (data->id_msgs == NULL) {
  179. if (checkcode_len != 0) {
  180. wpa_printf(MSG_DEBUG, "EAP-AKA: Checkcode from peer "
  181. "indicates that AKA/Identity messages were "
  182. "used, but they were not");
  183. return -1;
  184. }
  185. return 0;
  186. }
  187. hash_len = data->eap_method == EAP_TYPE_AKA_PRIME ?
  188. EAP_AKA_PRIME_CHECKCODE_LEN : EAP_AKA_CHECKCODE_LEN;
  189. if (checkcode_len != hash_len) {
  190. wpa_printf(MSG_DEBUG, "EAP-AKA: Checkcode from peer indicates "
  191. "that AKA/Identity message were not used, but they "
  192. "were");
  193. return -1;
  194. }
  195. /* Checkcode is SHA1 hash over all EAP-AKA/Identity packets. */
  196. addr = wpabuf_head(data->id_msgs);
  197. len = wpabuf_len(data->id_msgs);
  198. if (data->eap_method == EAP_TYPE_AKA_PRIME)
  199. sha256_vector(1, &addr, &len, hash);
  200. else
  201. sha1_vector(1, &addr, &len, hash);
  202. if (os_memcmp(hash, checkcode, hash_len) != 0) {
  203. wpa_printf(MSG_DEBUG, "EAP-AKA: Mismatch in AT_CHECKCODE");
  204. return -1;
  205. }
  206. return 0;
  207. }
  208. static struct wpabuf * eap_aka_build_identity(struct eap_sm *sm,
  209. struct eap_aka_data *data, u8 id)
  210. {
  211. struct eap_sim_msg *msg;
  212. struct wpabuf *buf;
  213. wpa_printf(MSG_DEBUG, "EAP-AKA: Generating Identity");
  214. msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, data->eap_method,
  215. EAP_AKA_SUBTYPE_IDENTITY);
  216. if (eap_sim_db_identity_known(sm->eap_sim_db_priv, sm->identity,
  217. sm->identity_len)) {
  218. wpa_printf(MSG_DEBUG, " AT_PERMANENT_ID_REQ");
  219. eap_sim_msg_add(msg, EAP_SIM_AT_PERMANENT_ID_REQ, 0, NULL, 0);
  220. } else {
  221. /*
  222. * RFC 4187, Chap. 4.1.4 recommends that identity from EAP is
  223. * ignored and the AKA/Identity is used to request the
  224. * identity.
  225. */
  226. wpa_printf(MSG_DEBUG, " AT_ANY_ID_REQ");
  227. eap_sim_msg_add(msg, EAP_SIM_AT_ANY_ID_REQ, 0, NULL, 0);
  228. }
  229. buf = eap_sim_msg_finish(msg, NULL, NULL, 0);
  230. if (eap_aka_add_id_msg(data, buf) < 0) {
  231. wpabuf_free(buf);
  232. return NULL;
  233. }
  234. data->pending_id = id;
  235. return buf;
  236. }
  237. static int eap_aka_build_encr(struct eap_sm *sm, struct eap_aka_data *data,
  238. struct eap_sim_msg *msg, u16 counter,
  239. const u8 *nonce_s)
  240. {
  241. os_free(data->next_pseudonym);
  242. if (nonce_s == NULL) {
  243. data->next_pseudonym =
  244. eap_sim_db_get_next_pseudonym(sm->eap_sim_db_priv, 1);
  245. } else {
  246. /* Do not update pseudonym during re-authentication */
  247. data->next_pseudonym = NULL;
  248. }
  249. os_free(data->next_reauth_id);
  250. if (data->counter <= EAP_AKA_MAX_FAST_REAUTHS) {
  251. data->next_reauth_id =
  252. eap_sim_db_get_next_reauth_id(sm->eap_sim_db_priv, 1);
  253. } else {
  254. wpa_printf(MSG_DEBUG, "EAP-AKA: Max fast re-authentication "
  255. "count exceeded - force full authentication");
  256. data->next_reauth_id = NULL;
  257. }
  258. if (data->next_pseudonym == NULL && data->next_reauth_id == NULL &&
  259. counter == 0 && nonce_s == NULL)
  260. return 0;
  261. wpa_printf(MSG_DEBUG, " AT_IV");
  262. wpa_printf(MSG_DEBUG, " AT_ENCR_DATA");
  263. eap_sim_msg_add_encr_start(msg, EAP_SIM_AT_IV, EAP_SIM_AT_ENCR_DATA);
  264. if (counter > 0) {
  265. wpa_printf(MSG_DEBUG, " *AT_COUNTER (%u)", counter);
  266. eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, counter, NULL, 0);
  267. }
  268. if (nonce_s) {
  269. wpa_printf(MSG_DEBUG, " *AT_NONCE_S");
  270. eap_sim_msg_add(msg, EAP_SIM_AT_NONCE_S, 0, nonce_s,
  271. EAP_SIM_NONCE_S_LEN);
  272. }
  273. if (data->next_pseudonym) {
  274. wpa_printf(MSG_DEBUG, " *AT_NEXT_PSEUDONYM (%s)",
  275. data->next_pseudonym);
  276. eap_sim_msg_add(msg, EAP_SIM_AT_NEXT_PSEUDONYM,
  277. os_strlen(data->next_pseudonym),
  278. (u8 *) data->next_pseudonym,
  279. os_strlen(data->next_pseudonym));
  280. }
  281. if (data->next_reauth_id) {
  282. wpa_printf(MSG_DEBUG, " *AT_NEXT_REAUTH_ID (%s)",
  283. data->next_reauth_id);
  284. eap_sim_msg_add(msg, EAP_SIM_AT_NEXT_REAUTH_ID,
  285. os_strlen(data->next_reauth_id),
  286. (u8 *) data->next_reauth_id,
  287. os_strlen(data->next_reauth_id));
  288. }
  289. if (eap_sim_msg_add_encr_end(msg, data->k_encr, EAP_SIM_AT_PADDING)) {
  290. wpa_printf(MSG_WARNING, "EAP-AKA: Failed to encrypt "
  291. "AT_ENCR_DATA");
  292. return -1;
  293. }
  294. return 0;
  295. }
  296. static struct wpabuf * eap_aka_build_challenge(struct eap_sm *sm,
  297. struct eap_aka_data *data,
  298. u8 id)
  299. {
  300. struct eap_sim_msg *msg;
  301. wpa_printf(MSG_DEBUG, "EAP-AKA: Generating Challenge");
  302. msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, data->eap_method,
  303. EAP_AKA_SUBTYPE_CHALLENGE);
  304. wpa_printf(MSG_DEBUG, " AT_RAND");
  305. eap_sim_msg_add(msg, EAP_SIM_AT_RAND, 0, data->rand, EAP_AKA_RAND_LEN);
  306. wpa_printf(MSG_DEBUG, " AT_AUTN");
  307. eap_sim_msg_add(msg, EAP_SIM_AT_AUTN, 0, data->autn, EAP_AKA_AUTN_LEN);
  308. if (data->eap_method == EAP_TYPE_AKA_PRIME) {
  309. if (data->kdf) {
  310. /* Add the selected KDF into the beginning */
  311. wpa_printf(MSG_DEBUG, " AT_KDF");
  312. eap_sim_msg_add(msg, EAP_SIM_AT_KDF, data->kdf,
  313. NULL, 0);
  314. }
  315. wpa_printf(MSG_DEBUG, " AT_KDF");
  316. eap_sim_msg_add(msg, EAP_SIM_AT_KDF, EAP_AKA_PRIME_KDF,
  317. NULL, 0);
  318. wpa_printf(MSG_DEBUG, " AT_KDF_INPUT");
  319. eap_sim_msg_add(msg, EAP_SIM_AT_KDF_INPUT,
  320. data->network_name_len,
  321. data->network_name, data->network_name_len);
  322. }
  323. if (eap_aka_build_encr(sm, data, msg, 0, NULL)) {
  324. eap_sim_msg_free(msg);
  325. return NULL;
  326. }
  327. eap_aka_add_checkcode(data, msg);
  328. if (sm->eap_sim_aka_result_ind) {
  329. wpa_printf(MSG_DEBUG, " AT_RESULT_IND");
  330. eap_sim_msg_add(msg, EAP_SIM_AT_RESULT_IND, 0, NULL, 0);
  331. }
  332. #ifdef EAP_SERVER_AKA_PRIME
  333. if (data->eap_method == EAP_TYPE_AKA) {
  334. u16 flags = 0;
  335. int i;
  336. int aka_prime_preferred = 0;
  337. i = 0;
  338. while (sm->user && i < EAP_MAX_METHODS &&
  339. (sm->user->methods[i].vendor != EAP_VENDOR_IETF ||
  340. sm->user->methods[i].method != EAP_TYPE_NONE)) {
  341. if (sm->user->methods[i].vendor == EAP_VENDOR_IETF) {
  342. if (sm->user->methods[i].method ==
  343. EAP_TYPE_AKA)
  344. break;
  345. if (sm->user->methods[i].method ==
  346. EAP_TYPE_AKA_PRIME) {
  347. aka_prime_preferred = 1;
  348. break;
  349. }
  350. }
  351. i++;
  352. }
  353. if (aka_prime_preferred)
  354. flags |= EAP_AKA_BIDDING_FLAG_D;
  355. eap_sim_msg_add(msg, EAP_SIM_AT_BIDDING, flags, NULL, 0);
  356. }
  357. #endif /* EAP_SERVER_AKA_PRIME */
  358. wpa_printf(MSG_DEBUG, " AT_MAC");
  359. eap_sim_msg_add_mac(msg, EAP_SIM_AT_MAC);
  360. return eap_sim_msg_finish(msg, data->k_aut, NULL, 0);
  361. }
  362. static struct wpabuf * eap_aka_build_reauth(struct eap_sm *sm,
  363. struct eap_aka_data *data, u8 id)
  364. {
  365. struct eap_sim_msg *msg;
  366. wpa_printf(MSG_DEBUG, "EAP-AKA: Generating Re-authentication");
  367. if (random_get_bytes(data->nonce_s, EAP_SIM_NONCE_S_LEN))
  368. return NULL;
  369. wpa_hexdump_key(MSG_MSGDUMP, "EAP-AKA: NONCE_S",
  370. data->nonce_s, EAP_SIM_NONCE_S_LEN);
  371. if (data->eap_method == EAP_TYPE_AKA_PRIME) {
  372. eap_aka_prime_derive_keys_reauth(data->k_re, data->counter,
  373. sm->identity,
  374. sm->identity_len,
  375. data->nonce_s,
  376. data->msk, data->emsk);
  377. } else {
  378. eap_sim_derive_keys(data->mk, data->k_encr, data->k_aut,
  379. data->msk, data->emsk);
  380. eap_sim_derive_keys_reauth(data->counter, sm->identity,
  381. sm->identity_len, data->nonce_s,
  382. data->mk, data->msk, data->emsk);
  383. }
  384. msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, data->eap_method,
  385. EAP_AKA_SUBTYPE_REAUTHENTICATION);
  386. if (eap_aka_build_encr(sm, data, msg, data->counter, data->nonce_s)) {
  387. eap_sim_msg_free(msg);
  388. return NULL;
  389. }
  390. eap_aka_add_checkcode(data, msg);
  391. if (sm->eap_sim_aka_result_ind) {
  392. wpa_printf(MSG_DEBUG, " AT_RESULT_IND");
  393. eap_sim_msg_add(msg, EAP_SIM_AT_RESULT_IND, 0, NULL, 0);
  394. }
  395. wpa_printf(MSG_DEBUG, " AT_MAC");
  396. eap_sim_msg_add_mac(msg, EAP_SIM_AT_MAC);
  397. return eap_sim_msg_finish(msg, data->k_aut, NULL, 0);
  398. }
  399. static struct wpabuf * eap_aka_build_notification(struct eap_sm *sm,
  400. struct eap_aka_data *data,
  401. u8 id)
  402. {
  403. struct eap_sim_msg *msg;
  404. wpa_printf(MSG_DEBUG, "EAP-AKA: Generating Notification");
  405. msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, data->eap_method,
  406. EAP_AKA_SUBTYPE_NOTIFICATION);
  407. wpa_printf(MSG_DEBUG, " AT_NOTIFICATION (%d)", data->notification);
  408. eap_sim_msg_add(msg, EAP_SIM_AT_NOTIFICATION, data->notification,
  409. NULL, 0);
  410. if (data->use_result_ind) {
  411. if (data->reauth) {
  412. wpa_printf(MSG_DEBUG, " AT_IV");
  413. wpa_printf(MSG_DEBUG, " AT_ENCR_DATA");
  414. eap_sim_msg_add_encr_start(msg, EAP_SIM_AT_IV,
  415. EAP_SIM_AT_ENCR_DATA);
  416. wpa_printf(MSG_DEBUG, " *AT_COUNTER (%u)",
  417. data->counter);
  418. eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, data->counter,
  419. NULL, 0);
  420. if (eap_sim_msg_add_encr_end(msg, data->k_encr,
  421. EAP_SIM_AT_PADDING)) {
  422. wpa_printf(MSG_WARNING, "EAP-AKA: Failed to "
  423. "encrypt AT_ENCR_DATA");
  424. eap_sim_msg_free(msg);
  425. return NULL;
  426. }
  427. }
  428. wpa_printf(MSG_DEBUG, " AT_MAC");
  429. eap_sim_msg_add_mac(msg, EAP_SIM_AT_MAC);
  430. }
  431. return eap_sim_msg_finish(msg, data->k_aut, NULL, 0);
  432. }
  433. static struct wpabuf * eap_aka_buildReq(struct eap_sm *sm, void *priv, u8 id)
  434. {
  435. struct eap_aka_data *data = priv;
  436. data->auts_reported = 0;
  437. switch (data->state) {
  438. case IDENTITY:
  439. return eap_aka_build_identity(sm, data, id);
  440. case CHALLENGE:
  441. return eap_aka_build_challenge(sm, data, id);
  442. case REAUTH:
  443. return eap_aka_build_reauth(sm, data, id);
  444. case NOTIFICATION:
  445. return eap_aka_build_notification(sm, data, id);
  446. default:
  447. wpa_printf(MSG_DEBUG, "EAP-AKA: Unknown state %d in "
  448. "buildReq", data->state);
  449. break;
  450. }
  451. return NULL;
  452. }
  453. static Boolean eap_aka_check(struct eap_sm *sm, void *priv,
  454. struct wpabuf *respData)
  455. {
  456. struct eap_aka_data *data = priv;
  457. const u8 *pos;
  458. size_t len;
  459. pos = eap_hdr_validate(EAP_VENDOR_IETF, data->eap_method, respData,
  460. &len);
  461. if (pos == NULL || len < 3) {
  462. wpa_printf(MSG_INFO, "EAP-AKA: Invalid frame");
  463. return TRUE;
  464. }
  465. return FALSE;
  466. }
  467. static Boolean eap_aka_subtype_ok(struct eap_aka_data *data, u8 subtype)
  468. {
  469. if (subtype == EAP_AKA_SUBTYPE_CLIENT_ERROR ||
  470. subtype == EAP_AKA_SUBTYPE_AUTHENTICATION_REJECT)
  471. return FALSE;
  472. switch (data->state) {
  473. case IDENTITY:
  474. if (subtype != EAP_AKA_SUBTYPE_IDENTITY) {
  475. wpa_printf(MSG_INFO, "EAP-AKA: Unexpected response "
  476. "subtype %d", subtype);
  477. return TRUE;
  478. }
  479. break;
  480. case CHALLENGE:
  481. if (subtype != EAP_AKA_SUBTYPE_CHALLENGE &&
  482. subtype != EAP_AKA_SUBTYPE_SYNCHRONIZATION_FAILURE) {
  483. wpa_printf(MSG_INFO, "EAP-AKA: Unexpected response "
  484. "subtype %d", subtype);
  485. return TRUE;
  486. }
  487. break;
  488. case REAUTH:
  489. if (subtype != EAP_AKA_SUBTYPE_REAUTHENTICATION) {
  490. wpa_printf(MSG_INFO, "EAP-AKA: Unexpected response "
  491. "subtype %d", subtype);
  492. return TRUE;
  493. }
  494. break;
  495. case NOTIFICATION:
  496. if (subtype != EAP_AKA_SUBTYPE_NOTIFICATION) {
  497. wpa_printf(MSG_INFO, "EAP-AKA: Unexpected response "
  498. "subtype %d", subtype);
  499. return TRUE;
  500. }
  501. break;
  502. default:
  503. wpa_printf(MSG_INFO, "EAP-AKA: Unexpected state (%d) for "
  504. "processing a response", data->state);
  505. return TRUE;
  506. }
  507. return FALSE;
  508. }
  509. static void eap_aka_determine_identity(struct eap_sm *sm,
  510. struct eap_aka_data *data,
  511. int before_identity, int after_reauth)
  512. {
  513. const u8 *identity;
  514. size_t identity_len;
  515. int res;
  516. identity = NULL;
  517. identity_len = 0;
  518. if (after_reauth && data->reauth) {
  519. identity = data->reauth->identity;
  520. identity_len = data->reauth->identity_len;
  521. } else if (sm->identity && sm->identity_len > 0 &&
  522. sm->identity[0] == EAP_AKA_PERMANENT_PREFIX) {
  523. identity = sm->identity;
  524. identity_len = sm->identity_len;
  525. } else {
  526. identity = eap_sim_db_get_permanent(sm->eap_sim_db_priv,
  527. sm->identity,
  528. sm->identity_len,
  529. &identity_len);
  530. if (identity == NULL) {
  531. data->reauth = eap_sim_db_get_reauth_entry(
  532. sm->eap_sim_db_priv, sm->identity,
  533. sm->identity_len);
  534. if (data->reauth &&
  535. data->reauth->aka_prime !=
  536. (data->eap_method == EAP_TYPE_AKA_PRIME)) {
  537. wpa_printf(MSG_DEBUG, "EAP-AKA: Reauth data "
  538. "was for different AKA version");
  539. data->reauth = NULL;
  540. }
  541. if (data->reauth) {
  542. wpa_printf(MSG_DEBUG, "EAP-AKA: Using fast "
  543. "re-authentication");
  544. identity = data->reauth->identity;
  545. identity_len = data->reauth->identity_len;
  546. data->counter = data->reauth->counter;
  547. if (data->eap_method == EAP_TYPE_AKA_PRIME) {
  548. os_memcpy(data->k_encr,
  549. data->reauth->k_encr,
  550. EAP_SIM_K_ENCR_LEN);
  551. os_memcpy(data->k_aut,
  552. data->reauth->k_aut,
  553. EAP_AKA_PRIME_K_AUT_LEN);
  554. os_memcpy(data->k_re,
  555. data->reauth->k_re,
  556. EAP_AKA_PRIME_K_RE_LEN);
  557. } else {
  558. os_memcpy(data->mk, data->reauth->mk,
  559. EAP_SIM_MK_LEN);
  560. }
  561. }
  562. }
  563. }
  564. if (identity == NULL ||
  565. eap_sim_db_identity_known(sm->eap_sim_db_priv, sm->identity,
  566. sm->identity_len) < 0) {
  567. if (before_identity) {
  568. wpa_printf(MSG_DEBUG, "EAP-AKA: Permanent user name "
  569. "not known - send AKA-Identity request");
  570. eap_aka_state(data, IDENTITY);
  571. return;
  572. } else {
  573. wpa_printf(MSG_DEBUG, "EAP-AKA: Unknown whether the "
  574. "permanent user name is known; try to use "
  575. "it");
  576. /* eap_sim_db_get_aka_auth() will report failure, if
  577. * this identity is not known. */
  578. }
  579. }
  580. wpa_hexdump_ascii(MSG_DEBUG, "EAP-AKA: Identity",
  581. identity, identity_len);
  582. if (!after_reauth && data->reauth) {
  583. eap_aka_state(data, REAUTH);
  584. return;
  585. }
  586. res = eap_sim_db_get_aka_auth(sm->eap_sim_db_priv, identity,
  587. identity_len, data->rand, data->autn,
  588. data->ik, data->ck, data->res,
  589. &data->res_len, sm);
  590. if (res == EAP_SIM_DB_PENDING) {
  591. wpa_printf(MSG_DEBUG, "EAP-AKA: AKA authentication data "
  592. "not yet available - pending request");
  593. sm->method_pending = METHOD_PENDING_WAIT;
  594. return;
  595. }
  596. #ifdef EAP_SERVER_AKA_PRIME
  597. if (data->eap_method == EAP_TYPE_AKA_PRIME) {
  598. /* Note: AUTN = (SQN ^ AK) || AMF || MAC which gives us the
  599. * needed 6-octet SQN ^AK for CK',IK' derivation */
  600. eap_aka_prime_derive_ck_ik_prime(data->ck, data->ik,
  601. data->autn,
  602. data->network_name,
  603. data->network_name_len);
  604. }
  605. #endif /* EAP_SERVER_AKA_PRIME */
  606. data->reauth = NULL;
  607. data->counter = 0; /* reset re-auth counter since this is full auth */
  608. if (res != 0) {
  609. wpa_printf(MSG_INFO, "EAP-AKA: Failed to get AKA "
  610. "authentication data for the peer");
  611. data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH;
  612. eap_aka_state(data, NOTIFICATION);
  613. return;
  614. }
  615. if (sm->method_pending == METHOD_PENDING_WAIT) {
  616. wpa_printf(MSG_DEBUG, "EAP-AKA: AKA authentication data "
  617. "available - abort pending wait");
  618. sm->method_pending = METHOD_PENDING_NONE;
  619. }
  620. identity_len = sm->identity_len;
  621. while (identity_len > 0 && sm->identity[identity_len - 1] == '\0') {
  622. wpa_printf(MSG_DEBUG, "EAP-AKA: Workaround - drop last null "
  623. "character from identity");
  624. identity_len--;
  625. }
  626. wpa_hexdump_ascii(MSG_DEBUG, "EAP-AKA: Identity for MK derivation",
  627. sm->identity, identity_len);
  628. if (data->eap_method == EAP_TYPE_AKA_PRIME) {
  629. eap_aka_prime_derive_keys(sm->identity, identity_len, data->ik,
  630. data->ck, data->k_encr, data->k_aut,
  631. data->k_re, data->msk, data->emsk);
  632. } else {
  633. eap_aka_derive_mk(sm->identity, identity_len, data->ik,
  634. data->ck, data->mk);
  635. eap_sim_derive_keys(data->mk, data->k_encr, data->k_aut,
  636. data->msk, data->emsk);
  637. }
  638. eap_aka_state(data, CHALLENGE);
  639. }
  640. static void eap_aka_process_identity(struct eap_sm *sm,
  641. struct eap_aka_data *data,
  642. struct wpabuf *respData,
  643. struct eap_sim_attrs *attr)
  644. {
  645. wpa_printf(MSG_DEBUG, "EAP-AKA: Processing Identity");
  646. if (attr->mac || attr->iv || attr->encr_data) {
  647. wpa_printf(MSG_WARNING, "EAP-AKA: Unexpected attribute "
  648. "received in EAP-Response/AKA-Identity");
  649. data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH;
  650. eap_aka_state(data, NOTIFICATION);
  651. return;
  652. }
  653. if (attr->identity) {
  654. os_free(sm->identity);
  655. sm->identity = os_malloc(attr->identity_len);
  656. if (sm->identity) {
  657. os_memcpy(sm->identity, attr->identity,
  658. attr->identity_len);
  659. sm->identity_len = attr->identity_len;
  660. }
  661. }
  662. eap_aka_determine_identity(sm, data, 0, 0);
  663. if (eap_get_id(respData) == data->pending_id) {
  664. data->pending_id = -1;
  665. eap_aka_add_id_msg(data, respData);
  666. }
  667. }
  668. static int eap_aka_verify_mac(struct eap_aka_data *data,
  669. const struct wpabuf *req,
  670. const u8 *mac, const u8 *extra,
  671. size_t extra_len)
  672. {
  673. if (data->eap_method == EAP_TYPE_AKA_PRIME)
  674. return eap_sim_verify_mac_sha256(data->k_aut, req, mac, extra,
  675. extra_len);
  676. return eap_sim_verify_mac(data->k_aut, req, mac, extra, extra_len);
  677. }
  678. static void eap_aka_process_challenge(struct eap_sm *sm,
  679. struct eap_aka_data *data,
  680. struct wpabuf *respData,
  681. struct eap_sim_attrs *attr)
  682. {
  683. const u8 *identity;
  684. size_t identity_len;
  685. wpa_printf(MSG_DEBUG, "EAP-AKA: Processing Challenge");
  686. #ifdef EAP_SERVER_AKA_PRIME
  687. #if 0
  688. /* KDF negotiation; to be enabled only after more than one KDF is
  689. * supported */
  690. if (data->eap_method == EAP_TYPE_AKA_PRIME &&
  691. attr->kdf_count == 1 && attr->mac == NULL) {
  692. if (attr->kdf[0] != EAP_AKA_PRIME_KDF) {
  693. wpa_printf(MSG_WARNING, "EAP-AKA': Peer selected "
  694. "unknown KDF");
  695. data->notification =
  696. EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH;
  697. eap_aka_state(data, NOTIFICATION);
  698. return;
  699. }
  700. data->kdf = attr->kdf[0];
  701. /* Allow negotiation to continue with the selected KDF by
  702. * sending another Challenge message */
  703. wpa_printf(MSG_DEBUG, "EAP-AKA': KDF %d selected", data->kdf);
  704. return;
  705. }
  706. #endif
  707. #endif /* EAP_SERVER_AKA_PRIME */
  708. if (attr->checkcode &&
  709. eap_aka_verify_checkcode(data, attr->checkcode,
  710. attr->checkcode_len)) {
  711. wpa_printf(MSG_WARNING, "EAP-AKA: Invalid AT_CHECKCODE in the "
  712. "message");
  713. data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH;
  714. eap_aka_state(data, NOTIFICATION);
  715. return;
  716. }
  717. if (attr->mac == NULL ||
  718. eap_aka_verify_mac(data, respData, attr->mac, NULL, 0)) {
  719. wpa_printf(MSG_WARNING, "EAP-AKA: Challenge message "
  720. "did not include valid AT_MAC");
  721. data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH;
  722. eap_aka_state(data, NOTIFICATION);
  723. return;
  724. }
  725. /*
  726. * AT_RES is padded, so verify that there is enough room for RES and
  727. * that the RES length in bits matches with the expected RES.
  728. */
  729. if (attr->res == NULL || attr->res_len < data->res_len ||
  730. attr->res_len_bits != data->res_len * 8 ||
  731. os_memcmp(attr->res, data->res, data->res_len) != 0) {
  732. wpa_printf(MSG_WARNING, "EAP-AKA: Challenge message did not "
  733. "include valid AT_RES (attr len=%lu, res len=%lu "
  734. "bits, expected %lu bits)",
  735. (unsigned long) attr->res_len,
  736. (unsigned long) attr->res_len_bits,
  737. (unsigned long) data->res_len * 8);
  738. data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH;
  739. eap_aka_state(data, NOTIFICATION);
  740. return;
  741. }
  742. wpa_printf(MSG_DEBUG, "EAP-AKA: Challenge response includes the "
  743. "correct AT_MAC");
  744. if (sm->eap_sim_aka_result_ind && attr->result_ind) {
  745. data->use_result_ind = 1;
  746. data->notification = EAP_SIM_SUCCESS;
  747. eap_aka_state(data, NOTIFICATION);
  748. } else
  749. eap_aka_state(data, SUCCESS);
  750. identity = eap_sim_db_get_permanent(sm->eap_sim_db_priv, sm->identity,
  751. sm->identity_len, &identity_len);
  752. if (identity == NULL) {
  753. identity = sm->identity;
  754. identity_len = sm->identity_len;
  755. }
  756. if (data->next_pseudonym) {
  757. eap_sim_db_add_pseudonym(sm->eap_sim_db_priv, identity,
  758. identity_len,
  759. data->next_pseudonym);
  760. data->next_pseudonym = NULL;
  761. }
  762. if (data->next_reauth_id) {
  763. if (data->eap_method == EAP_TYPE_AKA_PRIME) {
  764. #ifdef EAP_SERVER_AKA_PRIME
  765. eap_sim_db_add_reauth_prime(sm->eap_sim_db_priv,
  766. identity,
  767. identity_len,
  768. data->next_reauth_id,
  769. data->counter + 1,
  770. data->k_encr, data->k_aut,
  771. data->k_re);
  772. #endif /* EAP_SERVER_AKA_PRIME */
  773. } else {
  774. eap_sim_db_add_reauth(sm->eap_sim_db_priv, identity,
  775. identity_len,
  776. data->next_reauth_id,
  777. data->counter + 1,
  778. data->mk);
  779. }
  780. data->next_reauth_id = NULL;
  781. }
  782. }
  783. static void eap_aka_process_sync_failure(struct eap_sm *sm,
  784. struct eap_aka_data *data,
  785. struct wpabuf *respData,
  786. struct eap_sim_attrs *attr)
  787. {
  788. wpa_printf(MSG_DEBUG, "EAP-AKA: Processing Synchronization-Failure");
  789. if (attr->auts == NULL) {
  790. wpa_printf(MSG_WARNING, "EAP-AKA: Synchronization-Failure "
  791. "message did not include valid AT_AUTS");
  792. data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH;
  793. eap_aka_state(data, NOTIFICATION);
  794. return;
  795. }
  796. /* Avoid re-reporting AUTS when processing pending EAP packet by
  797. * maintaining a local flag stating whether this AUTS has already been
  798. * reported. */
  799. if (!data->auts_reported &&
  800. eap_sim_db_resynchronize(sm->eap_sim_db_priv, sm->identity,
  801. sm->identity_len, attr->auts,
  802. data->rand)) {
  803. wpa_printf(MSG_WARNING, "EAP-AKA: Resynchronization failed");
  804. data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH;
  805. eap_aka_state(data, NOTIFICATION);
  806. return;
  807. }
  808. data->auts_reported = 1;
  809. /* Try again after resynchronization */
  810. eap_aka_determine_identity(sm, data, 0, 0);
  811. }
  812. static void eap_aka_process_reauth(struct eap_sm *sm,
  813. struct eap_aka_data *data,
  814. struct wpabuf *respData,
  815. struct eap_sim_attrs *attr)
  816. {
  817. struct eap_sim_attrs eattr;
  818. u8 *decrypted = NULL;
  819. const u8 *identity, *id2;
  820. size_t identity_len, id2_len;
  821. wpa_printf(MSG_DEBUG, "EAP-AKA: Processing Reauthentication");
  822. if (attr->mac == NULL ||
  823. eap_aka_verify_mac(data, respData, attr->mac, data->nonce_s,
  824. EAP_SIM_NONCE_S_LEN)) {
  825. wpa_printf(MSG_WARNING, "EAP-AKA: Re-authentication message "
  826. "did not include valid AT_MAC");
  827. goto fail;
  828. }
  829. if (attr->encr_data == NULL || attr->iv == NULL) {
  830. wpa_printf(MSG_WARNING, "EAP-AKA: Reauthentication "
  831. "message did not include encrypted data");
  832. goto fail;
  833. }
  834. decrypted = eap_sim_parse_encr(data->k_encr, attr->encr_data,
  835. attr->encr_data_len, attr->iv, &eattr,
  836. 0);
  837. if (decrypted == NULL) {
  838. wpa_printf(MSG_WARNING, "EAP-AKA: Failed to parse encrypted "
  839. "data from reauthentication message");
  840. goto fail;
  841. }
  842. if (eattr.counter != data->counter) {
  843. wpa_printf(MSG_WARNING, "EAP-AKA: Re-authentication message "
  844. "used incorrect counter %u, expected %u",
  845. eattr.counter, data->counter);
  846. goto fail;
  847. }
  848. os_free(decrypted);
  849. decrypted = NULL;
  850. wpa_printf(MSG_DEBUG, "EAP-AKA: Re-authentication response includes "
  851. "the correct AT_MAC");
  852. if (eattr.counter_too_small) {
  853. wpa_printf(MSG_DEBUG, "EAP-AKA: Re-authentication response "
  854. "included AT_COUNTER_TOO_SMALL - starting full "
  855. "authentication");
  856. eap_aka_determine_identity(sm, data, 0, 1);
  857. return;
  858. }
  859. if (sm->eap_sim_aka_result_ind && attr->result_ind) {
  860. data->use_result_ind = 1;
  861. data->notification = EAP_SIM_SUCCESS;
  862. eap_aka_state(data, NOTIFICATION);
  863. } else
  864. eap_aka_state(data, SUCCESS);
  865. if (data->reauth) {
  866. identity = data->reauth->identity;
  867. identity_len = data->reauth->identity_len;
  868. } else {
  869. identity = sm->identity;
  870. identity_len = sm->identity_len;
  871. }
  872. id2 = eap_sim_db_get_permanent(sm->eap_sim_db_priv, identity,
  873. identity_len, &id2_len);
  874. if (id2) {
  875. identity = id2;
  876. identity_len = id2_len;
  877. }
  878. if (data->next_reauth_id) {
  879. if (data->eap_method == EAP_TYPE_AKA_PRIME) {
  880. #ifdef EAP_SERVER_AKA_PRIME
  881. eap_sim_db_add_reauth_prime(sm->eap_sim_db_priv,
  882. identity,
  883. identity_len,
  884. data->next_reauth_id,
  885. data->counter + 1,
  886. data->k_encr, data->k_aut,
  887. data->k_re);
  888. #endif /* EAP_SERVER_AKA_PRIME */
  889. } else {
  890. eap_sim_db_add_reauth(sm->eap_sim_db_priv, identity,
  891. identity_len,
  892. data->next_reauth_id,
  893. data->counter + 1,
  894. data->mk);
  895. }
  896. data->next_reauth_id = NULL;
  897. } else {
  898. eap_sim_db_remove_reauth(sm->eap_sim_db_priv, data->reauth);
  899. data->reauth = NULL;
  900. }
  901. return;
  902. fail:
  903. data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH;
  904. eap_aka_state(data, NOTIFICATION);
  905. eap_sim_db_remove_reauth(sm->eap_sim_db_priv, data->reauth);
  906. data->reauth = NULL;
  907. os_free(decrypted);
  908. }
  909. static void eap_aka_process_client_error(struct eap_sm *sm,
  910. struct eap_aka_data *data,
  911. struct wpabuf *respData,
  912. struct eap_sim_attrs *attr)
  913. {
  914. wpa_printf(MSG_DEBUG, "EAP-AKA: Client reported error %d",
  915. attr->client_error_code);
  916. if (data->notification == EAP_SIM_SUCCESS && data->use_result_ind)
  917. eap_aka_state(data, SUCCESS);
  918. else
  919. eap_aka_state(data, FAILURE);
  920. }
  921. static void eap_aka_process_authentication_reject(
  922. struct eap_sm *sm, struct eap_aka_data *data,
  923. struct wpabuf *respData, struct eap_sim_attrs *attr)
  924. {
  925. wpa_printf(MSG_DEBUG, "EAP-AKA: Client rejected authentication");
  926. eap_aka_state(data, FAILURE);
  927. }
  928. static void eap_aka_process_notification(struct eap_sm *sm,
  929. struct eap_aka_data *data,
  930. struct wpabuf *respData,
  931. struct eap_sim_attrs *attr)
  932. {
  933. wpa_printf(MSG_DEBUG, "EAP-AKA: Client replied to notification");
  934. if (data->notification == EAP_SIM_SUCCESS && data->use_result_ind)
  935. eap_aka_state(data, SUCCESS);
  936. else
  937. eap_aka_state(data, FAILURE);
  938. }
  939. static void eap_aka_process(struct eap_sm *sm, void *priv,
  940. struct wpabuf *respData)
  941. {
  942. struct eap_aka_data *data = priv;
  943. const u8 *pos, *end;
  944. u8 subtype;
  945. size_t len;
  946. struct eap_sim_attrs attr;
  947. pos = eap_hdr_validate(EAP_VENDOR_IETF, data->eap_method, respData,
  948. &len);
  949. if (pos == NULL || len < 3)
  950. return;
  951. end = pos + len;
  952. subtype = *pos;
  953. pos += 3;
  954. if (eap_aka_subtype_ok(data, subtype)) {
  955. wpa_printf(MSG_DEBUG, "EAP-AKA: Unrecognized or unexpected "
  956. "EAP-AKA Subtype in EAP Response");
  957. data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH;
  958. eap_aka_state(data, NOTIFICATION);
  959. return;
  960. }
  961. if (eap_sim_parse_attr(pos, end, &attr,
  962. data->eap_method == EAP_TYPE_AKA_PRIME ? 2 : 1,
  963. 0)) {
  964. wpa_printf(MSG_DEBUG, "EAP-AKA: Failed to parse attributes");
  965. data->notification = EAP_SIM_GENERAL_FAILURE_BEFORE_AUTH;
  966. eap_aka_state(data, NOTIFICATION);
  967. return;
  968. }
  969. if (subtype == EAP_AKA_SUBTYPE_CLIENT_ERROR) {
  970. eap_aka_process_client_error(sm, data, respData, &attr);
  971. return;
  972. }
  973. if (subtype == EAP_AKA_SUBTYPE_AUTHENTICATION_REJECT) {
  974. eap_aka_process_authentication_reject(sm, data, respData,
  975. &attr);
  976. return;
  977. }
  978. switch (data->state) {
  979. case IDENTITY:
  980. eap_aka_process_identity(sm, data, respData, &attr);
  981. break;
  982. case CHALLENGE:
  983. if (subtype == EAP_AKA_SUBTYPE_SYNCHRONIZATION_FAILURE) {
  984. eap_aka_process_sync_failure(sm, data, respData,
  985. &attr);
  986. } else {
  987. eap_aka_process_challenge(sm, data, respData, &attr);
  988. }
  989. break;
  990. case REAUTH:
  991. eap_aka_process_reauth(sm, data, respData, &attr);
  992. break;
  993. case NOTIFICATION:
  994. eap_aka_process_notification(sm, data, respData, &attr);
  995. break;
  996. default:
  997. wpa_printf(MSG_DEBUG, "EAP-AKA: Unknown state %d in "
  998. "process", data->state);
  999. break;
  1000. }
  1001. }
  1002. static Boolean eap_aka_isDone(struct eap_sm *sm, void *priv)
  1003. {
  1004. struct eap_aka_data *data = priv;
  1005. return data->state == SUCCESS || data->state == FAILURE;
  1006. }
  1007. static u8 * eap_aka_getKey(struct eap_sm *sm, void *priv, size_t *len)
  1008. {
  1009. struct eap_aka_data *data = priv;
  1010. u8 *key;
  1011. if (data->state != SUCCESS)
  1012. return NULL;
  1013. key = os_malloc(EAP_SIM_KEYING_DATA_LEN);
  1014. if (key == NULL)
  1015. return NULL;
  1016. os_memcpy(key, data->msk, EAP_SIM_KEYING_DATA_LEN);
  1017. *len = EAP_SIM_KEYING_DATA_LEN;
  1018. return key;
  1019. }
  1020. static u8 * eap_aka_get_emsk(struct eap_sm *sm, void *priv, size_t *len)
  1021. {
  1022. struct eap_aka_data *data = priv;
  1023. u8 *key;
  1024. if (data->state != SUCCESS)
  1025. return NULL;
  1026. key = os_malloc(EAP_EMSK_LEN);
  1027. if (key == NULL)
  1028. return NULL;
  1029. os_memcpy(key, data->emsk, EAP_EMSK_LEN);
  1030. *len = EAP_EMSK_LEN;
  1031. return key;
  1032. }
  1033. static Boolean eap_aka_isSuccess(struct eap_sm *sm, void *priv)
  1034. {
  1035. struct eap_aka_data *data = priv;
  1036. return data->state == SUCCESS;
  1037. }
  1038. int eap_server_aka_register(void)
  1039. {
  1040. struct eap_method *eap;
  1041. int ret;
  1042. eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
  1043. EAP_VENDOR_IETF, EAP_TYPE_AKA, "AKA");
  1044. if (eap == NULL)
  1045. return -1;
  1046. eap->init = eap_aka_init;
  1047. eap->reset = eap_aka_reset;
  1048. eap->buildReq = eap_aka_buildReq;
  1049. eap->check = eap_aka_check;
  1050. eap->process = eap_aka_process;
  1051. eap->isDone = eap_aka_isDone;
  1052. eap->getKey = eap_aka_getKey;
  1053. eap->isSuccess = eap_aka_isSuccess;
  1054. eap->get_emsk = eap_aka_get_emsk;
  1055. ret = eap_server_method_register(eap);
  1056. if (ret)
  1057. eap_server_method_free(eap);
  1058. return ret;
  1059. }
  1060. #ifdef EAP_SERVER_AKA_PRIME
  1061. int eap_server_aka_prime_register(void)
  1062. {
  1063. struct eap_method *eap;
  1064. int ret;
  1065. eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
  1066. EAP_VENDOR_IETF, EAP_TYPE_AKA_PRIME,
  1067. "AKA'");
  1068. if (eap == NULL)
  1069. return -1;
  1070. eap->init = eap_aka_prime_init;
  1071. eap->reset = eap_aka_reset;
  1072. eap->buildReq = eap_aka_buildReq;
  1073. eap->check = eap_aka_check;
  1074. eap->process = eap_aka_process;
  1075. eap->isDone = eap_aka_isDone;
  1076. eap->getKey = eap_aka_getKey;
  1077. eap->isSuccess = eap_aka_isSuccess;
  1078. eap->get_emsk = eap_aka_get_emsk;
  1079. ret = eap_server_method_register(eap);
  1080. if (ret)
  1081. eap_server_method_free(eap);
  1082. return ret;
  1083. }
  1084. #endif /* EAP_SERVER_AKA_PRIME */