rx_data.c 28 KB

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