rx_eapol.c 31 KB

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