rx_data.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925
  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, key_data_len;
  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. key_data_len = WPA_GET_BE16(hdr->key_data_length);
  338. if (os_memcmp(sta->anonce, hdr->key_nonce, WPA_NONCE_LEN) != 0) {
  339. wpa_printf(MSG_INFO, "EAPOL-Key ANonce mismatch between 1/4 "
  340. "and 3/4");
  341. recalc = 1;
  342. }
  343. os_memcpy(sta->anonce, hdr->key_nonce, WPA_NONCE_LEN);
  344. if (recalc) {
  345. derive_ptk(wt, bss, sta, key_info & WPA_KEY_INFO_TYPE_MASK,
  346. data, len);
  347. }
  348. if (!sta->ptk_set) {
  349. wpa_printf(MSG_DEBUG, "No PTK known to process EAPOL-Key 3/4");
  350. return;
  351. }
  352. if (check_mic(sta->ptk.kck, key_info & WPA_KEY_INFO_TYPE_MASK,
  353. data, len) < 0) {
  354. wpa_printf(MSG_INFO, "Mismatch in EAPOL-Key 3/4 MIC");
  355. return;
  356. }
  357. wpa_printf(MSG_DEBUG, "Valid MIC found in EAPOL-Key 3/4");
  358. key_data = (const u8 *) (hdr + 1);
  359. /* TODO: handle WPA without EncrKeyData bit */
  360. if (!(key_info & WPA_KEY_INFO_ENCR_KEY_DATA)) {
  361. wpa_printf(MSG_INFO, "EAPOL-Key 3/4 without EncrKeyData bit");
  362. return;
  363. }
  364. ver = key_info & WPA_KEY_INFO_TYPE_MASK;
  365. decrypted = decrypt_eapol_key_data(sta->ptk.kek, ver, hdr,
  366. &decrypted_len);
  367. if (decrypted == NULL) {
  368. wpa_printf(MSG_INFO, "Failed to decrypt EAPOL-Key Key Data");
  369. return;
  370. }
  371. wpa_hexdump(MSG_DEBUG, "Decrypted EAPOL-Key Key Data",
  372. decrypted, decrypted_len);
  373. learn_kde_keys(bss, decrypted, decrypted_len, hdr->key_rsc);
  374. os_free(decrypted);
  375. }
  376. static void rx_data_eapol_key_4_of_4(struct wlantest *wt, const u8 *dst,
  377. const u8 *src, const u8 *data, size_t len)
  378. {
  379. struct wlantest_bss *bss;
  380. struct wlantest_sta *sta;
  381. const struct ieee802_1x_hdr *eapol;
  382. const struct wpa_eapol_key *hdr;
  383. u16 key_info;
  384. wpa_printf(MSG_DEBUG, "EAPOL-Key 4/4 " MACSTR " -> " MACSTR,
  385. MAC2STR(src), MAC2STR(dst));
  386. bss = bss_get(wt, dst);
  387. if (bss == NULL)
  388. return;
  389. sta = sta_get(bss, src);
  390. if (sta == NULL)
  391. return;
  392. eapol = (const struct ieee802_1x_hdr *) data;
  393. hdr = (const struct wpa_eapol_key *) (eapol + 1);
  394. key_info = WPA_GET_BE16(hdr->key_info);
  395. if (!sta->ptk_set) {
  396. wpa_printf(MSG_DEBUG, "No PTK known to process EAPOL-Key 4/4");
  397. return;
  398. }
  399. if (sta->ptk_set &&
  400. check_mic(sta->ptk.kck, key_info & WPA_KEY_INFO_TYPE_MASK,
  401. data, len) < 0) {
  402. wpa_printf(MSG_INFO, "Mismatch in EAPOL-Key 4/4 MIC");
  403. return;
  404. }
  405. wpa_printf(MSG_DEBUG, "Valid MIC found in EAPOL-Key 4/4");
  406. }
  407. static void rx_data_eapol_key_1_of_2(struct wlantest *wt, const u8 *dst,
  408. const u8 *src, const u8 *data, size_t len)
  409. {
  410. wpa_printf(MSG_DEBUG, "EAPOL-Key 1/2 " MACSTR " -> " MACSTR,
  411. MAC2STR(src), MAC2STR(dst));
  412. }
  413. static void rx_data_eapol_key_2_of_2(struct wlantest *wt, const u8 *dst,
  414. const u8 *src, const u8 *data, size_t len)
  415. {
  416. wpa_printf(MSG_DEBUG, "EAPOL-Key 2/2 " MACSTR " -> " MACSTR,
  417. MAC2STR(src), MAC2STR(dst));
  418. }
  419. static void rx_data_eapol_key(struct wlantest *wt, const u8 *dst,
  420. const u8 *src, const u8 *data, size_t len,
  421. int prot)
  422. {
  423. const struct ieee802_1x_hdr *eapol;
  424. const struct wpa_eapol_key *hdr;
  425. const u8 *key_data;
  426. u16 key_info, key_length, ver, key_data_length;
  427. eapol = (const struct ieee802_1x_hdr *) data;
  428. hdr = (const struct wpa_eapol_key *) (eapol + 1);
  429. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key",
  430. (const u8 *) hdr, len - sizeof(*eapol));
  431. if (len < sizeof(*hdr)) {
  432. wpa_printf(MSG_INFO, "Too short EAPOL-Key frame from " MACSTR,
  433. MAC2STR(src));
  434. return;
  435. }
  436. if (hdr->type == EAPOL_KEY_TYPE_RC4) {
  437. /* TODO: EAPOL-Key RC4 for WEP */
  438. return;
  439. }
  440. if (hdr->type != EAPOL_KEY_TYPE_RSN &&
  441. hdr->type != EAPOL_KEY_TYPE_WPA) {
  442. wpa_printf(MSG_DEBUG, "Unsupported EAPOL-Key type %u",
  443. hdr->type);
  444. return;
  445. }
  446. key_info = WPA_GET_BE16(hdr->key_info);
  447. key_length = WPA_GET_BE16(hdr->key_length);
  448. key_data_length = WPA_GET_BE16(hdr->key_data_length);
  449. key_data = (const u8 *) (hdr + 1);
  450. if (key_data + key_data_length > data + len) {
  451. wpa_printf(MSG_INFO, "Truncated EAPOL-Key from " MACSTR,
  452. MAC2STR(src));
  453. return;
  454. }
  455. if (key_data + key_data_length < data + len) {
  456. wpa_hexdump(MSG_DEBUG, "Extra data after EAPOL-Key Key Data "
  457. "field", key_data + key_data_length,
  458. data + len - key_data - key_data_length);
  459. }
  460. ver = key_info & WPA_KEY_INFO_TYPE_MASK;
  461. wpa_printf(MSG_DEBUG, "EAPOL-Key ver=%u %c idx=%u%s%s%s%s%s%s%s%s "
  462. "datalen=%u",
  463. ver, key_info & WPA_KEY_INFO_KEY_TYPE ? 'P' : 'G',
  464. (key_info & WPA_KEY_INFO_KEY_INDEX_MASK) >>
  465. WPA_KEY_INFO_KEY_INDEX_SHIFT,
  466. (key_info & WPA_KEY_INFO_INSTALL) ? " Install" : "",
  467. (key_info & WPA_KEY_INFO_ACK) ? " ACK" : "",
  468. (key_info & WPA_KEY_INFO_MIC) ? " MIC" : "",
  469. (key_info & WPA_KEY_INFO_SECURE) ? " Secure" : "",
  470. (key_info & WPA_KEY_INFO_ERROR) ? " Error" : "",
  471. (key_info & WPA_KEY_INFO_REQUEST) ? " Request" : "",
  472. (key_info & WPA_KEY_INFO_ENCR_KEY_DATA) ? " Encr" : "",
  473. (key_info & WPA_KEY_INFO_SMK_MESSAGE) ? " SMK" : "",
  474. key_data_length);
  475. if (ver != WPA_KEY_INFO_TYPE_HMAC_MD5_RC4 &&
  476. ver != WPA_KEY_INFO_TYPE_HMAC_SHA1_AES &&
  477. ver != WPA_KEY_INFO_TYPE_AES_128_CMAC) {
  478. wpa_printf(MSG_DEBUG, "Unsupported EAPOL-Key Key Descriptor "
  479. "Version %u", ver);
  480. return;
  481. }
  482. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Replay Counter",
  483. hdr->replay_counter, WPA_REPLAY_COUNTER_LEN);
  484. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key Nonce",
  485. hdr->key_nonce, WPA_NONCE_LEN);
  486. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key IV",
  487. hdr->key_iv, 16);
  488. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key RSC",
  489. hdr->key_rsc, WPA_KEY_RSC_LEN);
  490. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key MIC",
  491. hdr->key_mic, 16);
  492. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Key Key Data",
  493. key_data, key_data_length);
  494. if (key_info & (WPA_KEY_INFO_ERROR | WPA_KEY_INFO_REQUEST))
  495. return;
  496. if (key_info & WPA_KEY_INFO_SMK_MESSAGE)
  497. return;
  498. if (key_info & WPA_KEY_INFO_KEY_TYPE) {
  499. /* 4-Way Handshake */
  500. switch (key_info & (WPA_KEY_INFO_SECURE |
  501. WPA_KEY_INFO_MIC |
  502. WPA_KEY_INFO_ACK |
  503. WPA_KEY_INFO_INSTALL)) {
  504. case WPA_KEY_INFO_ACK:
  505. rx_data_eapol_key_1_of_4(wt, dst, src, data, len);
  506. break;
  507. case WPA_KEY_INFO_MIC:
  508. rx_data_eapol_key_2_of_4(wt, dst, src, data, len);
  509. break;
  510. case WPA_KEY_INFO_SECURE | WPA_KEY_INFO_MIC |
  511. WPA_KEY_INFO_ACK | WPA_KEY_INFO_INSTALL:
  512. rx_data_eapol_key_3_of_4(wt, dst, src, data, len);
  513. break;
  514. case WPA_KEY_INFO_SECURE | WPA_KEY_INFO_MIC:
  515. rx_data_eapol_key_4_of_4(wt, dst, src, data, len);
  516. break;
  517. default:
  518. wpa_printf(MSG_DEBUG, "Unsupported EAPOL-Key frame");
  519. break;
  520. }
  521. } else {
  522. /* Group Key Handshake */
  523. switch (key_info & (WPA_KEY_INFO_SECURE |
  524. WPA_KEY_INFO_MIC |
  525. WPA_KEY_INFO_ACK)) {
  526. case WPA_KEY_INFO_SECURE | WPA_KEY_INFO_MIC |
  527. WPA_KEY_INFO_ACK:
  528. rx_data_eapol_key_1_of_2(wt, dst, src, data, len);
  529. break;
  530. case WPA_KEY_INFO_SECURE | WPA_KEY_INFO_MIC:
  531. rx_data_eapol_key_2_of_2(wt, dst, src, data, len);
  532. break;
  533. default:
  534. wpa_printf(MSG_DEBUG, "Unsupported EAPOL-Key frame");
  535. break;
  536. }
  537. }
  538. }
  539. static void rx_data_eapol(struct wlantest *wt, const u8 *dst, const u8 *src,
  540. const u8 *data, size_t len, int prot)
  541. {
  542. const struct ieee802_1x_hdr *hdr;
  543. u16 length;
  544. const u8 *p;
  545. wpa_hexdump(MSG_EXCESSIVE, "EAPOL", data, len);
  546. if (len < sizeof(*hdr)) {
  547. wpa_printf(MSG_INFO, "Too short EAPOL frame from " MACSTR,
  548. MAC2STR(src));
  549. return;
  550. }
  551. hdr = (const struct ieee802_1x_hdr *) data;
  552. length = be_to_host16(hdr->length);
  553. wpa_printf(MSG_DEBUG, "RX EAPOL: " MACSTR " -> " MACSTR "%s ver=%u "
  554. "type=%u len=%u",
  555. MAC2STR(src), MAC2STR(dst), prot ? " Prot" : "",
  556. hdr->version, hdr->type, length);
  557. if (sizeof(*hdr) + length > len) {
  558. wpa_printf(MSG_INFO, "Truncated EAPOL frame from " MACSTR,
  559. MAC2STR(src));
  560. return;
  561. }
  562. if (sizeof(*hdr) + length < len) {
  563. wpa_printf(MSG_INFO, "EAPOL frame with %d extra bytes",
  564. (int) (len - sizeof(*hdr) - length));
  565. }
  566. p = (const u8 *) (hdr + 1);
  567. switch (hdr->type) {
  568. case IEEE802_1X_TYPE_EAP_PACKET:
  569. wpa_hexdump(MSG_MSGDUMP, "EAPOL - EAP packet", p, length);
  570. break;
  571. case IEEE802_1X_TYPE_EAPOL_START:
  572. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Start", p, length);
  573. break;
  574. case IEEE802_1X_TYPE_EAPOL_LOGOFF:
  575. wpa_hexdump(MSG_MSGDUMP, "EAPOL-Logoff", p, length);
  576. break;
  577. case IEEE802_1X_TYPE_EAPOL_KEY:
  578. rx_data_eapol_key(wt, dst, src, data, sizeof(*hdr) + length,
  579. prot);
  580. break;
  581. case IEEE802_1X_TYPE_EAPOL_ENCAPSULATED_ASF_ALERT:
  582. wpa_hexdump(MSG_MSGDUMP, "EAPOL - Encapsulated ASF alert",
  583. p, length);
  584. break;
  585. default:
  586. wpa_hexdump(MSG_MSGDUMP, "Unknown EAPOL payload", p, length);
  587. break;
  588. }
  589. }
  590. static void rx_data_eth(struct wlantest *wt, const u8 *dst, const u8 *src,
  591. u16 ethertype, const u8 *data, size_t len, int prot)
  592. {
  593. if (ethertype == ETH_P_PAE)
  594. rx_data_eapol(wt, dst, src, data, len, prot);
  595. }
  596. static void rx_data_process(struct wlantest *wt, const u8 *dst, const u8 *src,
  597. const u8 *data, size_t len, int prot)
  598. {
  599. if (len == 0)
  600. return;
  601. if (len >= 8 && os_memcmp(data, "\xaa\xaa\x03\x00\x00\x00", 6) == 0) {
  602. rx_data_eth(wt, dst, src, WPA_GET_BE16(data + 6),
  603. data + 8, len - 8, prot);
  604. return;
  605. }
  606. wpa_hexdump(MSG_DEBUG, "Unrecognized LLC", data, len > 8 ? 8 : len);
  607. }
  608. static void rx_data_bss_prot_group(struct wlantest *wt,
  609. const struct ieee80211_hdr *hdr,
  610. const u8 *qos, const u8 *dst, const u8 *src,
  611. const u8 *data, size_t len)
  612. {
  613. struct wlantest_bss *bss;
  614. int keyid;
  615. u8 *decrypted;
  616. size_t dlen;
  617. u8 pn[6];
  618. bss = bss_get(wt, hdr->addr2);
  619. if (bss == NULL)
  620. return;
  621. if (len < 4) {
  622. wpa_printf(MSG_INFO, "Too short group addressed data frame");
  623. return;
  624. }
  625. keyid = data[3] >> 6;
  626. if (bss->gtk_len[keyid] == 0) {
  627. wpa_printf(MSG_MSGDUMP, "No GTK known to decrypt the frame "
  628. "(A2=" MACSTR " KeyID=%d)",
  629. MAC2STR(hdr->addr2), keyid);
  630. return;
  631. }
  632. ccmp_get_pn(pn, data);
  633. if (os_memcmp(pn, bss->rsc[keyid], 6) <= 0) {
  634. wpa_printf(MSG_INFO, "CCMP/TKIP replay detected: SA=" MACSTR,
  635. MAC2STR(hdr->addr2));
  636. wpa_hexdump(MSG_INFO, "RX PN", pn, 6);
  637. wpa_hexdump(MSG_INFO, "RSC", bss->rsc[keyid], 6);
  638. }
  639. /* TODO: TKIP */
  640. decrypted = ccmp_decrypt(bss->gtk[keyid], hdr, data, len, &dlen);
  641. if (decrypted) {
  642. rx_data_process(wt, dst, src, decrypted, dlen, 1);
  643. os_memcpy(bss->rsc[keyid], pn, 6);
  644. }
  645. os_free(decrypted);
  646. }
  647. static void rx_data_bss_prot(struct wlantest *wt,
  648. const struct ieee80211_hdr *hdr, const u8 *qos,
  649. const u8 *dst, const u8 *src, const u8 *data,
  650. size_t len)
  651. {
  652. struct wlantest_bss *bss;
  653. struct wlantest_sta *sta;
  654. int keyid;
  655. u16 fc = le_to_host16(hdr->frame_control);
  656. u8 *decrypted;
  657. size_t dlen;
  658. int tid;
  659. u8 pn[6], *rsc;
  660. if (hdr->addr1[0] & 0x01) {
  661. rx_data_bss_prot_group(wt, hdr, qos, dst, src, data, len);
  662. return;
  663. }
  664. if (fc & WLAN_FC_TODS) {
  665. bss = bss_get(wt, hdr->addr1);
  666. if (bss == NULL)
  667. return;
  668. sta = sta_get(bss, hdr->addr2);
  669. } else {
  670. bss = bss_get(wt, hdr->addr2);
  671. if (bss == NULL)
  672. return;
  673. sta = sta_get(bss, hdr->addr1);
  674. }
  675. if (sta == NULL || !sta->ptk_set) {
  676. wpa_printf(MSG_MSGDUMP, "No PTK known to decrypt the frame");
  677. return;
  678. }
  679. if (len < 4) {
  680. wpa_printf(MSG_INFO, "Too short encrypted data frame");
  681. return;
  682. }
  683. keyid = data[3] >> 6;
  684. if (keyid != 0) {
  685. wpa_printf(MSG_INFO, "Unexpected non-zero KeyID %d in "
  686. "individually addressed Data frame from " MACSTR,
  687. keyid, MAC2STR(hdr->addr2));
  688. }
  689. if (qos)
  690. tid = qos[0] & 0x0f;
  691. else
  692. tid = 0;
  693. if (fc & WLAN_FC_TODS)
  694. rsc = sta->rsc_tods[tid];
  695. else
  696. rsc = sta->rsc_fromds[tid];
  697. ccmp_get_pn(pn, data);
  698. if (os_memcmp(pn, rsc, 6) <= 0) {
  699. wpa_printf(MSG_INFO, "CCMP/TKIP replay detected: SA=" MACSTR,
  700. MAC2STR(hdr->addr2));
  701. wpa_hexdump(MSG_INFO, "RX PN", pn, 6);
  702. wpa_hexdump(MSG_INFO, "RSC", rsc, 6);
  703. }
  704. /* TODO: TKIP */
  705. decrypted = ccmp_decrypt(sta->ptk.tk1, hdr, data, len, &dlen);
  706. if (decrypted) {
  707. rx_data_process(wt, dst, src, decrypted, dlen, 1);
  708. os_memcpy(rsc, pn, 6);
  709. }
  710. os_free(decrypted);
  711. }
  712. static void rx_data_bss(struct wlantest *wt, const struct ieee80211_hdr *hdr,
  713. const u8 *qos, const u8 *dst, const u8 *src,
  714. const u8 *data, size_t len)
  715. {
  716. u16 fc = le_to_host16(hdr->frame_control);
  717. int prot = !!(fc & WLAN_FC_ISWEP);
  718. if (qos) {
  719. u8 ack = (qos[0] & 0x60) >> 5;
  720. wpa_printf(MSG_MSGDUMP, "BSS DATA: " MACSTR " -> " MACSTR
  721. " len=%u%s tid=%u%s%s",
  722. MAC2STR(src), MAC2STR(dst), (unsigned int) len,
  723. prot ? " Prot" : "", qos[0] & 0x0f,
  724. (qos[0] & 0x10) ? " EOSP" : "",
  725. ack == 0 ? "" :
  726. (ack == 1 ? " NoAck" :
  727. (ack == 2 ? " NoExpAck" : " BA")));
  728. } else {
  729. wpa_printf(MSG_MSGDUMP, "BSS DATA: " MACSTR " -> " MACSTR
  730. " len=%u%s",
  731. MAC2STR(src), MAC2STR(dst), (unsigned int) len,
  732. prot ? " Prot" : "");
  733. }
  734. if (prot)
  735. rx_data_bss_prot(wt, hdr, qos, dst, src, data, len);
  736. else
  737. rx_data_process(wt, dst, src, data, len, 0);
  738. }
  739. void rx_data(struct wlantest *wt, const u8 *data, size_t len)
  740. {
  741. const struct ieee80211_hdr *hdr;
  742. u16 fc, stype;
  743. size_t hdrlen;
  744. const u8 *qos = NULL;
  745. if (len < 24)
  746. return;
  747. hdr = (const struct ieee80211_hdr *) data;
  748. fc = le_to_host16(hdr->frame_control);
  749. stype = WLAN_FC_GET_STYPE(fc);
  750. hdrlen = 24;
  751. if ((fc & (WLAN_FC_TODS | WLAN_FC_FROMDS)) ==
  752. (WLAN_FC_TODS | WLAN_FC_FROMDS))
  753. hdrlen += ETH_ALEN;
  754. if (stype & 0x08) {
  755. qos = data + hdrlen;
  756. hdrlen += 2;
  757. }
  758. if (len < hdrlen)
  759. return;
  760. wt->rx_data++;
  761. switch (fc & (WLAN_FC_TODS | WLAN_FC_FROMDS)) {
  762. case 0:
  763. wpa_printf(MSG_EXCESSIVE, "DATA %s%s%s IBSS DA=" MACSTR " SA="
  764. MACSTR " BSSID=" MACSTR,
  765. data_stype(WLAN_FC_GET_STYPE(fc)),
  766. fc & WLAN_FC_PWRMGT ? " PwrMgt" : "",
  767. fc & WLAN_FC_ISWEP ? " Prot" : "",
  768. MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
  769. MAC2STR(hdr->addr3));
  770. break;
  771. case WLAN_FC_FROMDS:
  772. wpa_printf(MSG_EXCESSIVE, "DATA %s%s%s FromDS DA=" MACSTR
  773. " BSSID=" MACSTR " SA=" MACSTR,
  774. data_stype(WLAN_FC_GET_STYPE(fc)),
  775. fc & WLAN_FC_PWRMGT ? " PwrMgt" : "",
  776. fc & WLAN_FC_ISWEP ? " Prot" : "",
  777. MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
  778. MAC2STR(hdr->addr3));
  779. rx_data_bss(wt, hdr, qos, hdr->addr1, hdr->addr2,
  780. data + hdrlen, len - hdrlen);
  781. break;
  782. case WLAN_FC_TODS:
  783. wpa_printf(MSG_EXCESSIVE, "DATA %s%s%s ToDS BSSID=" MACSTR
  784. " SA=" MACSTR " DA=" MACSTR,
  785. data_stype(WLAN_FC_GET_STYPE(fc)),
  786. fc & WLAN_FC_PWRMGT ? " PwrMgt" : "",
  787. fc & WLAN_FC_ISWEP ? " Prot" : "",
  788. MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
  789. MAC2STR(hdr->addr3));
  790. rx_data_bss(wt, hdr, qos, hdr->addr3, hdr->addr2,
  791. data + hdrlen, len - hdrlen);
  792. break;
  793. case WLAN_FC_TODS | WLAN_FC_FROMDS:
  794. wpa_printf(MSG_EXCESSIVE, "DATA %s%s%s WDS RA=" MACSTR " TA="
  795. MACSTR " DA=" MACSTR " SA=" MACSTR,
  796. data_stype(WLAN_FC_GET_STYPE(fc)),
  797. fc & WLAN_FC_PWRMGT ? " PwrMgt" : "",
  798. fc & WLAN_FC_ISWEP ? " Prot" : "",
  799. MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
  800. MAC2STR(hdr->addr3),
  801. MAC2STR((const u8 *) (hdr + 1)));
  802. break;
  803. }
  804. }