rx_eapol.c 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221
  1. /*
  2. * Received Data frame processing for EAPOL messages
  3. * Copyright (c) 2010-2015, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "crypto/aes_wrap.h"
  11. #include "crypto/crypto.h"
  12. #include "common/defs.h"
  13. #include "common/ieee802_11_defs.h"
  14. #include "common/ieee802_11_common.h"
  15. #include "common/eapol_common.h"
  16. #include "common/wpa_common.h"
  17. #include "rsn_supp/wpa_ie.h"
  18. #include "wlantest.h"
  19. static int is_zero(const u8 *buf, size_t len)
  20. {
  21. size_t i;
  22. for (i = 0; i < len; i++) {
  23. if (buf[i])
  24. return 0;
  25. }
  26. return 1;
  27. }
  28. static int check_mic(const u8 *kck, size_t kck_len, int akmp, int ver,
  29. const u8 *data, size_t len)
  30. {
  31. u8 *buf;
  32. int ret = -1;
  33. struct ieee802_1x_hdr *hdr;
  34. struct wpa_eapol_key *key;
  35. u8 rx_mic[WPA_EAPOL_KEY_MIC_MAX_LEN];
  36. size_t mic_len = wpa_mic_len(akmp);
  37. buf = os_memdup(data, len);
  38. if (buf == NULL)
  39. return -1;
  40. hdr = (struct ieee802_1x_hdr *) buf;
  41. key = (struct wpa_eapol_key *) (hdr + 1);
  42. os_memcpy(rx_mic, key + 1, mic_len);
  43. os_memset(key + 1, 0, mic_len);
  44. if (wpa_eapol_key_mic(kck, kck_len, akmp, ver, buf, len,
  45. (u8 *) (key + 1)) == 0 &&
  46. os_memcmp(rx_mic, key + 1, mic_len) == 0)
  47. ret = 0;
  48. os_free(buf);
  49. return ret;
  50. }
  51. static void rx_data_eapol_key_1_of_4(struct wlantest *wt, const u8 *dst,
  52. const u8 *src, const u8 *data, size_t len)
  53. {
  54. struct wlantest_bss *bss;
  55. struct wlantest_sta *sta;
  56. const struct ieee802_1x_hdr *eapol;
  57. const struct wpa_eapol_key *hdr;
  58. wpa_printf(MSG_DEBUG, "EAPOL-Key 1/4 " MACSTR " -> " MACSTR,
  59. MAC2STR(src), MAC2STR(dst));
  60. bss = bss_get(wt, src);
  61. if (bss == NULL)
  62. return;
  63. sta = sta_get(bss, dst);
  64. if (sta == NULL)
  65. return;
  66. eapol = (const struct ieee802_1x_hdr *) data;
  67. hdr = (const struct wpa_eapol_key *) (eapol + 1);
  68. if (is_zero(hdr->key_nonce, WPA_NONCE_LEN)) {
  69. add_note(wt, MSG_INFO, "EAPOL-Key 1/4 from " MACSTR
  70. " used zero nonce", MAC2STR(src));
  71. }
  72. if (!is_zero(hdr->key_rsc, 8)) {
  73. add_note(wt, MSG_INFO, "EAPOL-Key 1/4 from " MACSTR
  74. " used non-zero Key RSC", MAC2STR(src));
  75. }
  76. os_memcpy(sta->anonce, hdr->key_nonce, WPA_NONCE_LEN);
  77. }
  78. static int try_pmk(struct wlantest *wt, struct wlantest_bss *bss,
  79. struct wlantest_sta *sta, u16 ver,
  80. const u8 *data, size_t len,
  81. struct wlantest_pmk *pmk)
  82. {
  83. struct wpa_ptk ptk;
  84. if (wpa_key_mgmt_ft(sta->key_mgmt)) {
  85. u8 pmk_r0[PMK_LEN];
  86. u8 pmk_r0_name[WPA_PMK_NAME_LEN];
  87. u8 pmk_r1[PMK_LEN];
  88. u8 pmk_r1_name[WPA_PMK_NAME_LEN];
  89. u8 ptk_name[WPA_PMK_NAME_LEN];
  90. wpa_derive_pmk_r0(pmk->pmk, sizeof(pmk->pmk),
  91. bss->ssid, bss->ssid_len, bss->mdid,
  92. bss->r0kh_id, bss->r0kh_id_len,
  93. sta->addr, pmk_r0, pmk_r0_name);
  94. wpa_hexdump(MSG_DEBUG, "FT: PMK-R0", pmk_r0, PMK_LEN);
  95. wpa_hexdump(MSG_DEBUG, "FT: PMKR0Name", pmk_r0_name,
  96. WPA_PMK_NAME_LEN);
  97. wpa_derive_pmk_r1(pmk_r0, pmk_r0_name, bss->r1kh_id,
  98. sta->addr, pmk_r1, pmk_r1_name);
  99. wpa_hexdump_key(MSG_DEBUG, "FT: PMK-R1", pmk_r1, PMK_LEN);
  100. wpa_hexdump(MSG_DEBUG, "FT: PMKR1Name", pmk_r1_name,
  101. WPA_PMK_NAME_LEN);
  102. if (wpa_pmk_r1_to_ptk(pmk_r1, sta->snonce, sta->anonce,
  103. sta->addr,
  104. bss->bssid, pmk_r1_name, &ptk, ptk_name,
  105. sta->key_mgmt,
  106. sta->pairwise_cipher) < 0 ||
  107. check_mic(ptk.kck, ptk.kck_len, sta->key_mgmt, ver, data,
  108. len) < 0)
  109. return -1;
  110. } else if (wpa_pmk_to_ptk(pmk->pmk, sizeof(pmk->pmk),
  111. "Pairwise key expansion",
  112. bss->bssid, sta->addr, sta->anonce,
  113. sta->snonce, &ptk, sta->key_mgmt,
  114. sta->pairwise_cipher) < 0 ||
  115. check_mic(ptk.kck, ptk.kck_len, sta->key_mgmt, ver, data,
  116. len) < 0) {
  117. return -1;
  118. }
  119. sta->tk_len = wpa_cipher_key_len(sta->pairwise_cipher);
  120. wpa_printf(MSG_INFO, "Derived PTK for STA " MACSTR " BSSID " MACSTR,
  121. MAC2STR(sta->addr), MAC2STR(bss->bssid));
  122. sta->counters[WLANTEST_STA_COUNTER_PTK_LEARNED]++;
  123. if (sta->ptk_set) {
  124. /*
  125. * Rekeying - use new PTK for EAPOL-Key frames, but continue
  126. * using the old PTK for frame decryption.
  127. */
  128. add_note(wt, MSG_DEBUG, "Derived PTK during rekeying");
  129. os_memcpy(&sta->tptk, &ptk, sizeof(ptk));
  130. wpa_hexdump(MSG_DEBUG, "TPTK:KCK",
  131. sta->tptk.kck, sta->tptk.kck_len);
  132. wpa_hexdump(MSG_DEBUG, "TPTK:KEK",
  133. sta->tptk.kek, sta->tptk.kek_len);
  134. wpa_hexdump(MSG_DEBUG, "TPTK:TK",
  135. sta->tptk.tk, sta->tptk.tk_len);
  136. sta->tptk_set = 1;
  137. return 0;
  138. }
  139. add_note(wt, MSG_DEBUG, "Derived new PTK");
  140. os_memcpy(&sta->ptk, &ptk, sizeof(ptk));
  141. wpa_hexdump(MSG_DEBUG, "PTK:KCK", sta->ptk.kck, sta->ptk.kck_len);
  142. wpa_hexdump(MSG_DEBUG, "PTK:KEK", sta->ptk.kek, sta->ptk.kek_len);
  143. wpa_hexdump(MSG_DEBUG, "PTK:TK", sta->ptk.tk, sta->ptk.tk_len);
  144. sta->ptk_set = 1;
  145. os_memset(sta->rsc_tods, 0, sizeof(sta->rsc_tods));
  146. os_memset(sta->rsc_fromds, 0, sizeof(sta->rsc_fromds));
  147. return 0;
  148. }
  149. static void derive_ptk(struct wlantest *wt, struct wlantest_bss *bss,
  150. struct wlantest_sta *sta, u16 ver,
  151. const u8 *data, size_t len)
  152. {
  153. struct wlantest_pmk *pmk;
  154. wpa_printf(MSG_DEBUG, "Trying to derive PTK for " MACSTR " (ver %u)",
  155. MAC2STR(sta->addr), ver);
  156. dl_list_for_each(pmk, &bss->pmk, struct wlantest_pmk, list) {
  157. wpa_printf(MSG_DEBUG, "Try per-BSS PMK");
  158. if (try_pmk(wt, bss, sta, ver, data, len, pmk) == 0)
  159. return;
  160. }
  161. dl_list_for_each(pmk, &wt->pmk, struct wlantest_pmk, list) {
  162. wpa_printf(MSG_DEBUG, "Try global PMK");
  163. if (try_pmk(wt, bss, sta, ver, data, len, pmk) == 0)
  164. return;
  165. }
  166. if (!sta->ptk_set) {
  167. struct wlantest_ptk *ptk;
  168. int prev_level = wpa_debug_level;
  169. wpa_debug_level = MSG_WARNING;
  170. dl_list_for_each(ptk, &wt->ptk, struct wlantest_ptk, list) {
  171. if (check_mic(ptk->ptk.kck, ptk->ptk.kck_len,
  172. sta->key_mgmt, ver, data, len) < 0)
  173. continue;
  174. wpa_printf(MSG_INFO, "Pre-set PTK matches for STA "
  175. MACSTR " BSSID " MACSTR,
  176. MAC2STR(sta->addr), MAC2STR(bss->bssid));
  177. add_note(wt, MSG_DEBUG, "Using pre-set PTK");
  178. ptk->ptk_len = 32 +
  179. wpa_cipher_key_len(sta->pairwise_cipher);
  180. os_memcpy(&sta->ptk, &ptk->ptk, sizeof(ptk->ptk));
  181. wpa_hexdump(MSG_DEBUG, "PTK:KCK",
  182. sta->ptk.kck, sta->ptk.kck_len);
  183. wpa_hexdump(MSG_DEBUG, "PTK:KEK",
  184. sta->ptk.kek, sta->ptk.kek_len);
  185. wpa_hexdump(MSG_DEBUG, "PTK:TK",
  186. sta->ptk.tk, sta->ptk.tk_len);
  187. sta->ptk_set = 1;
  188. os_memset(sta->rsc_tods, 0, sizeof(sta->rsc_tods));
  189. os_memset(sta->rsc_fromds, 0, sizeof(sta->rsc_fromds));
  190. }
  191. wpa_debug_level = prev_level;
  192. }
  193. add_note(wt, MSG_DEBUG, "No matching PMK found to derive PTK");
  194. }
  195. static void rx_data_eapol_key_2_of_4(struct wlantest *wt, const u8 *dst,
  196. const u8 *src, const u8 *data, size_t len)
  197. {
  198. struct wlantest_bss *bss;
  199. struct wlantest_sta *sta;
  200. const struct ieee802_1x_hdr *eapol;
  201. const struct wpa_eapol_key *hdr;
  202. const u8 *key_data, *kck, *mic;
  203. size_t kck_len, mic_len;
  204. u16 key_info, key_data_len;
  205. struct wpa_eapol_ie_parse ie;
  206. wpa_printf(MSG_DEBUG, "EAPOL-Key 2/4 " MACSTR " -> " MACSTR,
  207. MAC2STR(src), MAC2STR(dst));
  208. bss = bss_get(wt, dst);
  209. if (bss == NULL)
  210. return;
  211. sta = sta_get(bss, src);
  212. if (sta == NULL)
  213. return;
  214. eapol = (const struct ieee802_1x_hdr *) data;
  215. hdr = (const struct wpa_eapol_key *) (eapol + 1);
  216. mic_len = wpa_mic_len(sta->key_mgmt);
  217. mic = (const u8 *) (hdr + 1);
  218. if (is_zero(hdr->key_nonce, WPA_NONCE_LEN)) {
  219. add_note(wt, MSG_INFO, "EAPOL-Key 2/4 from " MACSTR
  220. " used zero nonce", MAC2STR(src));
  221. }
  222. if (!is_zero(hdr->key_rsc, 8)) {
  223. add_note(wt, MSG_INFO, "EAPOL-Key 2/4 from " MACSTR
  224. " used non-zero Key RSC", MAC2STR(src));
  225. }
  226. os_memcpy(sta->snonce, hdr->key_nonce, WPA_NONCE_LEN);
  227. key_info = WPA_GET_BE16(hdr->key_info);
  228. key_data_len = WPA_GET_BE16(mic + mic_len);
  229. derive_ptk(wt, bss, sta, key_info & WPA_KEY_INFO_TYPE_MASK, data, len);
  230. if (!sta->ptk_set && !sta->tptk_set) {
  231. add_note(wt, MSG_DEBUG,
  232. "No PTK known to process EAPOL-Key 2/4");
  233. return;
  234. }
  235. kck = sta->ptk.kck;
  236. kck_len = sta->ptk.kck_len;
  237. if (sta->tptk_set) {
  238. add_note(wt, MSG_DEBUG,
  239. "Use TPTK for validation EAPOL-Key MIC");
  240. kck = sta->tptk.kck;
  241. kck_len = sta->tptk.kck_len;
  242. }
  243. if (check_mic(kck, kck_len, sta->key_mgmt,
  244. key_info & WPA_KEY_INFO_TYPE_MASK, data, len) < 0) {
  245. add_note(wt, MSG_INFO, "Mismatch in EAPOL-Key 2/4 MIC");
  246. return;
  247. }
  248. add_note(wt, MSG_DEBUG, "Valid MIC found in EAPOL-Key 2/4");
  249. key_data = mic + mic_len + 2;
  250. if (wpa_supplicant_parse_ies(key_data, key_data_len, &ie) < 0) {
  251. add_note(wt, MSG_INFO, "Failed to parse EAPOL-Key Key Data");
  252. return;
  253. }
  254. if (ie.wpa_ie) {
  255. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key Data - WPA IE",
  256. ie.wpa_ie, ie.wpa_ie_len);
  257. if (os_memcmp(ie.wpa_ie, sta->rsnie, ie.wpa_ie_len) != 0) {
  258. struct ieee802_11_elems elems;
  259. add_note(wt, MSG_INFO,
  260. "Mismatch in WPA IE between EAPOL-Key 2/4 "
  261. "and (Re)Association Request from " MACSTR,
  262. MAC2STR(sta->addr));
  263. wpa_hexdump(MSG_INFO, "WPA IE in EAPOL-Key",
  264. ie.wpa_ie, ie.wpa_ie_len);
  265. wpa_hexdump(MSG_INFO, "WPA IE in (Re)Association "
  266. "Request",
  267. sta->rsnie,
  268. sta->rsnie[0] ? 2 + sta->rsnie[1] : 0);
  269. /*
  270. * The sniffer may have missed (Re)Association
  271. * Request, so try to survive with the information from
  272. * EAPOL-Key.
  273. */
  274. os_memset(&elems, 0, sizeof(elems));
  275. elems.wpa_ie = ie.wpa_ie + 2;
  276. elems.wpa_ie_len = ie.wpa_ie_len - 2;
  277. wpa_printf(MSG_DEBUG, "Update STA data based on WPA "
  278. "IE in EAPOL-Key 2/4");
  279. sta_update_assoc(sta, &elems);
  280. }
  281. }
  282. if (ie.rsn_ie) {
  283. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key Data - RSN IE",
  284. ie.rsn_ie, ie.rsn_ie_len);
  285. if (os_memcmp(ie.rsn_ie, sta->rsnie, ie.rsn_ie_len) != 0) {
  286. struct ieee802_11_elems elems;
  287. add_note(wt, MSG_INFO,
  288. "Mismatch in RSN IE between EAPOL-Key 2/4 "
  289. "and (Re)Association Request from " MACSTR,
  290. MAC2STR(sta->addr));
  291. wpa_hexdump(MSG_INFO, "RSN IE in EAPOL-Key",
  292. ie.rsn_ie, ie.rsn_ie_len);
  293. wpa_hexdump(MSG_INFO, "RSN IE in (Re)Association "
  294. "Request",
  295. sta->rsnie,
  296. sta->rsnie[0] ? 2 + sta->rsnie[1] : 0);
  297. /*
  298. * The sniffer may have missed (Re)Association
  299. * Request, so try to survive with the information from
  300. * EAPOL-Key.
  301. */
  302. os_memset(&elems, 0, sizeof(elems));
  303. elems.rsn_ie = ie.rsn_ie + 2;
  304. elems.rsn_ie_len = ie.rsn_ie_len - 2;
  305. wpa_printf(MSG_DEBUG, "Update STA data based on RSN "
  306. "IE in EAPOL-Key 2/4");
  307. sta_update_assoc(sta, &elems);
  308. }
  309. }
  310. }
  311. static u8 * decrypt_eapol_key_data_rc4(struct wlantest *wt, const u8 *kek,
  312. const struct wpa_eapol_key *hdr,
  313. const u8 *keydata, u16 keydatalen,
  314. size_t *len)
  315. {
  316. u8 ek[32], *buf;
  317. buf = os_memdup(keydata, keydatalen);
  318. if (buf == NULL)
  319. return NULL;
  320. os_memcpy(ek, hdr->key_iv, 16);
  321. os_memcpy(ek + 16, kek, 16);
  322. if (rc4_skip(ek, 32, 256, buf, keydatalen)) {
  323. add_note(wt, MSG_INFO, "RC4 failed");
  324. os_free(buf);
  325. return NULL;
  326. }
  327. *len = keydatalen;
  328. return buf;
  329. }
  330. static u8 * decrypt_eapol_key_data_aes(struct wlantest *wt, const u8 *kek,
  331. const struct wpa_eapol_key *hdr,
  332. const u8 *keydata, u16 keydatalen,
  333. size_t *len)
  334. {
  335. u8 *buf;
  336. if (keydatalen % 8) {
  337. add_note(wt, MSG_INFO, "Unsupported AES-WRAP len %d",
  338. keydatalen);
  339. return NULL;
  340. }
  341. keydatalen -= 8; /* AES-WRAP adds 8 bytes */
  342. buf = os_malloc(keydatalen);
  343. if (buf == NULL)
  344. return NULL;
  345. if (aes_unwrap(kek, 16, keydatalen / 8, keydata, buf)) {
  346. os_free(buf);
  347. add_note(wt, MSG_INFO,
  348. "AES unwrap failed - could not decrypt EAPOL-Key "
  349. "key data");
  350. return NULL;
  351. }
  352. *len = keydatalen;
  353. return buf;
  354. }
  355. static u8 * decrypt_eapol_key_data(struct wlantest *wt, int akmp, const u8 *kek,
  356. size_t kek_len, u16 ver,
  357. const struct wpa_eapol_key *hdr,
  358. size_t *len)
  359. {
  360. size_t mic_len;
  361. u16 keydatalen;
  362. const u8 *mic, *keydata;
  363. if (kek_len != 16)
  364. return NULL;
  365. mic = (const u8 *) (hdr + 1);
  366. mic_len = wpa_mic_len(akmp);
  367. keydata = mic + mic_len + 2;
  368. keydatalen = WPA_GET_BE16(mic + mic_len);
  369. switch (ver) {
  370. case WPA_KEY_INFO_TYPE_HMAC_MD5_RC4:
  371. return decrypt_eapol_key_data_rc4(wt, kek, hdr, keydata,
  372. keydatalen, len);
  373. case WPA_KEY_INFO_TYPE_HMAC_SHA1_AES:
  374. case WPA_KEY_INFO_TYPE_AES_128_CMAC:
  375. return decrypt_eapol_key_data_aes(wt, kek, hdr, keydata,
  376. keydatalen, len);
  377. case WPA_KEY_INFO_TYPE_AKM_DEFINED:
  378. /* For now, assume this is OSEN */
  379. return decrypt_eapol_key_data_aes(wt, kek, hdr, keydata,
  380. keydatalen, len);
  381. default:
  382. add_note(wt, MSG_INFO,
  383. "Unsupported EAPOL-Key Key Descriptor Version %u",
  384. ver);
  385. return NULL;
  386. }
  387. }
  388. static void learn_kde_keys(struct wlantest *wt, struct wlantest_bss *bss,
  389. struct wlantest_sta *sta,
  390. const u8 *buf, size_t len, const u8 *rsc)
  391. {
  392. struct wpa_eapol_ie_parse ie;
  393. if (wpa_supplicant_parse_ies(buf, len, &ie) < 0) {
  394. add_note(wt, MSG_INFO, "Failed to parse EAPOL-Key Key Data");
  395. return;
  396. }
  397. if (ie.wpa_ie) {
  398. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key Data - WPA IE",
  399. ie.wpa_ie, ie.wpa_ie_len);
  400. }
  401. if (ie.rsn_ie) {
  402. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key Data - RSN IE",
  403. ie.rsn_ie, ie.rsn_ie_len);
  404. }
  405. if (ie.gtk) {
  406. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key Data - GTK KDE",
  407. ie.gtk, ie.gtk_len);
  408. if (ie.gtk_len >= 2 && ie.gtk_len <= 2 + 32) {
  409. int id;
  410. id = ie.gtk[0] & 0x03;
  411. add_note(wt, MSG_DEBUG, "GTK KeyID=%u tx=%u",
  412. id, !!(ie.gtk[0] & 0x04));
  413. if ((ie.gtk[0] & 0xf8) || ie.gtk[1]) {
  414. add_note(wt, MSG_INFO,
  415. "GTK KDE: Reserved field set: "
  416. "%02x %02x", ie.gtk[0], ie.gtk[1]);
  417. }
  418. wpa_hexdump(MSG_DEBUG, "GTK", ie.gtk + 2,
  419. ie.gtk_len - 2);
  420. bss->gtk_len[id] = ie.gtk_len - 2;
  421. sta->gtk_len = ie.gtk_len - 2;
  422. os_memcpy(bss->gtk[id], ie.gtk + 2, ie.gtk_len - 2);
  423. os_memcpy(sta->gtk, ie.gtk + 2, ie.gtk_len - 2);
  424. bss->rsc[id][0] = rsc[5];
  425. bss->rsc[id][1] = rsc[4];
  426. bss->rsc[id][2] = rsc[3];
  427. bss->rsc[id][3] = rsc[2];
  428. bss->rsc[id][4] = rsc[1];
  429. bss->rsc[id][5] = rsc[0];
  430. bss->gtk_idx = id;
  431. sta->gtk_idx = id;
  432. wpa_hexdump(MSG_DEBUG, "RSC", bss->rsc[id], 6);
  433. } else {
  434. add_note(wt, MSG_INFO, "Invalid GTK KDE length %u",
  435. (unsigned) ie.gtk_len);
  436. }
  437. }
  438. if (ie.igtk) {
  439. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key Data - IGTK KDE",
  440. ie.igtk, ie.igtk_len);
  441. if (ie.igtk_len == 24) {
  442. u16 id;
  443. id = WPA_GET_LE16(ie.igtk);
  444. if (id > 5) {
  445. add_note(wt, MSG_INFO,
  446. "Unexpected IGTK KeyID %u", id);
  447. } else {
  448. const u8 *ipn;
  449. add_note(wt, MSG_DEBUG, "IGTK KeyID %u", id);
  450. wpa_hexdump(MSG_DEBUG, "IPN", ie.igtk + 2, 6);
  451. wpa_hexdump(MSG_DEBUG, "IGTK", ie.igtk + 8,
  452. 16);
  453. os_memcpy(bss->igtk[id], ie.igtk + 8, 16);
  454. bss->igtk_len[id] = 16;
  455. ipn = ie.igtk + 2;
  456. bss->ipn[id][0] = ipn[5];
  457. bss->ipn[id][1] = ipn[4];
  458. bss->ipn[id][2] = ipn[3];
  459. bss->ipn[id][3] = ipn[2];
  460. bss->ipn[id][4] = ipn[1];
  461. bss->ipn[id][5] = ipn[0];
  462. bss->igtk_idx = id;
  463. }
  464. } else if (ie.igtk_len == 40) {
  465. u16 id;
  466. id = WPA_GET_LE16(ie.igtk);
  467. if (id > 5) {
  468. add_note(wt, MSG_INFO,
  469. "Unexpected IGTK KeyID %u", id);
  470. } else {
  471. const u8 *ipn;
  472. add_note(wt, MSG_DEBUG, "IGTK KeyID %u", id);
  473. wpa_hexdump(MSG_DEBUG, "IPN", ie.igtk + 2, 6);
  474. wpa_hexdump(MSG_DEBUG, "IGTK", ie.igtk + 8,
  475. 32);
  476. os_memcpy(bss->igtk[id], ie.igtk + 8, 32);
  477. bss->igtk_len[id] = 32;
  478. ipn = ie.igtk + 2;
  479. bss->ipn[id][0] = ipn[5];
  480. bss->ipn[id][1] = ipn[4];
  481. bss->ipn[id][2] = ipn[3];
  482. bss->ipn[id][3] = ipn[2];
  483. bss->ipn[id][4] = ipn[1];
  484. bss->ipn[id][5] = ipn[0];
  485. bss->igtk_idx = id;
  486. }
  487. } else {
  488. add_note(wt, MSG_INFO, "Invalid IGTK KDE length %u",
  489. (unsigned) ie.igtk_len);
  490. }
  491. }
  492. }
  493. static void rx_data_eapol_key_3_of_4(struct wlantest *wt, const u8 *dst,
  494. const u8 *src, const u8 *data, size_t len)
  495. {
  496. struct wlantest_bss *bss;
  497. struct wlantest_sta *sta;
  498. const struct ieee802_1x_hdr *eapol;
  499. const struct wpa_eapol_key *hdr;
  500. const u8 *key_data, *kck, *kek, *mic;
  501. size_t kck_len, kek_len, mic_len;
  502. int recalc = 0;
  503. u16 key_info, ver;
  504. u8 *decrypted_buf = NULL;
  505. const u8 *decrypted;
  506. size_t decrypted_len = 0;
  507. struct wpa_eapol_ie_parse ie;
  508. wpa_printf(MSG_DEBUG, "EAPOL-Key 3/4 " MACSTR " -> " MACSTR,
  509. MAC2STR(src), MAC2STR(dst));
  510. bss = bss_get(wt, src);
  511. if (bss == NULL)
  512. return;
  513. sta = sta_get(bss, dst);
  514. if (sta == NULL)
  515. return;
  516. mic_len = wpa_mic_len(sta->key_mgmt);
  517. eapol = (const struct ieee802_1x_hdr *) data;
  518. hdr = (const struct wpa_eapol_key *) (eapol + 1);
  519. mic = (const u8 *) (hdr + 1);
  520. key_info = WPA_GET_BE16(hdr->key_info);
  521. if (os_memcmp(sta->anonce, hdr->key_nonce, WPA_NONCE_LEN) != 0) {
  522. add_note(wt, MSG_INFO,
  523. "EAPOL-Key ANonce mismatch between 1/4 and 3/4");
  524. recalc = 1;
  525. }
  526. os_memcpy(sta->anonce, hdr->key_nonce, WPA_NONCE_LEN);
  527. if (recalc) {
  528. derive_ptk(wt, bss, sta, key_info & WPA_KEY_INFO_TYPE_MASK,
  529. data, len);
  530. }
  531. if (!sta->ptk_set && !sta->tptk_set) {
  532. add_note(wt, MSG_DEBUG,
  533. "No PTK known to process EAPOL-Key 3/4");
  534. return;
  535. }
  536. kek = sta->ptk.kek;
  537. kek_len = sta->ptk.kek_len;
  538. kck = sta->ptk.kck;
  539. kck_len = sta->ptk.kck_len;
  540. if (sta->tptk_set) {
  541. add_note(wt, MSG_DEBUG,
  542. "Use TPTK for validation EAPOL-Key MIC");
  543. kck = sta->tptk.kck;
  544. kck_len = sta->tptk.kck_len;
  545. kek = sta->tptk.kek;
  546. kek_len = sta->tptk.kek_len;
  547. }
  548. if (check_mic(kck, kck_len, sta->key_mgmt,
  549. key_info & WPA_KEY_INFO_TYPE_MASK, data, len) < 0) {
  550. add_note(wt, MSG_INFO, "Mismatch in EAPOL-Key 3/4 MIC");
  551. return;
  552. }
  553. add_note(wt, MSG_DEBUG, "Valid MIC found in EAPOL-Key 3/4");
  554. key_data = mic + mic_len + 2;
  555. if (!(key_info & WPA_KEY_INFO_ENCR_KEY_DATA)) {
  556. if (sta->proto & WPA_PROTO_RSN)
  557. add_note(wt, MSG_INFO,
  558. "EAPOL-Key 3/4 without EncrKeyData bit");
  559. decrypted = key_data;
  560. decrypted_len = WPA_GET_BE16(mic + mic_len);
  561. } else {
  562. ver = key_info & WPA_KEY_INFO_TYPE_MASK;
  563. decrypted_buf = decrypt_eapol_key_data(wt, sta->key_mgmt,
  564. kek, kek_len, ver,
  565. hdr, &decrypted_len);
  566. if (decrypted_buf == NULL) {
  567. add_note(wt, MSG_INFO,
  568. "Failed to decrypt EAPOL-Key Key Data");
  569. return;
  570. }
  571. decrypted = decrypted_buf;
  572. wpa_hexdump(MSG_DEBUG, "Decrypted EAPOL-Key Key Data",
  573. decrypted, decrypted_len);
  574. }
  575. if (wt->write_pcap_dumper && decrypted != key_data) {
  576. /* Fill in a dummy Data frame header */
  577. u8 buf[24 + 8 + sizeof(*eapol) + sizeof(*hdr)];
  578. struct ieee80211_hdr *h;
  579. struct wpa_eapol_key *k;
  580. const u8 *p;
  581. u8 *pos;
  582. size_t plain_len;
  583. plain_len = decrypted_len;
  584. p = decrypted;
  585. while (p + 1 < decrypted + decrypted_len) {
  586. if (p[0] == 0xdd && p[1] == 0x00) {
  587. /* Remove padding */
  588. plain_len = p - decrypted;
  589. break;
  590. }
  591. p += 2 + p[1];
  592. }
  593. os_memset(buf, 0, sizeof(buf));
  594. h = (struct ieee80211_hdr *) buf;
  595. h->frame_control = host_to_le16(0x0208);
  596. os_memcpy(h->addr1, dst, ETH_ALEN);
  597. os_memcpy(h->addr2, src, ETH_ALEN);
  598. os_memcpy(h->addr3, src, ETH_ALEN);
  599. pos = (u8 *) (h + 1);
  600. os_memcpy(pos, "\xaa\xaa\x03\x00\x00\x00\x88\x8e", 8);
  601. pos += 8;
  602. os_memcpy(pos, eapol, sizeof(*eapol));
  603. pos += sizeof(*eapol);
  604. os_memcpy(pos, hdr, sizeof(*hdr) + mic_len);
  605. k = (struct wpa_eapol_key *) pos;
  606. pos += sizeof(struct wpa_eapol_key) + mic_len;
  607. WPA_PUT_BE16(k->key_info,
  608. key_info & ~WPA_KEY_INFO_ENCR_KEY_DATA);
  609. WPA_PUT_BE16(pos, plain_len);
  610. write_pcap_decrypted(wt, buf, sizeof(buf),
  611. decrypted, plain_len);
  612. }
  613. if (wpa_supplicant_parse_ies(decrypted, decrypted_len, &ie) < 0) {
  614. add_note(wt, MSG_INFO, "Failed to parse EAPOL-Key Key Data");
  615. os_free(decrypted_buf);
  616. return;
  617. }
  618. if ((ie.wpa_ie &&
  619. os_memcmp(ie.wpa_ie, bss->wpaie, ie.wpa_ie_len) != 0) ||
  620. (ie.wpa_ie == NULL && bss->wpaie[0])) {
  621. add_note(wt, MSG_INFO,
  622. "Mismatch in WPA IE between EAPOL-Key 3/4 and "
  623. "Beacon/Probe Response from " MACSTR,
  624. MAC2STR(bss->bssid));
  625. wpa_hexdump(MSG_INFO, "WPA IE in EAPOL-Key",
  626. ie.wpa_ie, ie.wpa_ie_len);
  627. wpa_hexdump(MSG_INFO, "WPA IE in Beacon/Probe "
  628. "Response",
  629. bss->wpaie,
  630. bss->wpaie[0] ? 2 + bss->wpaie[1] : 0);
  631. }
  632. if ((ie.rsn_ie &&
  633. os_memcmp(ie.rsn_ie, bss->rsnie, ie.rsn_ie_len) != 0) ||
  634. (ie.rsn_ie == NULL && bss->rsnie[0])) {
  635. add_note(wt, MSG_INFO, "Mismatch in RSN IE between EAPOL-Key "
  636. "3/4 and Beacon/Probe Response from " MACSTR,
  637. MAC2STR(bss->bssid));
  638. wpa_hexdump(MSG_INFO, "RSN IE in EAPOL-Key",
  639. ie.rsn_ie, ie.rsn_ie_len);
  640. wpa_hexdump(MSG_INFO, "RSN IE in Beacon/Probe Response",
  641. bss->rsnie,
  642. bss->rsnie[0] ? 2 + bss->rsnie[1] : 0);
  643. }
  644. learn_kde_keys(wt, bss, sta, decrypted, decrypted_len, hdr->key_rsc);
  645. os_free(decrypted_buf);
  646. }
  647. static void rx_data_eapol_key_4_of_4(struct wlantest *wt, const u8 *dst,
  648. const u8 *src, const u8 *data, size_t len)
  649. {
  650. struct wlantest_bss *bss;
  651. struct wlantest_sta *sta;
  652. const struct ieee802_1x_hdr *eapol;
  653. const struct wpa_eapol_key *hdr;
  654. u16 key_info;
  655. const u8 *kck;
  656. size_t kck_len;
  657. wpa_printf(MSG_DEBUG, "EAPOL-Key 4/4 " MACSTR " -> " MACSTR,
  658. MAC2STR(src), MAC2STR(dst));
  659. bss = bss_get(wt, dst);
  660. if (bss == NULL)
  661. return;
  662. sta = sta_get(bss, src);
  663. if (sta == NULL)
  664. return;
  665. eapol = (const struct ieee802_1x_hdr *) data;
  666. hdr = (const struct wpa_eapol_key *) (eapol + 1);
  667. if (!is_zero(hdr->key_rsc, 8)) {
  668. add_note(wt, MSG_INFO, "EAPOL-Key 4/4 from " MACSTR " used "
  669. "non-zero Key RSC", MAC2STR(src));
  670. }
  671. key_info = WPA_GET_BE16(hdr->key_info);
  672. if (!sta->ptk_set && !sta->tptk_set) {
  673. add_note(wt, MSG_DEBUG,
  674. "No PTK known to process EAPOL-Key 4/4");
  675. return;
  676. }
  677. kck = sta->ptk.kck;
  678. kck_len = sta->ptk.kck_len;
  679. if (sta->tptk_set) {
  680. add_note(wt, MSG_DEBUG,
  681. "Use TPTK for validation EAPOL-Key MIC");
  682. kck = sta->tptk.kck;
  683. kck_len = sta->tptk.kck_len;
  684. }
  685. if (check_mic(kck, kck_len, sta->key_mgmt,
  686. key_info & WPA_KEY_INFO_TYPE_MASK, data, len) < 0) {
  687. add_note(wt, MSG_INFO, "Mismatch in EAPOL-Key 4/4 MIC");
  688. return;
  689. }
  690. add_note(wt, MSG_DEBUG, "Valid MIC found in EAPOL-Key 4/4");
  691. if (sta->tptk_set) {
  692. add_note(wt, MSG_DEBUG, "Update PTK (rekeying)");
  693. os_memcpy(&sta->ptk, &sta->tptk, sizeof(sta->ptk));
  694. sta->ptk_set = 1;
  695. sta->tptk_set = 0;
  696. os_memset(sta->rsc_tods, 0, sizeof(sta->rsc_tods));
  697. os_memset(sta->rsc_fromds, 0, sizeof(sta->rsc_fromds));
  698. }
  699. }
  700. static void rx_data_eapol_key_1_of_2(struct wlantest *wt, const u8 *dst,
  701. const u8 *src, const u8 *data, size_t len)
  702. {
  703. struct wlantest_bss *bss;
  704. struct wlantest_sta *sta;
  705. const struct ieee802_1x_hdr *eapol;
  706. const struct wpa_eapol_key *hdr;
  707. u16 key_info, ver;
  708. u8 *decrypted;
  709. size_t decrypted_len = 0;
  710. size_t mic_len;
  711. wpa_printf(MSG_DEBUG, "EAPOL-Key 1/2 " MACSTR " -> " MACSTR,
  712. MAC2STR(src), MAC2STR(dst));
  713. bss = bss_get(wt, src);
  714. if (bss == NULL)
  715. return;
  716. sta = sta_get(bss, dst);
  717. if (sta == NULL)
  718. return;
  719. mic_len = wpa_mic_len(sta->key_mgmt);
  720. eapol = (const struct ieee802_1x_hdr *) data;
  721. hdr = (const struct wpa_eapol_key *) (eapol + 1);
  722. key_info = WPA_GET_BE16(hdr->key_info);
  723. if (!sta->ptk_set) {
  724. add_note(wt, MSG_DEBUG,
  725. "No PTK known to process EAPOL-Key 1/2");
  726. return;
  727. }
  728. if (sta->ptk_set &&
  729. check_mic(sta->ptk.kck, sta->ptk.kck_len, sta->key_mgmt,
  730. key_info & WPA_KEY_INFO_TYPE_MASK,
  731. data, len) < 0) {
  732. add_note(wt, MSG_INFO, "Mismatch in EAPOL-Key 1/2 MIC");
  733. return;
  734. }
  735. add_note(wt, MSG_DEBUG, "Valid MIC found in EAPOL-Key 1/2");
  736. if (sta->proto & WPA_PROTO_RSN &&
  737. !(key_info & WPA_KEY_INFO_ENCR_KEY_DATA)) {
  738. add_note(wt, MSG_INFO, "EAPOL-Key 1/2 without EncrKeyData bit");
  739. return;
  740. }
  741. ver = key_info & WPA_KEY_INFO_TYPE_MASK;
  742. decrypted = decrypt_eapol_key_data(wt, sta->key_mgmt,
  743. sta->ptk.kek, sta->ptk.kek_len,
  744. ver, hdr, &decrypted_len);
  745. if (decrypted == NULL) {
  746. add_note(wt, MSG_INFO, "Failed to decrypt EAPOL-Key Key Data");
  747. return;
  748. }
  749. wpa_hexdump(MSG_DEBUG, "Decrypted EAPOL-Key Key Data",
  750. decrypted, decrypted_len);
  751. if (wt->write_pcap_dumper) {
  752. /* Fill in a dummy Data frame header */
  753. u8 buf[24 + 8 + sizeof(*eapol) + sizeof(*hdr)];
  754. struct ieee80211_hdr *h;
  755. struct wpa_eapol_key *k;
  756. u8 *pos;
  757. size_t plain_len;
  758. plain_len = decrypted_len;
  759. pos = decrypted;
  760. while (pos + 1 < decrypted + decrypted_len) {
  761. if (pos[0] == 0xdd && pos[1] == 0x00) {
  762. /* Remove padding */
  763. plain_len = pos - decrypted;
  764. break;
  765. }
  766. pos += 2 + pos[1];
  767. }
  768. os_memset(buf, 0, sizeof(buf));
  769. h = (struct ieee80211_hdr *) buf;
  770. h->frame_control = host_to_le16(0x0208);
  771. os_memcpy(h->addr1, dst, ETH_ALEN);
  772. os_memcpy(h->addr2, src, ETH_ALEN);
  773. os_memcpy(h->addr3, src, ETH_ALEN);
  774. pos = (u8 *) (h + 1);
  775. os_memcpy(pos, "\xaa\xaa\x03\x00\x00\x00\x88\x8e", 8);
  776. pos += 8;
  777. os_memcpy(pos, eapol, sizeof(*eapol));
  778. pos += sizeof(*eapol);
  779. os_memcpy(pos, hdr, sizeof(*hdr) + mic_len);
  780. k = (struct wpa_eapol_key *) pos;
  781. pos += sizeof(struct wpa_eapol_key) + mic_len;
  782. WPA_PUT_BE16(k->key_info,
  783. key_info & ~WPA_KEY_INFO_ENCR_KEY_DATA);
  784. WPA_PUT_BE16(pos, plain_len);
  785. write_pcap_decrypted(wt, buf, sizeof(buf),
  786. decrypted, plain_len);
  787. }
  788. if (sta->proto & WPA_PROTO_RSN)
  789. learn_kde_keys(wt, bss, sta, decrypted, decrypted_len,
  790. hdr->key_rsc);
  791. else {
  792. int klen = bss->group_cipher == WPA_CIPHER_TKIP ? 32 : 16;
  793. if (decrypted_len == klen) {
  794. const u8 *rsc = hdr->key_rsc;
  795. int id;
  796. id = (key_info & WPA_KEY_INFO_KEY_INDEX_MASK) >>
  797. WPA_KEY_INFO_KEY_INDEX_SHIFT;
  798. add_note(wt, MSG_DEBUG, "GTK key index %d", id);
  799. wpa_hexdump(MSG_DEBUG, "GTK", decrypted,
  800. decrypted_len);
  801. bss->gtk_len[id] = decrypted_len;
  802. os_memcpy(bss->gtk[id], decrypted, decrypted_len);
  803. bss->rsc[id][0] = rsc[5];
  804. bss->rsc[id][1] = rsc[4];
  805. bss->rsc[id][2] = rsc[3];
  806. bss->rsc[id][3] = rsc[2];
  807. bss->rsc[id][4] = rsc[1];
  808. bss->rsc[id][5] = rsc[0];
  809. wpa_hexdump(MSG_DEBUG, "RSC", bss->rsc[id], 6);
  810. } else {
  811. add_note(wt, MSG_INFO, "Unexpected WPA Key Data length "
  812. "in Group Key msg 1/2 from " MACSTR,
  813. MAC2STR(src));
  814. }
  815. }
  816. os_free(decrypted);
  817. }
  818. static void rx_data_eapol_key_2_of_2(struct wlantest *wt, const u8 *dst,
  819. const u8 *src, const u8 *data, size_t len)
  820. {
  821. struct wlantest_bss *bss;
  822. struct wlantest_sta *sta;
  823. const struct ieee802_1x_hdr *eapol;
  824. const struct wpa_eapol_key *hdr;
  825. u16 key_info;
  826. wpa_printf(MSG_DEBUG, "EAPOL-Key 2/2 " MACSTR " -> " MACSTR,
  827. MAC2STR(src), MAC2STR(dst));
  828. bss = bss_get(wt, dst);
  829. if (bss == NULL)
  830. return;
  831. sta = sta_get(bss, src);
  832. if (sta == NULL)
  833. return;
  834. eapol = (const struct ieee802_1x_hdr *) data;
  835. hdr = (const struct wpa_eapol_key *) (eapol + 1);
  836. if (!is_zero(hdr->key_rsc, 8)) {
  837. add_note(wt, MSG_INFO, "EAPOL-Key 2/2 from " MACSTR " used "
  838. "non-zero Key RSC", MAC2STR(src));
  839. }
  840. key_info = WPA_GET_BE16(hdr->key_info);
  841. if (!sta->ptk_set) {
  842. add_note(wt, MSG_DEBUG,
  843. "No PTK known to process EAPOL-Key 2/2");
  844. return;
  845. }
  846. if (sta->ptk_set &&
  847. check_mic(sta->ptk.kck, sta->ptk.kck_len, sta->key_mgmt,
  848. key_info & WPA_KEY_INFO_TYPE_MASK,
  849. data, len) < 0) {
  850. add_note(wt, MSG_INFO, "Mismatch in EAPOL-Key 2/2 MIC");
  851. return;
  852. }
  853. add_note(wt, MSG_DEBUG, "Valid MIC found in EAPOL-Key 2/2");
  854. }
  855. static void rx_data_eapol_key(struct wlantest *wt, const u8 *bssid,
  856. const u8 *sta_addr, const u8 *dst,
  857. const u8 *src, const u8 *data, size_t len,
  858. int prot)
  859. {
  860. const struct ieee802_1x_hdr *eapol;
  861. const struct wpa_eapol_key *hdr;
  862. const u8 *key_data;
  863. u16 key_info, key_length, ver, key_data_length;
  864. size_t mic_len = 16;
  865. const u8 *mic;
  866. struct wlantest_bss *bss;
  867. struct wlantest_sta *sta;
  868. bss = bss_get(wt, bssid);
  869. if (bss) {
  870. sta = sta_get(bss, sta_addr);
  871. if (sta)
  872. mic_len = wpa_mic_len(sta->key_mgmt);
  873. }
  874. eapol = (const struct ieee802_1x_hdr *) data;
  875. hdr = (const struct wpa_eapol_key *) (eapol + 1);
  876. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key",
  877. (const u8 *) hdr, len - sizeof(*eapol));
  878. if (len < sizeof(*hdr) + mic_len + 2) {
  879. add_note(wt, MSG_INFO, "Too short EAPOL-Key frame from " MACSTR,
  880. MAC2STR(src));
  881. return;
  882. }
  883. mic = (const u8 *) (hdr + 1);
  884. if (hdr->type == EAPOL_KEY_TYPE_RC4) {
  885. /* TODO: EAPOL-Key RC4 for WEP */
  886. wpa_printf(MSG_INFO, "EAPOL-Key Descriptor Type RC4 from "
  887. MACSTR, MAC2STR(src));
  888. return;
  889. }
  890. if (hdr->type != EAPOL_KEY_TYPE_RSN &&
  891. hdr->type != EAPOL_KEY_TYPE_WPA) {
  892. wpa_printf(MSG_INFO, "Unsupported EAPOL-Key Descriptor Type "
  893. "%u from " MACSTR, hdr->type, MAC2STR(src));
  894. return;
  895. }
  896. key_info = WPA_GET_BE16(hdr->key_info);
  897. key_length = WPA_GET_BE16(hdr->key_length);
  898. key_data_length = WPA_GET_BE16(mic + mic_len);
  899. key_data = mic + mic_len + 2;
  900. if (key_data + key_data_length > data + len) {
  901. add_note(wt, MSG_INFO, "Truncated EAPOL-Key from " MACSTR,
  902. MAC2STR(src));
  903. return;
  904. }
  905. if (key_data + key_data_length < data + len) {
  906. wpa_hexdump(MSG_DEBUG, "Extra data after EAPOL-Key Key Data "
  907. "field", key_data + key_data_length,
  908. data + len - key_data - key_data_length);
  909. }
  910. ver = key_info & WPA_KEY_INFO_TYPE_MASK;
  911. wpa_printf(MSG_DEBUG, "EAPOL-Key ver=%u %c idx=%u%s%s%s%s%s%s%s%s "
  912. "datalen=%u",
  913. ver, key_info & WPA_KEY_INFO_KEY_TYPE ? 'P' : 'G',
  914. (key_info & WPA_KEY_INFO_KEY_INDEX_MASK) >>
  915. WPA_KEY_INFO_KEY_INDEX_SHIFT,
  916. (key_info & WPA_KEY_INFO_INSTALL) ? " Install" : "",
  917. (key_info & WPA_KEY_INFO_ACK) ? " ACK" : "",
  918. (key_info & WPA_KEY_INFO_MIC) ? " MIC" : "",
  919. (key_info & WPA_KEY_INFO_SECURE) ? " Secure" : "",
  920. (key_info & WPA_KEY_INFO_ERROR) ? " Error" : "",
  921. (key_info & WPA_KEY_INFO_REQUEST) ? " Request" : "",
  922. (key_info & WPA_KEY_INFO_ENCR_KEY_DATA) ? " Encr" : "",
  923. (key_info & WPA_KEY_INFO_SMK_MESSAGE) ? " SMK" : "",
  924. key_data_length);
  925. if (ver != WPA_KEY_INFO_TYPE_HMAC_MD5_RC4 &&
  926. ver != WPA_KEY_INFO_TYPE_HMAC_SHA1_AES &&
  927. ver != WPA_KEY_INFO_TYPE_AES_128_CMAC &&
  928. ver != WPA_KEY_INFO_TYPE_AKM_DEFINED) {
  929. wpa_printf(MSG_INFO, "Unsupported EAPOL-Key Key Descriptor "
  930. "Version %u from " MACSTR, ver, MAC2STR(src));
  931. return;
  932. }
  933. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Replay Counter",
  934. hdr->replay_counter, WPA_REPLAY_COUNTER_LEN);
  935. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key Nonce",
  936. hdr->key_nonce, WPA_NONCE_LEN);
  937. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key IV",
  938. hdr->key_iv, 16);
  939. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key RSC",
  940. hdr->key_rsc, WPA_KEY_RSC_LEN);
  941. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key MIC",
  942. mic, mic_len);
  943. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key Data",
  944. key_data, key_data_length);
  945. if (hdr->type == EAPOL_KEY_TYPE_RSN &&
  946. (key_info & (WPA_KEY_INFO_KEY_INDEX_MASK | BIT(14) | BIT(15))) !=
  947. 0) {
  948. wpa_printf(MSG_INFO, "RSN EAPOL-Key with non-zero reserved "
  949. "Key Info bits 0x%x from " MACSTR,
  950. key_info, MAC2STR(src));
  951. }
  952. if (hdr->type == EAPOL_KEY_TYPE_WPA &&
  953. (key_info & (WPA_KEY_INFO_ENCR_KEY_DATA |
  954. WPA_KEY_INFO_SMK_MESSAGE |BIT(14) | BIT(15))) != 0) {
  955. wpa_printf(MSG_INFO, "WPA EAPOL-Key with non-zero reserved "
  956. "Key Info bits 0x%x from " MACSTR,
  957. key_info, MAC2STR(src));
  958. }
  959. if (key_length > 32) {
  960. wpa_printf(MSG_INFO, "EAPOL-Key with invalid Key Length %d "
  961. "from " MACSTR, key_length, MAC2STR(src));
  962. }
  963. if (ver != WPA_KEY_INFO_TYPE_HMAC_MD5_RC4 &&
  964. !is_zero(hdr->key_iv, 16)) {
  965. wpa_printf(MSG_INFO, "EAPOL-Key with non-zero Key IV "
  966. "(reserved with ver=%d) field from " MACSTR,
  967. ver, MAC2STR(src));
  968. wpa_hexdump(MSG_INFO, "EAPOL-Key Key IV (reserved)",
  969. hdr->key_iv, 16);
  970. }
  971. if (!is_zero(hdr->key_id, 8)) {
  972. wpa_printf(MSG_INFO, "EAPOL-Key with non-zero Key ID "
  973. "(reserved) field from " MACSTR, MAC2STR(src));
  974. wpa_hexdump(MSG_INFO, "EAPOL-Key Key ID (reserved)",
  975. hdr->key_id, 8);
  976. }
  977. if (hdr->key_rsc[6] || hdr->key_rsc[7]) {
  978. wpa_printf(MSG_INFO, "EAPOL-Key with non-zero Key RSC octets "
  979. "(last two are unused)" MACSTR, MAC2STR(src));
  980. }
  981. if (key_info & (WPA_KEY_INFO_ERROR | WPA_KEY_INFO_REQUEST))
  982. return;
  983. if (key_info & WPA_KEY_INFO_SMK_MESSAGE)
  984. return;
  985. if (key_info & WPA_KEY_INFO_KEY_TYPE) {
  986. /* 4-Way Handshake */
  987. switch (key_info & (WPA_KEY_INFO_SECURE |
  988. WPA_KEY_INFO_MIC |
  989. WPA_KEY_INFO_ACK |
  990. WPA_KEY_INFO_INSTALL)) {
  991. case WPA_KEY_INFO_ACK:
  992. rx_data_eapol_key_1_of_4(wt, dst, src, data, len);
  993. break;
  994. case WPA_KEY_INFO_MIC:
  995. if (key_data_length == 0)
  996. rx_data_eapol_key_4_of_4(wt, dst, src, data,
  997. len);
  998. else
  999. rx_data_eapol_key_2_of_4(wt, dst, src, data,
  1000. len);
  1001. break;
  1002. case WPA_KEY_INFO_MIC | WPA_KEY_INFO_ACK |
  1003. WPA_KEY_INFO_INSTALL:
  1004. /* WPA does not include Secure bit in 3/4 */
  1005. rx_data_eapol_key_3_of_4(wt, dst, src, data, len);
  1006. break;
  1007. case WPA_KEY_INFO_SECURE | WPA_KEY_INFO_MIC |
  1008. WPA_KEY_INFO_ACK | WPA_KEY_INFO_INSTALL:
  1009. case WPA_KEY_INFO_SECURE |
  1010. WPA_KEY_INFO_ACK | WPA_KEY_INFO_INSTALL:
  1011. rx_data_eapol_key_3_of_4(wt, dst, src, data, len);
  1012. break;
  1013. case WPA_KEY_INFO_SECURE | WPA_KEY_INFO_MIC:
  1014. case WPA_KEY_INFO_SECURE:
  1015. if (key_data_length == 0)
  1016. rx_data_eapol_key_4_of_4(wt, dst, src, data,
  1017. len);
  1018. else
  1019. rx_data_eapol_key_2_of_4(wt, dst, src, data,
  1020. len);
  1021. break;
  1022. default:
  1023. wpa_printf(MSG_DEBUG, "Unsupported EAPOL-Key frame");
  1024. break;
  1025. }
  1026. } else {
  1027. /* Group Key Handshake */
  1028. switch (key_info & (WPA_KEY_INFO_SECURE |
  1029. WPA_KEY_INFO_MIC |
  1030. WPA_KEY_INFO_ACK)) {
  1031. case WPA_KEY_INFO_SECURE | WPA_KEY_INFO_MIC |
  1032. WPA_KEY_INFO_ACK:
  1033. case WPA_KEY_INFO_SECURE | WPA_KEY_INFO_ACK:
  1034. rx_data_eapol_key_1_of_2(wt, dst, src, data, len);
  1035. break;
  1036. case WPA_KEY_INFO_SECURE | WPA_KEY_INFO_MIC:
  1037. case WPA_KEY_INFO_SECURE:
  1038. rx_data_eapol_key_2_of_2(wt, dst, src, data, len);
  1039. break;
  1040. default:
  1041. wpa_printf(MSG_DEBUG, "Unsupported EAPOL-Key frame");
  1042. break;
  1043. }
  1044. }
  1045. }
  1046. void rx_data_eapol(struct wlantest *wt, const u8 *bssid, const u8 *sta_addr,
  1047. const u8 *dst, const u8 *src,
  1048. const u8 *data, size_t len, int prot)
  1049. {
  1050. const struct ieee802_1x_hdr *hdr;
  1051. u16 length;
  1052. const u8 *p;
  1053. wpa_hexdump(MSG_EXCESSIVE, "EAPOL", data, len);
  1054. if (len < sizeof(*hdr)) {
  1055. wpa_printf(MSG_INFO, "Too short EAPOL frame from " MACSTR,
  1056. MAC2STR(src));
  1057. return;
  1058. }
  1059. hdr = (const struct ieee802_1x_hdr *) data;
  1060. length = be_to_host16(hdr->length);
  1061. wpa_printf(MSG_DEBUG, "RX EAPOL: " MACSTR " -> " MACSTR "%s ver=%u "
  1062. "type=%u len=%u",
  1063. MAC2STR(src), MAC2STR(dst), prot ? " Prot" : "",
  1064. hdr->version, hdr->type, length);
  1065. if (hdr->version < 1 || hdr->version > 3) {
  1066. wpa_printf(MSG_INFO, "Unexpected EAPOL version %u from "
  1067. MACSTR, hdr->version, MAC2STR(src));
  1068. }
  1069. if (sizeof(*hdr) + length > len) {
  1070. wpa_printf(MSG_INFO, "Truncated EAPOL frame from " MACSTR,
  1071. MAC2STR(src));
  1072. return;
  1073. }
  1074. if (sizeof(*hdr) + length < len) {
  1075. wpa_printf(MSG_INFO, "EAPOL frame with %d extra bytes",
  1076. (int) (len - sizeof(*hdr) - length));
  1077. }
  1078. p = (const u8 *) (hdr + 1);
  1079. switch (hdr->type) {
  1080. case IEEE802_1X_TYPE_EAP_PACKET:
  1081. wpa_hexdump(MSG_MSGDUMP, "EAPOL - EAP packet", p, length);
  1082. break;
  1083. case IEEE802_1X_TYPE_EAPOL_START:
  1084. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Start", p, length);
  1085. break;
  1086. case IEEE802_1X_TYPE_EAPOL_LOGOFF:
  1087. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Logoff", p, length);
  1088. break;
  1089. case IEEE802_1X_TYPE_EAPOL_KEY:
  1090. rx_data_eapol_key(wt, bssid, sta_addr, dst, src, data,
  1091. sizeof(*hdr) + length, prot);
  1092. break;
  1093. case IEEE802_1X_TYPE_EAPOL_ENCAPSULATED_ASF_ALERT:
  1094. wpa_hexdump(MSG_MSGDUMP, "EAPOL - Encapsulated ASF alert",
  1095. p, length);
  1096. break;
  1097. default:
  1098. wpa_hexdump(MSG_MSGDUMP, "Unknown EAPOL payload", p, length);
  1099. break;
  1100. }
  1101. }