eap_aka.c 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601
  1. /*
  2. * EAP peer method: EAP-AKA (RFC 4187) and EAP-AKA' (RFC 5448)
  3. * Copyright (c) 2004-2012, 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 "pcsc_funcs.h"
  11. #include "crypto/crypto.h"
  12. #include "crypto/sha1.h"
  13. #include "crypto/sha256.h"
  14. #include "crypto/milenage.h"
  15. #include "eap_common/eap_sim_common.h"
  16. #include "eap_config.h"
  17. #include "eap_i.h"
  18. struct eap_aka_data {
  19. u8 ik[EAP_AKA_IK_LEN], ck[EAP_AKA_CK_LEN], res[EAP_AKA_RES_MAX_LEN];
  20. size_t res_len;
  21. u8 nonce_s[EAP_SIM_NONCE_S_LEN];
  22. u8 mk[EAP_SIM_MK_LEN];
  23. u8 k_aut[EAP_AKA_PRIME_K_AUT_LEN];
  24. u8 k_encr[EAP_SIM_K_ENCR_LEN];
  25. u8 k_re[EAP_AKA_PRIME_K_RE_LEN]; /* EAP-AKA' only */
  26. u8 msk[EAP_SIM_KEYING_DATA_LEN];
  27. u8 emsk[EAP_EMSK_LEN];
  28. u8 rand[EAP_AKA_RAND_LEN], autn[EAP_AKA_AUTN_LEN];
  29. u8 auts[EAP_AKA_AUTS_LEN];
  30. int num_id_req, num_notification;
  31. u8 *pseudonym;
  32. size_t pseudonym_len;
  33. u8 *reauth_id;
  34. size_t reauth_id_len;
  35. int reauth;
  36. unsigned int counter, counter_too_small;
  37. u8 *last_eap_identity;
  38. size_t last_eap_identity_len;
  39. enum {
  40. CONTINUE, RESULT_SUCCESS, SUCCESS, FAILURE
  41. } state;
  42. struct wpabuf *id_msgs;
  43. int prev_id;
  44. int result_ind, use_result_ind;
  45. int use_pseudonym;
  46. u8 eap_method;
  47. u8 *network_name;
  48. size_t network_name_len;
  49. u16 kdf;
  50. int kdf_negotiation;
  51. u16 last_kdf_attrs[EAP_AKA_PRIME_KDF_MAX];
  52. size_t last_kdf_count;
  53. int error_code;
  54. };
  55. #ifndef CONFIG_NO_STDOUT_DEBUG
  56. static const char * eap_aka_state_txt(int state)
  57. {
  58. switch (state) {
  59. case CONTINUE:
  60. return "CONTINUE";
  61. case RESULT_SUCCESS:
  62. return "RESULT_SUCCESS";
  63. case SUCCESS:
  64. return "SUCCESS";
  65. case FAILURE:
  66. return "FAILURE";
  67. default:
  68. return "?";
  69. }
  70. }
  71. #endif /* CONFIG_NO_STDOUT_DEBUG */
  72. static void eap_aka_state(struct eap_aka_data *data, int state)
  73. {
  74. wpa_printf(MSG_DEBUG, "EAP-AKA: %s -> %s",
  75. eap_aka_state_txt(data->state),
  76. eap_aka_state_txt(state));
  77. data->state = state;
  78. }
  79. static void * eap_aka_init(struct eap_sm *sm)
  80. {
  81. struct eap_aka_data *data;
  82. const char *phase1 = eap_get_config_phase1(sm);
  83. struct eap_peer_config *config = eap_get_config(sm);
  84. data = os_zalloc(sizeof(*data));
  85. if (data == NULL)
  86. return NULL;
  87. data->eap_method = EAP_TYPE_AKA;
  88. /* Zero is a valid error code, so we need to initialize */
  89. data->error_code = NO_EAP_METHOD_ERROR;
  90. eap_aka_state(data, CONTINUE);
  91. data->prev_id = -1;
  92. data->result_ind = phase1 && os_strstr(phase1, "result_ind=1") != NULL;
  93. data->use_pseudonym = !sm->init_phase2;
  94. if (config && config->anonymous_identity && data->use_pseudonym) {
  95. data->pseudonym = os_malloc(config->anonymous_identity_len);
  96. if (data->pseudonym) {
  97. os_memcpy(data->pseudonym, config->anonymous_identity,
  98. config->anonymous_identity_len);
  99. data->pseudonym_len = config->anonymous_identity_len;
  100. }
  101. }
  102. return data;
  103. }
  104. #ifdef EAP_AKA_PRIME
  105. static void * eap_aka_prime_init(struct eap_sm *sm)
  106. {
  107. struct eap_aka_data *data = eap_aka_init(sm);
  108. if (data == NULL)
  109. return NULL;
  110. data->eap_method = EAP_TYPE_AKA_PRIME;
  111. return data;
  112. }
  113. #endif /* EAP_AKA_PRIME */
  114. static void eap_aka_clear_keys(struct eap_aka_data *data, int reauth)
  115. {
  116. if (!reauth) {
  117. os_memset(data->mk, 0, EAP_SIM_MK_LEN);
  118. os_memset(data->k_aut, 0, EAP_AKA_PRIME_K_AUT_LEN);
  119. os_memset(data->k_encr, 0, EAP_SIM_K_ENCR_LEN);
  120. os_memset(data->k_re, 0, EAP_AKA_PRIME_K_RE_LEN);
  121. }
  122. os_memset(data->msk, 0, EAP_SIM_KEYING_DATA_LEN);
  123. os_memset(data->emsk, 0, EAP_EMSK_LEN);
  124. os_memset(data->autn, 0, EAP_AKA_AUTN_LEN);
  125. os_memset(data->auts, 0, EAP_AKA_AUTS_LEN);
  126. }
  127. static void eap_aka_deinit(struct eap_sm *sm, void *priv)
  128. {
  129. struct eap_aka_data *data = priv;
  130. if (data) {
  131. os_free(data->pseudonym);
  132. os_free(data->reauth_id);
  133. os_free(data->last_eap_identity);
  134. wpabuf_free(data->id_msgs);
  135. os_free(data->network_name);
  136. eap_aka_clear_keys(data, 0);
  137. os_free(data);
  138. }
  139. }
  140. static int eap_aka_ext_sim_req(struct eap_sm *sm, struct eap_aka_data *data)
  141. {
  142. char req[200], *pos, *end;
  143. wpa_printf(MSG_DEBUG, "EAP-AKA: Use external USIM processing");
  144. pos = req;
  145. end = pos + sizeof(req);
  146. pos += os_snprintf(pos, end - pos, "UMTS-AUTH");
  147. pos += os_snprintf(pos, end - pos, ":");
  148. pos += wpa_snprintf_hex(pos, end - pos, data->rand, EAP_AKA_RAND_LEN);
  149. pos += os_snprintf(pos, end - pos, ":");
  150. wpa_snprintf_hex(pos, end - pos, data->autn, EAP_AKA_AUTN_LEN);
  151. eap_sm_request_sim(sm, req);
  152. return 1;
  153. }
  154. static int eap_aka_ext_sim_result(struct eap_sm *sm, struct eap_aka_data *data,
  155. struct eap_peer_config *conf)
  156. {
  157. char *resp, *pos;
  158. wpa_printf(MSG_DEBUG,
  159. "EAP-AKA: Use result from external USIM processing");
  160. resp = conf->external_sim_resp;
  161. conf->external_sim_resp = NULL;
  162. if (os_strncmp(resp, "UMTS-AUTS:", 10) == 0) {
  163. pos = resp + 10;
  164. if (hexstr2bin(pos, data->auts, EAP_AKA_AUTS_LEN) < 0)
  165. goto invalid;
  166. wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: AUTS", data->auts,
  167. EAP_AKA_AUTS_LEN);
  168. os_free(resp);
  169. return -2;
  170. }
  171. if (os_strncmp(resp, "UMTS-AUTH:", 10) != 0) {
  172. wpa_printf(MSG_DEBUG, "EAP-AKA: Unrecognized external USIM processing response");
  173. os_free(resp);
  174. return -1;
  175. }
  176. pos = resp + 10;
  177. wpa_hexdump(MSG_DEBUG, "EAP-AKA: RAND", data->rand, EAP_AKA_RAND_LEN);
  178. if (hexstr2bin(pos, data->ik, EAP_AKA_IK_LEN) < 0)
  179. goto invalid;
  180. wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: IK", data->ik, EAP_AKA_IK_LEN);
  181. pos += EAP_AKA_IK_LEN * 2;
  182. if (*pos != ':')
  183. goto invalid;
  184. pos++;
  185. if (hexstr2bin(pos, data->ck, EAP_AKA_CK_LEN) < 0)
  186. goto invalid;
  187. wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: CK", data->ck, EAP_AKA_CK_LEN);
  188. pos += EAP_AKA_CK_LEN * 2;
  189. if (*pos != ':')
  190. goto invalid;
  191. pos++;
  192. data->res_len = os_strlen(pos) / 2;
  193. if (data->res_len > EAP_AKA_RES_MAX_LEN) {
  194. data->res_len = 0;
  195. goto invalid;
  196. }
  197. if (hexstr2bin(pos, data->res, data->res_len) < 0)
  198. goto invalid;
  199. wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: RES", data->res, data->res_len);
  200. os_free(resp);
  201. return 0;
  202. invalid:
  203. wpa_printf(MSG_DEBUG, "EAP-AKA: Invalid external USIM processing UMTS-AUTH response");
  204. os_free(resp);
  205. return -1;
  206. }
  207. static int eap_aka_umts_auth(struct eap_sm *sm, struct eap_aka_data *data)
  208. {
  209. struct eap_peer_config *conf;
  210. wpa_printf(MSG_DEBUG, "EAP-AKA: UMTS authentication algorithm");
  211. conf = eap_get_config(sm);
  212. if (conf == NULL)
  213. return -1;
  214. if (sm->external_sim) {
  215. if (conf->external_sim_resp)
  216. return eap_aka_ext_sim_result(sm, data, conf);
  217. else
  218. return eap_aka_ext_sim_req(sm, data);
  219. }
  220. if (conf->pcsc) {
  221. return scard_umts_auth(sm->scard_ctx, data->rand,
  222. data->autn, data->res, &data->res_len,
  223. data->ik, data->ck, data->auts);
  224. }
  225. #ifdef CONFIG_USIM_SIMULATOR
  226. if (conf->password) {
  227. u8 opc[16], k[16], sqn[6];
  228. const char *pos;
  229. wpa_printf(MSG_DEBUG, "EAP-AKA: Use internal Milenage "
  230. "implementation for UMTS authentication");
  231. if (conf->password_len < 78) {
  232. wpa_printf(MSG_DEBUG, "EAP-AKA: invalid Milenage "
  233. "password");
  234. return -1;
  235. }
  236. pos = (const char *) conf->password;
  237. if (hexstr2bin(pos, k, 16))
  238. return -1;
  239. pos += 32;
  240. if (*pos != ':')
  241. return -1;
  242. pos++;
  243. if (hexstr2bin(pos, opc, 16))
  244. return -1;
  245. pos += 32;
  246. if (*pos != ':')
  247. return -1;
  248. pos++;
  249. if (hexstr2bin(pos, sqn, 6))
  250. return -1;
  251. return milenage_check(opc, k, sqn, data->rand, data->autn,
  252. data->ik, data->ck,
  253. data->res, &data->res_len, data->auts);
  254. }
  255. #endif /* CONFIG_USIM_SIMULATOR */
  256. #ifdef CONFIG_USIM_HARDCODED
  257. wpa_printf(MSG_DEBUG, "EAP-AKA: Use hardcoded Kc and SRES values for "
  258. "testing");
  259. /* These hardcoded Kc and SRES values are used for testing.
  260. * Could consider making them configurable. */
  261. os_memset(data->res, '2', EAP_AKA_RES_MAX_LEN);
  262. data->res_len = EAP_AKA_RES_MAX_LEN;
  263. os_memset(data->ik, '3', EAP_AKA_IK_LEN);
  264. os_memset(data->ck, '4', EAP_AKA_CK_LEN);
  265. {
  266. u8 autn[EAP_AKA_AUTN_LEN];
  267. os_memset(autn, '1', EAP_AKA_AUTN_LEN);
  268. if (os_memcmp_const(autn, data->autn, EAP_AKA_AUTN_LEN) != 0) {
  269. wpa_printf(MSG_WARNING, "EAP-AKA: AUTN did not match "
  270. "with expected value");
  271. return -1;
  272. }
  273. }
  274. #if 0
  275. {
  276. static int test_resync = 1;
  277. if (test_resync) {
  278. /* Test Resynchronization */
  279. test_resync = 0;
  280. return -2;
  281. }
  282. }
  283. #endif
  284. return 0;
  285. #else /* CONFIG_USIM_HARDCODED */
  286. wpa_printf(MSG_DEBUG, "EAP-AKA: No UMTS authentication algorithm "
  287. "enabled");
  288. return -1;
  289. #endif /* CONFIG_USIM_HARDCODED */
  290. }
  291. #define CLEAR_PSEUDONYM 0x01
  292. #define CLEAR_REAUTH_ID 0x02
  293. #define CLEAR_EAP_ID 0x04
  294. static void eap_aka_clear_identities(struct eap_sm *sm,
  295. struct eap_aka_data *data, int id)
  296. {
  297. if ((id & CLEAR_PSEUDONYM) && data->pseudonym) {
  298. wpa_printf(MSG_DEBUG, "EAP-AKA: forgetting old pseudonym");
  299. os_free(data->pseudonym);
  300. data->pseudonym = NULL;
  301. data->pseudonym_len = 0;
  302. if (data->use_pseudonym)
  303. eap_set_anon_id(sm, NULL, 0);
  304. }
  305. if ((id & CLEAR_REAUTH_ID) && data->reauth_id) {
  306. wpa_printf(MSG_DEBUG, "EAP-AKA: forgetting old reauth_id");
  307. os_free(data->reauth_id);
  308. data->reauth_id = NULL;
  309. data->reauth_id_len = 0;
  310. }
  311. if ((id & CLEAR_EAP_ID) && data->last_eap_identity) {
  312. wpa_printf(MSG_DEBUG, "EAP-AKA: forgetting old eap_id");
  313. os_free(data->last_eap_identity);
  314. data->last_eap_identity = NULL;
  315. data->last_eap_identity_len = 0;
  316. }
  317. }
  318. static int eap_aka_learn_ids(struct eap_sm *sm, struct eap_aka_data *data,
  319. struct eap_sim_attrs *attr)
  320. {
  321. if (attr->next_pseudonym) {
  322. const u8 *identity = NULL;
  323. size_t identity_len = 0;
  324. const u8 *realm = NULL;
  325. size_t realm_len = 0;
  326. wpa_hexdump_ascii(MSG_DEBUG,
  327. "EAP-AKA: (encr) AT_NEXT_PSEUDONYM",
  328. attr->next_pseudonym,
  329. attr->next_pseudonym_len);
  330. os_free(data->pseudonym);
  331. /* Look for the realm of the permanent identity */
  332. identity = eap_get_config_identity(sm, &identity_len);
  333. if (identity) {
  334. for (realm = identity, realm_len = identity_len;
  335. realm_len > 0; realm_len--, realm++) {
  336. if (*realm == '@')
  337. break;
  338. }
  339. }
  340. data->pseudonym = os_malloc(attr->next_pseudonym_len +
  341. realm_len);
  342. if (data->pseudonym == NULL) {
  343. wpa_printf(MSG_INFO, "EAP-AKA: (encr) No memory for "
  344. "next pseudonym");
  345. data->pseudonym_len = 0;
  346. return -1;
  347. }
  348. os_memcpy(data->pseudonym, attr->next_pseudonym,
  349. attr->next_pseudonym_len);
  350. if (realm_len) {
  351. os_memcpy(data->pseudonym + attr->next_pseudonym_len,
  352. realm, realm_len);
  353. }
  354. data->pseudonym_len = attr->next_pseudonym_len + realm_len;
  355. if (data->use_pseudonym)
  356. eap_set_anon_id(sm, data->pseudonym,
  357. data->pseudonym_len);
  358. }
  359. if (attr->next_reauth_id) {
  360. os_free(data->reauth_id);
  361. data->reauth_id = os_memdup(attr->next_reauth_id,
  362. attr->next_reauth_id_len);
  363. if (data->reauth_id == NULL) {
  364. wpa_printf(MSG_INFO, "EAP-AKA: (encr) No memory for "
  365. "next reauth_id");
  366. data->reauth_id_len = 0;
  367. return -1;
  368. }
  369. data->reauth_id_len = attr->next_reauth_id_len;
  370. wpa_hexdump_ascii(MSG_DEBUG,
  371. "EAP-AKA: (encr) AT_NEXT_REAUTH_ID",
  372. data->reauth_id,
  373. data->reauth_id_len);
  374. }
  375. return 0;
  376. }
  377. static int eap_aka_add_id_msg(struct eap_aka_data *data,
  378. const struct wpabuf *msg)
  379. {
  380. if (msg == NULL)
  381. return -1;
  382. if (data->id_msgs == NULL) {
  383. data->id_msgs = wpabuf_dup(msg);
  384. return data->id_msgs == NULL ? -1 : 0;
  385. }
  386. if (wpabuf_resize(&data->id_msgs, wpabuf_len(msg)) < 0)
  387. return -1;
  388. wpabuf_put_buf(data->id_msgs, msg);
  389. return 0;
  390. }
  391. static void eap_aka_add_checkcode(struct eap_aka_data *data,
  392. struct eap_sim_msg *msg)
  393. {
  394. const u8 *addr;
  395. size_t len;
  396. u8 hash[SHA256_MAC_LEN];
  397. wpa_printf(MSG_DEBUG, " AT_CHECKCODE");
  398. if (data->id_msgs == NULL) {
  399. /*
  400. * No EAP-AKA/Identity packets were exchanged - send empty
  401. * checkcode.
  402. */
  403. eap_sim_msg_add(msg, EAP_SIM_AT_CHECKCODE, 0, NULL, 0);
  404. return;
  405. }
  406. /* Checkcode is SHA1/SHA256 hash over all EAP-AKA/Identity packets. */
  407. addr = wpabuf_head(data->id_msgs);
  408. len = wpabuf_len(data->id_msgs);
  409. wpa_hexdump(MSG_MSGDUMP, "EAP-AKA: AT_CHECKCODE data", addr, len);
  410. #ifdef EAP_AKA_PRIME
  411. if (data->eap_method == EAP_TYPE_AKA_PRIME)
  412. sha256_vector(1, &addr, &len, hash);
  413. else
  414. #endif /* EAP_AKA_PRIME */
  415. sha1_vector(1, &addr, &len, hash);
  416. eap_sim_msg_add(msg, EAP_SIM_AT_CHECKCODE, 0, hash,
  417. data->eap_method == EAP_TYPE_AKA_PRIME ?
  418. EAP_AKA_PRIME_CHECKCODE_LEN : EAP_AKA_CHECKCODE_LEN);
  419. }
  420. static int eap_aka_verify_checkcode(struct eap_aka_data *data,
  421. const u8 *checkcode, size_t checkcode_len)
  422. {
  423. const u8 *addr;
  424. size_t len;
  425. u8 hash[SHA256_MAC_LEN];
  426. size_t hash_len;
  427. if (checkcode == NULL)
  428. return -1;
  429. if (data->id_msgs == NULL) {
  430. if (checkcode_len != 0) {
  431. wpa_printf(MSG_DEBUG, "EAP-AKA: Checkcode from server "
  432. "indicates that AKA/Identity messages were "
  433. "used, but they were not");
  434. return -1;
  435. }
  436. return 0;
  437. }
  438. hash_len = data->eap_method == EAP_TYPE_AKA_PRIME ?
  439. EAP_AKA_PRIME_CHECKCODE_LEN : EAP_AKA_CHECKCODE_LEN;
  440. if (checkcode_len != hash_len) {
  441. wpa_printf(MSG_DEBUG, "EAP-AKA: Checkcode from server "
  442. "indicates that AKA/Identity message were not "
  443. "used, but they were");
  444. return -1;
  445. }
  446. /* Checkcode is SHA1/SHA256 hash over all EAP-AKA/Identity packets. */
  447. addr = wpabuf_head(data->id_msgs);
  448. len = wpabuf_len(data->id_msgs);
  449. #ifdef EAP_AKA_PRIME
  450. if (data->eap_method == EAP_TYPE_AKA_PRIME)
  451. sha256_vector(1, &addr, &len, hash);
  452. else
  453. #endif /* EAP_AKA_PRIME */
  454. sha1_vector(1, &addr, &len, hash);
  455. if (os_memcmp_const(hash, checkcode, hash_len) != 0) {
  456. wpa_printf(MSG_DEBUG, "EAP-AKA: Mismatch in AT_CHECKCODE");
  457. return -1;
  458. }
  459. return 0;
  460. }
  461. static struct wpabuf * eap_aka_client_error(struct eap_aka_data *data, u8 id,
  462. int err)
  463. {
  464. struct eap_sim_msg *msg;
  465. eap_aka_state(data, FAILURE);
  466. data->num_id_req = 0;
  467. data->num_notification = 0;
  468. wpa_printf(MSG_DEBUG, "EAP-AKA: Send Client-Error (error code %d)",
  469. err);
  470. msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
  471. EAP_AKA_SUBTYPE_CLIENT_ERROR);
  472. eap_sim_msg_add(msg, EAP_SIM_AT_CLIENT_ERROR_CODE, err, NULL, 0);
  473. return eap_sim_msg_finish(msg, data->eap_method, NULL, NULL, 0);
  474. }
  475. static struct wpabuf * eap_aka_authentication_reject(struct eap_aka_data *data,
  476. u8 id)
  477. {
  478. struct eap_sim_msg *msg;
  479. eap_aka_state(data, FAILURE);
  480. data->num_id_req = 0;
  481. data->num_notification = 0;
  482. wpa_printf(MSG_DEBUG, "Generating EAP-AKA Authentication-Reject "
  483. "(id=%d)", id);
  484. msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
  485. EAP_AKA_SUBTYPE_AUTHENTICATION_REJECT);
  486. return eap_sim_msg_finish(msg, data->eap_method, NULL, NULL, 0);
  487. }
  488. static struct wpabuf * eap_aka_synchronization_failure(
  489. struct eap_aka_data *data, u8 id, struct eap_sim_attrs *attr)
  490. {
  491. struct eap_sim_msg *msg;
  492. data->num_id_req = 0;
  493. data->num_notification = 0;
  494. wpa_printf(MSG_DEBUG, "Generating EAP-AKA Synchronization-Failure "
  495. "(id=%d)", id);
  496. msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
  497. EAP_AKA_SUBTYPE_SYNCHRONIZATION_FAILURE);
  498. wpa_printf(MSG_DEBUG, " AT_AUTS");
  499. eap_sim_msg_add_full(msg, EAP_SIM_AT_AUTS, data->auts,
  500. EAP_AKA_AUTS_LEN);
  501. if (data->eap_method == EAP_TYPE_AKA_PRIME) {
  502. size_t i;
  503. for (i = 0; i < attr->kdf_count; i++) {
  504. wpa_printf(MSG_DEBUG, " AT_KDF");
  505. eap_sim_msg_add(msg, EAP_SIM_AT_KDF, attr->kdf[i],
  506. NULL, 0);
  507. }
  508. }
  509. return eap_sim_msg_finish(msg, data->eap_method, NULL, NULL, 0);
  510. }
  511. static struct wpabuf * eap_aka_response_identity(struct eap_sm *sm,
  512. struct eap_aka_data *data,
  513. u8 id,
  514. enum eap_sim_id_req id_req)
  515. {
  516. const u8 *identity = NULL;
  517. size_t identity_len = 0;
  518. struct eap_sim_msg *msg;
  519. data->reauth = 0;
  520. if (id_req == ANY_ID && data->reauth_id) {
  521. identity = data->reauth_id;
  522. identity_len = data->reauth_id_len;
  523. data->reauth = 1;
  524. } else if ((id_req == ANY_ID || id_req == FULLAUTH_ID) &&
  525. data->pseudonym) {
  526. identity = data->pseudonym;
  527. identity_len = data->pseudonym_len;
  528. eap_aka_clear_identities(sm, data, CLEAR_REAUTH_ID);
  529. } else if (id_req != NO_ID_REQ) {
  530. identity = eap_get_config_identity(sm, &identity_len);
  531. if (identity) {
  532. eap_aka_clear_identities(sm, data, CLEAR_PSEUDONYM |
  533. CLEAR_REAUTH_ID);
  534. }
  535. }
  536. if (id_req != NO_ID_REQ)
  537. eap_aka_clear_identities(sm, data, CLEAR_EAP_ID);
  538. wpa_printf(MSG_DEBUG, "Generating EAP-AKA Identity (id=%d)", id);
  539. msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
  540. EAP_AKA_SUBTYPE_IDENTITY);
  541. if (identity) {
  542. wpa_hexdump_ascii(MSG_DEBUG, " AT_IDENTITY",
  543. identity, identity_len);
  544. eap_sim_msg_add(msg, EAP_SIM_AT_IDENTITY, identity_len,
  545. identity, identity_len);
  546. }
  547. return eap_sim_msg_finish(msg, data->eap_method, NULL, NULL, 0);
  548. }
  549. static struct wpabuf * eap_aka_response_challenge(struct eap_aka_data *data,
  550. u8 id)
  551. {
  552. struct eap_sim_msg *msg;
  553. wpa_printf(MSG_DEBUG, "Generating EAP-AKA Challenge (id=%d)", id);
  554. msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
  555. EAP_AKA_SUBTYPE_CHALLENGE);
  556. wpa_printf(MSG_DEBUG, " AT_RES");
  557. eap_sim_msg_add(msg, EAP_SIM_AT_RES, data->res_len * 8,
  558. data->res, data->res_len);
  559. eap_aka_add_checkcode(data, msg);
  560. if (data->use_result_ind) {
  561. wpa_printf(MSG_DEBUG, " AT_RESULT_IND");
  562. eap_sim_msg_add(msg, EAP_SIM_AT_RESULT_IND, 0, NULL, 0);
  563. }
  564. wpa_printf(MSG_DEBUG, " AT_MAC");
  565. eap_sim_msg_add_mac(msg, EAP_SIM_AT_MAC);
  566. return eap_sim_msg_finish(msg, data->eap_method, data->k_aut, (u8 *) "",
  567. 0);
  568. }
  569. static struct wpabuf * eap_aka_response_reauth(struct eap_aka_data *data,
  570. u8 id, int counter_too_small,
  571. const u8 *nonce_s)
  572. {
  573. struct eap_sim_msg *msg;
  574. unsigned int counter;
  575. wpa_printf(MSG_DEBUG, "Generating EAP-AKA Reauthentication (id=%d)",
  576. id);
  577. msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
  578. EAP_AKA_SUBTYPE_REAUTHENTICATION);
  579. wpa_printf(MSG_DEBUG, " AT_IV");
  580. wpa_printf(MSG_DEBUG, " AT_ENCR_DATA");
  581. eap_sim_msg_add_encr_start(msg, EAP_SIM_AT_IV, EAP_SIM_AT_ENCR_DATA);
  582. if (counter_too_small) {
  583. wpa_printf(MSG_DEBUG, " *AT_COUNTER_TOO_SMALL");
  584. eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER_TOO_SMALL, 0, NULL, 0);
  585. counter = data->counter_too_small;
  586. } else
  587. counter = data->counter;
  588. wpa_printf(MSG_DEBUG, " *AT_COUNTER %d", counter);
  589. eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, counter, NULL, 0);
  590. if (eap_sim_msg_add_encr_end(msg, data->k_encr, EAP_SIM_AT_PADDING)) {
  591. wpa_printf(MSG_WARNING, "EAP-AKA: Failed to encrypt "
  592. "AT_ENCR_DATA");
  593. eap_sim_msg_free(msg);
  594. return NULL;
  595. }
  596. eap_aka_add_checkcode(data, msg);
  597. if (data->use_result_ind) {
  598. wpa_printf(MSG_DEBUG, " AT_RESULT_IND");
  599. eap_sim_msg_add(msg, EAP_SIM_AT_RESULT_IND, 0, NULL, 0);
  600. }
  601. wpa_printf(MSG_DEBUG, " AT_MAC");
  602. eap_sim_msg_add_mac(msg, EAP_SIM_AT_MAC);
  603. return eap_sim_msg_finish(msg, data->eap_method, data->k_aut, nonce_s,
  604. EAP_SIM_NONCE_S_LEN);
  605. }
  606. static struct wpabuf * eap_aka_response_notification(struct eap_aka_data *data,
  607. u8 id, u16 notification)
  608. {
  609. struct eap_sim_msg *msg;
  610. u8 *k_aut = (notification & 0x4000) == 0 ? data->k_aut : NULL;
  611. wpa_printf(MSG_DEBUG, "Generating EAP-AKA Notification (id=%d)", id);
  612. msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
  613. EAP_AKA_SUBTYPE_NOTIFICATION);
  614. if (k_aut && data->reauth) {
  615. wpa_printf(MSG_DEBUG, " AT_IV");
  616. wpa_printf(MSG_DEBUG, " AT_ENCR_DATA");
  617. eap_sim_msg_add_encr_start(msg, EAP_SIM_AT_IV,
  618. EAP_SIM_AT_ENCR_DATA);
  619. wpa_printf(MSG_DEBUG, " *AT_COUNTER %d", data->counter);
  620. eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, data->counter,
  621. NULL, 0);
  622. if (eap_sim_msg_add_encr_end(msg, data->k_encr,
  623. EAP_SIM_AT_PADDING)) {
  624. wpa_printf(MSG_WARNING, "EAP-AKA: Failed to encrypt "
  625. "AT_ENCR_DATA");
  626. eap_sim_msg_free(msg);
  627. return NULL;
  628. }
  629. }
  630. if (k_aut) {
  631. wpa_printf(MSG_DEBUG, " AT_MAC");
  632. eap_sim_msg_add_mac(msg, EAP_SIM_AT_MAC);
  633. }
  634. return eap_sim_msg_finish(msg, data->eap_method, k_aut, (u8 *) "", 0);
  635. }
  636. static struct wpabuf * eap_aka_process_identity(struct eap_sm *sm,
  637. struct eap_aka_data *data,
  638. u8 id,
  639. const struct wpabuf *reqData,
  640. struct eap_sim_attrs *attr)
  641. {
  642. int id_error;
  643. struct wpabuf *buf;
  644. wpa_printf(MSG_DEBUG, "EAP-AKA: subtype Identity");
  645. id_error = 0;
  646. switch (attr->id_req) {
  647. case NO_ID_REQ:
  648. break;
  649. case ANY_ID:
  650. if (data->num_id_req > 0)
  651. id_error++;
  652. data->num_id_req++;
  653. break;
  654. case FULLAUTH_ID:
  655. if (data->num_id_req > 1)
  656. id_error++;
  657. data->num_id_req++;
  658. break;
  659. case PERMANENT_ID:
  660. if (data->num_id_req > 2)
  661. id_error++;
  662. data->num_id_req++;
  663. break;
  664. }
  665. if (id_error) {
  666. wpa_printf(MSG_INFO, "EAP-AKA: Too many ID requests "
  667. "used within one authentication");
  668. return eap_aka_client_error(data, id,
  669. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  670. }
  671. buf = eap_aka_response_identity(sm, data, id, attr->id_req);
  672. if (data->prev_id != id) {
  673. eap_aka_add_id_msg(data, reqData);
  674. eap_aka_add_id_msg(data, buf);
  675. data->prev_id = id;
  676. }
  677. return buf;
  678. }
  679. static int eap_aka_verify_mac(struct eap_aka_data *data,
  680. const struct wpabuf *req,
  681. const u8 *mac, const u8 *extra,
  682. size_t extra_len)
  683. {
  684. if (data->eap_method == EAP_TYPE_AKA_PRIME)
  685. return eap_sim_verify_mac_sha256(data->k_aut, req, mac, extra,
  686. extra_len);
  687. return eap_sim_verify_mac(data->k_aut, req, mac, extra, extra_len);
  688. }
  689. #ifdef EAP_AKA_PRIME
  690. static struct wpabuf * eap_aka_prime_kdf_select(struct eap_aka_data *data,
  691. u8 id, u16 kdf)
  692. {
  693. struct eap_sim_msg *msg;
  694. data->kdf_negotiation = 1;
  695. data->kdf = kdf;
  696. wpa_printf(MSG_DEBUG, "Generating EAP-AKA Challenge (id=%d) (KDF "
  697. "select)", id);
  698. msg = eap_sim_msg_init(EAP_CODE_RESPONSE, id, data->eap_method,
  699. EAP_AKA_SUBTYPE_CHALLENGE);
  700. wpa_printf(MSG_DEBUG, " AT_KDF");
  701. eap_sim_msg_add(msg, EAP_SIM_AT_KDF, kdf, NULL, 0);
  702. return eap_sim_msg_finish(msg, data->eap_method, NULL, NULL, 0);
  703. }
  704. static struct wpabuf * eap_aka_prime_kdf_neg(struct eap_aka_data *data,
  705. u8 id, struct eap_sim_attrs *attr)
  706. {
  707. size_t i;
  708. for (i = 0; i < attr->kdf_count; i++) {
  709. if (attr->kdf[i] == EAP_AKA_PRIME_KDF) {
  710. os_memcpy(data->last_kdf_attrs, attr->kdf,
  711. sizeof(u16) * attr->kdf_count);
  712. data->last_kdf_count = attr->kdf_count;
  713. return eap_aka_prime_kdf_select(data, id,
  714. EAP_AKA_PRIME_KDF);
  715. }
  716. }
  717. /* No matching KDF found - fail authentication as if AUTN had been
  718. * incorrect */
  719. return eap_aka_authentication_reject(data, id);
  720. }
  721. static int eap_aka_prime_kdf_valid(struct eap_aka_data *data,
  722. struct eap_sim_attrs *attr)
  723. {
  724. size_t i, j;
  725. if (attr->kdf_count == 0)
  726. return 0;
  727. /* The only allowed (and required) duplication of a KDF is the addition
  728. * of the selected KDF into the beginning of the list. */
  729. if (data->kdf_negotiation) {
  730. /* When the peer receives the new EAP-Request/AKA'-Challenge
  731. * message, must check only requested change occurred in the
  732. * list of AT_KDF attributes. If there are any other changes,
  733. * the peer must behave like the case that AT_MAC had been
  734. * incorrect and authentication is failed. These are defined in
  735. * EAP-AKA' specification RFC 5448, Section 3.2. */
  736. if (attr->kdf[0] != data->kdf) {
  737. wpa_printf(MSG_WARNING, "EAP-AKA': The server did not "
  738. "accept the selected KDF");
  739. return -1;
  740. }
  741. if (attr->kdf_count > EAP_AKA_PRIME_KDF_MAX ||
  742. attr->kdf_count != data->last_kdf_count + 1) {
  743. wpa_printf(MSG_WARNING,
  744. "EAP-AKA': The length of KDF attributes is wrong");
  745. return -1;
  746. }
  747. for (i = 1; i < attr->kdf_count; i++) {
  748. if (attr->kdf[i] != data->last_kdf_attrs[i - 1]) {
  749. wpa_printf(MSG_WARNING,
  750. "EAP-AKA': The KDF attributes except selected KDF are not same as original one");
  751. return -1;
  752. }
  753. }
  754. }
  755. for (i = data->kdf ? 1 : 0; i < attr->kdf_count; i++) {
  756. for (j = i + 1; j < attr->kdf_count; j++) {
  757. if (attr->kdf[i] == attr->kdf[j]) {
  758. wpa_printf(MSG_WARNING, "EAP-AKA': The server "
  759. "included a duplicated KDF");
  760. return 0;
  761. }
  762. }
  763. }
  764. return 1;
  765. }
  766. #endif /* EAP_AKA_PRIME */
  767. static struct wpabuf * eap_aka_process_challenge(struct eap_sm *sm,
  768. struct eap_aka_data *data,
  769. u8 id,
  770. const struct wpabuf *reqData,
  771. struct eap_sim_attrs *attr)
  772. {
  773. const u8 *identity;
  774. size_t identity_len;
  775. int res;
  776. struct eap_sim_attrs eattr;
  777. wpa_printf(MSG_DEBUG, "EAP-AKA: subtype Challenge");
  778. if (attr->checkcode &&
  779. eap_aka_verify_checkcode(data, attr->checkcode,
  780. attr->checkcode_len)) {
  781. wpa_printf(MSG_WARNING, "EAP-AKA: Invalid AT_CHECKCODE in the "
  782. "message");
  783. return eap_aka_client_error(data, id,
  784. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  785. }
  786. #ifdef EAP_AKA_PRIME
  787. if (data->eap_method == EAP_TYPE_AKA_PRIME) {
  788. if (!attr->kdf_input || attr->kdf_input_len == 0) {
  789. wpa_printf(MSG_WARNING, "EAP-AKA': Challenge message "
  790. "did not include non-empty AT_KDF_INPUT");
  791. /* Fail authentication as if AUTN had been incorrect */
  792. return eap_aka_authentication_reject(data, id);
  793. }
  794. os_free(data->network_name);
  795. data->network_name = os_memdup(attr->kdf_input,
  796. attr->kdf_input_len);
  797. if (data->network_name == NULL) {
  798. wpa_printf(MSG_WARNING, "EAP-AKA': No memory for "
  799. "storing Network Name");
  800. return eap_aka_authentication_reject(data, id);
  801. }
  802. data->network_name_len = attr->kdf_input_len;
  803. wpa_hexdump_ascii(MSG_DEBUG, "EAP-AKA': Network Name "
  804. "(AT_KDF_INPUT)",
  805. data->network_name, data->network_name_len);
  806. /* TODO: check Network Name per 3GPP.33.402 */
  807. res = eap_aka_prime_kdf_valid(data, attr);
  808. if (res == 0)
  809. return eap_aka_authentication_reject(data, id);
  810. else if (res == -1)
  811. return eap_aka_client_error(
  812. data, id, EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  813. if (attr->kdf[0] != EAP_AKA_PRIME_KDF)
  814. return eap_aka_prime_kdf_neg(data, id, attr);
  815. data->kdf = EAP_AKA_PRIME_KDF;
  816. wpa_printf(MSG_DEBUG, "EAP-AKA': KDF %d selected", data->kdf);
  817. }
  818. if (data->eap_method == EAP_TYPE_AKA && attr->bidding) {
  819. u16 flags = WPA_GET_BE16(attr->bidding);
  820. if ((flags & EAP_AKA_BIDDING_FLAG_D) &&
  821. eap_allowed_method(sm, EAP_VENDOR_IETF,
  822. EAP_TYPE_AKA_PRIME)) {
  823. wpa_printf(MSG_WARNING, "EAP-AKA: Bidding down from "
  824. "AKA' to AKA detected");
  825. /* Fail authentication as if AUTN had been incorrect */
  826. return eap_aka_authentication_reject(data, id);
  827. }
  828. }
  829. #endif /* EAP_AKA_PRIME */
  830. data->reauth = 0;
  831. if (!attr->mac || !attr->rand || !attr->autn) {
  832. wpa_printf(MSG_WARNING, "EAP-AKA: Challenge message "
  833. "did not include%s%s%s",
  834. !attr->mac ? " AT_MAC" : "",
  835. !attr->rand ? " AT_RAND" : "",
  836. !attr->autn ? " AT_AUTN" : "");
  837. return eap_aka_client_error(data, id,
  838. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  839. }
  840. os_memcpy(data->rand, attr->rand, EAP_AKA_RAND_LEN);
  841. os_memcpy(data->autn, attr->autn, EAP_AKA_AUTN_LEN);
  842. res = eap_aka_umts_auth(sm, data);
  843. if (res == -1) {
  844. wpa_printf(MSG_WARNING, "EAP-AKA: UMTS authentication "
  845. "failed (AUTN)");
  846. return eap_aka_authentication_reject(data, id);
  847. } else if (res == -2) {
  848. wpa_printf(MSG_WARNING, "EAP-AKA: UMTS authentication "
  849. "failed (AUTN seq# -> AUTS)");
  850. return eap_aka_synchronization_failure(data, id, attr);
  851. } else if (res > 0) {
  852. wpa_printf(MSG_DEBUG, "EAP-AKA: Wait for external USIM processing");
  853. return NULL;
  854. } else if (res) {
  855. wpa_printf(MSG_WARNING, "EAP-AKA: UMTS authentication failed");
  856. return eap_aka_client_error(data, id,
  857. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  858. }
  859. #ifdef EAP_AKA_PRIME
  860. if (data->eap_method == EAP_TYPE_AKA_PRIME) {
  861. /* Note: AUTN = (SQN ^ AK) || AMF || MAC which gives us the
  862. * needed 6-octet SQN ^ AK for CK',IK' derivation */
  863. u16 amf = WPA_GET_BE16(data->autn + 6);
  864. if (!(amf & 0x8000)) {
  865. wpa_printf(MSG_WARNING, "EAP-AKA': AMF separation bit "
  866. "not set (AMF=0x%4x)", amf);
  867. return eap_aka_authentication_reject(data, id);
  868. }
  869. eap_aka_prime_derive_ck_ik_prime(data->ck, data->ik,
  870. data->autn,
  871. data->network_name,
  872. data->network_name_len);
  873. }
  874. #endif /* EAP_AKA_PRIME */
  875. if (data->last_eap_identity) {
  876. identity = data->last_eap_identity;
  877. identity_len = data->last_eap_identity_len;
  878. } else if (data->pseudonym) {
  879. identity = data->pseudonym;
  880. identity_len = data->pseudonym_len;
  881. } else {
  882. struct eap_peer_config *config;
  883. config = eap_get_config(sm);
  884. if (config && config->imsi_identity) {
  885. identity = config->imsi_identity;
  886. identity_len = config->imsi_identity_len;
  887. } else {
  888. identity = eap_get_config_identity(sm, &identity_len);
  889. }
  890. }
  891. wpa_hexdump_ascii(MSG_DEBUG, "EAP-AKA: Selected identity for MK "
  892. "derivation", identity, identity_len);
  893. if (data->eap_method == EAP_TYPE_AKA_PRIME) {
  894. eap_aka_prime_derive_keys(identity, identity_len, data->ik,
  895. data->ck, data->k_encr, data->k_aut,
  896. data->k_re, data->msk, data->emsk);
  897. } else {
  898. eap_aka_derive_mk(identity, identity_len, data->ik, data->ck,
  899. data->mk);
  900. eap_sim_derive_keys(data->mk, data->k_encr, data->k_aut,
  901. data->msk, data->emsk);
  902. }
  903. if (eap_aka_verify_mac(data, reqData, attr->mac, (u8 *) "", 0)) {
  904. wpa_printf(MSG_WARNING, "EAP-AKA: Challenge message "
  905. "used invalid AT_MAC");
  906. return eap_aka_client_error(data, id,
  907. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  908. }
  909. /* Old reauthentication identity must not be used anymore. In
  910. * other words, if no new identities are received, full
  911. * authentication will be used on next reauthentication (using
  912. * pseudonym identity or permanent identity). */
  913. eap_aka_clear_identities(sm, data, CLEAR_REAUTH_ID | CLEAR_EAP_ID);
  914. if (attr->encr_data) {
  915. u8 *decrypted;
  916. decrypted = eap_sim_parse_encr(data->k_encr, attr->encr_data,
  917. attr->encr_data_len, attr->iv,
  918. &eattr, 0);
  919. if (decrypted == NULL) {
  920. return eap_aka_client_error(
  921. data, id, EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  922. }
  923. eap_aka_learn_ids(sm, data, &eattr);
  924. os_free(decrypted);
  925. }
  926. if (data->result_ind && attr->result_ind)
  927. data->use_result_ind = 1;
  928. if (data->state != FAILURE) {
  929. eap_aka_state(data, data->use_result_ind ?
  930. RESULT_SUCCESS : SUCCESS);
  931. }
  932. data->num_id_req = 0;
  933. data->num_notification = 0;
  934. /* RFC 4187 specifies that counter is initialized to one after
  935. * fullauth, but initializing it to zero makes it easier to implement
  936. * reauth verification. */
  937. data->counter = 0;
  938. return eap_aka_response_challenge(data, id);
  939. }
  940. static int eap_aka_process_notification_reauth(struct eap_aka_data *data,
  941. struct eap_sim_attrs *attr)
  942. {
  943. struct eap_sim_attrs eattr;
  944. u8 *decrypted;
  945. if (attr->encr_data == NULL || attr->iv == NULL) {
  946. wpa_printf(MSG_WARNING, "EAP-AKA: Notification message after "
  947. "reauth did not include encrypted data");
  948. return -1;
  949. }
  950. decrypted = eap_sim_parse_encr(data->k_encr, attr->encr_data,
  951. attr->encr_data_len, attr->iv, &eattr,
  952. 0);
  953. if (decrypted == NULL) {
  954. wpa_printf(MSG_WARNING, "EAP-AKA: Failed to parse encrypted "
  955. "data from notification message");
  956. return -1;
  957. }
  958. if (eattr.counter < 0 || (size_t) eattr.counter != data->counter) {
  959. wpa_printf(MSG_WARNING, "EAP-AKA: Counter in notification "
  960. "message does not match with counter in reauth "
  961. "message");
  962. os_free(decrypted);
  963. return -1;
  964. }
  965. os_free(decrypted);
  966. return 0;
  967. }
  968. static int eap_aka_process_notification_auth(struct eap_aka_data *data,
  969. const struct wpabuf *reqData,
  970. struct eap_sim_attrs *attr)
  971. {
  972. if (attr->mac == NULL) {
  973. wpa_printf(MSG_INFO, "EAP-AKA: no AT_MAC in after_auth "
  974. "Notification message");
  975. return -1;
  976. }
  977. if (eap_aka_verify_mac(data, reqData, attr->mac, (u8 *) "", 0)) {
  978. wpa_printf(MSG_WARNING, "EAP-AKA: Notification message "
  979. "used invalid AT_MAC");
  980. return -1;
  981. }
  982. if (data->reauth &&
  983. eap_aka_process_notification_reauth(data, attr)) {
  984. wpa_printf(MSG_WARNING, "EAP-AKA: Invalid notification "
  985. "message after reauth");
  986. return -1;
  987. }
  988. return 0;
  989. }
  990. static struct wpabuf * eap_aka_process_notification(
  991. struct eap_sm *sm, struct eap_aka_data *data, u8 id,
  992. const struct wpabuf *reqData, struct eap_sim_attrs *attr)
  993. {
  994. wpa_printf(MSG_DEBUG, "EAP-AKA: subtype Notification");
  995. if (data->num_notification > 0) {
  996. wpa_printf(MSG_INFO, "EAP-AKA: too many notification "
  997. "rounds (only one allowed)");
  998. return eap_aka_client_error(data, id,
  999. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  1000. }
  1001. data->num_notification++;
  1002. if (attr->notification == -1) {
  1003. wpa_printf(MSG_INFO, "EAP-AKA: no AT_NOTIFICATION in "
  1004. "Notification message");
  1005. return eap_aka_client_error(data, id,
  1006. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  1007. }
  1008. if ((attr->notification & 0x4000) == 0 &&
  1009. eap_aka_process_notification_auth(data, reqData, attr)) {
  1010. return eap_aka_client_error(data, id,
  1011. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  1012. }
  1013. eap_sim_report_notification(sm->msg_ctx, attr->notification, 1);
  1014. if (attr->notification >= 0 && attr->notification < 32768) {
  1015. data->error_code = attr->notification;
  1016. eap_aka_state(data, FAILURE);
  1017. } else if (attr->notification == EAP_SIM_SUCCESS &&
  1018. data->state == RESULT_SUCCESS)
  1019. eap_aka_state(data, SUCCESS);
  1020. return eap_aka_response_notification(data, id, attr->notification);
  1021. }
  1022. static struct wpabuf * eap_aka_process_reauthentication(
  1023. struct eap_sm *sm, struct eap_aka_data *data, u8 id,
  1024. const struct wpabuf *reqData, struct eap_sim_attrs *attr)
  1025. {
  1026. struct eap_sim_attrs eattr;
  1027. u8 *decrypted;
  1028. wpa_printf(MSG_DEBUG, "EAP-AKA: subtype Reauthentication");
  1029. if (attr->checkcode &&
  1030. eap_aka_verify_checkcode(data, attr->checkcode,
  1031. attr->checkcode_len)) {
  1032. wpa_printf(MSG_WARNING, "EAP-AKA: Invalid AT_CHECKCODE in the "
  1033. "message");
  1034. return eap_aka_client_error(data, id,
  1035. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  1036. }
  1037. if (data->reauth_id == NULL) {
  1038. wpa_printf(MSG_WARNING, "EAP-AKA: Server is trying "
  1039. "reauthentication, but no reauth_id available");
  1040. return eap_aka_client_error(data, id,
  1041. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  1042. }
  1043. data->reauth = 1;
  1044. if (eap_aka_verify_mac(data, reqData, attr->mac, (u8 *) "", 0)) {
  1045. wpa_printf(MSG_WARNING, "EAP-AKA: Reauthentication "
  1046. "did not have valid AT_MAC");
  1047. return eap_aka_client_error(data, id,
  1048. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  1049. }
  1050. if (attr->encr_data == NULL || attr->iv == NULL) {
  1051. wpa_printf(MSG_WARNING, "EAP-AKA: Reauthentication "
  1052. "message did not include encrypted data");
  1053. return eap_aka_client_error(data, id,
  1054. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  1055. }
  1056. decrypted = eap_sim_parse_encr(data->k_encr, attr->encr_data,
  1057. attr->encr_data_len, attr->iv, &eattr,
  1058. 0);
  1059. if (decrypted == NULL) {
  1060. wpa_printf(MSG_WARNING, "EAP-AKA: Failed to parse encrypted "
  1061. "data from reauthentication message");
  1062. return eap_aka_client_error(data, id,
  1063. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  1064. }
  1065. if (eattr.nonce_s == NULL || eattr.counter < 0) {
  1066. wpa_printf(MSG_INFO, "EAP-AKA: (encr) No%s%s in reauth packet",
  1067. !eattr.nonce_s ? " AT_NONCE_S" : "",
  1068. eattr.counter < 0 ? " AT_COUNTER" : "");
  1069. os_free(decrypted);
  1070. return eap_aka_client_error(data, id,
  1071. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  1072. }
  1073. if (eattr.counter < 0 || (size_t) eattr.counter <= data->counter) {
  1074. struct wpabuf *res;
  1075. wpa_printf(MSG_INFO, "EAP-AKA: (encr) Invalid counter "
  1076. "(%d <= %d)", eattr.counter, data->counter);
  1077. data->counter_too_small = eattr.counter;
  1078. /* Reply using Re-auth w/ AT_COUNTER_TOO_SMALL. The current
  1079. * reauth_id must not be used to start a new reauthentication.
  1080. * However, since it was used in the last EAP-Response-Identity
  1081. * packet, it has to saved for the following fullauth to be
  1082. * used in MK derivation. */
  1083. os_free(data->last_eap_identity);
  1084. data->last_eap_identity = data->reauth_id;
  1085. data->last_eap_identity_len = data->reauth_id_len;
  1086. data->reauth_id = NULL;
  1087. data->reauth_id_len = 0;
  1088. res = eap_aka_response_reauth(data, id, 1, eattr.nonce_s);
  1089. os_free(decrypted);
  1090. return res;
  1091. }
  1092. data->counter = eattr.counter;
  1093. os_memcpy(data->nonce_s, eattr.nonce_s, EAP_SIM_NONCE_S_LEN);
  1094. wpa_hexdump(MSG_DEBUG, "EAP-AKA: (encr) AT_NONCE_S",
  1095. data->nonce_s, EAP_SIM_NONCE_S_LEN);
  1096. if (data->eap_method == EAP_TYPE_AKA_PRIME) {
  1097. eap_aka_prime_derive_keys_reauth(data->k_re, data->counter,
  1098. data->reauth_id,
  1099. data->reauth_id_len,
  1100. data->nonce_s,
  1101. data->msk, data->emsk);
  1102. } else {
  1103. eap_sim_derive_keys_reauth(data->counter, data->reauth_id,
  1104. data->reauth_id_len,
  1105. data->nonce_s, data->mk,
  1106. data->msk, data->emsk);
  1107. }
  1108. eap_aka_clear_identities(sm, data, CLEAR_REAUTH_ID | CLEAR_EAP_ID);
  1109. eap_aka_learn_ids(sm, data, &eattr);
  1110. if (data->result_ind && attr->result_ind)
  1111. data->use_result_ind = 1;
  1112. if (data->state != FAILURE) {
  1113. eap_aka_state(data, data->use_result_ind ?
  1114. RESULT_SUCCESS : SUCCESS);
  1115. }
  1116. data->num_id_req = 0;
  1117. data->num_notification = 0;
  1118. if (data->counter > EAP_AKA_MAX_FAST_REAUTHS) {
  1119. wpa_printf(MSG_DEBUG, "EAP-AKA: Maximum number of "
  1120. "fast reauths performed - force fullauth");
  1121. eap_aka_clear_identities(sm, data,
  1122. CLEAR_REAUTH_ID | CLEAR_EAP_ID);
  1123. }
  1124. os_free(decrypted);
  1125. return eap_aka_response_reauth(data, id, 0, data->nonce_s);
  1126. }
  1127. static struct wpabuf * eap_aka_process(struct eap_sm *sm, void *priv,
  1128. struct eap_method_ret *ret,
  1129. const struct wpabuf *reqData)
  1130. {
  1131. struct eap_aka_data *data = priv;
  1132. const struct eap_hdr *req;
  1133. u8 subtype, id;
  1134. struct wpabuf *res;
  1135. const u8 *pos;
  1136. struct eap_sim_attrs attr;
  1137. size_t len;
  1138. wpa_hexdump_buf(MSG_DEBUG, "EAP-AKA: EAP data", reqData);
  1139. if (eap_get_config_identity(sm, &len) == NULL) {
  1140. wpa_printf(MSG_INFO, "EAP-AKA: Identity not configured");
  1141. eap_sm_request_identity(sm);
  1142. ret->ignore = TRUE;
  1143. return NULL;
  1144. }
  1145. pos = eap_hdr_validate(EAP_VENDOR_IETF, data->eap_method, reqData,
  1146. &len);
  1147. if (pos == NULL || len < 3) {
  1148. ret->ignore = TRUE;
  1149. return NULL;
  1150. }
  1151. req = wpabuf_head(reqData);
  1152. id = req->identifier;
  1153. len = be_to_host16(req->length);
  1154. ret->ignore = FALSE;
  1155. ret->methodState = METHOD_MAY_CONT;
  1156. ret->decision = DECISION_FAIL;
  1157. ret->allowNotifications = TRUE;
  1158. subtype = *pos++;
  1159. wpa_printf(MSG_DEBUG, "EAP-AKA: Subtype=%d", subtype);
  1160. pos += 2; /* Reserved */
  1161. if (eap_sim_parse_attr(pos, wpabuf_head_u8(reqData) + len, &attr,
  1162. data->eap_method == EAP_TYPE_AKA_PRIME ? 2 : 1,
  1163. 0)) {
  1164. res = eap_aka_client_error(data, id,
  1165. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  1166. goto done;
  1167. }
  1168. switch (subtype) {
  1169. case EAP_AKA_SUBTYPE_IDENTITY:
  1170. res = eap_aka_process_identity(sm, data, id, reqData, &attr);
  1171. break;
  1172. case EAP_AKA_SUBTYPE_CHALLENGE:
  1173. res = eap_aka_process_challenge(sm, data, id, reqData, &attr);
  1174. break;
  1175. case EAP_AKA_SUBTYPE_NOTIFICATION:
  1176. res = eap_aka_process_notification(sm, data, id, reqData,
  1177. &attr);
  1178. break;
  1179. case EAP_AKA_SUBTYPE_REAUTHENTICATION:
  1180. res = eap_aka_process_reauthentication(sm, data, id, reqData,
  1181. &attr);
  1182. break;
  1183. case EAP_AKA_SUBTYPE_CLIENT_ERROR:
  1184. wpa_printf(MSG_DEBUG, "EAP-AKA: subtype Client-Error");
  1185. res = eap_aka_client_error(data, id,
  1186. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  1187. break;
  1188. default:
  1189. wpa_printf(MSG_DEBUG, "EAP-AKA: Unknown subtype=%d", subtype);
  1190. res = eap_aka_client_error(data, id,
  1191. EAP_AKA_UNABLE_TO_PROCESS_PACKET);
  1192. break;
  1193. }
  1194. done:
  1195. if (data->state == FAILURE) {
  1196. ret->decision = DECISION_FAIL;
  1197. ret->methodState = METHOD_DONE;
  1198. } else if (data->state == SUCCESS) {
  1199. ret->decision = data->use_result_ind ?
  1200. DECISION_UNCOND_SUCC : DECISION_COND_SUCC;
  1201. /*
  1202. * It is possible for the server to reply with AKA
  1203. * Notification, so we must allow the method to continue and
  1204. * not only accept EAP-Success at this point.
  1205. */
  1206. ret->methodState = data->use_result_ind ?
  1207. METHOD_DONE : METHOD_MAY_CONT;
  1208. } else if (data->state == RESULT_SUCCESS)
  1209. ret->methodState = METHOD_CONT;
  1210. if (ret->methodState == METHOD_DONE) {
  1211. ret->allowNotifications = FALSE;
  1212. }
  1213. return res;
  1214. }
  1215. static Boolean eap_aka_has_reauth_data(struct eap_sm *sm, void *priv)
  1216. {
  1217. struct eap_aka_data *data = priv;
  1218. return data->pseudonym || data->reauth_id;
  1219. }
  1220. static void eap_aka_deinit_for_reauth(struct eap_sm *sm, void *priv)
  1221. {
  1222. struct eap_aka_data *data = priv;
  1223. eap_aka_clear_identities(sm, data, CLEAR_EAP_ID);
  1224. data->prev_id = -1;
  1225. wpabuf_free(data->id_msgs);
  1226. data->id_msgs = NULL;
  1227. data->use_result_ind = 0;
  1228. data->kdf_negotiation = 0;
  1229. eap_aka_clear_keys(data, 1);
  1230. }
  1231. static void * eap_aka_init_for_reauth(struct eap_sm *sm, void *priv)
  1232. {
  1233. struct eap_aka_data *data = priv;
  1234. data->num_id_req = 0;
  1235. data->num_notification = 0;
  1236. eap_aka_state(data, CONTINUE);
  1237. return priv;
  1238. }
  1239. static const u8 * eap_aka_get_identity(struct eap_sm *sm, void *priv,
  1240. size_t *len)
  1241. {
  1242. struct eap_aka_data *data = priv;
  1243. if (data->reauth_id) {
  1244. *len = data->reauth_id_len;
  1245. return data->reauth_id;
  1246. }
  1247. if (data->pseudonym) {
  1248. *len = data->pseudonym_len;
  1249. return data->pseudonym;
  1250. }
  1251. return NULL;
  1252. }
  1253. static Boolean eap_aka_isKeyAvailable(struct eap_sm *sm, void *priv)
  1254. {
  1255. struct eap_aka_data *data = priv;
  1256. return data->state == SUCCESS;
  1257. }
  1258. static u8 * eap_aka_getKey(struct eap_sm *sm, void *priv, size_t *len)
  1259. {
  1260. struct eap_aka_data *data = priv;
  1261. u8 *key;
  1262. if (data->state != SUCCESS)
  1263. return NULL;
  1264. key = os_memdup(data->msk, EAP_SIM_KEYING_DATA_LEN);
  1265. if (key == NULL)
  1266. return NULL;
  1267. *len = EAP_SIM_KEYING_DATA_LEN;
  1268. return key;
  1269. }
  1270. static u8 * eap_aka_get_session_id(struct eap_sm *sm, void *priv, size_t *len)
  1271. {
  1272. struct eap_aka_data *data = priv;
  1273. u8 *id;
  1274. if (data->state != SUCCESS)
  1275. return NULL;
  1276. *len = 1 + EAP_AKA_RAND_LEN + EAP_AKA_AUTN_LEN;
  1277. id = os_malloc(*len);
  1278. if (id == NULL)
  1279. return NULL;
  1280. id[0] = data->eap_method;
  1281. os_memcpy(id + 1, data->rand, EAP_AKA_RAND_LEN);
  1282. os_memcpy(id + 1 + EAP_AKA_RAND_LEN, data->autn, EAP_AKA_AUTN_LEN);
  1283. wpa_hexdump(MSG_DEBUG, "EAP-AKA: Derived Session-Id", id, *len);
  1284. return id;
  1285. }
  1286. static u8 * eap_aka_get_emsk(struct eap_sm *sm, void *priv, size_t *len)
  1287. {
  1288. struct eap_aka_data *data = priv;
  1289. u8 *key;
  1290. if (data->state != SUCCESS)
  1291. return NULL;
  1292. key = os_memdup(data->emsk, EAP_EMSK_LEN);
  1293. if (key == NULL)
  1294. return NULL;
  1295. *len = EAP_EMSK_LEN;
  1296. return key;
  1297. }
  1298. static int eap_aka_get_error_code(void *priv)
  1299. {
  1300. struct eap_aka_data *data = priv;
  1301. int current_data_error;
  1302. if (!data)
  1303. return NO_EAP_METHOD_ERROR;
  1304. current_data_error = data->error_code;
  1305. /* Now reset for next transaction */
  1306. data->error_code = NO_EAP_METHOD_ERROR;
  1307. return current_data_error;
  1308. }
  1309. int eap_peer_aka_register(void)
  1310. {
  1311. struct eap_method *eap;
  1312. eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
  1313. EAP_VENDOR_IETF, EAP_TYPE_AKA, "AKA");
  1314. if (eap == NULL)
  1315. return -1;
  1316. eap->init = eap_aka_init;
  1317. eap->deinit = eap_aka_deinit;
  1318. eap->process = eap_aka_process;
  1319. eap->isKeyAvailable = eap_aka_isKeyAvailable;
  1320. eap->getKey = eap_aka_getKey;
  1321. eap->getSessionId = eap_aka_get_session_id;
  1322. eap->has_reauth_data = eap_aka_has_reauth_data;
  1323. eap->deinit_for_reauth = eap_aka_deinit_for_reauth;
  1324. eap->init_for_reauth = eap_aka_init_for_reauth;
  1325. eap->get_identity = eap_aka_get_identity;
  1326. eap->get_emsk = eap_aka_get_emsk;
  1327. eap->get_error_code = eap_aka_get_error_code;
  1328. return eap_peer_method_register(eap);
  1329. }
  1330. #ifdef EAP_AKA_PRIME
  1331. int eap_peer_aka_prime_register(void)
  1332. {
  1333. struct eap_method *eap;
  1334. eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
  1335. EAP_VENDOR_IETF, EAP_TYPE_AKA_PRIME,
  1336. "AKA'");
  1337. if (eap == NULL)
  1338. return -1;
  1339. eap->init = eap_aka_prime_init;
  1340. eap->deinit = eap_aka_deinit;
  1341. eap->process = eap_aka_process;
  1342. eap->isKeyAvailable = eap_aka_isKeyAvailable;
  1343. eap->getKey = eap_aka_getKey;
  1344. eap->getSessionId = eap_aka_get_session_id;
  1345. eap->has_reauth_data = eap_aka_has_reauth_data;
  1346. eap->deinit_for_reauth = eap_aka_deinit_for_reauth;
  1347. eap->init_for_reauth = eap_aka_init_for_reauth;
  1348. eap->get_identity = eap_aka_get_identity;
  1349. eap->get_emsk = eap_aka_get_emsk;
  1350. eap->get_error_code = eap_aka_get_error_code;
  1351. return eap_peer_method_register(eap);
  1352. }
  1353. #endif /* EAP_AKA_PRIME */