wpa_ft.c 44 KB

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