wpa_ft.c 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656
  1. /*
  2. * hostapd - IEEE 802.11r - Fast BSS Transition
  3. * Copyright (c) 2004-2007, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "crypto/aes_wrap.h"
  17. #include "config.h"
  18. #include "wpa.h"
  19. #include "ieee802_11.h"
  20. #include "wme.h"
  21. #include "wpa_auth_i.h"
  22. #include "wpa_auth_ie.h"
  23. #ifdef CONFIG_IEEE80211R
  24. struct wpa_ft_ies {
  25. const u8 *mdie;
  26. size_t mdie_len;
  27. const u8 *ftie;
  28. size_t ftie_len;
  29. const u8 *r1kh_id;
  30. const u8 *gtk;
  31. size_t gtk_len;
  32. const u8 *r0kh_id;
  33. size_t r0kh_id_len;
  34. const u8 *rsn;
  35. size_t rsn_len;
  36. const u8 *rsn_pmkid;
  37. const u8 *ric;
  38. size_t ric_len;
  39. };
  40. static int wpa_ft_parse_ies(const u8 *ies, size_t ies_len,
  41. struct wpa_ft_ies *parse);
  42. static int wpa_ft_rrb_send(struct wpa_authenticator *wpa_auth, const u8 *dst,
  43. const u8 *data, size_t data_len)
  44. {
  45. if (wpa_auth->cb.send_ether == NULL)
  46. return -1;
  47. return wpa_auth->cb.send_ether(wpa_auth->cb.ctx, dst, ETH_P_RRB,
  48. data, data_len);
  49. }
  50. static int wpa_ft_action_send(struct wpa_authenticator *wpa_auth,
  51. const u8 *dst, const u8 *data, size_t data_len)
  52. {
  53. if (wpa_auth->cb.send_ft_action == NULL)
  54. return -1;
  55. return wpa_auth->cb.send_ft_action(wpa_auth->cb.ctx, dst,
  56. data, data_len);
  57. }
  58. static struct wpa_state_machine *
  59. wpa_ft_add_sta(struct wpa_authenticator *wpa_auth, const u8 *sta_addr)
  60. {
  61. if (wpa_auth->cb.add_sta == NULL)
  62. return NULL;
  63. return wpa_auth->cb.add_sta(wpa_auth->cb.ctx, sta_addr);
  64. }
  65. int wpa_write_mdie(struct wpa_auth_config *conf, u8 *buf, size_t len)
  66. {
  67. u8 *pos = buf;
  68. u8 capab;
  69. if (len < 2 + sizeof(struct rsn_mdie))
  70. return -1;
  71. *pos++ = WLAN_EID_MOBILITY_DOMAIN;
  72. *pos++ = MOBILITY_DOMAIN_ID_LEN + 1;
  73. os_memcpy(pos, conf->mobility_domain, MOBILITY_DOMAIN_ID_LEN);
  74. pos += MOBILITY_DOMAIN_ID_LEN;
  75. capab = RSN_FT_CAPAB_FT_OVER_DS;
  76. *pos++ = capab;
  77. return pos - buf;
  78. }
  79. static int wpa_write_ftie(struct wpa_auth_config *conf, const u8 *r0kh_id,
  80. size_t r0kh_id_len,
  81. const u8 *anonce, const u8 *snonce,
  82. u8 *buf, size_t len, const u8 *subelem,
  83. size_t subelem_len)
  84. {
  85. u8 *pos = buf, *ielen;
  86. struct rsn_ftie *hdr;
  87. if (len < 2 + sizeof(*hdr) + 2 + FT_R1KH_ID_LEN + 2 + r0kh_id_len +
  88. subelem_len)
  89. return -1;
  90. *pos++ = WLAN_EID_FAST_BSS_TRANSITION;
  91. ielen = pos++;
  92. hdr = (struct rsn_ftie *) pos;
  93. os_memset(hdr, 0, sizeof(*hdr));
  94. pos += sizeof(*hdr);
  95. WPA_PUT_LE16(hdr->mic_control, 0);
  96. if (anonce)
  97. os_memcpy(hdr->anonce, anonce, WPA_NONCE_LEN);
  98. if (snonce)
  99. os_memcpy(hdr->snonce, snonce, WPA_NONCE_LEN);
  100. /* Optional Parameters */
  101. *pos++ = FTIE_SUBELEM_R1KH_ID;
  102. *pos++ = FT_R1KH_ID_LEN;
  103. os_memcpy(pos, conf->r1_key_holder, FT_R1KH_ID_LEN);
  104. pos += FT_R1KH_ID_LEN;
  105. if (r0kh_id) {
  106. *pos++ = FTIE_SUBELEM_R0KH_ID;
  107. *pos++ = r0kh_id_len;
  108. os_memcpy(pos, r0kh_id, r0kh_id_len);
  109. pos += r0kh_id_len;
  110. }
  111. if (subelem) {
  112. os_memcpy(pos, subelem, subelem_len);
  113. pos += subelem_len;
  114. }
  115. *ielen = pos - buf - 2;
  116. return pos - buf;
  117. }
  118. struct wpa_ft_pmk_r0_sa {
  119. struct wpa_ft_pmk_r0_sa *next;
  120. u8 pmk_r0[PMK_LEN];
  121. u8 pmk_r0_name[WPA_PMK_NAME_LEN];
  122. u8 spa[ETH_ALEN];
  123. /* TODO: expiration, identity, radius_class, EAP type, VLAN ID */
  124. int pmk_r1_pushed;
  125. };
  126. struct wpa_ft_pmk_r1_sa {
  127. struct wpa_ft_pmk_r1_sa *next;
  128. u8 pmk_r1[PMK_LEN];
  129. u8 pmk_r1_name[WPA_PMK_NAME_LEN];
  130. u8 spa[ETH_ALEN];
  131. /* TODO: expiration, identity, radius_class, EAP type, VLAN ID */
  132. };
  133. struct wpa_ft_pmk_cache {
  134. struct wpa_ft_pmk_r0_sa *pmk_r0;
  135. struct wpa_ft_pmk_r1_sa *pmk_r1;
  136. };
  137. struct wpa_ft_pmk_cache * wpa_ft_pmk_cache_init(void)
  138. {
  139. struct wpa_ft_pmk_cache *cache;
  140. cache = os_zalloc(sizeof(*cache));
  141. return cache;
  142. }
  143. void wpa_ft_pmk_cache_deinit(struct wpa_ft_pmk_cache *cache)
  144. {
  145. struct wpa_ft_pmk_r0_sa *r0, *r0prev;
  146. struct wpa_ft_pmk_r1_sa *r1, *r1prev;
  147. r0 = cache->pmk_r0;
  148. while (r0) {
  149. r0prev = r0;
  150. r0 = r0->next;
  151. os_memset(r0prev->pmk_r0, 0, PMK_LEN);
  152. os_free(r0prev);
  153. }
  154. r1 = cache->pmk_r1;
  155. while (r1) {
  156. r1prev = r1;
  157. r1 = r1->next;
  158. os_memset(r1prev->pmk_r1, 0, PMK_LEN);
  159. os_free(r1prev);
  160. }
  161. os_free(cache);
  162. }
  163. static int wpa_ft_store_pmk_r0(struct wpa_authenticator *wpa_auth,
  164. const u8 *spa, const u8 *pmk_r0,
  165. const u8 *pmk_r0_name)
  166. {
  167. struct wpa_ft_pmk_cache *cache = wpa_auth->ft_pmk_cache;
  168. struct wpa_ft_pmk_r0_sa *r0;
  169. /* TODO: add expiration and limit on number of entries in cache */
  170. r0 = os_zalloc(sizeof(*r0));
  171. if (r0 == NULL)
  172. return -1;
  173. os_memcpy(r0->pmk_r0, pmk_r0, PMK_LEN);
  174. os_memcpy(r0->pmk_r0_name, pmk_r0_name, WPA_PMK_NAME_LEN);
  175. os_memcpy(r0->spa, spa, ETH_ALEN);
  176. r0->next = cache->pmk_r0;
  177. cache->pmk_r0 = r0;
  178. return 0;
  179. }
  180. static int wpa_ft_fetch_pmk_r0(struct wpa_authenticator *wpa_auth,
  181. const u8 *spa, const u8 *pmk_r0_name,
  182. u8 *pmk_r0)
  183. {
  184. struct wpa_ft_pmk_cache *cache = wpa_auth->ft_pmk_cache;
  185. struct wpa_ft_pmk_r0_sa *r0;
  186. r0 = cache->pmk_r0;
  187. while (r0) {
  188. if (os_memcmp(r0->spa, spa, ETH_ALEN) == 0 &&
  189. os_memcmp(r0->pmk_r0_name, pmk_r0_name, WPA_PMK_NAME_LEN)
  190. == 0) {
  191. os_memcpy(pmk_r0, r0->pmk_r0, PMK_LEN);
  192. return 0;
  193. }
  194. r0 = r0->next;
  195. }
  196. return -1;
  197. }
  198. static int wpa_ft_store_pmk_r1(struct wpa_authenticator *wpa_auth,
  199. const u8 *spa, const u8 *pmk_r1,
  200. const u8 *pmk_r1_name)
  201. {
  202. struct wpa_ft_pmk_cache *cache = wpa_auth->ft_pmk_cache;
  203. struct wpa_ft_pmk_r1_sa *r1;
  204. /* TODO: add expiration and limit on number of entries in cache */
  205. r1 = os_zalloc(sizeof(*r1));
  206. if (r1 == NULL)
  207. return -1;
  208. os_memcpy(r1->pmk_r1, pmk_r1, PMK_LEN);
  209. os_memcpy(r1->pmk_r1_name, pmk_r1_name, WPA_PMK_NAME_LEN);
  210. os_memcpy(r1->spa, spa, ETH_ALEN);
  211. r1->next = cache->pmk_r1;
  212. cache->pmk_r1 = r1;
  213. return 0;
  214. }
  215. static int wpa_ft_fetch_pmk_r1(struct wpa_authenticator *wpa_auth,
  216. const u8 *spa, const u8 *pmk_r1_name,
  217. u8 *pmk_r1)
  218. {
  219. struct wpa_ft_pmk_cache *cache = wpa_auth->ft_pmk_cache;
  220. struct wpa_ft_pmk_r1_sa *r1;
  221. r1 = cache->pmk_r1;
  222. while (r1) {
  223. if (os_memcmp(r1->spa, spa, ETH_ALEN) == 0 &&
  224. os_memcmp(r1->pmk_r1_name, pmk_r1_name, WPA_PMK_NAME_LEN)
  225. == 0) {
  226. os_memcpy(pmk_r1, r1->pmk_r1, PMK_LEN);
  227. return 0;
  228. }
  229. r1 = r1->next;
  230. }
  231. return -1;
  232. }
  233. static int wpa_ft_pull_pmk_r1(struct wpa_authenticator *wpa_auth,
  234. const u8 *s1kh_id, const u8 *r0kh_id,
  235. size_t r0kh_id_len, const u8 *pmk_r0_name)
  236. {
  237. struct ft_remote_r0kh *r0kh;
  238. struct ft_r0kh_r1kh_pull_frame frame, f;
  239. r0kh = wpa_auth->conf.r0kh_list;
  240. while (r0kh) {
  241. if (r0kh->id_len == r0kh_id_len &&
  242. os_memcmp(r0kh->id, r0kh_id, r0kh_id_len) == 0)
  243. break;
  244. r0kh = r0kh->next;
  245. }
  246. if (r0kh == NULL)
  247. return -1;
  248. wpa_printf(MSG_DEBUG, "FT: Send PMK-R1 pull request to remote R0KH "
  249. "address " MACSTR, MAC2STR(r0kh->addr));
  250. os_memset(&frame, 0, sizeof(frame));
  251. frame.frame_type = RSN_REMOTE_FRAME_TYPE_FT_RRB;
  252. frame.packet_type = FT_PACKET_R0KH_R1KH_PULL;
  253. frame.data_length = host_to_le16(FT_R0KH_R1KH_PULL_DATA_LEN);
  254. os_memcpy(frame.ap_address, wpa_auth->addr, ETH_ALEN);
  255. /* aes_wrap() does not support inplace encryption, so use a temporary
  256. * buffer for the data. */
  257. if (os_get_random(f.nonce, sizeof(f.nonce))) {
  258. wpa_printf(MSG_DEBUG, "FT: Failed to get random data for "
  259. "nonce");
  260. return -1;
  261. }
  262. os_memcpy(f.pmk_r0_name, pmk_r0_name, WPA_PMK_NAME_LEN);
  263. os_memcpy(f.r1kh_id, wpa_auth->conf.r1_key_holder, FT_R1KH_ID_LEN);
  264. os_memcpy(f.s1kh_id, s1kh_id, ETH_ALEN);
  265. if (aes_wrap(r0kh->key, (FT_R0KH_R1KH_PULL_DATA_LEN + 7) / 8,
  266. f.nonce, frame.nonce) < 0)
  267. return -1;
  268. wpa_ft_rrb_send(wpa_auth, r0kh->addr, (u8 *) &frame, sizeof(frame));
  269. return 0;
  270. }
  271. int wpa_auth_derive_ptk_ft(struct wpa_state_machine *sm, const u8 *pmk,
  272. struct wpa_ptk *ptk, size_t ptk_len)
  273. {
  274. u8 pmk_r0[PMK_LEN], pmk_r0_name[WPA_PMK_NAME_LEN];
  275. u8 pmk_r1[PMK_LEN], pmk_r1_name[WPA_PMK_NAME_LEN];
  276. u8 ptk_name[WPA_PMK_NAME_LEN];
  277. const u8 *mdid = sm->wpa_auth->conf.mobility_domain;
  278. const u8 *r0kh = sm->wpa_auth->conf.r0_key_holder;
  279. size_t r0kh_len = sm->wpa_auth->conf.r0_key_holder_len;
  280. const u8 *r1kh = sm->wpa_auth->conf.r1_key_holder;
  281. const u8 *ssid = sm->wpa_auth->conf.ssid;
  282. size_t ssid_len = sm->wpa_auth->conf.ssid_len;
  283. if (sm->xxkey_len == 0) {
  284. wpa_printf(MSG_DEBUG, "FT: XXKey not available for key "
  285. "derivation");
  286. return -1;
  287. }
  288. wpa_derive_pmk_r0(sm->xxkey, sm->xxkey_len, ssid, ssid_len, mdid,
  289. r0kh, r0kh_len, sm->addr, pmk_r0, pmk_r0_name);
  290. wpa_hexdump_key(MSG_DEBUG, "FT: PMK-R0", pmk_r0, PMK_LEN);
  291. wpa_hexdump(MSG_DEBUG, "FT: PMKR0Name", pmk_r0_name, WPA_PMK_NAME_LEN);
  292. wpa_ft_store_pmk_r0(sm->wpa_auth, sm->addr, pmk_r0, pmk_r0_name);
  293. wpa_derive_pmk_r1(pmk_r0, pmk_r0_name, r1kh, sm->addr,
  294. pmk_r1, pmk_r1_name);
  295. wpa_hexdump_key(MSG_DEBUG, "FT: PMK-R1", pmk_r1, PMK_LEN);
  296. wpa_hexdump(MSG_DEBUG, "FT: PMKR1Name", pmk_r1_name, WPA_PMK_NAME_LEN);
  297. wpa_ft_store_pmk_r1(sm->wpa_auth, sm->addr, pmk_r1, pmk_r1_name);
  298. wpa_pmk_r1_to_ptk(pmk_r1, sm->SNonce, sm->ANonce, sm->addr,
  299. sm->wpa_auth->addr, pmk_r1_name,
  300. (u8 *) ptk, ptk_len, ptk_name);
  301. wpa_hexdump_key(MSG_DEBUG, "FT: PTK", (u8 *) ptk, ptk_len);
  302. wpa_hexdump(MSG_DEBUG, "FT: PTKName", ptk_name, WPA_PMK_NAME_LEN);
  303. return 0;
  304. }
  305. static inline int wpa_auth_get_seqnum(struct wpa_authenticator *wpa_auth,
  306. const u8 *addr, int idx, u8 *seq)
  307. {
  308. if (wpa_auth->cb.get_seqnum == NULL)
  309. return -1;
  310. return wpa_auth->cb.get_seqnum(wpa_auth->cb.ctx, addr, idx, seq);
  311. }
  312. static u8 * wpa_ft_gtk_subelem(struct wpa_state_machine *sm, size_t *len)
  313. {
  314. u8 *subelem;
  315. struct wpa_group *gsm = sm->group;
  316. size_t subelem_len, pad_len;
  317. const u8 *key;
  318. size_t key_len;
  319. u8 keybuf[32];
  320. key_len = gsm->GTK_len;
  321. if (key_len > sizeof(keybuf))
  322. return NULL;
  323. /*
  324. * Pad key for AES Key Wrap if it is not multiple of 8 bytes or is less
  325. * than 16 bytes.
  326. */
  327. pad_len = key_len % 8;
  328. if (pad_len)
  329. pad_len = 8 - pad_len;
  330. if (key_len + pad_len < 16)
  331. pad_len += 8;
  332. if (pad_len) {
  333. os_memcpy(keybuf, gsm->GTK[gsm->GN - 1], key_len);
  334. os_memset(keybuf + key_len, 0, pad_len);
  335. keybuf[key_len] = 0xdd;
  336. key_len += pad_len;
  337. key = keybuf;
  338. } else
  339. key = gsm->GTK[gsm->GN - 1];
  340. /*
  341. * Sub-elem ID[1] | Length[1] | Key Info[1] | Key Length[1] | RSC[8] |
  342. * Key[5..32].
  343. */
  344. subelem_len = 12 + key_len + 8;
  345. subelem = os_zalloc(subelem_len);
  346. if (subelem == NULL)
  347. return NULL;
  348. subelem[0] = FTIE_SUBELEM_GTK;
  349. subelem[1] = 10 + key_len + 8;
  350. subelem[2] = gsm->GN & 0x03; /* Key ID in B0-B1 of Key Info */
  351. subelem[3] = gsm->GTK_len;
  352. wpa_auth_get_seqnum(sm->wpa_auth, NULL, gsm->GN, subelem + 4);
  353. if (aes_wrap(sm->PTK.kek, key_len / 8, key, subelem + 12)) {
  354. os_free(subelem);
  355. return NULL;
  356. }
  357. *len = subelem_len;
  358. return subelem;
  359. }
  360. #ifdef CONFIG_IEEE80211W
  361. static u8 * wpa_ft_igtk_subelem(struct wpa_state_machine *sm, size_t *len)
  362. {
  363. u8 *subelem, *pos;
  364. struct wpa_group *gsm = sm->group;
  365. size_t subelem_len;
  366. /* Sub-elem ID[1] | Length[1] | KeyID[2] | IPN[6] | Key Length[1] |
  367. * Key[16+8] */
  368. subelem_len = 1 + 1 + 2 + 6 + 1 + WPA_IGTK_LEN + 8;
  369. subelem = os_zalloc(subelem_len);
  370. if (subelem == NULL)
  371. return NULL;
  372. pos = subelem;
  373. *pos++ = FTIE_SUBELEM_IGTK;
  374. *pos++ = subelem_len - 2;
  375. WPA_PUT_LE16(pos, gsm->GN_igtk);
  376. pos += 2;
  377. wpa_auth_get_seqnum(sm->wpa_auth, NULL, gsm->GN_igtk, pos);
  378. pos += 6;
  379. *pos++ = WPA_IGTK_LEN;
  380. if (aes_wrap(sm->PTK.kek, WPA_IGTK_LEN / 8,
  381. gsm->IGTK[gsm->GN_igtk - 4], pos)) {
  382. os_free(subelem);
  383. return NULL;
  384. }
  385. *len = subelem_len;
  386. return subelem;
  387. }
  388. #endif /* CONFIG_IEEE80211W */
  389. static u8 * wpa_ft_process_rdie(u8 *pos, u8 *end, u8 id, u8 descr_count,
  390. const u8 *ies, size_t ies_len)
  391. {
  392. struct ieee802_11_elems parse;
  393. struct rsn_rdie *rdie;
  394. wpa_printf(MSG_DEBUG, "FT: Resource Request: id=%d descr_count=%d",
  395. id, descr_count);
  396. wpa_hexdump(MSG_MSGDUMP, "FT: Resource descriptor IE(s)",
  397. ies, ies_len);
  398. if (end - pos < (int) sizeof(*rdie)) {
  399. wpa_printf(MSG_ERROR, "FT: Not enough room for response RDIE");
  400. return pos;
  401. }
  402. *pos++ = WLAN_EID_RIC_DATA;
  403. *pos++ = sizeof(*rdie);
  404. rdie = (struct rsn_rdie *) pos;
  405. rdie->id = id;
  406. rdie->descr_count = 0;
  407. rdie->status_code = host_to_le16(WLAN_STATUS_SUCCESS);
  408. pos += sizeof(*rdie);
  409. if (ieee802_11_parse_elems((u8 *) ies, ies_len, &parse, 1) ==
  410. ParseFailed) {
  411. wpa_printf(MSG_DEBUG, "FT: Failed to parse request IEs");
  412. rdie->status_code =
  413. host_to_le16(WLAN_STATUS_UNSPECIFIED_FAILURE);
  414. return pos;
  415. }
  416. #ifdef NEED_AP_MLME
  417. if (parse.wmm_tspec) {
  418. struct wmm_tspec_element *tspec;
  419. int res;
  420. if (parse.wmm_tspec_len + 2 < (int) sizeof(*tspec)) {
  421. wpa_printf(MSG_DEBUG, "FT: Too short WMM TSPEC IE "
  422. "(%d)", (int) parse.wmm_tspec_len);
  423. rdie->status_code =
  424. host_to_le16(WLAN_STATUS_UNSPECIFIED_FAILURE);
  425. return pos;
  426. }
  427. if (end - pos < (int) sizeof(*tspec)) {
  428. wpa_printf(MSG_ERROR, "FT: Not enough room for "
  429. "response TSPEC");
  430. rdie->status_code =
  431. host_to_le16(WLAN_STATUS_UNSPECIFIED_FAILURE);
  432. return pos;
  433. }
  434. tspec = (struct wmm_tspec_element *) pos;
  435. os_memcpy(tspec, parse.wmm_tspec - 2, sizeof(*tspec));
  436. res = wmm_process_tspec(tspec);
  437. wpa_printf(MSG_DEBUG, "FT: ADDTS processing result: %d", res);
  438. if (res == WMM_ADDTS_STATUS_INVALID_PARAMETERS)
  439. rdie->status_code =
  440. host_to_le16(WLAN_STATUS_INVALID_PARAMETERS);
  441. else if (res == WMM_ADDTS_STATUS_REFUSED)
  442. rdie->status_code =
  443. host_to_le16(WLAN_STATUS_REQUEST_DECLINED);
  444. else {
  445. /* TSPEC accepted; include updated TSPEC in response */
  446. rdie->descr_count = 1;
  447. pos += sizeof(*tspec);
  448. }
  449. return pos;
  450. }
  451. #endif /* NEED_AP_MLME */
  452. wpa_printf(MSG_DEBUG, "FT: No supported resource requested");
  453. rdie->status_code = host_to_le16(WLAN_STATUS_UNSPECIFIED_FAILURE);
  454. return pos;
  455. }
  456. static u8 * wpa_ft_process_ric(u8 *pos, u8 *end, const u8 *ric, size_t ric_len)
  457. {
  458. const u8 *rpos, *start;
  459. const struct rsn_rdie *rdie;
  460. wpa_hexdump(MSG_MSGDUMP, "FT: RIC Request", ric, ric_len);
  461. rpos = ric;
  462. while (rpos + sizeof(*rdie) < ric + ric_len) {
  463. if (rpos[0] != WLAN_EID_RIC_DATA || rpos[1] < sizeof(*rdie) ||
  464. rpos + 2 + rpos[1] > ric + ric_len)
  465. break;
  466. rdie = (const struct rsn_rdie *) (rpos + 2);
  467. rpos += 2 + rpos[1];
  468. start = rpos;
  469. while (rpos + 2 <= ric + ric_len &&
  470. rpos + 2 + rpos[1] <= ric + ric_len) {
  471. if (rpos[0] == WLAN_EID_RIC_DATA)
  472. break;
  473. rpos += 2 + rpos[1];
  474. }
  475. pos = wpa_ft_process_rdie(pos, end, rdie->id,
  476. rdie->descr_count,
  477. start, rpos - start);
  478. }
  479. return pos;
  480. }
  481. u8 * wpa_sm_write_assoc_resp_ies(struct wpa_state_machine *sm, u8 *pos,
  482. size_t max_len, int auth_alg,
  483. const u8 *req_ies, size_t req_ies_len)
  484. {
  485. u8 *end, *mdie, *ftie, *rsnie, *r0kh_id, *subelem = NULL;
  486. size_t mdie_len, ftie_len, rsnie_len, r0kh_id_len, subelem_len = 0;
  487. int res;
  488. struct wpa_auth_config *conf;
  489. struct rsn_ftie *_ftie;
  490. struct wpa_ft_ies parse;
  491. u8 *ric_start;
  492. if (sm == NULL)
  493. return pos;
  494. conf = &sm->wpa_auth->conf;
  495. if (sm->wpa_key_mgmt != WPA_KEY_MGMT_FT_IEEE8021X &&
  496. sm->wpa_key_mgmt != WPA_KEY_MGMT_FT_PSK)
  497. return pos;
  498. end = pos + max_len;
  499. /* RSN */
  500. res = wpa_write_rsn_ie(conf, pos, end - pos, sm->pmk_r1_name);
  501. if (res < 0)
  502. return pos;
  503. rsnie = pos;
  504. rsnie_len = res;
  505. pos += res;
  506. /* Mobility Domain Information */
  507. res = wpa_write_mdie(conf, pos, end - pos);
  508. if (res < 0)
  509. return pos;
  510. mdie = pos;
  511. mdie_len = res;
  512. pos += res;
  513. /* Fast BSS Transition Information */
  514. if (auth_alg == WLAN_AUTH_FT) {
  515. subelem = wpa_ft_gtk_subelem(sm, &subelem_len);
  516. r0kh_id = sm->r0kh_id;
  517. r0kh_id_len = sm->r0kh_id_len;
  518. #ifdef CONFIG_IEEE80211W
  519. if (sm->mgmt_frame_prot) {
  520. u8 *igtk;
  521. size_t igtk_len;
  522. u8 *nbuf;
  523. igtk = wpa_ft_igtk_subelem(sm, &igtk_len);
  524. if (igtk == NULL) {
  525. os_free(subelem);
  526. return pos;
  527. }
  528. nbuf = os_realloc(subelem, subelem_len + igtk_len);
  529. if (nbuf == NULL) {
  530. os_free(subelem);
  531. os_free(igtk);
  532. return pos;
  533. }
  534. subelem = nbuf;
  535. os_memcpy(subelem + subelem_len, igtk, igtk_len);
  536. subelem_len += igtk_len;
  537. os_free(igtk);
  538. }
  539. #endif /* CONFIG_IEEE80211W */
  540. } else {
  541. r0kh_id = conf->r0_key_holder;
  542. r0kh_id_len = conf->r0_key_holder_len;
  543. }
  544. res = wpa_write_ftie(conf, r0kh_id, r0kh_id_len, NULL, NULL, pos,
  545. end - pos, subelem, subelem_len);
  546. os_free(subelem);
  547. if (res < 0)
  548. return pos;
  549. ftie = pos;
  550. ftie_len = res;
  551. pos += res;
  552. _ftie = (struct rsn_ftie *) (ftie + 2);
  553. _ftie->mic_control[1] = 3; /* Information element count */
  554. ric_start = pos;
  555. if (wpa_ft_parse_ies(req_ies, req_ies_len, &parse) == 0 && parse.ric) {
  556. pos = wpa_ft_process_ric(pos, end, parse.ric, parse.ric_len);
  557. _ftie->mic_control[1] += ieee802_11_ie_count(ric_start,
  558. pos - ric_start);
  559. }
  560. if (ric_start == pos)
  561. ric_start = NULL;
  562. if (wpa_ft_mic(sm->PTK.kck, sm->addr, sm->wpa_auth->addr, 6,
  563. mdie, mdie_len, ftie, ftie_len,
  564. rsnie, rsnie_len,
  565. ric_start, ric_start ? pos - ric_start : 0,
  566. _ftie->mic) < 0)
  567. wpa_printf(MSG_DEBUG, "FT: Failed to calculate MIC");
  568. return pos;
  569. }
  570. static int wpa_ft_parse_ftie(const u8 *ie, size_t ie_len,
  571. struct wpa_ft_ies *parse)
  572. {
  573. const u8 *end, *pos;
  574. parse->ftie = ie;
  575. parse->ftie_len = ie_len;
  576. pos = ie + sizeof(struct rsn_ftie);
  577. end = ie + ie_len;
  578. while (pos + 2 <= end && pos + 2 + pos[1] <= end) {
  579. switch (pos[0]) {
  580. case FTIE_SUBELEM_R1KH_ID:
  581. if (pos[1] != FT_R1KH_ID_LEN) {
  582. wpa_printf(MSG_DEBUG, "FT: Invalid R1KH-ID "
  583. "length in FTIE: %d", pos[1]);
  584. return -1;
  585. }
  586. parse->r1kh_id = pos + 2;
  587. break;
  588. case FTIE_SUBELEM_GTK:
  589. parse->gtk = pos + 2;
  590. parse->gtk_len = pos[1];
  591. break;
  592. case FTIE_SUBELEM_R0KH_ID:
  593. if (pos[1] < 1 || pos[1] > FT_R0KH_ID_MAX_LEN) {
  594. wpa_printf(MSG_DEBUG, "FT: Invalid R0KH-ID "
  595. "length in FTIE: %d", pos[1]);
  596. return -1;
  597. }
  598. parse->r0kh_id = pos + 2;
  599. parse->r0kh_id_len = pos[1];
  600. break;
  601. }
  602. pos += 2 + pos[1];
  603. }
  604. return 0;
  605. }
  606. static int wpa_ft_parse_ies(const u8 *ies, size_t ies_len,
  607. struct wpa_ft_ies *parse)
  608. {
  609. const u8 *end, *pos;
  610. struct wpa_ie_data data;
  611. int ret;
  612. const struct rsn_ftie *ftie;
  613. int prot_ie_count = 0;
  614. os_memset(parse, 0, sizeof(*parse));
  615. if (ies == NULL)
  616. return 0;
  617. pos = ies;
  618. end = ies + ies_len;
  619. while (pos + 2 <= end && pos + 2 + pos[1] <= end) {
  620. switch (pos[0]) {
  621. case WLAN_EID_RSN:
  622. parse->rsn = pos + 2;
  623. parse->rsn_len = pos[1];
  624. ret = wpa_parse_wpa_ie_rsn(parse->rsn - 2,
  625. parse->rsn_len + 2,
  626. &data);
  627. if (ret < 0) {
  628. wpa_printf(MSG_DEBUG, "FT: Failed to parse "
  629. "RSN IE: %d", ret);
  630. return -1;
  631. }
  632. if (data.num_pmkid == 1 && data.pmkid)
  633. parse->rsn_pmkid = data.pmkid;
  634. break;
  635. case WLAN_EID_MOBILITY_DOMAIN:
  636. parse->mdie = pos + 2;
  637. parse->mdie_len = pos[1];
  638. break;
  639. case WLAN_EID_FAST_BSS_TRANSITION:
  640. if (pos[1] < sizeof(*ftie))
  641. return -1;
  642. ftie = (const struct rsn_ftie *) (pos + 2);
  643. prot_ie_count = ftie->mic_control[1];
  644. if (wpa_ft_parse_ftie(pos + 2, pos[1], parse) < 0)
  645. return -1;
  646. break;
  647. case WLAN_EID_RIC_DATA:
  648. if (parse->ric == NULL)
  649. parse->ric = pos;
  650. }
  651. pos += 2 + pos[1];
  652. }
  653. if (prot_ie_count == 0)
  654. return 0; /* no MIC */
  655. /*
  656. * Check that the protected IE count matches with IEs included in the
  657. * frame.
  658. */
  659. if (parse->rsn)
  660. prot_ie_count--;
  661. if (parse->mdie)
  662. prot_ie_count--;
  663. if (parse->ftie)
  664. prot_ie_count--;
  665. if (prot_ie_count < 0) {
  666. wpa_printf(MSG_DEBUG, "FT: Some required IEs not included in "
  667. "the protected IE count");
  668. return -1;
  669. }
  670. if (prot_ie_count == 0 && parse->ric) {
  671. wpa_printf(MSG_DEBUG, "FT: RIC IE(s) in the frame, but not "
  672. "included in protected IE count");
  673. return -1;
  674. }
  675. /* Determine the end of the RIC IE(s) */
  676. pos = parse->ric;
  677. while (pos && pos + 2 <= end && pos + 2 + pos[1] <= end &&
  678. prot_ie_count) {
  679. prot_ie_count--;
  680. pos += 2 + pos[1];
  681. }
  682. parse->ric_len = pos - parse->ric;
  683. if (prot_ie_count) {
  684. wpa_printf(MSG_DEBUG, "FT: %d protected IEs missing from "
  685. "frame", (int) prot_ie_count);
  686. return -1;
  687. }
  688. return 0;
  689. }
  690. static inline int wpa_auth_set_key(struct wpa_authenticator *wpa_auth,
  691. int vlan_id,
  692. wpa_alg alg, const u8 *addr, int idx,
  693. u8 *key, size_t key_len)
  694. {
  695. if (wpa_auth->cb.set_key == NULL)
  696. return -1;
  697. return wpa_auth->cb.set_key(wpa_auth->cb.ctx, vlan_id, alg, addr, idx,
  698. key, key_len);
  699. }
  700. static void wpa_ft_install_ptk(struct wpa_state_machine *sm)
  701. {
  702. wpa_alg alg;
  703. int klen;
  704. /* MLME-SETKEYS.request(PTK) */
  705. if (sm->pairwise == WPA_CIPHER_TKIP) {
  706. alg = WPA_ALG_TKIP;
  707. klen = 32;
  708. } else if (sm->pairwise == WPA_CIPHER_CCMP) {
  709. alg = WPA_ALG_CCMP;
  710. klen = 16;
  711. } else
  712. return;
  713. /* FIX: add STA entry to kernel/driver here? The set_key will fail
  714. * most likely without this.. At the moment, STA entry is added only
  715. * after association has been completed. Alternatively, could
  716. * re-configure PTK at that point(?).
  717. */
  718. if (wpa_auth_set_key(sm->wpa_auth, 0, alg, sm->addr, 0,
  719. sm->PTK.tk1, klen))
  720. return;
  721. /* FIX: MLME-SetProtection.Request(TA, Tx_Rx) */
  722. sm->pairwise_set = TRUE;
  723. }
  724. static u16 wpa_ft_process_auth_req(struct wpa_state_machine *sm,
  725. const u8 *ies, size_t ies_len,
  726. u8 **resp_ies, size_t *resp_ies_len)
  727. {
  728. struct rsn_mdie *mdie;
  729. struct rsn_ftie *ftie;
  730. u8 pmk_r1[PMK_LEN], pmk_r1_name[WPA_PMK_NAME_LEN];
  731. u8 ptk_name[WPA_PMK_NAME_LEN];
  732. struct wpa_auth_config *conf;
  733. struct wpa_ft_ies parse;
  734. size_t buflen, ptk_len;
  735. int ret;
  736. u8 *pos, *end;
  737. *resp_ies = NULL;
  738. *resp_ies_len = 0;
  739. sm->pmk_r1_name_valid = 0;
  740. conf = &sm->wpa_auth->conf;
  741. wpa_hexdump(MSG_DEBUG, "FT: Received authentication frame IEs",
  742. ies, ies_len);
  743. if (wpa_ft_parse_ies(ies, ies_len, &parse) < 0) {
  744. wpa_printf(MSG_DEBUG, "FT: Failed to parse FT IEs");
  745. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  746. }
  747. mdie = (struct rsn_mdie *) parse.mdie;
  748. if (mdie == NULL || parse.mdie_len < sizeof(*mdie) ||
  749. os_memcmp(mdie->mobility_domain,
  750. sm->wpa_auth->conf.mobility_domain,
  751. MOBILITY_DOMAIN_ID_LEN) != 0) {
  752. wpa_printf(MSG_DEBUG, "FT: Invalid MDIE");
  753. return WLAN_STATUS_INVALID_MDIE;
  754. }
  755. ftie = (struct rsn_ftie *) parse.ftie;
  756. if (ftie == NULL || parse.ftie_len < sizeof(*ftie)) {
  757. wpa_printf(MSG_DEBUG, "FT: Invalid FTIE");
  758. return WLAN_STATUS_INVALID_FTIE;
  759. }
  760. os_memcpy(sm->SNonce, ftie->snonce, WPA_NONCE_LEN);
  761. if (parse.r0kh_id == NULL) {
  762. wpa_printf(MSG_DEBUG, "FT: Invalid FTIE - no R0KH-ID");
  763. return WLAN_STATUS_INVALID_FTIE;
  764. }
  765. wpa_hexdump(MSG_DEBUG, "FT: STA R0KH-ID",
  766. parse.r0kh_id, parse.r0kh_id_len);
  767. os_memcpy(sm->r0kh_id, parse.r0kh_id, parse.r0kh_id_len);
  768. sm->r0kh_id_len = parse.r0kh_id_len;
  769. if (parse.rsn_pmkid == NULL) {
  770. wpa_printf(MSG_DEBUG, "FT: No PMKID in RSNIE");
  771. return WLAN_STATUS_INVALID_PMKID;
  772. }
  773. wpa_hexdump(MSG_DEBUG, "FT: Requested PMKR0Name",
  774. parse.rsn_pmkid, WPA_PMK_NAME_LEN);
  775. wpa_derive_pmk_r1_name(parse.rsn_pmkid,
  776. sm->wpa_auth->conf.r1_key_holder, sm->addr,
  777. pmk_r1_name);
  778. wpa_hexdump(MSG_DEBUG, "FT: Derived requested PMKR1Name",
  779. pmk_r1_name, WPA_PMK_NAME_LEN);
  780. if (wpa_ft_fetch_pmk_r1(sm->wpa_auth, sm->addr, pmk_r1_name, pmk_r1) <
  781. 0) {
  782. if (wpa_ft_pull_pmk_r1(sm->wpa_auth, sm->addr, sm->r0kh_id,
  783. sm->r0kh_id_len, parse.rsn_pmkid) < 0) {
  784. wpa_printf(MSG_DEBUG, "FT: Did not have matching "
  785. "PMK-R1 and unknown R0KH-ID");
  786. return WLAN_STATUS_INVALID_PMKID;
  787. }
  788. /*
  789. * TODO: Should return "status pending" (and the caller should
  790. * not send out response now). The real response will be sent
  791. * once the response from R0KH is received.
  792. */
  793. return WLAN_STATUS_INVALID_PMKID;
  794. }
  795. wpa_hexdump_key(MSG_DEBUG, "FT: Selected PMK-R1", pmk_r1, PMK_LEN);
  796. sm->pmk_r1_name_valid = 1;
  797. os_memcpy(sm->pmk_r1_name, pmk_r1_name, WPA_PMK_NAME_LEN);
  798. if (os_get_random(sm->ANonce, WPA_NONCE_LEN)) {
  799. wpa_printf(MSG_DEBUG, "FT: Failed to get random data for "
  800. "ANonce");
  801. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  802. }
  803. wpa_hexdump(MSG_DEBUG, "FT: Received SNonce",
  804. sm->SNonce, WPA_NONCE_LEN);
  805. wpa_hexdump(MSG_DEBUG, "FT: Generated ANonce",
  806. sm->ANonce, WPA_NONCE_LEN);
  807. ptk_len = sm->pairwise == WPA_CIPHER_CCMP ? 48 : 64;
  808. wpa_pmk_r1_to_ptk(pmk_r1, sm->SNonce, sm->ANonce, sm->addr,
  809. sm->wpa_auth->addr, pmk_r1_name,
  810. (u8 *) &sm->PTK, ptk_len, ptk_name);
  811. wpa_hexdump_key(MSG_DEBUG, "FT: PTK",
  812. (u8 *) &sm->PTK, ptk_len);
  813. wpa_hexdump(MSG_DEBUG, "FT: PTKName", ptk_name, WPA_PMK_NAME_LEN);
  814. wpa_ft_install_ptk(sm);
  815. buflen = 2 + sizeof(struct rsn_mdie) + 2 + sizeof(struct rsn_ftie) +
  816. 2 + FT_R1KH_ID_LEN + 200;
  817. *resp_ies = os_zalloc(buflen);
  818. if (*resp_ies == NULL) {
  819. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  820. }
  821. pos = *resp_ies;
  822. end = *resp_ies + buflen;
  823. ret = wpa_write_rsn_ie(conf, pos, end - pos, parse.rsn_pmkid);
  824. if (ret < 0) {
  825. os_free(*resp_ies);
  826. *resp_ies = NULL;
  827. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  828. }
  829. pos += ret;
  830. ret = wpa_write_mdie(conf, pos, end - pos);
  831. if (ret < 0) {
  832. os_free(*resp_ies);
  833. *resp_ies = NULL;
  834. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  835. }
  836. pos += ret;
  837. ret = wpa_write_ftie(conf, parse.r0kh_id, parse.r0kh_id_len,
  838. sm->ANonce, sm->SNonce, pos, end - pos, NULL, 0);
  839. if (ret < 0) {
  840. os_free(*resp_ies);
  841. *resp_ies = NULL;
  842. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  843. }
  844. pos += ret;
  845. *resp_ies_len = pos - *resp_ies;
  846. return WLAN_STATUS_SUCCESS;
  847. }
  848. void wpa_ft_process_auth(struct wpa_state_machine *sm, const u8 *bssid,
  849. u16 auth_transaction, const u8 *ies, size_t ies_len,
  850. void (*cb)(void *ctx, const u8 *dst, const u8 *bssid,
  851. u16 auth_transaction, u16 status,
  852. const u8 *ies, size_t ies_len),
  853. void *ctx)
  854. {
  855. u16 status;
  856. u8 *resp_ies;
  857. size_t resp_ies_len;
  858. if (sm == NULL) {
  859. wpa_printf(MSG_DEBUG, "FT: Received authentication frame, but "
  860. "WPA SM not available");
  861. return;
  862. }
  863. wpa_printf(MSG_DEBUG, "FT: Received authentication frame: STA=" MACSTR
  864. " BSSID=" MACSTR " transaction=%d",
  865. MAC2STR(sm->addr), MAC2STR(bssid), auth_transaction);
  866. status = wpa_ft_process_auth_req(sm, ies, ies_len, &resp_ies,
  867. &resp_ies_len);
  868. wpa_printf(MSG_DEBUG, "FT: FT authentication response: dst=" MACSTR
  869. " auth_transaction=%d status=%d",
  870. MAC2STR(sm->addr), auth_transaction + 1, status);
  871. wpa_hexdump(MSG_DEBUG, "FT: Response IEs", resp_ies, resp_ies_len);
  872. cb(ctx, sm->addr, bssid, auth_transaction + 1, status,
  873. resp_ies, resp_ies_len);
  874. os_free(resp_ies);
  875. }
  876. u16 wpa_ft_validate_reassoc(struct wpa_state_machine *sm, const u8 *ies,
  877. size_t ies_len)
  878. {
  879. struct wpa_ft_ies parse;
  880. struct rsn_mdie *mdie;
  881. struct rsn_ftie *ftie;
  882. u8 mic[16];
  883. if (sm == NULL)
  884. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  885. wpa_hexdump(MSG_DEBUG, "FT: Reassoc Req IEs", ies, ies_len);
  886. if (wpa_ft_parse_ies(ies, ies_len, &parse) < 0) {
  887. wpa_printf(MSG_DEBUG, "FT: Failed to parse FT IEs");
  888. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  889. }
  890. if (parse.rsn == NULL) {
  891. wpa_printf(MSG_DEBUG, "FT: No RSNIE in Reassoc Req");
  892. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  893. }
  894. if (parse.rsn_pmkid == NULL) {
  895. wpa_printf(MSG_DEBUG, "FT: No PMKID in RSNIE");
  896. return WLAN_STATUS_INVALID_PMKID;
  897. }
  898. if (os_memcmp(parse.rsn_pmkid, sm->pmk_r1_name, WPA_PMK_NAME_LEN) != 0)
  899. {
  900. wpa_printf(MSG_DEBUG, "FT: PMKID in Reassoc Req did not match "
  901. "with the PMKR1Name derived from auth request");
  902. return WLAN_STATUS_INVALID_PMKID;
  903. }
  904. mdie = (struct rsn_mdie *) parse.mdie;
  905. if (mdie == NULL || parse.mdie_len < sizeof(*mdie) ||
  906. os_memcmp(mdie->mobility_domain,
  907. sm->wpa_auth->conf.mobility_domain,
  908. MOBILITY_DOMAIN_ID_LEN) != 0) {
  909. wpa_printf(MSG_DEBUG, "FT: Invalid MDIE");
  910. return WLAN_STATUS_INVALID_MDIE;
  911. }
  912. ftie = (struct rsn_ftie *) parse.ftie;
  913. if (ftie == NULL || parse.ftie_len < sizeof(*ftie)) {
  914. wpa_printf(MSG_DEBUG, "FT: Invalid FTIE");
  915. return WLAN_STATUS_INVALID_FTIE;
  916. }
  917. if (wpa_ft_mic(sm->PTK.kck, sm->addr, sm->wpa_auth->addr, 5,
  918. parse.mdie - 2, parse.mdie_len + 2,
  919. parse.ftie - 2, parse.ftie_len + 2,
  920. parse.rsn - 2, parse.rsn_len + 2,
  921. parse.ric, parse.ric_len,
  922. mic) < 0) {
  923. wpa_printf(MSG_DEBUG, "FT: Failed to calculate MIC");
  924. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  925. }
  926. if (os_memcmp(mic, ftie->mic, 16) != 0) {
  927. wpa_printf(MSG_DEBUG, "FT: Invalid MIC in FTIE");
  928. wpa_hexdump(MSG_MSGDUMP, "FT: Received MIC", ftie->mic, 16);
  929. wpa_hexdump(MSG_MSGDUMP, "FT: Calculated MIC", mic, 16);
  930. return WLAN_STATUS_INVALID_FTIE;
  931. }
  932. return WLAN_STATUS_SUCCESS;
  933. }
  934. int wpa_ft_action_rx(struct wpa_state_machine *sm, const u8 *data, size_t len)
  935. {
  936. const u8 *sta_addr, *target_ap;
  937. const u8 *ies;
  938. size_t ies_len;
  939. u8 action;
  940. struct ft_rrb_frame *frame;
  941. if (sm == NULL)
  942. return -1;
  943. /*
  944. * data: Category[1] Action[1] STA_Address[6] Target_AP_Address[6]
  945. * FT Request action frame body[variable]
  946. */
  947. if (len < 14) {
  948. wpa_printf(MSG_DEBUG, "FT: Too short FT Action frame "
  949. "(len=%lu)", (unsigned long) len);
  950. return -1;
  951. }
  952. action = data[1];
  953. sta_addr = data + 2;
  954. target_ap = data + 8;
  955. ies = data + 14;
  956. ies_len = len - 14;
  957. wpa_printf(MSG_DEBUG, "FT: Received FT Action frame (STA=" MACSTR
  958. " Target AP=" MACSTR " Action=%d)",
  959. MAC2STR(sta_addr), MAC2STR(target_ap), action);
  960. if (os_memcmp(sta_addr, sm->addr, ETH_ALEN) != 0) {
  961. wpa_printf(MSG_DEBUG, "FT: Mismatch in FT Action STA address: "
  962. "STA=" MACSTR " STA-Address=" MACSTR,
  963. MAC2STR(sm->addr), MAC2STR(sta_addr));
  964. return -1;
  965. }
  966. /*
  967. * Do some sanity checking on the target AP address (not own and not
  968. * broadcast. This could be extended to filter based on a list of known
  969. * APs in the MD (if such a list were configured).
  970. */
  971. if ((target_ap[0] & 0x01) ||
  972. os_memcmp(target_ap, sm->wpa_auth->addr, ETH_ALEN) == 0) {
  973. wpa_printf(MSG_DEBUG, "FT: Invalid Target AP in FT Action "
  974. "frame");
  975. return -1;
  976. }
  977. wpa_hexdump(MSG_MSGDUMP, "FT: Action frame body", ies, ies_len);
  978. /* RRB - Forward action frame to the target AP */
  979. frame = os_malloc(sizeof(*frame) + len);
  980. frame->frame_type = RSN_REMOTE_FRAME_TYPE_FT_RRB;
  981. frame->packet_type = FT_PACKET_REQUEST;
  982. frame->action_length = host_to_le16(len);
  983. os_memcpy(frame->ap_address, sm->wpa_auth->addr, ETH_ALEN);
  984. os_memcpy(frame + 1, data, len);
  985. wpa_ft_rrb_send(sm->wpa_auth, target_ap, (u8 *) frame,
  986. sizeof(*frame) + len);
  987. os_free(frame);
  988. return 0;
  989. }
  990. static int wpa_ft_rrb_rx_request(struct wpa_authenticator *wpa_auth,
  991. const u8 *current_ap, const u8 *sta_addr,
  992. const u8 *body, size_t len)
  993. {
  994. struct wpa_state_machine *sm;
  995. u16 status;
  996. u8 *resp_ies, *pos;
  997. size_t resp_ies_len, rlen;
  998. struct ft_rrb_frame *frame;
  999. sm = wpa_ft_add_sta(wpa_auth, sta_addr);
  1000. if (sm == NULL) {
  1001. wpa_printf(MSG_DEBUG, "FT: Failed to add new STA based on "
  1002. "RRB Request");
  1003. return -1;
  1004. }
  1005. wpa_hexdump(MSG_MSGDUMP, "FT: RRB Request Frame body", body, len);
  1006. status = wpa_ft_process_auth_req(sm, body, len, &resp_ies,
  1007. &resp_ies_len);
  1008. wpa_printf(MSG_DEBUG, "FT: RRB authentication response: STA=" MACSTR
  1009. " CurrentAP=" MACSTR " status=%d",
  1010. MAC2STR(sm->addr), MAC2STR(current_ap), status);
  1011. wpa_hexdump(MSG_DEBUG, "FT: Response IEs", resp_ies, resp_ies_len);
  1012. /* RRB - Forward action frame response to the Current AP */
  1013. /*
  1014. * data: Category[1] Action[1] STA_Address[6] Target_AP_Address[6]
  1015. * Status_Code[2] FT Request action frame body[variable]
  1016. */
  1017. rlen = 2 + 2 * ETH_ALEN + 2 + resp_ies_len;
  1018. frame = os_malloc(sizeof(*frame) + rlen);
  1019. frame->frame_type = RSN_REMOTE_FRAME_TYPE_FT_RRB;
  1020. frame->packet_type = FT_PACKET_RESPONSE;
  1021. frame->action_length = host_to_le16(rlen);
  1022. os_memcpy(frame->ap_address, wpa_auth->addr, ETH_ALEN);
  1023. pos = (u8 *) (frame + 1);
  1024. *pos++ = WLAN_ACTION_FT;
  1025. *pos++ = 2; /* Action: Response */
  1026. os_memcpy(pos, sta_addr, ETH_ALEN);
  1027. pos += ETH_ALEN;
  1028. os_memcpy(pos, wpa_auth->addr, ETH_ALEN);
  1029. pos += ETH_ALEN;
  1030. WPA_PUT_LE16(pos, status);
  1031. pos += 2;
  1032. if (resp_ies) {
  1033. os_memcpy(pos, resp_ies, resp_ies_len);
  1034. os_free(resp_ies);
  1035. }
  1036. wpa_ft_rrb_send(wpa_auth, current_ap, (u8 *) frame,
  1037. sizeof(*frame) + rlen);
  1038. os_free(frame);
  1039. return 0;
  1040. }
  1041. static int wpa_ft_rrb_rx_pull(struct wpa_authenticator *wpa_auth,
  1042. const u8 *src_addr,
  1043. const u8 *data, size_t data_len)
  1044. {
  1045. struct ft_r0kh_r1kh_pull_frame *frame, f;
  1046. struct ft_remote_r1kh *r1kh;
  1047. struct ft_r0kh_r1kh_resp_frame resp, r;
  1048. u8 pmk_r0[PMK_LEN];
  1049. wpa_printf(MSG_DEBUG, "FT: Received PMK-R1 pull");
  1050. if (data_len < sizeof(*frame))
  1051. return -1;
  1052. r1kh = wpa_auth->conf.r1kh_list;
  1053. while (r1kh) {
  1054. if (os_memcmp(r1kh->addr, src_addr, ETH_ALEN) == 0)
  1055. break;
  1056. r1kh = r1kh->next;
  1057. }
  1058. if (r1kh == NULL) {
  1059. wpa_printf(MSG_DEBUG, "FT: No matching R1KH address found for "
  1060. "PMK-R1 pull source address " MACSTR,
  1061. MAC2STR(src_addr));
  1062. return -1;
  1063. }
  1064. frame = (struct ft_r0kh_r1kh_pull_frame *) data;
  1065. /* aes_unwrap() does not support inplace decryption, so use a temporary
  1066. * buffer for the data. */
  1067. if (aes_unwrap(r1kh->key, (FT_R0KH_R1KH_PULL_DATA_LEN + 7) / 8,
  1068. frame->nonce, f.nonce) < 0) {
  1069. wpa_printf(MSG_DEBUG, "FT: Failed to decrypt PMK-R1 pull "
  1070. "request from " MACSTR, MAC2STR(src_addr));
  1071. return -1;
  1072. }
  1073. wpa_hexdump(MSG_DEBUG, "FT: PMK-R1 pull - nonce",
  1074. f.nonce, sizeof(f.nonce));
  1075. wpa_hexdump(MSG_DEBUG, "FT: PMK-R1 pull - PMKR0Name",
  1076. f.pmk_r0_name, WPA_PMK_NAME_LEN);
  1077. wpa_printf(MSG_DEBUG, "FT: PMK-R1 pull - R1KH-ID=" MACSTR "S1KH-ID="
  1078. MACSTR, MAC2STR(f.r1kh_id), MAC2STR(f.s1kh_id));
  1079. os_memset(&resp, 0, sizeof(resp));
  1080. resp.frame_type = RSN_REMOTE_FRAME_TYPE_FT_RRB;
  1081. resp.packet_type = FT_PACKET_R0KH_R1KH_RESP;
  1082. resp.data_length = host_to_le16(FT_R0KH_R1KH_RESP_DATA_LEN);
  1083. os_memcpy(resp.ap_address, wpa_auth->addr, ETH_ALEN);
  1084. /* aes_wrap() does not support inplace encryption, so use a temporary
  1085. * buffer for the data. */
  1086. os_memcpy(r.nonce, f.nonce, sizeof(f.nonce));
  1087. os_memcpy(r.r1kh_id, f.r1kh_id, FT_R1KH_ID_LEN);
  1088. os_memcpy(r.s1kh_id, f.s1kh_id, ETH_ALEN);
  1089. if (wpa_ft_fetch_pmk_r0(wpa_auth, f.s1kh_id, f.pmk_r0_name, pmk_r0) <
  1090. 0) {
  1091. wpa_printf(MSG_DEBUG, "FT: No matching PMKR0Name found for "
  1092. "PMK-R1 pull");
  1093. return -1;
  1094. }
  1095. wpa_derive_pmk_r1(pmk_r0, f.pmk_r0_name, f.r1kh_id, f.s1kh_id,
  1096. r.pmk_r1, r.pmk_r1_name);
  1097. wpa_hexdump_key(MSG_DEBUG, "FT: PMK-R1", r.pmk_r1, PMK_LEN);
  1098. wpa_hexdump(MSG_DEBUG, "FT: PMKR1Name", r.pmk_r1_name,
  1099. WPA_PMK_NAME_LEN);
  1100. if (aes_wrap(r1kh->key, (FT_R0KH_R1KH_RESP_DATA_LEN + 7) / 8,
  1101. r.nonce, resp.nonce) < 0) {
  1102. os_memset(pmk_r0, 0, PMK_LEN);
  1103. return -1;
  1104. }
  1105. os_memset(pmk_r0, 0, PMK_LEN);
  1106. wpa_ft_rrb_send(wpa_auth, src_addr, (u8 *) &resp, sizeof(resp));
  1107. return 0;
  1108. }
  1109. static int wpa_ft_rrb_rx_resp(struct wpa_authenticator *wpa_auth,
  1110. const u8 *src_addr,
  1111. const u8 *data, size_t data_len)
  1112. {
  1113. struct ft_r0kh_r1kh_resp_frame *frame, f;
  1114. struct ft_remote_r0kh *r0kh;
  1115. wpa_printf(MSG_DEBUG, "FT: Received PMK-R1 pull response");
  1116. if (data_len < sizeof(*frame))
  1117. return -1;
  1118. r0kh = wpa_auth->conf.r0kh_list;
  1119. while (r0kh) {
  1120. if (os_memcmp(r0kh->addr, src_addr, ETH_ALEN) == 0)
  1121. break;
  1122. r0kh = r0kh->next;
  1123. }
  1124. if (r0kh == NULL) {
  1125. wpa_printf(MSG_DEBUG, "FT: No matching R0KH address found for "
  1126. "PMK-R0 pull response source address " MACSTR,
  1127. MAC2STR(src_addr));
  1128. return -1;
  1129. }
  1130. frame = (struct ft_r0kh_r1kh_resp_frame *) data;
  1131. /* aes_unwrap() does not support inplace decryption, so use a temporary
  1132. * buffer for the data. */
  1133. if (aes_unwrap(r0kh->key, (FT_R0KH_R1KH_RESP_DATA_LEN + 7) / 8,
  1134. frame->nonce, f.nonce) < 0) {
  1135. wpa_printf(MSG_DEBUG, "FT: Failed to decrypt PMK-R1 pull "
  1136. "response from " MACSTR, MAC2STR(src_addr));
  1137. return -1;
  1138. }
  1139. if (os_memcmp(f.r1kh_id, wpa_auth->conf.r1_key_holder, FT_R1KH_ID_LEN)
  1140. != 0) {
  1141. wpa_printf(MSG_DEBUG, "FT: PMK-R1 pull response did not use a "
  1142. "matching R1KH-ID");
  1143. return -1;
  1144. }
  1145. /* TODO: verify that <nonce,s1kh_id> matches with a pending request
  1146. * and call this requests callback function to finish request
  1147. * processing */
  1148. wpa_hexdump(MSG_DEBUG, "FT: PMK-R1 pull - nonce",
  1149. f.nonce, sizeof(f.nonce));
  1150. wpa_printf(MSG_DEBUG, "FT: PMK-R1 pull - R1KH-ID=" MACSTR "S1KH-ID="
  1151. MACSTR, MAC2STR(f.r1kh_id), MAC2STR(f.s1kh_id));
  1152. wpa_hexdump_key(MSG_DEBUG, "FT: PMK-R1 pull - PMK-R1",
  1153. f.pmk_r1, PMK_LEN);
  1154. wpa_hexdump(MSG_DEBUG, "FT: PMK-R1 pull - PMKR1Name",
  1155. f.pmk_r1_name, WPA_PMK_NAME_LEN);
  1156. wpa_ft_store_pmk_r1(wpa_auth, f.s1kh_id, f.pmk_r1, f.pmk_r1_name);
  1157. os_memset(f.pmk_r1, 0, PMK_LEN);
  1158. return 0;
  1159. }
  1160. static int wpa_ft_rrb_rx_push(struct wpa_authenticator *wpa_auth,
  1161. const u8 *src_addr,
  1162. const u8 *data, size_t data_len)
  1163. {
  1164. struct ft_r0kh_r1kh_push_frame *frame, f;
  1165. struct ft_remote_r0kh *r0kh;
  1166. struct os_time now;
  1167. os_time_t tsend;
  1168. wpa_printf(MSG_DEBUG, "FT: Received PMK-R1 push");
  1169. if (data_len < sizeof(*frame))
  1170. return -1;
  1171. r0kh = wpa_auth->conf.r0kh_list;
  1172. while (r0kh) {
  1173. if (os_memcmp(r0kh->addr, src_addr, ETH_ALEN) == 0)
  1174. break;
  1175. r0kh = r0kh->next;
  1176. }
  1177. if (r0kh == NULL) {
  1178. wpa_printf(MSG_DEBUG, "FT: No matching R0KH address found for "
  1179. "PMK-R0 push source address " MACSTR,
  1180. MAC2STR(src_addr));
  1181. return -1;
  1182. }
  1183. frame = (struct ft_r0kh_r1kh_push_frame *) data;
  1184. /* aes_unwrap() does not support inplace decryption, so use a temporary
  1185. * buffer for the data. */
  1186. if (aes_unwrap(r0kh->key, (FT_R0KH_R1KH_PUSH_DATA_LEN + 7) / 8,
  1187. frame->timestamp, f.timestamp) < 0) {
  1188. wpa_printf(MSG_DEBUG, "FT: Failed to decrypt PMK-R1 push from "
  1189. MACSTR, MAC2STR(src_addr));
  1190. return -1;
  1191. }
  1192. os_get_time(&now);
  1193. tsend = WPA_GET_LE32(f.timestamp);
  1194. if ((now.sec > tsend && now.sec - tsend > 60) ||
  1195. (now.sec < tsend && tsend - now.sec > 60)) {
  1196. wpa_printf(MSG_DEBUG, "FT: PMK-R1 push did not have a valid "
  1197. "timestamp: sender time %d own time %d\n",
  1198. (int) tsend, (int) now.sec);
  1199. return -1;
  1200. }
  1201. if (os_memcmp(f.r1kh_id, wpa_auth->conf.r1_key_holder, FT_R1KH_ID_LEN)
  1202. != 0) {
  1203. wpa_printf(MSG_DEBUG, "FT: PMK-R1 push did not use a matching "
  1204. "R1KH-ID (received " MACSTR " own " MACSTR ")",
  1205. MAC2STR(f.r1kh_id),
  1206. MAC2STR(wpa_auth->conf.r1_key_holder));
  1207. return -1;
  1208. }
  1209. wpa_printf(MSG_DEBUG, "FT: PMK-R1 push - R1KH-ID=" MACSTR " S1KH-ID="
  1210. MACSTR, MAC2STR(f.r1kh_id), MAC2STR(f.s1kh_id));
  1211. wpa_hexdump_key(MSG_DEBUG, "FT: PMK-R1 push - PMK-R1",
  1212. f.pmk_r1, PMK_LEN);
  1213. wpa_hexdump(MSG_DEBUG, "FT: PMK-R1 push - PMKR1Name",
  1214. f.pmk_r1_name, WPA_PMK_NAME_LEN);
  1215. wpa_ft_store_pmk_r1(wpa_auth, f.s1kh_id, f.pmk_r1, f.pmk_r1_name);
  1216. os_memset(f.pmk_r1, 0, PMK_LEN);
  1217. return 0;
  1218. }
  1219. int wpa_ft_rrb_rx(struct wpa_authenticator *wpa_auth, const u8 *src_addr,
  1220. const u8 *data, size_t data_len)
  1221. {
  1222. struct ft_rrb_frame *frame;
  1223. u16 alen;
  1224. const u8 *pos, *end, *start;
  1225. u8 action;
  1226. const u8 *sta_addr, *target_ap_addr;
  1227. wpa_printf(MSG_DEBUG, "FT: RRB received frame from remote AP " MACSTR,
  1228. MAC2STR(src_addr));
  1229. if (data_len < sizeof(*frame)) {
  1230. wpa_printf(MSG_DEBUG, "FT: Too short RRB frame (data_len=%lu)",
  1231. (unsigned long) data_len);
  1232. return -1;
  1233. }
  1234. pos = data;
  1235. frame = (struct ft_rrb_frame *) pos;
  1236. pos += sizeof(*frame);
  1237. alen = le_to_host16(frame->action_length);
  1238. wpa_printf(MSG_DEBUG, "FT: RRB frame - frame_type=%d packet_type=%d "
  1239. "action_length=%d ap_address=" MACSTR,
  1240. frame->frame_type, frame->packet_type, alen,
  1241. MAC2STR(frame->ap_address));
  1242. if (frame->frame_type != RSN_REMOTE_FRAME_TYPE_FT_RRB) {
  1243. /* Discard frame per IEEE Std 802.11r-2008, 11A.10.3 */
  1244. wpa_printf(MSG_DEBUG, "FT: RRB discarded frame with "
  1245. "unrecognized type %d", frame->frame_type);
  1246. return -1;
  1247. }
  1248. if (alen > data_len - sizeof(*frame)) {
  1249. wpa_printf(MSG_DEBUG, "FT: RRB frame too short for action "
  1250. "frame");
  1251. return -1;
  1252. }
  1253. if (frame->packet_type == FT_PACKET_R0KH_R1KH_PULL)
  1254. return wpa_ft_rrb_rx_pull(wpa_auth, src_addr, data, data_len);
  1255. if (frame->packet_type == FT_PACKET_R0KH_R1KH_RESP)
  1256. return wpa_ft_rrb_rx_resp(wpa_auth, src_addr, data, data_len);
  1257. if (frame->packet_type == FT_PACKET_R0KH_R1KH_PUSH)
  1258. return wpa_ft_rrb_rx_push(wpa_auth, src_addr, data, data_len);
  1259. wpa_hexdump(MSG_MSGDUMP, "FT: RRB - FT Action frame", pos, alen);
  1260. if (alen < 1 + 1 + 2 * ETH_ALEN) {
  1261. wpa_printf(MSG_DEBUG, "FT: Too short RRB frame (not enough "
  1262. "room for Action Frame body); alen=%lu",
  1263. (unsigned long) alen);
  1264. return -1;
  1265. }
  1266. start = pos;
  1267. end = pos + alen;
  1268. if (*pos != WLAN_ACTION_FT) {
  1269. wpa_printf(MSG_DEBUG, "FT: Unexpected Action frame category "
  1270. "%d", *pos);
  1271. return -1;
  1272. }
  1273. pos++;
  1274. action = *pos++;
  1275. sta_addr = pos;
  1276. pos += ETH_ALEN;
  1277. target_ap_addr = pos;
  1278. pos += ETH_ALEN;
  1279. wpa_printf(MSG_DEBUG, "FT: RRB Action Frame: action=%d sta_addr="
  1280. MACSTR " target_ap_addr=" MACSTR,
  1281. action, MAC2STR(sta_addr), MAC2STR(target_ap_addr));
  1282. if (frame->packet_type == FT_PACKET_REQUEST) {
  1283. wpa_printf(MSG_DEBUG, "FT: FT Packet Type - Request");
  1284. if (action != 1) {
  1285. wpa_printf(MSG_DEBUG, "FT: Unexpected Action %d in "
  1286. "RRB Request", action);
  1287. return -1;
  1288. }
  1289. if (os_memcmp(target_ap_addr, wpa_auth->addr, ETH_ALEN) != 0) {
  1290. wpa_printf(MSG_DEBUG, "FT: Target AP address in the "
  1291. "RRB Request does not match with own "
  1292. "address");
  1293. return -1;
  1294. }
  1295. if (wpa_ft_rrb_rx_request(wpa_auth, frame->ap_address,
  1296. sta_addr, pos, end - pos) < 0)
  1297. return -1;
  1298. } else if (frame->packet_type == FT_PACKET_RESPONSE) {
  1299. u16 status_code;
  1300. if (end - pos < 2) {
  1301. wpa_printf(MSG_DEBUG, "FT: Not enough room for status "
  1302. "code in RRB Response");
  1303. return -1;
  1304. }
  1305. status_code = WPA_GET_LE16(pos);
  1306. pos += 2;
  1307. wpa_printf(MSG_DEBUG, "FT: FT Packet Type - Response "
  1308. "(status_code=%d)", status_code);
  1309. if (wpa_ft_action_send(wpa_auth, sta_addr, start, alen) < 0)
  1310. return -1;
  1311. } else {
  1312. wpa_printf(MSG_DEBUG, "FT: RRB discarded frame with unknown "
  1313. "packet_type %d", frame->packet_type);
  1314. return -1;
  1315. }
  1316. return 0;
  1317. }
  1318. static void wpa_ft_generate_pmk_r1(struct wpa_authenticator *wpa_auth,
  1319. struct wpa_ft_pmk_r0_sa *pmk_r0,
  1320. struct ft_remote_r1kh *r1kh,
  1321. const u8 *s1kh_id)
  1322. {
  1323. struct ft_r0kh_r1kh_push_frame frame, f;
  1324. struct os_time now;
  1325. os_memset(&frame, 0, sizeof(frame));
  1326. frame.frame_type = RSN_REMOTE_FRAME_TYPE_FT_RRB;
  1327. frame.packet_type = FT_PACKET_R0KH_R1KH_PUSH;
  1328. frame.data_length = host_to_le16(FT_R0KH_R1KH_PUSH_DATA_LEN);
  1329. os_memcpy(frame.ap_address, wpa_auth->addr, ETH_ALEN);
  1330. /* aes_wrap() does not support inplace encryption, so use a temporary
  1331. * buffer for the data. */
  1332. os_memcpy(f.r1kh_id, r1kh->id, FT_R1KH_ID_LEN);
  1333. os_memcpy(f.s1kh_id, s1kh_id, ETH_ALEN);
  1334. os_memcpy(f.pmk_r0_name, pmk_r0->pmk_r0_name, WPA_PMK_NAME_LEN);
  1335. wpa_derive_pmk_r1(pmk_r0->pmk_r0, pmk_r0->pmk_r0_name, r1kh->id,
  1336. s1kh_id, f.pmk_r1, f.pmk_r1_name);
  1337. wpa_printf(MSG_DEBUG, "FT: R1KH-ID " MACSTR, MAC2STR(r1kh->id));
  1338. wpa_hexdump_key(MSG_DEBUG, "FT: PMK-R1", f.pmk_r1, PMK_LEN);
  1339. wpa_hexdump(MSG_DEBUG, "FT: PMKR1Name", f.pmk_r1_name,
  1340. WPA_PMK_NAME_LEN);
  1341. os_get_time(&now);
  1342. WPA_PUT_LE32(f.timestamp, now.sec);
  1343. if (aes_wrap(r1kh->key, (FT_R0KH_R1KH_PUSH_DATA_LEN + 7) / 8,
  1344. f.timestamp, frame.timestamp) < 0)
  1345. return;
  1346. wpa_ft_rrb_send(wpa_auth, r1kh->addr, (u8 *) &frame, sizeof(frame));
  1347. }
  1348. void wpa_ft_push_pmk_r1(struct wpa_authenticator *wpa_auth, const u8 *addr)
  1349. {
  1350. struct wpa_ft_pmk_r0_sa *r0;
  1351. struct ft_remote_r1kh *r1kh;
  1352. if (!wpa_auth->conf.pmk_r1_push)
  1353. return;
  1354. r0 = wpa_auth->ft_pmk_cache->pmk_r0;
  1355. while (r0) {
  1356. if (os_memcmp(r0->spa, addr, ETH_ALEN) == 0)
  1357. break;
  1358. r0 = r0->next;
  1359. }
  1360. if (r0 == NULL || r0->pmk_r1_pushed)
  1361. return;
  1362. r0->pmk_r1_pushed = 1;
  1363. wpa_printf(MSG_DEBUG, "FT: Deriving and pushing PMK-R1 keys to R1KHs "
  1364. "for STA " MACSTR, MAC2STR(addr));
  1365. r1kh = wpa_auth->conf.r1kh_list;
  1366. while (r1kh) {
  1367. wpa_ft_generate_pmk_r1(wpa_auth, r0, r1kh, addr);
  1368. r1kh = r1kh->next;
  1369. }
  1370. }
  1371. #endif /* CONFIG_IEEE80211R */