wpa.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355
  1. /*
  2. * WPA Supplicant - WPA state machine and EAPOL-Key processing
  3. * Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "rc4.h"
  17. #include "aes_wrap.h"
  18. #include "wpa.h"
  19. #include "eloop.h"
  20. #include "eapol_supp/eapol_supp_sm.h"
  21. #include "preauth.h"
  22. #include "pmksa_cache.h"
  23. #include "wpa_i.h"
  24. #include "wpa_ie.h"
  25. #include "peerkey.h"
  26. #include "ieee802_11_defs.h"
  27. /**
  28. * wpa_cipher_txt - Convert cipher suite to a text string
  29. * @cipher: Cipher suite (WPA_CIPHER_* enum)
  30. * Returns: Pointer to a text string of the cipher suite name
  31. */
  32. static const char * wpa_cipher_txt(int cipher)
  33. {
  34. switch (cipher) {
  35. case WPA_CIPHER_NONE:
  36. return "NONE";
  37. case WPA_CIPHER_WEP40:
  38. return "WEP-40";
  39. case WPA_CIPHER_WEP104:
  40. return "WEP-104";
  41. case WPA_CIPHER_TKIP:
  42. return "TKIP";
  43. case WPA_CIPHER_CCMP:
  44. return "CCMP";
  45. default:
  46. return "UNKNOWN";
  47. }
  48. }
  49. /**
  50. * wpa_key_mgmt_txt - Convert key management suite to a text string
  51. * @key_mgmt: Key management suite (WPA_KEY_MGMT_* enum)
  52. * @proto: WPA/WPA2 version (WPA_PROTO_*)
  53. * Returns: Pointer to a text string of the key management suite name
  54. */
  55. static const char * wpa_key_mgmt_txt(int key_mgmt, int proto)
  56. {
  57. switch (key_mgmt) {
  58. case WPA_KEY_MGMT_IEEE8021X:
  59. return proto == WPA_PROTO_RSN ?
  60. "WPA2/IEEE 802.1X/EAP" : "WPA/IEEE 802.1X/EAP";
  61. case WPA_KEY_MGMT_PSK:
  62. return proto == WPA_PROTO_RSN ?
  63. "WPA2-PSK" : "WPA-PSK";
  64. case WPA_KEY_MGMT_NONE:
  65. return "NONE";
  66. case WPA_KEY_MGMT_IEEE8021X_NO_WPA:
  67. return "IEEE 802.1X (no WPA)";
  68. #ifdef CONFIG_IEEE80211R
  69. case WPA_KEY_MGMT_FT_IEEE8021X:
  70. return "FT-EAP";
  71. case WPA_KEY_MGMT_FT_PSK:
  72. return "FT-PSK";
  73. #endif /* CONFIG_IEEE80211R */
  74. default:
  75. return "UNKNOWN";
  76. }
  77. }
  78. /**
  79. * wpa_eapol_key_send - Send WPA/RSN EAPOL-Key message
  80. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  81. * @kck: Key Confirmation Key (KCK, part of PTK)
  82. * @ver: Version field from Key Info
  83. * @dest: Destination address for the frame
  84. * @proto: Ethertype (usually ETH_P_EAPOL)
  85. * @msg: EAPOL-Key message
  86. * @msg_len: Length of message
  87. * @key_mic: Pointer to the buffer to which the EAPOL-Key MIC is written
  88. */
  89. void wpa_eapol_key_send(struct wpa_sm *sm, const u8 *kck,
  90. int ver, const u8 *dest, u16 proto,
  91. u8 *msg, size_t msg_len, u8 *key_mic)
  92. {
  93. if (is_zero_ether_addr(dest) && is_zero_ether_addr(sm->bssid)) {
  94. /*
  95. * Association event was not yet received; try to fetch
  96. * BSSID from the driver.
  97. */
  98. if (wpa_sm_get_bssid(sm, sm->bssid) < 0) {
  99. wpa_printf(MSG_DEBUG, "WPA: Failed to read BSSID for "
  100. "EAPOL-Key destination address");
  101. } else {
  102. dest = sm->bssid;
  103. wpa_printf(MSG_DEBUG, "WPA: Use BSSID (" MACSTR
  104. ") as the destination for EAPOL-Key",
  105. MAC2STR(dest));
  106. }
  107. }
  108. if (key_mic)
  109. wpa_eapol_key_mic(kck, ver, msg, msg_len, key_mic);
  110. wpa_hexdump(MSG_MSGDUMP, "WPA: TX EAPOL-Key", msg, msg_len);
  111. wpa_sm_ether_send(sm, dest, proto, msg, msg_len);
  112. eapol_sm_notify_tx_eapol_key(sm->eapol);
  113. os_free(msg);
  114. }
  115. /**
  116. * wpa_sm_key_request - Send EAPOL-Key Request
  117. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  118. * @error: Indicate whether this is an Michael MIC error report
  119. * @pairwise: 1 = error report for pairwise packet, 0 = for group packet
  120. * Returns: Pointer to the current network structure or %NULL on failure
  121. *
  122. * Send an EAPOL-Key Request to the current authenticator. This function is
  123. * used to request rekeying and it is usually called when a local Michael MIC
  124. * failure is detected.
  125. */
  126. void wpa_sm_key_request(struct wpa_sm *sm, int error, int pairwise)
  127. {
  128. size_t rlen;
  129. struct wpa_eapol_key *reply;
  130. int key_info, ver;
  131. u8 bssid[ETH_ALEN], *rbuf;
  132. if (sm->key_mgmt == WPA_KEY_MGMT_FT_IEEE8021X ||
  133. sm->key_mgmt == WPA_KEY_MGMT_FT_PSK)
  134. ver = WPA_KEY_INFO_TYPE_AES_128_CMAC;
  135. else if (sm->pairwise_cipher == WPA_CIPHER_CCMP)
  136. ver = WPA_KEY_INFO_TYPE_HMAC_SHA1_AES;
  137. else
  138. ver = WPA_KEY_INFO_TYPE_HMAC_MD5_RC4;
  139. if (wpa_sm_get_bssid(sm, bssid) < 0) {
  140. wpa_printf(MSG_WARNING, "Failed to read BSSID for EAPOL-Key "
  141. "request");
  142. return;
  143. }
  144. rbuf = wpa_sm_alloc_eapol(sm, IEEE802_1X_TYPE_EAPOL_KEY, NULL,
  145. sizeof(*reply), &rlen, (void *) &reply);
  146. if (rbuf == NULL)
  147. return;
  148. reply->type = sm->proto == WPA_PROTO_RSN ?
  149. EAPOL_KEY_TYPE_RSN : EAPOL_KEY_TYPE_WPA;
  150. key_info = WPA_KEY_INFO_REQUEST | ver;
  151. if (sm->ptk_set)
  152. key_info |= WPA_KEY_INFO_MIC;
  153. if (error)
  154. key_info |= WPA_KEY_INFO_ERROR;
  155. if (pairwise)
  156. key_info |= WPA_KEY_INFO_KEY_TYPE;
  157. WPA_PUT_BE16(reply->key_info, key_info);
  158. WPA_PUT_BE16(reply->key_length, 0);
  159. os_memcpy(reply->replay_counter, sm->request_counter,
  160. WPA_REPLAY_COUNTER_LEN);
  161. inc_byte_array(sm->request_counter, WPA_REPLAY_COUNTER_LEN);
  162. WPA_PUT_BE16(reply->key_data_length, 0);
  163. wpa_printf(MSG_INFO, "WPA: Sending EAPOL-Key Request (error=%d "
  164. "pairwise=%d ptk_set=%d len=%lu)",
  165. error, pairwise, sm->ptk_set, (unsigned long) rlen);
  166. wpa_eapol_key_send(sm, sm->ptk.kck, ver, bssid, ETH_P_EAPOL,
  167. rbuf, rlen, key_info & WPA_KEY_INFO_MIC ?
  168. reply->key_mic : NULL);
  169. }
  170. static int wpa_supplicant_get_pmk(struct wpa_sm *sm,
  171. const unsigned char *src_addr,
  172. const u8 *pmkid)
  173. {
  174. int abort_cached = 0;
  175. if (pmkid && !sm->cur_pmksa) {
  176. /* When using drivers that generate RSN IE, wpa_supplicant may
  177. * not have enough time to get the association information
  178. * event before receiving this 1/4 message, so try to find a
  179. * matching PMKSA cache entry here. */
  180. sm->cur_pmksa = pmksa_cache_get(sm->pmksa, src_addr, pmkid);
  181. if (sm->cur_pmksa) {
  182. wpa_printf(MSG_DEBUG, "RSN: found matching PMKID from "
  183. "PMKSA cache");
  184. } else {
  185. wpa_printf(MSG_DEBUG, "RSN: no matching PMKID found");
  186. abort_cached = 1;
  187. }
  188. }
  189. if (pmkid && sm->cur_pmksa &&
  190. os_memcmp(pmkid, sm->cur_pmksa->pmkid, PMKID_LEN) == 0) {
  191. wpa_hexdump(MSG_DEBUG, "RSN: matched PMKID", pmkid, PMKID_LEN);
  192. wpa_sm_set_pmk_from_pmksa(sm);
  193. wpa_hexdump_key(MSG_DEBUG, "RSN: PMK from PMKSA cache",
  194. sm->pmk, sm->pmk_len);
  195. eapol_sm_notify_cached(sm->eapol);
  196. #ifdef CONFIG_IEEE80211R
  197. sm->xxkey_len = 0;
  198. #endif /* CONFIG_IEEE80211R */
  199. } else if ((sm->key_mgmt == WPA_KEY_MGMT_IEEE8021X ||
  200. sm->key_mgmt == WPA_KEY_MGMT_FT_IEEE8021X) && sm->eapol) {
  201. int res, pmk_len;
  202. pmk_len = PMK_LEN;
  203. res = eapol_sm_get_key(sm->eapol, sm->pmk, PMK_LEN);
  204. if (res) {
  205. /*
  206. * EAP-LEAP is an exception from other EAP methods: it
  207. * uses only 16-byte PMK.
  208. */
  209. res = eapol_sm_get_key(sm->eapol, sm->pmk, 16);
  210. pmk_len = 16;
  211. } else {
  212. #ifdef CONFIG_IEEE80211R
  213. u8 buf[2 * PMK_LEN];
  214. if (eapol_sm_get_key(sm->eapol, buf, 2 * PMK_LEN) == 0)
  215. {
  216. os_memcpy(sm->xxkey, buf + PMK_LEN, PMK_LEN);
  217. sm->xxkey_len = PMK_LEN;
  218. os_memset(buf, 0, sizeof(buf));
  219. }
  220. #endif /* CONFIG_IEEE80211R */
  221. }
  222. if (res == 0) {
  223. wpa_hexdump_key(MSG_DEBUG, "WPA: PMK from EAPOL state "
  224. "machines", sm->pmk, pmk_len);
  225. sm->pmk_len = pmk_len;
  226. pmksa_cache_add(sm->pmksa, sm->pmk, pmk_len, src_addr,
  227. sm->own_addr, sm->network_ctx);
  228. if (!sm->cur_pmksa && pmkid &&
  229. pmksa_cache_get(sm->pmksa, src_addr, pmkid)) {
  230. wpa_printf(MSG_DEBUG, "RSN: the new PMK "
  231. "matches with the PMKID");
  232. abort_cached = 0;
  233. }
  234. } else {
  235. wpa_msg(sm->ctx->ctx, MSG_WARNING,
  236. "WPA: Failed to get master session key from "
  237. "EAPOL state machines");
  238. wpa_msg(sm->ctx->ctx, MSG_WARNING,
  239. "WPA: Key handshake aborted");
  240. if (sm->cur_pmksa) {
  241. wpa_printf(MSG_DEBUG, "RSN: Cancelled PMKSA "
  242. "caching attempt");
  243. sm->cur_pmksa = NULL;
  244. abort_cached = 1;
  245. } else {
  246. return -1;
  247. }
  248. }
  249. }
  250. if (abort_cached && (sm->key_mgmt == WPA_KEY_MGMT_IEEE8021X ||
  251. sm->key_mgmt == WPA_KEY_MGMT_FT_IEEE8021X)) {
  252. /* Send EAPOL-Start to trigger full EAP authentication. */
  253. u8 *buf;
  254. size_t buflen;
  255. wpa_printf(MSG_DEBUG, "RSN: no PMKSA entry found - trigger "
  256. "full EAP authentication");
  257. buf = wpa_sm_alloc_eapol(sm, IEEE802_1X_TYPE_EAPOL_START,
  258. NULL, 0, &buflen, NULL);
  259. if (buf) {
  260. wpa_sm_ether_send(sm, sm->bssid, ETH_P_EAPOL,
  261. buf, buflen);
  262. os_free(buf);
  263. }
  264. return -1;
  265. }
  266. return 0;
  267. }
  268. /**
  269. * wpa_supplicant_send_2_of_4 - Send message 2 of WPA/RSN 4-Way Handshake
  270. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  271. * @dst: Destination address for the frame
  272. * @key: Pointer to the EAPOL-Key frame header
  273. * @ver: Version bits from EAPOL-Key Key Info
  274. * @nonce: Nonce value for the EAPOL-Key frame
  275. * @wpa_ie: WPA/RSN IE
  276. * @wpa_ie_len: Length of the WPA/RSN IE
  277. * @ptk: PTK to use for keyed hash and encryption
  278. * Returns: 0 on success, -1 on failure
  279. */
  280. int wpa_supplicant_send_2_of_4(struct wpa_sm *sm, const unsigned char *dst,
  281. const struct wpa_eapol_key *key,
  282. int ver, const u8 *nonce,
  283. const u8 *wpa_ie, size_t wpa_ie_len,
  284. struct wpa_ptk *ptk)
  285. {
  286. size_t rlen;
  287. struct wpa_eapol_key *reply;
  288. u8 *rbuf;
  289. if (wpa_ie == NULL) {
  290. wpa_printf(MSG_WARNING, "WPA: No wpa_ie set - cannot "
  291. "generate msg 2/4");
  292. return -1;
  293. }
  294. wpa_hexdump(MSG_DEBUG, "WPA: WPA IE for msg 2/4", wpa_ie, wpa_ie_len);
  295. rbuf = wpa_sm_alloc_eapol(sm, IEEE802_1X_TYPE_EAPOL_KEY,
  296. NULL, sizeof(*reply) + wpa_ie_len,
  297. &rlen, (void *) &reply);
  298. if (rbuf == NULL)
  299. return -1;
  300. reply->type = sm->proto == WPA_PROTO_RSN ?
  301. EAPOL_KEY_TYPE_RSN : EAPOL_KEY_TYPE_WPA;
  302. WPA_PUT_BE16(reply->key_info,
  303. ver | WPA_KEY_INFO_KEY_TYPE | WPA_KEY_INFO_MIC);
  304. if (sm->proto == WPA_PROTO_RSN)
  305. WPA_PUT_BE16(reply->key_length, 0);
  306. else
  307. os_memcpy(reply->key_length, key->key_length, 2);
  308. os_memcpy(reply->replay_counter, key->replay_counter,
  309. WPA_REPLAY_COUNTER_LEN);
  310. WPA_PUT_BE16(reply->key_data_length, wpa_ie_len);
  311. os_memcpy(reply + 1, wpa_ie, wpa_ie_len);
  312. os_memcpy(reply->key_nonce, nonce, WPA_NONCE_LEN);
  313. wpa_printf(MSG_DEBUG, "WPA: Sending EAPOL-Key 2/4");
  314. wpa_eapol_key_send(sm, ptk->kck, ver, dst, ETH_P_EAPOL,
  315. rbuf, rlen, reply->key_mic);
  316. return 0;
  317. }
  318. static int wpa_derive_ptk(struct wpa_sm *sm, const unsigned char *src_addr,
  319. const struct wpa_eapol_key *key,
  320. struct wpa_ptk *ptk)
  321. {
  322. #ifdef CONFIG_IEEE80211R
  323. if (sm->key_mgmt == WPA_KEY_MGMT_FT_IEEE8021X ||
  324. sm->key_mgmt == WPA_KEY_MGMT_FT_PSK)
  325. return wpa_derive_ptk_ft(sm, src_addr, key, ptk);
  326. #endif /* CONFIG_IEEE80211R */
  327. wpa_pmk_to_ptk(sm->pmk, sm->pmk_len, "Pairwise key expansion",
  328. sm->own_addr, sm->bssid, sm->snonce, key->key_nonce,
  329. (u8 *) ptk, sizeof(*ptk));
  330. return 0;
  331. }
  332. static void wpa_supplicant_process_1_of_4(struct wpa_sm *sm,
  333. const unsigned char *src_addr,
  334. const struct wpa_eapol_key *key,
  335. u16 ver)
  336. {
  337. struct wpa_eapol_ie_parse ie;
  338. struct wpa_ptk *ptk;
  339. u8 buf[8];
  340. if (wpa_sm_get_network_ctx(sm) == NULL) {
  341. wpa_printf(MSG_WARNING, "WPA: No SSID info found (msg 1 of "
  342. "4).");
  343. return;
  344. }
  345. wpa_sm_set_state(sm, WPA_4WAY_HANDSHAKE);
  346. wpa_printf(MSG_DEBUG, "WPA: RX message 1 of 4-Way Handshake from "
  347. MACSTR " (ver=%d)", MAC2STR(src_addr), ver);
  348. os_memset(&ie, 0, sizeof(ie));
  349. #ifndef CONFIG_NO_WPA2
  350. if (sm->proto == WPA_PROTO_RSN) {
  351. /* RSN: msg 1/4 should contain PMKID for the selected PMK */
  352. const u8 *_buf = (const u8 *) (key + 1);
  353. size_t len = WPA_GET_BE16(key->key_data_length);
  354. wpa_hexdump(MSG_DEBUG, "RSN: msg 1/4 key data", _buf, len);
  355. wpa_supplicant_parse_ies(_buf, len, &ie);
  356. if (ie.pmkid) {
  357. wpa_hexdump(MSG_DEBUG, "RSN: PMKID from "
  358. "Authenticator", ie.pmkid, PMKID_LEN);
  359. }
  360. }
  361. #endif /* CONFIG_NO_WPA2 */
  362. if (wpa_supplicant_get_pmk(sm, src_addr, ie.pmkid))
  363. return;
  364. if (sm->renew_snonce) {
  365. if (os_get_random(sm->snonce, WPA_NONCE_LEN)) {
  366. wpa_msg(sm->ctx->ctx, MSG_WARNING,
  367. "WPA: Failed to get random data for SNonce");
  368. return;
  369. }
  370. sm->renew_snonce = 0;
  371. wpa_hexdump(MSG_DEBUG, "WPA: Renewed SNonce",
  372. sm->snonce, WPA_NONCE_LEN);
  373. }
  374. /* Calculate PTK which will be stored as a temporary PTK until it has
  375. * been verified when processing message 3/4. */
  376. ptk = &sm->tptk;
  377. wpa_derive_ptk(sm, src_addr, key, ptk);
  378. /* Supplicant: swap tx/rx Mic keys */
  379. os_memcpy(buf, ptk->u.auth.tx_mic_key, 8);
  380. os_memcpy(ptk->u.auth.tx_mic_key, ptk->u.auth.rx_mic_key, 8);
  381. os_memcpy(ptk->u.auth.rx_mic_key, buf, 8);
  382. sm->tptk_set = 1;
  383. if (wpa_supplicant_send_2_of_4(sm, sm->bssid, key, ver, sm->snonce,
  384. sm->assoc_wpa_ie, sm->assoc_wpa_ie_len,
  385. ptk))
  386. return;
  387. os_memcpy(sm->anonce, key->key_nonce, WPA_NONCE_LEN);
  388. }
  389. static void wpa_sm_start_preauth(void *eloop_ctx, void *timeout_ctx)
  390. {
  391. struct wpa_sm *sm = eloop_ctx;
  392. rsn_preauth_candidate_process(sm);
  393. }
  394. static void wpa_supplicant_key_neg_complete(struct wpa_sm *sm,
  395. const u8 *addr, int secure)
  396. {
  397. wpa_msg(sm->ctx->ctx, MSG_INFO, "WPA: Key negotiation completed with "
  398. MACSTR " [PTK=%s GTK=%s]", MAC2STR(addr),
  399. wpa_cipher_txt(sm->pairwise_cipher),
  400. wpa_cipher_txt(sm->group_cipher));
  401. wpa_sm_cancel_auth_timeout(sm);
  402. wpa_sm_set_state(sm, WPA_COMPLETED);
  403. if (secure) {
  404. wpa_sm_mlme_setprotection(
  405. sm, addr, MLME_SETPROTECTION_PROTECT_TYPE_RX_TX,
  406. MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
  407. eapol_sm_notify_portValid(sm->eapol, TRUE);
  408. if (sm->key_mgmt == WPA_KEY_MGMT_PSK ||
  409. sm->key_mgmt == WPA_KEY_MGMT_FT_PSK)
  410. eapol_sm_notify_eap_success(sm->eapol, TRUE);
  411. /*
  412. * Start preauthentication after a short wait to avoid a
  413. * possible race condition between the data receive and key
  414. * configuration after the 4-Way Handshake. This increases the
  415. * likelyhood of the first preauth EAPOL-Start frame getting to
  416. * the target AP.
  417. */
  418. eloop_register_timeout(1, 0, wpa_sm_start_preauth, sm, NULL);
  419. }
  420. if (sm->cur_pmksa && sm->cur_pmksa->opportunistic) {
  421. wpa_printf(MSG_DEBUG, "RSN: Authenticator accepted "
  422. "opportunistic PMKSA entry - marking it valid");
  423. sm->cur_pmksa->opportunistic = 0;
  424. }
  425. #ifdef CONFIG_IEEE80211R
  426. if (sm->key_mgmt == WPA_KEY_MGMT_FT_IEEE8021X ||
  427. sm->key_mgmt == WPA_KEY_MGMT_FT_PSK) {
  428. /* Prepare for the next transition */
  429. wpa_ft_prepare_auth_request(sm);
  430. }
  431. #endif /* CONFIG_IEEE80211R */
  432. }
  433. static int wpa_supplicant_install_ptk(struct wpa_sm *sm,
  434. const struct wpa_eapol_key *key)
  435. {
  436. int keylen, rsclen;
  437. wpa_alg alg;
  438. const u8 *key_rsc;
  439. u8 null_rsc[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
  440. wpa_printf(MSG_DEBUG, "WPA: Installing PTK to the driver.");
  441. switch (sm->pairwise_cipher) {
  442. case WPA_CIPHER_CCMP:
  443. alg = WPA_ALG_CCMP;
  444. keylen = 16;
  445. rsclen = 6;
  446. break;
  447. case WPA_CIPHER_TKIP:
  448. alg = WPA_ALG_TKIP;
  449. keylen = 32;
  450. rsclen = 6;
  451. break;
  452. case WPA_CIPHER_NONE:
  453. wpa_printf(MSG_DEBUG, "WPA: Pairwise Cipher Suite: "
  454. "NONE - do not use pairwise keys");
  455. return 0;
  456. default:
  457. wpa_printf(MSG_WARNING, "WPA: Unsupported pairwise cipher %d",
  458. sm->pairwise_cipher);
  459. return -1;
  460. }
  461. if (sm->proto == WPA_PROTO_RSN) {
  462. key_rsc = null_rsc;
  463. } else {
  464. key_rsc = key->key_rsc;
  465. wpa_hexdump(MSG_DEBUG, "WPA: RSC", key_rsc, rsclen);
  466. }
  467. if (wpa_sm_set_key(sm, alg, sm->bssid, 0, 1, key_rsc, rsclen,
  468. (u8 *) sm->ptk.tk1, keylen) < 0) {
  469. wpa_printf(MSG_WARNING, "WPA: Failed to set PTK to the "
  470. "driver.");
  471. return -1;
  472. }
  473. return 0;
  474. }
  475. static int wpa_supplicant_check_group_cipher(int group_cipher,
  476. int keylen, int maxkeylen,
  477. int *key_rsc_len, wpa_alg *alg)
  478. {
  479. int ret = 0;
  480. switch (group_cipher) {
  481. case WPA_CIPHER_CCMP:
  482. if (keylen != 16 || maxkeylen < 16) {
  483. ret = -1;
  484. break;
  485. }
  486. *key_rsc_len = 6;
  487. *alg = WPA_ALG_CCMP;
  488. break;
  489. case WPA_CIPHER_TKIP:
  490. if (keylen != 32 || maxkeylen < 32) {
  491. ret = -1;
  492. break;
  493. }
  494. *key_rsc_len = 6;
  495. *alg = WPA_ALG_TKIP;
  496. break;
  497. case WPA_CIPHER_WEP104:
  498. if (keylen != 13 || maxkeylen < 13) {
  499. ret = -1;
  500. break;
  501. }
  502. *key_rsc_len = 0;
  503. *alg = WPA_ALG_WEP;
  504. break;
  505. case WPA_CIPHER_WEP40:
  506. if (keylen != 5 || maxkeylen < 5) {
  507. ret = -1;
  508. break;
  509. }
  510. *key_rsc_len = 0;
  511. *alg = WPA_ALG_WEP;
  512. break;
  513. default:
  514. wpa_printf(MSG_WARNING, "WPA: Unsupported Group Cipher %d",
  515. group_cipher);
  516. return -1;
  517. }
  518. if (ret < 0 ) {
  519. wpa_printf(MSG_WARNING, "WPA: Unsupported %s Group Cipher key "
  520. "length %d (%d).",
  521. wpa_cipher_txt(group_cipher), keylen, maxkeylen);
  522. }
  523. return ret;
  524. }
  525. struct wpa_gtk_data {
  526. wpa_alg alg;
  527. int tx, key_rsc_len, keyidx;
  528. u8 gtk[32];
  529. int gtk_len;
  530. };
  531. static int wpa_supplicant_install_gtk(struct wpa_sm *sm,
  532. const struct wpa_gtk_data *gd,
  533. const u8 *key_rsc)
  534. {
  535. const u8 *_gtk = gd->gtk;
  536. u8 gtk_buf[32];
  537. wpa_hexdump_key(MSG_DEBUG, "WPA: Group Key", gd->gtk, gd->gtk_len);
  538. wpa_printf(MSG_DEBUG, "WPA: Installing GTK to the driver "
  539. "(keyidx=%d tx=%d len=%d).", gd->keyidx, gd->tx,
  540. gd->gtk_len);
  541. wpa_hexdump(MSG_DEBUG, "WPA: RSC", key_rsc, gd->key_rsc_len);
  542. if (sm->group_cipher == WPA_CIPHER_TKIP) {
  543. /* Swap Tx/Rx keys for Michael MIC */
  544. os_memcpy(gtk_buf, gd->gtk, 16);
  545. os_memcpy(gtk_buf + 16, gd->gtk + 24, 8);
  546. os_memcpy(gtk_buf + 24, gd->gtk + 16, 8);
  547. _gtk = gtk_buf;
  548. }
  549. if (sm->pairwise_cipher == WPA_CIPHER_NONE) {
  550. if (wpa_sm_set_key(sm, gd->alg,
  551. (u8 *) "\xff\xff\xff\xff\xff\xff",
  552. gd->keyidx, 1, key_rsc, gd->key_rsc_len,
  553. _gtk, gd->gtk_len) < 0) {
  554. wpa_printf(MSG_WARNING, "WPA: Failed to set "
  555. "GTK to the driver (Group only).");
  556. return -1;
  557. }
  558. } else if (wpa_sm_set_key(sm, gd->alg,
  559. (u8 *) "\xff\xff\xff\xff\xff\xff",
  560. gd->keyidx, gd->tx, key_rsc, gd->key_rsc_len,
  561. _gtk, gd->gtk_len) < 0) {
  562. wpa_printf(MSG_WARNING, "WPA: Failed to set GTK to "
  563. "the driver.");
  564. return -1;
  565. }
  566. return 0;
  567. }
  568. static int wpa_supplicant_gtk_tx_bit_workaround(const struct wpa_sm *sm,
  569. int tx)
  570. {
  571. if (tx && sm->pairwise_cipher != WPA_CIPHER_NONE) {
  572. /* Ignore Tx bit for GTK if a pairwise key is used. One AP
  573. * seemed to set this bit (incorrectly, since Tx is only when
  574. * doing Group Key only APs) and without this workaround, the
  575. * data connection does not work because wpa_supplicant
  576. * configured non-zero keyidx to be used for unicast. */
  577. wpa_printf(MSG_INFO, "WPA: Tx bit set for GTK, but pairwise "
  578. "keys are used - ignore Tx bit");
  579. return 0;
  580. }
  581. return tx;
  582. }
  583. static int wpa_supplicant_pairwise_gtk(struct wpa_sm *sm,
  584. const struct wpa_eapol_key *key,
  585. const u8 *gtk, size_t gtk_len,
  586. int key_info)
  587. {
  588. #ifndef CONFIG_NO_WPA2
  589. struct wpa_gtk_data gd;
  590. /*
  591. * IEEE Std 802.11i-2004 - 8.5.2 EAPOL-Key frames - Figure 43x
  592. * GTK KDE format:
  593. * KeyID[bits 0-1], Tx [bit 2], Reserved [bits 3-7]
  594. * Reserved [bits 0-7]
  595. * GTK
  596. */
  597. os_memset(&gd, 0, sizeof(gd));
  598. wpa_hexdump_key(MSG_DEBUG, "RSN: received GTK in pairwise handshake",
  599. gtk, gtk_len);
  600. if (gtk_len < 2 || gtk_len - 2 > sizeof(gd.gtk))
  601. return -1;
  602. gd.keyidx = gtk[0] & 0x3;
  603. gd.tx = wpa_supplicant_gtk_tx_bit_workaround(sm,
  604. !!(gtk[0] & BIT(2)));
  605. gtk += 2;
  606. gtk_len -= 2;
  607. os_memcpy(gd.gtk, gtk, gtk_len);
  608. gd.gtk_len = gtk_len;
  609. if (wpa_supplicant_check_group_cipher(sm->group_cipher,
  610. gtk_len, gtk_len,
  611. &gd.key_rsc_len, &gd.alg) ||
  612. wpa_supplicant_install_gtk(sm, &gd, key->key_rsc)) {
  613. wpa_printf(MSG_DEBUG, "RSN: Failed to install GTK");
  614. return -1;
  615. }
  616. wpa_supplicant_key_neg_complete(sm, sm->bssid,
  617. key_info & WPA_KEY_INFO_SECURE);
  618. return 0;
  619. #else /* CONFIG_NO_WPA2 */
  620. return -1;
  621. #endif /* CONFIG_NO_WPA2 */
  622. }
  623. static int ieee80211w_set_keys(struct wpa_sm *sm,
  624. struct wpa_eapol_ie_parse *ie)
  625. {
  626. #ifdef CONFIG_IEEE80211W
  627. if (sm->mgmt_group_cipher != WPA_CIPHER_AES_128_CMAC)
  628. return 0;
  629. if (ie->igtk) {
  630. const struct wpa_igtk_kde *igtk;
  631. u16 keyidx;
  632. if (ie->igtk_len != sizeof(*igtk))
  633. return -1;
  634. igtk = (const struct wpa_igtk_kde *) ie->igtk;
  635. keyidx = WPA_GET_LE16(igtk->keyid);
  636. wpa_printf(MSG_DEBUG, "WPA: IGTK keyid %d "
  637. "pn %02x%02x%02x%02x%02x%02x",
  638. keyidx, MAC2STR(igtk->pn));
  639. wpa_hexdump_key(MSG_DEBUG, "WPA: IGTK",
  640. igtk->igtk, WPA_IGTK_LEN);
  641. if (keyidx > 4095) {
  642. wpa_printf(MSG_WARNING, "WPA: Invalid IGTK KeyID %d",
  643. keyidx);
  644. return -1;
  645. }
  646. if (wpa_sm_set_key(sm, WPA_ALG_IGTK,
  647. (u8 *) "\xff\xff\xff\xff\xff\xff",
  648. keyidx, 0, igtk->pn, sizeof(igtk->pn),
  649. igtk->igtk, WPA_IGTK_LEN) < 0) {
  650. wpa_printf(MSG_WARNING, "WPA: Failed to configure IGTK"
  651. " to the driver");
  652. return -1;
  653. }
  654. }
  655. return 0;
  656. #else /* CONFIG_IEEE80211W */
  657. return 0;
  658. #endif /* CONFIG_IEEE80211W */
  659. }
  660. static void wpa_report_ie_mismatch(struct wpa_sm *sm,
  661. const char *reason, const u8 *src_addr,
  662. const u8 *wpa_ie, size_t wpa_ie_len,
  663. const u8 *rsn_ie, size_t rsn_ie_len)
  664. {
  665. wpa_msg(sm->ctx->ctx, MSG_WARNING, "WPA: %s (src=" MACSTR ")",
  666. reason, MAC2STR(src_addr));
  667. if (sm->ap_wpa_ie) {
  668. wpa_hexdump(MSG_INFO, "WPA: WPA IE in Beacon/ProbeResp",
  669. sm->ap_wpa_ie, sm->ap_wpa_ie_len);
  670. }
  671. if (wpa_ie) {
  672. if (!sm->ap_wpa_ie) {
  673. wpa_printf(MSG_INFO, "WPA: No WPA IE in "
  674. "Beacon/ProbeResp");
  675. }
  676. wpa_hexdump(MSG_INFO, "WPA: WPA IE in 3/4 msg",
  677. wpa_ie, wpa_ie_len);
  678. }
  679. if (sm->ap_rsn_ie) {
  680. wpa_hexdump(MSG_INFO, "WPA: RSN IE in Beacon/ProbeResp",
  681. sm->ap_rsn_ie, sm->ap_rsn_ie_len);
  682. }
  683. if (rsn_ie) {
  684. if (!sm->ap_rsn_ie) {
  685. wpa_printf(MSG_INFO, "WPA: No RSN IE in "
  686. "Beacon/ProbeResp");
  687. }
  688. wpa_hexdump(MSG_INFO, "WPA: RSN IE in 3/4 msg",
  689. rsn_ie, rsn_ie_len);
  690. }
  691. wpa_sm_disassociate(sm, WLAN_REASON_IE_IN_4WAY_DIFFERS);
  692. }
  693. static int wpa_supplicant_validate_ie(struct wpa_sm *sm,
  694. const unsigned char *src_addr,
  695. struct wpa_eapol_ie_parse *ie)
  696. {
  697. if (sm->ap_wpa_ie == NULL && sm->ap_rsn_ie == NULL) {
  698. wpa_printf(MSG_DEBUG, "WPA: No WPA/RSN IE for this AP known. "
  699. "Trying to get from scan results");
  700. if (wpa_sm_get_beacon_ie(sm) < 0) {
  701. wpa_printf(MSG_WARNING, "WPA: Could not find AP from "
  702. "the scan results");
  703. } else {
  704. wpa_printf(MSG_DEBUG, "WPA: Found the current AP from "
  705. "updated scan results");
  706. }
  707. }
  708. if (ie->wpa_ie == NULL && ie->rsn_ie == NULL &&
  709. (sm->ap_wpa_ie || sm->ap_rsn_ie)) {
  710. wpa_report_ie_mismatch(sm, "IE in 3/4 msg does not match "
  711. "with IE in Beacon/ProbeResp (no IE?)",
  712. src_addr, ie->wpa_ie, ie->wpa_ie_len,
  713. ie->rsn_ie, ie->rsn_ie_len);
  714. return -1;
  715. }
  716. if ((ie->wpa_ie && sm->ap_wpa_ie &&
  717. (ie->wpa_ie_len != sm->ap_wpa_ie_len ||
  718. os_memcmp(ie->wpa_ie, sm->ap_wpa_ie, ie->wpa_ie_len) != 0)) ||
  719. (ie->rsn_ie && sm->ap_rsn_ie &&
  720. (ie->rsn_ie_len != sm->ap_rsn_ie_len ||
  721. os_memcmp(ie->rsn_ie, sm->ap_rsn_ie, ie->rsn_ie_len) != 0))) {
  722. wpa_report_ie_mismatch(sm, "IE in 3/4 msg does not match "
  723. "with IE in Beacon/ProbeResp",
  724. src_addr, ie->wpa_ie, ie->wpa_ie_len,
  725. ie->rsn_ie, ie->rsn_ie_len);
  726. return -1;
  727. }
  728. if (sm->proto == WPA_PROTO_WPA &&
  729. ie->rsn_ie && sm->ap_rsn_ie == NULL && sm->rsn_enabled) {
  730. wpa_report_ie_mismatch(sm, "Possible downgrade attack "
  731. "detected - RSN was enabled and RSN IE "
  732. "was in msg 3/4, but not in "
  733. "Beacon/ProbeResp",
  734. src_addr, ie->wpa_ie, ie->wpa_ie_len,
  735. ie->rsn_ie, ie->rsn_ie_len);
  736. return -1;
  737. }
  738. #ifdef CONFIG_IEEE80211R
  739. if (sm->key_mgmt == WPA_KEY_MGMT_FT_IEEE8021X ||
  740. sm->key_mgmt == WPA_KEY_MGMT_FT_PSK) {
  741. struct rsn_mdie *mdie;
  742. /* TODO: verify that full MDIE matches with the one from scan
  743. * results, not only mobility domain */
  744. mdie = (struct rsn_mdie *) (ie->mdie + 2);
  745. if (ie->mdie == NULL || ie->mdie_len < 2 + sizeof(*mdie) ||
  746. os_memcmp(mdie->mobility_domain, sm->mobility_domain,
  747. MOBILITY_DOMAIN_ID_LEN) != 0) {
  748. wpa_printf(MSG_DEBUG, "FT: MDIE in msg 3/4 did not "
  749. "match with the current mobility domain");
  750. return -1;
  751. }
  752. }
  753. #endif /* CONFIG_IEEE80211R */
  754. return 0;
  755. }
  756. /**
  757. * wpa_supplicant_send_4_of_4 - Send message 4 of WPA/RSN 4-Way Handshake
  758. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  759. * @dst: Destination address for the frame
  760. * @key: Pointer to the EAPOL-Key frame header
  761. * @ver: Version bits from EAPOL-Key Key Info
  762. * @key_info: Key Info
  763. * @kde: KDEs to include the EAPOL-Key frame
  764. * @kde_len: Length of KDEs
  765. * @ptk: PTK to use for keyed hash and encryption
  766. * Returns: 0 on success, -1 on failure
  767. */
  768. int wpa_supplicant_send_4_of_4(struct wpa_sm *sm, const unsigned char *dst,
  769. const struct wpa_eapol_key *key,
  770. u16 ver, u16 key_info,
  771. const u8 *kde, size_t kde_len,
  772. struct wpa_ptk *ptk)
  773. {
  774. size_t rlen;
  775. struct wpa_eapol_key *reply;
  776. u8 *rbuf;
  777. if (kde)
  778. wpa_hexdump(MSG_DEBUG, "WPA: KDE for msg 4/4", kde, kde_len);
  779. rbuf = wpa_sm_alloc_eapol(sm, IEEE802_1X_TYPE_EAPOL_KEY, NULL,
  780. sizeof(*reply) + kde_len,
  781. &rlen, (void *) &reply);
  782. if (rbuf == NULL)
  783. return -1;
  784. reply->type = sm->proto == WPA_PROTO_RSN ?
  785. EAPOL_KEY_TYPE_RSN : EAPOL_KEY_TYPE_WPA;
  786. key_info &= WPA_KEY_INFO_SECURE;
  787. key_info |= ver | WPA_KEY_INFO_KEY_TYPE | WPA_KEY_INFO_MIC;
  788. WPA_PUT_BE16(reply->key_info, key_info);
  789. if (sm->proto == WPA_PROTO_RSN)
  790. WPA_PUT_BE16(reply->key_length, 0);
  791. else
  792. os_memcpy(reply->key_length, key->key_length, 2);
  793. os_memcpy(reply->replay_counter, key->replay_counter,
  794. WPA_REPLAY_COUNTER_LEN);
  795. WPA_PUT_BE16(reply->key_data_length, kde_len);
  796. if (kde)
  797. os_memcpy(reply + 1, kde, kde_len);
  798. wpa_printf(MSG_DEBUG, "WPA: Sending EAPOL-Key 4/4");
  799. wpa_eapol_key_send(sm, ptk->kck, ver, dst, ETH_P_EAPOL,
  800. rbuf, rlen, reply->key_mic);
  801. return 0;
  802. }
  803. static void wpa_supplicant_process_3_of_4(struct wpa_sm *sm,
  804. const struct wpa_eapol_key *key,
  805. u16 ver)
  806. {
  807. u16 key_info, keylen, len;
  808. const u8 *pos;
  809. struct wpa_eapol_ie_parse ie;
  810. wpa_sm_set_state(sm, WPA_4WAY_HANDSHAKE);
  811. wpa_printf(MSG_DEBUG, "WPA: RX message 3 of 4-Way Handshake from "
  812. MACSTR " (ver=%d)", MAC2STR(sm->bssid), ver);
  813. key_info = WPA_GET_BE16(key->key_info);
  814. pos = (const u8 *) (key + 1);
  815. len = WPA_GET_BE16(key->key_data_length);
  816. wpa_hexdump(MSG_DEBUG, "WPA: IE KeyData", pos, len);
  817. wpa_supplicant_parse_ies(pos, len, &ie);
  818. if (ie.gtk && !(key_info & WPA_KEY_INFO_ENCR_KEY_DATA)) {
  819. wpa_printf(MSG_WARNING, "WPA: GTK IE in unencrypted key data");
  820. return;
  821. }
  822. #ifdef CONFIG_IEEE80211W
  823. if (ie.igtk && !(key_info & WPA_KEY_INFO_ENCR_KEY_DATA)) {
  824. wpa_printf(MSG_WARNING, "WPA: IGTK KDE in unencrypted key "
  825. "data");
  826. return;
  827. }
  828. if (ie.igtk && ie.igtk_len != sizeof(struct wpa_igtk_kde)) {
  829. wpa_printf(MSG_WARNING, "WPA: Invalid IGTK KDE length %lu",
  830. (unsigned long) ie.igtk_len);
  831. return;
  832. }
  833. #endif /* CONFIG_IEEE80211W */
  834. if (wpa_supplicant_validate_ie(sm, sm->bssid, &ie) < 0)
  835. return;
  836. if (os_memcmp(sm->anonce, key->key_nonce, WPA_NONCE_LEN) != 0) {
  837. wpa_printf(MSG_WARNING, "WPA: ANonce from message 1 of 4-Way "
  838. "Handshake differs from 3 of 4-Way Handshake - drop"
  839. " packet (src=" MACSTR ")", MAC2STR(sm->bssid));
  840. return;
  841. }
  842. keylen = WPA_GET_BE16(key->key_length);
  843. switch (sm->pairwise_cipher) {
  844. case WPA_CIPHER_CCMP:
  845. if (keylen != 16) {
  846. wpa_printf(MSG_WARNING, "WPA: Invalid CCMP key length "
  847. "%d (src=" MACSTR ")",
  848. keylen, MAC2STR(sm->bssid));
  849. return;
  850. }
  851. break;
  852. case WPA_CIPHER_TKIP:
  853. if (keylen != 32) {
  854. wpa_printf(MSG_WARNING, "WPA: Invalid TKIP key length "
  855. "%d (src=" MACSTR ")",
  856. keylen, MAC2STR(sm->bssid));
  857. return;
  858. }
  859. break;
  860. }
  861. if (wpa_supplicant_send_4_of_4(sm, sm->bssid, key, ver, key_info,
  862. NULL, 0, &sm->ptk))
  863. return;
  864. /* SNonce was successfully used in msg 3/4, so mark it to be renewed
  865. * for the next 4-Way Handshake. If msg 3 is received again, the old
  866. * SNonce will still be used to avoid changing PTK. */
  867. sm->renew_snonce = 1;
  868. if (key_info & WPA_KEY_INFO_INSTALL) {
  869. wpa_supplicant_install_ptk(sm, key);
  870. }
  871. if (key_info & WPA_KEY_INFO_SECURE) {
  872. wpa_sm_mlme_setprotection(
  873. sm, sm->bssid, MLME_SETPROTECTION_PROTECT_TYPE_RX,
  874. MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
  875. eapol_sm_notify_portValid(sm->eapol, TRUE);
  876. }
  877. wpa_sm_set_state(sm, WPA_GROUP_HANDSHAKE);
  878. if (ie.gtk &&
  879. wpa_supplicant_pairwise_gtk(sm, key,
  880. ie.gtk, ie.gtk_len, key_info) < 0) {
  881. wpa_printf(MSG_INFO, "RSN: Failed to configure GTK");
  882. }
  883. if (ieee80211w_set_keys(sm, &ie) < 0)
  884. wpa_printf(MSG_INFO, "RSN: Failed to configure IGTK");
  885. }
  886. static int wpa_supplicant_process_1_of_2_rsn(struct wpa_sm *sm,
  887. const u8 *keydata,
  888. size_t keydatalen,
  889. u16 key_info,
  890. struct wpa_gtk_data *gd)
  891. {
  892. int maxkeylen;
  893. struct wpa_eapol_ie_parse ie;
  894. wpa_hexdump(MSG_DEBUG, "RSN: msg 1/2 key data", keydata, keydatalen);
  895. wpa_supplicant_parse_ies(keydata, keydatalen, &ie);
  896. if (ie.gtk && !(key_info & WPA_KEY_INFO_ENCR_KEY_DATA)) {
  897. wpa_printf(MSG_WARNING, "WPA: GTK IE in unencrypted key data");
  898. return -1;
  899. }
  900. if (ie.gtk == NULL) {
  901. wpa_printf(MSG_INFO, "WPA: No GTK IE in Group Key msg 1/2");
  902. return -1;
  903. }
  904. maxkeylen = gd->gtk_len = ie.gtk_len - 2;
  905. if (wpa_supplicant_check_group_cipher(sm->group_cipher,
  906. gd->gtk_len, maxkeylen,
  907. &gd->key_rsc_len, &gd->alg))
  908. return -1;
  909. wpa_hexdump(MSG_DEBUG, "RSN: received GTK in group key handshake",
  910. ie.gtk, ie.gtk_len);
  911. gd->keyidx = ie.gtk[0] & 0x3;
  912. gd->tx = wpa_supplicant_gtk_tx_bit_workaround(sm,
  913. !!(ie.gtk[0] & BIT(2)));
  914. if (ie.gtk_len - 2 > sizeof(gd->gtk)) {
  915. wpa_printf(MSG_INFO, "RSN: Too long GTK in GTK IE "
  916. "(len=%lu)", (unsigned long) ie.gtk_len - 2);
  917. return -1;
  918. }
  919. os_memcpy(gd->gtk, ie.gtk + 2, ie.gtk_len - 2);
  920. if (ieee80211w_set_keys(sm, &ie) < 0)
  921. wpa_printf(MSG_INFO, "RSN: Failed to configure IGTK");
  922. return 0;
  923. }
  924. static int wpa_supplicant_process_1_of_2_wpa(struct wpa_sm *sm,
  925. const struct wpa_eapol_key *key,
  926. size_t keydatalen, int key_info,
  927. size_t extra_len, u16 ver,
  928. struct wpa_gtk_data *gd)
  929. {
  930. size_t maxkeylen;
  931. u8 ek[32];
  932. gd->gtk_len = WPA_GET_BE16(key->key_length);
  933. maxkeylen = keydatalen;
  934. if (keydatalen > extra_len) {
  935. wpa_printf(MSG_INFO, "WPA: Truncated EAPOL-Key packet:"
  936. " key_data_length=%lu > extra_len=%lu",
  937. (unsigned long) keydatalen,
  938. (unsigned long) extra_len);
  939. return -1;
  940. }
  941. if (ver == WPA_KEY_INFO_TYPE_HMAC_SHA1_AES) {
  942. if (maxkeylen < 8) {
  943. wpa_printf(MSG_INFO, "WPA: Too short maxkeylen (%lu)",
  944. (unsigned long) maxkeylen);
  945. return -1;
  946. }
  947. maxkeylen -= 8;
  948. }
  949. if (wpa_supplicant_check_group_cipher(sm->group_cipher,
  950. gd->gtk_len, maxkeylen,
  951. &gd->key_rsc_len, &gd->alg))
  952. return -1;
  953. gd->keyidx = (key_info & WPA_KEY_INFO_KEY_INDEX_MASK) >>
  954. WPA_KEY_INFO_KEY_INDEX_SHIFT;
  955. if (ver == WPA_KEY_INFO_TYPE_HMAC_MD5_RC4) {
  956. os_memcpy(ek, key->key_iv, 16);
  957. os_memcpy(ek + 16, sm->ptk.kek, 16);
  958. if (keydatalen > sizeof(gd->gtk)) {
  959. wpa_printf(MSG_WARNING, "WPA: RC4 key data "
  960. "too long (%lu)",
  961. (unsigned long) keydatalen);
  962. return -1;
  963. }
  964. os_memcpy(gd->gtk, key + 1, keydatalen);
  965. rc4_skip(ek, 32, 256, gd->gtk, keydatalen);
  966. } else if (ver == WPA_KEY_INFO_TYPE_HMAC_SHA1_AES) {
  967. if (keydatalen % 8) {
  968. wpa_printf(MSG_WARNING, "WPA: Unsupported AES-WRAP "
  969. "len %lu", (unsigned long) keydatalen);
  970. return -1;
  971. }
  972. if (maxkeylen > sizeof(gd->gtk)) {
  973. wpa_printf(MSG_WARNING, "WPA: AES-WRAP key data "
  974. "too long (keydatalen=%lu maxkeylen=%lu)",
  975. (unsigned long) keydatalen,
  976. (unsigned long) maxkeylen);
  977. return -1;
  978. }
  979. if (aes_unwrap(sm->ptk.kek, maxkeylen / 8,
  980. (const u8 *) (key + 1), gd->gtk)) {
  981. wpa_printf(MSG_WARNING, "WPA: AES unwrap "
  982. "failed - could not decrypt GTK");
  983. return -1;
  984. }
  985. } else {
  986. wpa_printf(MSG_WARNING, "WPA: Unsupported key_info type %d",
  987. ver);
  988. return -1;
  989. }
  990. gd->tx = wpa_supplicant_gtk_tx_bit_workaround(
  991. sm, !!(key_info & WPA_KEY_INFO_TXRX));
  992. return 0;
  993. }
  994. static int wpa_supplicant_send_2_of_2(struct wpa_sm *sm,
  995. const struct wpa_eapol_key *key,
  996. int ver, u16 key_info)
  997. {
  998. size_t rlen;
  999. struct wpa_eapol_key *reply;
  1000. u8 *rbuf;
  1001. rbuf = wpa_sm_alloc_eapol(sm, IEEE802_1X_TYPE_EAPOL_KEY, NULL,
  1002. sizeof(*reply), &rlen, (void *) &reply);
  1003. if (rbuf == NULL)
  1004. return -1;
  1005. reply->type = sm->proto == WPA_PROTO_RSN ?
  1006. EAPOL_KEY_TYPE_RSN : EAPOL_KEY_TYPE_WPA;
  1007. key_info &= WPA_KEY_INFO_KEY_INDEX_MASK;
  1008. key_info |= ver | WPA_KEY_INFO_MIC | WPA_KEY_INFO_SECURE;
  1009. WPA_PUT_BE16(reply->key_info, key_info);
  1010. if (sm->proto == WPA_PROTO_RSN)
  1011. WPA_PUT_BE16(reply->key_length, 0);
  1012. else
  1013. os_memcpy(reply->key_length, key->key_length, 2);
  1014. os_memcpy(reply->replay_counter, key->replay_counter,
  1015. WPA_REPLAY_COUNTER_LEN);
  1016. WPA_PUT_BE16(reply->key_data_length, 0);
  1017. wpa_printf(MSG_DEBUG, "WPA: Sending EAPOL-Key 2/2");
  1018. wpa_eapol_key_send(sm, sm->ptk.kck, ver, sm->bssid, ETH_P_EAPOL,
  1019. rbuf, rlen, reply->key_mic);
  1020. return 0;
  1021. }
  1022. static void wpa_supplicant_process_1_of_2(struct wpa_sm *sm,
  1023. const unsigned char *src_addr,
  1024. const struct wpa_eapol_key *key,
  1025. int extra_len, u16 ver)
  1026. {
  1027. u16 key_info, keydatalen;
  1028. int rekey, ret;
  1029. struct wpa_gtk_data gd;
  1030. os_memset(&gd, 0, sizeof(gd));
  1031. rekey = wpa_sm_get_state(sm) == WPA_COMPLETED;
  1032. wpa_printf(MSG_DEBUG, "WPA: RX message 1 of Group Key Handshake from "
  1033. MACSTR " (ver=%d)", MAC2STR(src_addr), ver);
  1034. key_info = WPA_GET_BE16(key->key_info);
  1035. keydatalen = WPA_GET_BE16(key->key_data_length);
  1036. if (sm->proto == WPA_PROTO_RSN) {
  1037. ret = wpa_supplicant_process_1_of_2_rsn(sm,
  1038. (const u8 *) (key + 1),
  1039. keydatalen, key_info,
  1040. &gd);
  1041. } else {
  1042. ret = wpa_supplicant_process_1_of_2_wpa(sm, key, keydatalen,
  1043. key_info, extra_len,
  1044. ver, &gd);
  1045. }
  1046. wpa_sm_set_state(sm, WPA_GROUP_HANDSHAKE);
  1047. if (ret)
  1048. return;
  1049. if (wpa_supplicant_install_gtk(sm, &gd, key->key_rsc) ||
  1050. wpa_supplicant_send_2_of_2(sm, key, ver, key_info))
  1051. return;
  1052. if (rekey) {
  1053. wpa_msg(sm->ctx->ctx, MSG_INFO, "WPA: Group rekeying "
  1054. "completed with " MACSTR " [GTK=%s]",
  1055. MAC2STR(sm->bssid), wpa_cipher_txt(sm->group_cipher));
  1056. wpa_sm_cancel_auth_timeout(sm);
  1057. wpa_sm_set_state(sm, WPA_COMPLETED);
  1058. } else {
  1059. wpa_supplicant_key_neg_complete(sm, sm->bssid,
  1060. key_info &
  1061. WPA_KEY_INFO_SECURE);
  1062. }
  1063. }
  1064. static int wpa_supplicant_verify_eapol_key_mic(struct wpa_sm *sm,
  1065. struct wpa_eapol_key *key,
  1066. u16 ver,
  1067. const u8 *buf, size_t len)
  1068. {
  1069. u8 mic[16];
  1070. int ok = 0;
  1071. os_memcpy(mic, key->key_mic, 16);
  1072. if (sm->tptk_set) {
  1073. os_memset(key->key_mic, 0, 16);
  1074. wpa_eapol_key_mic(sm->tptk.kck, ver, buf, len,
  1075. key->key_mic);
  1076. if (os_memcmp(mic, key->key_mic, 16) != 0) {
  1077. wpa_printf(MSG_WARNING, "WPA: Invalid EAPOL-Key MIC "
  1078. "when using TPTK - ignoring TPTK");
  1079. } else {
  1080. ok = 1;
  1081. sm->tptk_set = 0;
  1082. sm->ptk_set = 1;
  1083. os_memcpy(&sm->ptk, &sm->tptk, sizeof(sm->ptk));
  1084. }
  1085. }
  1086. if (!ok && sm->ptk_set) {
  1087. os_memset(key->key_mic, 0, 16);
  1088. wpa_eapol_key_mic(sm->ptk.kck, ver, buf, len,
  1089. key->key_mic);
  1090. if (os_memcmp(mic, key->key_mic, 16) != 0) {
  1091. wpa_printf(MSG_WARNING, "WPA: Invalid EAPOL-Key MIC "
  1092. "- dropping packet");
  1093. return -1;
  1094. }
  1095. ok = 1;
  1096. }
  1097. if (!ok) {
  1098. wpa_printf(MSG_WARNING, "WPA: Could not verify EAPOL-Key MIC "
  1099. "- dropping packet");
  1100. return -1;
  1101. }
  1102. os_memcpy(sm->rx_replay_counter, key->replay_counter,
  1103. WPA_REPLAY_COUNTER_LEN);
  1104. sm->rx_replay_counter_set = 1;
  1105. return 0;
  1106. }
  1107. /* Decrypt RSN EAPOL-Key key data (RC4 or AES-WRAP) */
  1108. static int wpa_supplicant_decrypt_key_data(struct wpa_sm *sm,
  1109. struct wpa_eapol_key *key, u16 ver)
  1110. {
  1111. u16 keydatalen = WPA_GET_BE16(key->key_data_length);
  1112. wpa_hexdump(MSG_DEBUG, "RSN: encrypted key data",
  1113. (u8 *) (key + 1), keydatalen);
  1114. if (!sm->ptk_set) {
  1115. wpa_printf(MSG_WARNING, "WPA: PTK not available, "
  1116. "cannot decrypt EAPOL-Key key data.");
  1117. return -1;
  1118. }
  1119. /* Decrypt key data here so that this operation does not need
  1120. * to be implemented separately for each message type. */
  1121. if (ver == WPA_KEY_INFO_TYPE_HMAC_MD5_RC4) {
  1122. u8 ek[32];
  1123. os_memcpy(ek, key->key_iv, 16);
  1124. os_memcpy(ek + 16, sm->ptk.kek, 16);
  1125. rc4_skip(ek, 32, 256, (u8 *) (key + 1), keydatalen);
  1126. } else if (ver == WPA_KEY_INFO_TYPE_HMAC_SHA1_AES ||
  1127. ver == WPA_KEY_INFO_TYPE_AES_128_CMAC) {
  1128. u8 *buf;
  1129. if (keydatalen % 8) {
  1130. wpa_printf(MSG_WARNING, "WPA: Unsupported "
  1131. "AES-WRAP len %d", keydatalen);
  1132. return -1;
  1133. }
  1134. keydatalen -= 8; /* AES-WRAP adds 8 bytes */
  1135. buf = os_malloc(keydatalen);
  1136. if (buf == NULL) {
  1137. wpa_printf(MSG_WARNING, "WPA: No memory for "
  1138. "AES-UNWRAP buffer");
  1139. return -1;
  1140. }
  1141. if (aes_unwrap(sm->ptk.kek, keydatalen / 8,
  1142. (u8 *) (key + 1), buf)) {
  1143. os_free(buf);
  1144. wpa_printf(MSG_WARNING, "WPA: AES unwrap failed - "
  1145. "could not decrypt EAPOL-Key key data");
  1146. return -1;
  1147. }
  1148. os_memcpy(key + 1, buf, keydatalen);
  1149. os_free(buf);
  1150. WPA_PUT_BE16(key->key_data_length, keydatalen);
  1151. } else {
  1152. wpa_printf(MSG_WARNING, "WPA: Unsupported key_info type %d",
  1153. ver);
  1154. return -1;
  1155. }
  1156. wpa_hexdump_key(MSG_DEBUG, "WPA: decrypted EAPOL-Key key data",
  1157. (u8 *) (key + 1), keydatalen);
  1158. return 0;
  1159. }
  1160. /**
  1161. * wpa_sm_aborted_cached - Notify WPA that PMKSA caching was aborted
  1162. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1163. */
  1164. void wpa_sm_aborted_cached(struct wpa_sm *sm)
  1165. {
  1166. if (sm && sm->cur_pmksa) {
  1167. wpa_printf(MSG_DEBUG, "RSN: Cancelling PMKSA caching attempt");
  1168. sm->cur_pmksa = NULL;
  1169. }
  1170. }
  1171. static void wpa_eapol_key_dump(const struct wpa_eapol_key *key)
  1172. {
  1173. #ifndef CONFIG_NO_STDOUT_DEBUG
  1174. u16 key_info = WPA_GET_BE16(key->key_info);
  1175. wpa_printf(MSG_DEBUG, " EAPOL-Key type=%d", key->type);
  1176. wpa_printf(MSG_DEBUG, " key_info 0x%x (ver=%d keyidx=%d rsvd=%d %s"
  1177. "%s%s%s%s%s%s%s)",
  1178. key_info, key_info & WPA_KEY_INFO_TYPE_MASK,
  1179. (key_info & WPA_KEY_INFO_KEY_INDEX_MASK) >>
  1180. WPA_KEY_INFO_KEY_INDEX_SHIFT,
  1181. (key_info & (BIT(13) | BIT(14) | BIT(15))) >> 13,
  1182. key_info & WPA_KEY_INFO_KEY_TYPE ? "Pairwise" : "Group",
  1183. key_info & WPA_KEY_INFO_INSTALL ? " Install" : "",
  1184. key_info & WPA_KEY_INFO_ACK ? " Ack" : "",
  1185. key_info & WPA_KEY_INFO_MIC ? " MIC" : "",
  1186. key_info & WPA_KEY_INFO_SECURE ? " Secure" : "",
  1187. key_info & WPA_KEY_INFO_ERROR ? " Error" : "",
  1188. key_info & WPA_KEY_INFO_REQUEST ? " Request" : "",
  1189. key_info & WPA_KEY_INFO_ENCR_KEY_DATA ? " Encr" : "");
  1190. wpa_printf(MSG_DEBUG, " key_length=%u key_data_length=%u",
  1191. WPA_GET_BE16(key->key_length),
  1192. WPA_GET_BE16(key->key_data_length));
  1193. wpa_hexdump(MSG_DEBUG, " replay_counter",
  1194. key->replay_counter, WPA_REPLAY_COUNTER_LEN);
  1195. wpa_hexdump(MSG_DEBUG, " key_nonce", key->key_nonce, WPA_NONCE_LEN);
  1196. wpa_hexdump(MSG_DEBUG, " key_iv", key->key_iv, 16);
  1197. wpa_hexdump(MSG_DEBUG, " key_rsc", key->key_rsc, 8);
  1198. wpa_hexdump(MSG_DEBUG, " key_id (reserved)", key->key_id, 8);
  1199. wpa_hexdump(MSG_DEBUG, " key_mic", key->key_mic, 16);
  1200. #endif /* CONFIG_NO_STDOUT_DEBUG */
  1201. }
  1202. /**
  1203. * wpa_sm_rx_eapol - Process received WPA EAPOL frames
  1204. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1205. * @src_addr: Source MAC address of the EAPOL packet
  1206. * @buf: Pointer to the beginning of the EAPOL data (EAPOL header)
  1207. * @len: Length of the EAPOL frame
  1208. * Returns: 1 = WPA EAPOL-Key processed, 0 = not a WPA EAPOL-Key, -1 failure
  1209. *
  1210. * This function is called for each received EAPOL frame. Other than EAPOL-Key
  1211. * frames can be skipped if filtering is done elsewhere. wpa_sm_rx_eapol() is
  1212. * only processing WPA and WPA2 EAPOL-Key frames.
  1213. *
  1214. * The received EAPOL-Key packets are validated and valid packets are replied
  1215. * to. In addition, key material (PTK, GTK) is configured at the end of a
  1216. * successful key handshake.
  1217. */
  1218. int wpa_sm_rx_eapol(struct wpa_sm *sm, const u8 *src_addr,
  1219. const u8 *buf, size_t len)
  1220. {
  1221. size_t plen, data_len, extra_len;
  1222. struct ieee802_1x_hdr *hdr;
  1223. struct wpa_eapol_key *key;
  1224. u16 key_info, ver;
  1225. u8 *tmp;
  1226. int ret = -1;
  1227. struct wpa_peerkey *peerkey = NULL;
  1228. #ifdef CONFIG_IEEE80211R
  1229. sm->ft_completed = 0;
  1230. #endif /* CONFIG_IEEE80211R */
  1231. if (len < sizeof(*hdr) + sizeof(*key)) {
  1232. wpa_printf(MSG_DEBUG, "WPA: EAPOL frame too short to be a WPA "
  1233. "EAPOL-Key (len %lu, expecting at least %lu)",
  1234. (unsigned long) len,
  1235. (unsigned long) sizeof(*hdr) + sizeof(*key));
  1236. return 0;
  1237. }
  1238. tmp = os_malloc(len);
  1239. if (tmp == NULL)
  1240. return -1;
  1241. os_memcpy(tmp, buf, len);
  1242. hdr = (struct ieee802_1x_hdr *) tmp;
  1243. key = (struct wpa_eapol_key *) (hdr + 1);
  1244. plen = be_to_host16(hdr->length);
  1245. data_len = plen + sizeof(*hdr);
  1246. wpa_printf(MSG_DEBUG, "IEEE 802.1X RX: version=%d type=%d length=%lu",
  1247. hdr->version, hdr->type, (unsigned long) plen);
  1248. if (hdr->version < EAPOL_VERSION) {
  1249. /* TODO: backwards compatibility */
  1250. }
  1251. if (hdr->type != IEEE802_1X_TYPE_EAPOL_KEY) {
  1252. wpa_printf(MSG_DEBUG, "WPA: EAPOL frame (type %u) discarded, "
  1253. "not a Key frame", hdr->type);
  1254. ret = 0;
  1255. goto out;
  1256. }
  1257. if (plen > len - sizeof(*hdr) || plen < sizeof(*key)) {
  1258. wpa_printf(MSG_DEBUG, "WPA: EAPOL frame payload size %lu "
  1259. "invalid (frame size %lu)",
  1260. (unsigned long) plen, (unsigned long) len);
  1261. ret = 0;
  1262. goto out;
  1263. }
  1264. if (key->type != EAPOL_KEY_TYPE_WPA && key->type != EAPOL_KEY_TYPE_RSN)
  1265. {
  1266. wpa_printf(MSG_DEBUG, "WPA: EAPOL-Key type (%d) unknown, "
  1267. "discarded", key->type);
  1268. ret = 0;
  1269. goto out;
  1270. }
  1271. wpa_eapol_key_dump(key);
  1272. eapol_sm_notify_lower_layer_success(sm->eapol, 0);
  1273. wpa_hexdump(MSG_MSGDUMP, "WPA: RX EAPOL-Key", tmp, len);
  1274. if (data_len < len) {
  1275. wpa_printf(MSG_DEBUG, "WPA: ignoring %lu bytes after the IEEE "
  1276. "802.1X data", (unsigned long) len - data_len);
  1277. }
  1278. key_info = WPA_GET_BE16(key->key_info);
  1279. ver = key_info & WPA_KEY_INFO_TYPE_MASK;
  1280. if (ver != WPA_KEY_INFO_TYPE_HMAC_MD5_RC4 &&
  1281. #ifdef CONFIG_IEEE80211R
  1282. ver != WPA_KEY_INFO_TYPE_AES_128_CMAC &&
  1283. #endif /* CONFIG_IEEE80211R */
  1284. ver != WPA_KEY_INFO_TYPE_HMAC_SHA1_AES) {
  1285. wpa_printf(MSG_INFO, "WPA: Unsupported EAPOL-Key descriptor "
  1286. "version %d.", ver);
  1287. goto out;
  1288. }
  1289. #ifdef CONFIG_IEEE80211R
  1290. if (sm->key_mgmt == WPA_KEY_MGMT_FT_IEEE8021X ||
  1291. sm->key_mgmt == WPA_KEY_MGMT_FT_PSK) {
  1292. /* IEEE 802.11r uses a new key_info type (AES-128-CMAC). */
  1293. if (ver != WPA_KEY_INFO_TYPE_AES_128_CMAC) {
  1294. wpa_printf(MSG_INFO, "FT: AP did not use "
  1295. "AES-128-CMAC.");
  1296. goto out;
  1297. }
  1298. } else
  1299. #endif /* CONFIG_IEEE80211R */
  1300. if (sm->pairwise_cipher == WPA_CIPHER_CCMP &&
  1301. ver != WPA_KEY_INFO_TYPE_HMAC_SHA1_AES) {
  1302. wpa_printf(MSG_INFO, "WPA: CCMP is used, but EAPOL-Key "
  1303. "descriptor version (%d) is not 2.", ver);
  1304. if (sm->group_cipher != WPA_CIPHER_CCMP &&
  1305. !(key_info & WPA_KEY_INFO_KEY_TYPE)) {
  1306. /* Earlier versions of IEEE 802.11i did not explicitly
  1307. * require version 2 descriptor for all EAPOL-Key
  1308. * packets, so allow group keys to use version 1 if
  1309. * CCMP is not used for them. */
  1310. wpa_printf(MSG_INFO, "WPA: Backwards compatibility: "
  1311. "allow invalid version for non-CCMP group "
  1312. "keys");
  1313. } else
  1314. goto out;
  1315. }
  1316. #ifdef CONFIG_PEERKEY
  1317. for (peerkey = sm->peerkey; peerkey; peerkey = peerkey->next) {
  1318. if (os_memcmp(peerkey->addr, src_addr, ETH_ALEN) == 0)
  1319. break;
  1320. }
  1321. if (!(key_info & WPA_KEY_INFO_SMK_MESSAGE) && peerkey) {
  1322. if (!peerkey->initiator && peerkey->replay_counter_set &&
  1323. os_memcmp(key->replay_counter, peerkey->replay_counter,
  1324. WPA_REPLAY_COUNTER_LEN) <= 0) {
  1325. wpa_printf(MSG_WARNING, "RSN: EAPOL-Key Replay "
  1326. "Counter did not increase (STK) - dropping "
  1327. "packet");
  1328. goto out;
  1329. } else if (peerkey->initiator) {
  1330. u8 _tmp[WPA_REPLAY_COUNTER_LEN];
  1331. os_memcpy(_tmp, key->replay_counter,
  1332. WPA_REPLAY_COUNTER_LEN);
  1333. inc_byte_array(_tmp, WPA_REPLAY_COUNTER_LEN);
  1334. if (os_memcmp(_tmp, peerkey->replay_counter,
  1335. WPA_REPLAY_COUNTER_LEN) != 0) {
  1336. wpa_printf(MSG_DEBUG, "RSN: EAPOL-Key Replay "
  1337. "Counter did not match (STK) - "
  1338. "dropping packet");
  1339. goto out;
  1340. }
  1341. }
  1342. }
  1343. if (peerkey && peerkey->initiator && (key_info & WPA_KEY_INFO_ACK)) {
  1344. wpa_printf(MSG_INFO, "RSN: Ack bit in key_info from STK peer");
  1345. goto out;
  1346. }
  1347. #endif /* CONFIG_PEERKEY */
  1348. if (!peerkey && sm->rx_replay_counter_set &&
  1349. os_memcmp(key->replay_counter, sm->rx_replay_counter,
  1350. WPA_REPLAY_COUNTER_LEN) <= 0) {
  1351. wpa_printf(MSG_WARNING, "WPA: EAPOL-Key Replay Counter did not"
  1352. " increase - dropping packet");
  1353. goto out;
  1354. }
  1355. if (!(key_info & (WPA_KEY_INFO_ACK | WPA_KEY_INFO_SMK_MESSAGE))
  1356. #ifdef CONFIG_PEERKEY
  1357. && (peerkey == NULL || !peerkey->initiator)
  1358. #endif /* CONFIG_PEERKEY */
  1359. ) {
  1360. wpa_printf(MSG_INFO, "WPA: No Ack bit in key_info");
  1361. goto out;
  1362. }
  1363. if (key_info & WPA_KEY_INFO_REQUEST) {
  1364. wpa_printf(MSG_INFO, "WPA: EAPOL-Key with Request bit - "
  1365. "dropped");
  1366. goto out;
  1367. }
  1368. if ((key_info & WPA_KEY_INFO_MIC) && !peerkey &&
  1369. wpa_supplicant_verify_eapol_key_mic(sm, key, ver, tmp, data_len))
  1370. goto out;
  1371. #ifdef CONFIG_PEERKEY
  1372. if ((key_info & WPA_KEY_INFO_MIC) && peerkey &&
  1373. peerkey_verify_eapol_key_mic(sm, peerkey, key, ver, tmp, data_len))
  1374. goto out;
  1375. #endif /* CONFIG_PEERKEY */
  1376. extra_len = data_len - sizeof(*hdr) - sizeof(*key);
  1377. if (WPA_GET_BE16(key->key_data_length) > extra_len) {
  1378. wpa_msg(sm->ctx->ctx, MSG_INFO, "WPA: Invalid EAPOL-Key "
  1379. "frame - key_data overflow (%d > %lu)",
  1380. WPA_GET_BE16(key->key_data_length),
  1381. (unsigned long) extra_len);
  1382. goto out;
  1383. }
  1384. extra_len = WPA_GET_BE16(key->key_data_length);
  1385. if (sm->proto == WPA_PROTO_RSN &&
  1386. (key_info & WPA_KEY_INFO_ENCR_KEY_DATA)) {
  1387. if (wpa_supplicant_decrypt_key_data(sm, key, ver))
  1388. goto out;
  1389. extra_len = WPA_GET_BE16(key->key_data_length);
  1390. }
  1391. if (key_info & WPA_KEY_INFO_KEY_TYPE) {
  1392. if (key_info & WPA_KEY_INFO_KEY_INDEX_MASK) {
  1393. wpa_printf(MSG_WARNING, "WPA: Ignored EAPOL-Key "
  1394. "(Pairwise) with non-zero key index");
  1395. goto out;
  1396. }
  1397. if (peerkey) {
  1398. /* PeerKey 4-Way Handshake */
  1399. peerkey_rx_eapol_4way(sm, peerkey, key, key_info, ver);
  1400. } else if (key_info & WPA_KEY_INFO_MIC) {
  1401. /* 3/4 4-Way Handshake */
  1402. wpa_supplicant_process_3_of_4(sm, key, ver);
  1403. } else {
  1404. /* 1/4 4-Way Handshake */
  1405. wpa_supplicant_process_1_of_4(sm, src_addr, key,
  1406. ver);
  1407. }
  1408. } else if (key_info & WPA_KEY_INFO_SMK_MESSAGE) {
  1409. /* PeerKey SMK Handshake */
  1410. peerkey_rx_eapol_smk(sm, src_addr, key, extra_len, key_info,
  1411. ver);
  1412. } else {
  1413. if (key_info & WPA_KEY_INFO_MIC) {
  1414. /* 1/2 Group Key Handshake */
  1415. wpa_supplicant_process_1_of_2(sm, src_addr, key,
  1416. extra_len, ver);
  1417. } else {
  1418. wpa_printf(MSG_WARNING, "WPA: EAPOL-Key (Group) "
  1419. "without Mic bit - dropped");
  1420. }
  1421. }
  1422. ret = 1;
  1423. out:
  1424. os_free(tmp);
  1425. return ret;
  1426. }
  1427. #ifdef CONFIG_CTRL_IFACE
  1428. static int wpa_cipher_bits(int cipher)
  1429. {
  1430. switch (cipher) {
  1431. case WPA_CIPHER_CCMP:
  1432. return 128;
  1433. case WPA_CIPHER_TKIP:
  1434. return 256;
  1435. case WPA_CIPHER_WEP104:
  1436. return 104;
  1437. case WPA_CIPHER_WEP40:
  1438. return 40;
  1439. default:
  1440. return 0;
  1441. }
  1442. }
  1443. static u32 wpa_key_mgmt_suite(struct wpa_sm *sm)
  1444. {
  1445. switch (sm->key_mgmt) {
  1446. case WPA_KEY_MGMT_IEEE8021X:
  1447. return (sm->proto == WPA_PROTO_RSN ?
  1448. RSN_AUTH_KEY_MGMT_UNSPEC_802_1X :
  1449. WPA_AUTH_KEY_MGMT_UNSPEC_802_1X);
  1450. case WPA_KEY_MGMT_PSK:
  1451. return (sm->proto == WPA_PROTO_RSN ?
  1452. RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X :
  1453. WPA_AUTH_KEY_MGMT_PSK_OVER_802_1X);
  1454. #ifdef CONFIG_IEEE80211R
  1455. case WPA_KEY_MGMT_FT_IEEE8021X:
  1456. return RSN_AUTH_KEY_MGMT_FT_802_1X;
  1457. case WPA_KEY_MGMT_FT_PSK:
  1458. return RSN_AUTH_KEY_MGMT_FT_PSK;
  1459. #endif /* CONFIG_IEEE80211R */
  1460. case WPA_KEY_MGMT_WPA_NONE:
  1461. return WPA_AUTH_KEY_MGMT_NONE;
  1462. default:
  1463. return 0;
  1464. }
  1465. }
  1466. static u32 wpa_cipher_suite(struct wpa_sm *sm, int cipher)
  1467. {
  1468. switch (cipher) {
  1469. case WPA_CIPHER_CCMP:
  1470. return (sm->proto == WPA_PROTO_RSN ?
  1471. RSN_CIPHER_SUITE_CCMP : WPA_CIPHER_SUITE_CCMP);
  1472. case WPA_CIPHER_TKIP:
  1473. return (sm->proto == WPA_PROTO_RSN ?
  1474. RSN_CIPHER_SUITE_TKIP : WPA_CIPHER_SUITE_TKIP);
  1475. case WPA_CIPHER_WEP104:
  1476. return (sm->proto == WPA_PROTO_RSN ?
  1477. RSN_CIPHER_SUITE_WEP104 : WPA_CIPHER_SUITE_WEP104);
  1478. case WPA_CIPHER_WEP40:
  1479. return (sm->proto == WPA_PROTO_RSN ?
  1480. RSN_CIPHER_SUITE_WEP40 : WPA_CIPHER_SUITE_WEP40);
  1481. case WPA_CIPHER_NONE:
  1482. return (sm->proto == WPA_PROTO_RSN ?
  1483. RSN_CIPHER_SUITE_NONE : WPA_CIPHER_SUITE_NONE);
  1484. default:
  1485. return 0;
  1486. }
  1487. }
  1488. #define RSN_SUITE "%02x-%02x-%02x-%d"
  1489. #define RSN_SUITE_ARG(s) \
  1490. ((s) >> 24) & 0xff, ((s) >> 16) & 0xff, ((s) >> 8) & 0xff, (s) & 0xff
  1491. /**
  1492. * wpa_sm_get_mib - Dump text list of MIB entries
  1493. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1494. * @buf: Buffer for the list
  1495. * @buflen: Length of the buffer
  1496. * Returns: Number of bytes written to buffer
  1497. *
  1498. * This function is used fetch dot11 MIB variables.
  1499. */
  1500. int wpa_sm_get_mib(struct wpa_sm *sm, char *buf, size_t buflen)
  1501. {
  1502. char pmkid_txt[PMKID_LEN * 2 + 1];
  1503. int rsna, ret;
  1504. size_t len;
  1505. if (sm->cur_pmksa) {
  1506. wpa_snprintf_hex(pmkid_txt, sizeof(pmkid_txt),
  1507. sm->cur_pmksa->pmkid, PMKID_LEN);
  1508. } else
  1509. pmkid_txt[0] = '\0';
  1510. if ((sm->key_mgmt == WPA_KEY_MGMT_PSK ||
  1511. sm->key_mgmt == WPA_KEY_MGMT_IEEE8021X ||
  1512. sm->key_mgmt == WPA_KEY_MGMT_FT_PSK ||
  1513. sm->key_mgmt == WPA_KEY_MGMT_FT_IEEE8021X) &&
  1514. sm->proto == WPA_PROTO_RSN)
  1515. rsna = 1;
  1516. else
  1517. rsna = 0;
  1518. ret = os_snprintf(buf, buflen,
  1519. "dot11RSNAOptionImplemented=TRUE\n"
  1520. "dot11RSNAPreauthenticationImplemented=TRUE\n"
  1521. "dot11RSNAEnabled=%s\n"
  1522. "dot11RSNAPreauthenticationEnabled=%s\n"
  1523. "dot11RSNAConfigVersion=%d\n"
  1524. "dot11RSNAConfigPairwiseKeysSupported=5\n"
  1525. "dot11RSNAConfigGroupCipherSize=%d\n"
  1526. "dot11RSNAConfigPMKLifetime=%d\n"
  1527. "dot11RSNAConfigPMKReauthThreshold=%d\n"
  1528. "dot11RSNAConfigNumberOfPTKSAReplayCounters=1\n"
  1529. "dot11RSNAConfigSATimeout=%d\n",
  1530. rsna ? "TRUE" : "FALSE",
  1531. rsna ? "TRUE" : "FALSE",
  1532. RSN_VERSION,
  1533. wpa_cipher_bits(sm->group_cipher),
  1534. sm->dot11RSNAConfigPMKLifetime,
  1535. sm->dot11RSNAConfigPMKReauthThreshold,
  1536. sm->dot11RSNAConfigSATimeout);
  1537. if (ret < 0 || (size_t) ret >= buflen)
  1538. return 0;
  1539. len = ret;
  1540. ret = os_snprintf(
  1541. buf + len, buflen - len,
  1542. "dot11RSNAAuthenticationSuiteSelected=" RSN_SUITE "\n"
  1543. "dot11RSNAPairwiseCipherSelected=" RSN_SUITE "\n"
  1544. "dot11RSNAGroupCipherSelected=" RSN_SUITE "\n"
  1545. "dot11RSNAPMKIDUsed=%s\n"
  1546. "dot11RSNAAuthenticationSuiteRequested=" RSN_SUITE "\n"
  1547. "dot11RSNAPairwiseCipherRequested=" RSN_SUITE "\n"
  1548. "dot11RSNAGroupCipherRequested=" RSN_SUITE "\n"
  1549. "dot11RSNAConfigNumberOfGTKSAReplayCounters=0\n"
  1550. "dot11RSNA4WayHandshakeFailures=%u\n",
  1551. RSN_SUITE_ARG(wpa_key_mgmt_suite(sm)),
  1552. RSN_SUITE_ARG(wpa_cipher_suite(sm, sm->pairwise_cipher)),
  1553. RSN_SUITE_ARG(wpa_cipher_suite(sm, sm->group_cipher)),
  1554. pmkid_txt,
  1555. RSN_SUITE_ARG(wpa_key_mgmt_suite(sm)),
  1556. RSN_SUITE_ARG(wpa_cipher_suite(sm, sm->pairwise_cipher)),
  1557. RSN_SUITE_ARG(wpa_cipher_suite(sm, sm->group_cipher)),
  1558. sm->dot11RSNA4WayHandshakeFailures);
  1559. if (ret >= 0 && (size_t) ret < buflen)
  1560. len += ret;
  1561. return (int) len;
  1562. }
  1563. #endif /* CONFIG_CTRL_IFACE */
  1564. static void wpa_sm_pmksa_free_cb(struct rsn_pmksa_cache_entry *entry,
  1565. void *ctx, int replace)
  1566. {
  1567. struct wpa_sm *sm = ctx;
  1568. if (sm->cur_pmksa == entry ||
  1569. (sm->pmk_len == entry->pmk_len &&
  1570. os_memcmp(sm->pmk, entry->pmk, sm->pmk_len) == 0)) {
  1571. wpa_printf(MSG_DEBUG, "RSN: removed current PMKSA entry");
  1572. sm->cur_pmksa = NULL;
  1573. if (replace) {
  1574. /* A new entry is being added, so no need to
  1575. * deauthenticate in this case. This happens when EAP
  1576. * authentication is completed again (reauth or failed
  1577. * PMKSA caching attempt). */
  1578. return;
  1579. }
  1580. os_memset(sm->pmk, 0, sizeof(sm->pmk));
  1581. wpa_sm_deauthenticate(sm, WLAN_REASON_UNSPECIFIED);
  1582. }
  1583. }
  1584. /**
  1585. * wpa_sm_init - Initialize WPA state machine
  1586. * @ctx: Context pointer for callbacks; this needs to be an allocated buffer
  1587. * Returns: Pointer to the allocated WPA state machine data
  1588. *
  1589. * This function is used to allocate a new WPA state machine and the returned
  1590. * value is passed to all WPA state machine calls.
  1591. */
  1592. struct wpa_sm * wpa_sm_init(struct wpa_sm_ctx *ctx)
  1593. {
  1594. struct wpa_sm *sm;
  1595. sm = os_zalloc(sizeof(*sm));
  1596. if (sm == NULL)
  1597. return NULL;
  1598. sm->renew_snonce = 1;
  1599. sm->ctx = ctx;
  1600. sm->dot11RSNAConfigPMKLifetime = 43200;
  1601. sm->dot11RSNAConfigPMKReauthThreshold = 70;
  1602. sm->dot11RSNAConfigSATimeout = 60;
  1603. sm->pmksa = pmksa_cache_init(wpa_sm_pmksa_free_cb, sm, sm);
  1604. if (sm->pmksa == NULL) {
  1605. wpa_printf(MSG_ERROR, "RSN: PMKSA cache initialization "
  1606. "failed");
  1607. os_free(sm);
  1608. return NULL;
  1609. }
  1610. return sm;
  1611. }
  1612. /**
  1613. * wpa_sm_deinit - Deinitialize WPA state machine
  1614. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1615. */
  1616. void wpa_sm_deinit(struct wpa_sm *sm)
  1617. {
  1618. if (sm == NULL)
  1619. return;
  1620. pmksa_cache_deinit(sm->pmksa);
  1621. eloop_cancel_timeout(wpa_sm_start_preauth, sm, NULL);
  1622. os_free(sm->assoc_wpa_ie);
  1623. os_free(sm->ap_wpa_ie);
  1624. os_free(sm->ap_rsn_ie);
  1625. os_free(sm->ctx);
  1626. peerkey_deinit(sm);
  1627. os_free(sm);
  1628. }
  1629. /**
  1630. * wpa_sm_notify_assoc - Notify WPA state machine about association
  1631. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1632. * @bssid: The BSSID of the new association
  1633. *
  1634. * This function is called to let WPA state machine know that the connection
  1635. * was established.
  1636. */
  1637. void wpa_sm_notify_assoc(struct wpa_sm *sm, const u8 *bssid)
  1638. {
  1639. int clear_ptk = 1;
  1640. if (sm == NULL)
  1641. return;
  1642. wpa_printf(MSG_DEBUG, "WPA: Association event - clear replay counter");
  1643. os_memcpy(sm->bssid, bssid, ETH_ALEN);
  1644. os_memset(sm->rx_replay_counter, 0, WPA_REPLAY_COUNTER_LEN);
  1645. sm->rx_replay_counter_set = 0;
  1646. sm->renew_snonce = 1;
  1647. if (os_memcmp(sm->preauth_bssid, bssid, ETH_ALEN) == 0)
  1648. rsn_preauth_deinit(sm);
  1649. #ifdef CONFIG_IEEE80211R
  1650. if (wpa_ft_is_completed(sm)) {
  1651. wpa_supplicant_key_neg_complete(sm, sm->bssid, 1);
  1652. /* Prepare for the next transition */
  1653. wpa_ft_prepare_auth_request(sm);
  1654. clear_ptk = 0;
  1655. }
  1656. #endif /* CONFIG_IEEE80211R */
  1657. if (clear_ptk) {
  1658. /*
  1659. * IEEE 802.11, 8.4.10: Delete PTK SA on (re)association if
  1660. * this is not part of a Fast BSS Transition.
  1661. */
  1662. wpa_printf(MSG_DEBUG, "WPA: Clear old PTK");
  1663. sm->ptk_set = 0;
  1664. sm->tptk_set = 0;
  1665. }
  1666. }
  1667. /**
  1668. * wpa_sm_notify_disassoc - Notify WPA state machine about disassociation
  1669. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1670. *
  1671. * This function is called to let WPA state machine know that the connection
  1672. * was lost. This will abort any existing pre-authentication session.
  1673. */
  1674. void wpa_sm_notify_disassoc(struct wpa_sm *sm)
  1675. {
  1676. rsn_preauth_deinit(sm);
  1677. if (wpa_sm_get_state(sm) == WPA_4WAY_HANDSHAKE)
  1678. sm->dot11RSNA4WayHandshakeFailures++;
  1679. }
  1680. /**
  1681. * wpa_sm_set_pmk - Set PMK
  1682. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1683. * @pmk: The new PMK
  1684. * @pmk_len: The length of the new PMK in bytes
  1685. *
  1686. * Configure the PMK for WPA state machine.
  1687. */
  1688. void wpa_sm_set_pmk(struct wpa_sm *sm, const u8 *pmk, size_t pmk_len)
  1689. {
  1690. if (sm == NULL)
  1691. return;
  1692. sm->pmk_len = pmk_len;
  1693. os_memcpy(sm->pmk, pmk, pmk_len);
  1694. #ifdef CONFIG_IEEE80211R
  1695. /* Set XXKey to be PSK for FT key derivation */
  1696. sm->xxkey_len = pmk_len;
  1697. os_memcpy(sm->xxkey, pmk, pmk_len);
  1698. #endif /* CONFIG_IEEE80211R */
  1699. }
  1700. /**
  1701. * wpa_sm_set_pmk_from_pmksa - Set PMK based on the current PMKSA
  1702. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1703. *
  1704. * Take the PMK from the current PMKSA into use. If no PMKSA is active, the PMK
  1705. * will be cleared.
  1706. */
  1707. void wpa_sm_set_pmk_from_pmksa(struct wpa_sm *sm)
  1708. {
  1709. if (sm == NULL)
  1710. return;
  1711. if (sm->cur_pmksa) {
  1712. sm->pmk_len = sm->cur_pmksa->pmk_len;
  1713. os_memcpy(sm->pmk, sm->cur_pmksa->pmk, sm->pmk_len);
  1714. } else {
  1715. sm->pmk_len = PMK_LEN;
  1716. os_memset(sm->pmk, 0, PMK_LEN);
  1717. }
  1718. }
  1719. /**
  1720. * wpa_sm_set_fast_reauth - Set fast reauthentication (EAP) enabled/disabled
  1721. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1722. * @fast_reauth: Whether fast reauthentication (EAP) is allowed
  1723. */
  1724. void wpa_sm_set_fast_reauth(struct wpa_sm *sm, int fast_reauth)
  1725. {
  1726. if (sm)
  1727. sm->fast_reauth = fast_reauth;
  1728. }
  1729. /**
  1730. * wpa_sm_set_scard_ctx - Set context pointer for smartcard callbacks
  1731. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1732. * @scard_ctx: Context pointer for smartcard related callback functions
  1733. */
  1734. void wpa_sm_set_scard_ctx(struct wpa_sm *sm, void *scard_ctx)
  1735. {
  1736. if (sm == NULL)
  1737. return;
  1738. sm->scard_ctx = scard_ctx;
  1739. if (sm->preauth_eapol)
  1740. eapol_sm_register_scard_ctx(sm->preauth_eapol, scard_ctx);
  1741. }
  1742. /**
  1743. * wpa_sm_set_config - Notification of current configration change
  1744. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1745. * @config: Pointer to current network configuration
  1746. *
  1747. * Notify WPA state machine that configuration has changed. config will be
  1748. * stored as a backpointer to network configuration. This can be %NULL to clear
  1749. * the stored pointed.
  1750. */
  1751. void wpa_sm_set_config(struct wpa_sm *sm, struct rsn_supp_config *config)
  1752. {
  1753. if (!sm)
  1754. return;
  1755. sm->network_ctx = config;
  1756. if (config) {
  1757. sm->peerkey_enabled = config->peerkey_enabled;
  1758. sm->allowed_pairwise_cipher = config->allowed_pairwise_cipher;
  1759. sm->proactive_key_caching = config->proactive_key_caching;
  1760. sm->eap_workaround = config->eap_workaround;
  1761. sm->eap_conf_ctx = config->eap_conf_ctx;
  1762. if (config->ssid) {
  1763. os_memcpy(sm->ssid, config->ssid, config->ssid_len);
  1764. sm->ssid_len = config->ssid_len;
  1765. } else
  1766. sm->ssid_len = 0;
  1767. } else {
  1768. sm->peerkey_enabled = 0;
  1769. sm->allowed_pairwise_cipher = 0;
  1770. sm->proactive_key_caching = 0;
  1771. sm->eap_workaround = 0;
  1772. sm->eap_conf_ctx = NULL;
  1773. sm->ssid_len = 0;
  1774. }
  1775. pmksa_cache_notify_reconfig(sm->pmksa);
  1776. }
  1777. /**
  1778. * wpa_sm_set_own_addr - Set own MAC address
  1779. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1780. * @addr: Own MAC address
  1781. */
  1782. void wpa_sm_set_own_addr(struct wpa_sm *sm, const u8 *addr)
  1783. {
  1784. if (sm)
  1785. os_memcpy(sm->own_addr, addr, ETH_ALEN);
  1786. }
  1787. /**
  1788. * wpa_sm_set_ifname - Set network interface name
  1789. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1790. * @ifname: Interface name
  1791. * @bridge_ifname: Optional bridge interface name (for pre-auth)
  1792. */
  1793. void wpa_sm_set_ifname(struct wpa_sm *sm, const char *ifname,
  1794. const char *bridge_ifname)
  1795. {
  1796. if (sm) {
  1797. sm->ifname = ifname;
  1798. sm->bridge_ifname = bridge_ifname;
  1799. }
  1800. }
  1801. /**
  1802. * wpa_sm_set_eapol - Set EAPOL state machine pointer
  1803. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1804. * @eapol: Pointer to EAPOL state machine allocated with eapol_sm_init()
  1805. */
  1806. void wpa_sm_set_eapol(struct wpa_sm *sm, struct eapol_sm *eapol)
  1807. {
  1808. if (sm)
  1809. sm->eapol = eapol;
  1810. }
  1811. /**
  1812. * wpa_sm_set_param - Set WPA state machine parameters
  1813. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1814. * @param: Parameter field
  1815. * @value: Parameter value
  1816. * Returns: 0 on success, -1 on failure
  1817. */
  1818. int wpa_sm_set_param(struct wpa_sm *sm, enum wpa_sm_conf_params param,
  1819. unsigned int value)
  1820. {
  1821. int ret = 0;
  1822. if (sm == NULL)
  1823. return -1;
  1824. switch (param) {
  1825. case RSNA_PMK_LIFETIME:
  1826. if (value > 0)
  1827. sm->dot11RSNAConfigPMKLifetime = value;
  1828. else
  1829. ret = -1;
  1830. break;
  1831. case RSNA_PMK_REAUTH_THRESHOLD:
  1832. if (value > 0 && value <= 100)
  1833. sm->dot11RSNAConfigPMKReauthThreshold = value;
  1834. else
  1835. ret = -1;
  1836. break;
  1837. case RSNA_SA_TIMEOUT:
  1838. if (value > 0)
  1839. sm->dot11RSNAConfigSATimeout = value;
  1840. else
  1841. ret = -1;
  1842. break;
  1843. case WPA_PARAM_PROTO:
  1844. sm->proto = value;
  1845. break;
  1846. case WPA_PARAM_PAIRWISE:
  1847. sm->pairwise_cipher = value;
  1848. break;
  1849. case WPA_PARAM_GROUP:
  1850. sm->group_cipher = value;
  1851. break;
  1852. case WPA_PARAM_KEY_MGMT:
  1853. sm->key_mgmt = value;
  1854. break;
  1855. #ifdef CONFIG_IEEE80211W
  1856. case WPA_PARAM_MGMT_GROUP:
  1857. sm->mgmt_group_cipher = value;
  1858. break;
  1859. #endif /* CONFIG_IEEE80211W */
  1860. case WPA_PARAM_RSN_ENABLED:
  1861. sm->rsn_enabled = value;
  1862. break;
  1863. default:
  1864. break;
  1865. }
  1866. return ret;
  1867. }
  1868. /**
  1869. * wpa_sm_get_param - Get WPA state machine parameters
  1870. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1871. * @param: Parameter field
  1872. * Returns: Parameter value
  1873. */
  1874. unsigned int wpa_sm_get_param(struct wpa_sm *sm, enum wpa_sm_conf_params param)
  1875. {
  1876. if (sm == NULL)
  1877. return 0;
  1878. switch (param) {
  1879. case RSNA_PMK_LIFETIME:
  1880. return sm->dot11RSNAConfigPMKLifetime;
  1881. case RSNA_PMK_REAUTH_THRESHOLD:
  1882. return sm->dot11RSNAConfigPMKReauthThreshold;
  1883. case RSNA_SA_TIMEOUT:
  1884. return sm->dot11RSNAConfigSATimeout;
  1885. case WPA_PARAM_PROTO:
  1886. return sm->proto;
  1887. case WPA_PARAM_PAIRWISE:
  1888. return sm->pairwise_cipher;
  1889. case WPA_PARAM_GROUP:
  1890. return sm->group_cipher;
  1891. case WPA_PARAM_KEY_MGMT:
  1892. return sm->key_mgmt;
  1893. #ifdef CONFIG_IEEE80211W
  1894. case WPA_PARAM_MGMT_GROUP:
  1895. return sm->mgmt_group_cipher;
  1896. #endif /* CONFIG_IEEE80211W */
  1897. case WPA_PARAM_RSN_ENABLED:
  1898. return sm->rsn_enabled;
  1899. default:
  1900. return 0;
  1901. }
  1902. }
  1903. /**
  1904. * wpa_sm_get_status - Get WPA state machine
  1905. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1906. * @buf: Buffer for status information
  1907. * @buflen: Maximum buffer length
  1908. * @verbose: Whether to include verbose status information
  1909. * Returns: Number of bytes written to buf.
  1910. *
  1911. * Query WPA state machine for status information. This function fills in
  1912. * a text area with current status information. If the buffer (buf) is not
  1913. * large enough, status information will be truncated to fit the buffer.
  1914. */
  1915. int wpa_sm_get_status(struct wpa_sm *sm, char *buf, size_t buflen,
  1916. int verbose)
  1917. {
  1918. char *pos = buf, *end = buf + buflen;
  1919. int ret;
  1920. ret = os_snprintf(pos, end - pos,
  1921. "pairwise_cipher=%s\n"
  1922. "group_cipher=%s\n"
  1923. "key_mgmt=%s\n",
  1924. wpa_cipher_txt(sm->pairwise_cipher),
  1925. wpa_cipher_txt(sm->group_cipher),
  1926. wpa_key_mgmt_txt(sm->key_mgmt, sm->proto));
  1927. if (ret < 0 || ret >= end - pos)
  1928. return pos - buf;
  1929. pos += ret;
  1930. return pos - buf;
  1931. }
  1932. /**
  1933. * wpa_sm_set_assoc_wpa_ie_default - Generate own WPA/RSN IE from configuration
  1934. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1935. * @wpa_ie: Pointer to buffer for WPA/RSN IE
  1936. * @wpa_ie_len: Pointer to the length of the wpa_ie buffer
  1937. * Returns: 0 on success, -1 on failure
  1938. */
  1939. int wpa_sm_set_assoc_wpa_ie_default(struct wpa_sm *sm, u8 *wpa_ie,
  1940. size_t *wpa_ie_len)
  1941. {
  1942. int res;
  1943. if (sm == NULL)
  1944. return -1;
  1945. res = wpa_gen_wpa_ie(sm, wpa_ie, *wpa_ie_len);
  1946. if (res < 0)
  1947. return -1;
  1948. *wpa_ie_len = res;
  1949. wpa_hexdump(MSG_DEBUG, "WPA: Set own WPA IE default",
  1950. wpa_ie, *wpa_ie_len);
  1951. if (sm->assoc_wpa_ie == NULL) {
  1952. /*
  1953. * Make a copy of the WPA/RSN IE so that 4-Way Handshake gets
  1954. * the correct version of the IE even if PMKSA caching is
  1955. * aborted (which would remove PMKID from IE generation).
  1956. */
  1957. sm->assoc_wpa_ie = os_malloc(*wpa_ie_len);
  1958. if (sm->assoc_wpa_ie == NULL)
  1959. return -1;
  1960. os_memcpy(sm->assoc_wpa_ie, wpa_ie, *wpa_ie_len);
  1961. sm->assoc_wpa_ie_len = *wpa_ie_len;
  1962. }
  1963. return 0;
  1964. }
  1965. /**
  1966. * wpa_sm_set_assoc_wpa_ie - Set own WPA/RSN IE from (Re)AssocReq
  1967. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1968. * @ie: Pointer to IE data (starting from id)
  1969. * @len: IE length
  1970. * Returns: 0 on success, -1 on failure
  1971. *
  1972. * Inform WPA state machine about the WPA/RSN IE used in (Re)Association
  1973. * Request frame. The IE will be used to override the default value generated
  1974. * with wpa_sm_set_assoc_wpa_ie_default().
  1975. */
  1976. int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len)
  1977. {
  1978. if (sm == NULL)
  1979. return -1;
  1980. os_free(sm->assoc_wpa_ie);
  1981. if (ie == NULL || len == 0) {
  1982. wpa_printf(MSG_DEBUG, "WPA: clearing own WPA/RSN IE");
  1983. sm->assoc_wpa_ie = NULL;
  1984. sm->assoc_wpa_ie_len = 0;
  1985. } else {
  1986. wpa_hexdump(MSG_DEBUG, "WPA: set own WPA/RSN IE", ie, len);
  1987. sm->assoc_wpa_ie = os_malloc(len);
  1988. if (sm->assoc_wpa_ie == NULL)
  1989. return -1;
  1990. os_memcpy(sm->assoc_wpa_ie, ie, len);
  1991. sm->assoc_wpa_ie_len = len;
  1992. }
  1993. return 0;
  1994. }
  1995. /**
  1996. * wpa_sm_set_ap_wpa_ie - Set AP WPA IE from Beacon/ProbeResp
  1997. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1998. * @ie: Pointer to IE data (starting from id)
  1999. * @len: IE length
  2000. * Returns: 0 on success, -1 on failure
  2001. *
  2002. * Inform WPA state machine about the WPA IE used in Beacon / Probe Response
  2003. * frame.
  2004. */
  2005. int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len)
  2006. {
  2007. if (sm == NULL)
  2008. return -1;
  2009. os_free(sm->ap_wpa_ie);
  2010. if (ie == NULL || len == 0) {
  2011. wpa_printf(MSG_DEBUG, "WPA: clearing AP WPA IE");
  2012. sm->ap_wpa_ie = NULL;
  2013. sm->ap_wpa_ie_len = 0;
  2014. } else {
  2015. wpa_hexdump(MSG_DEBUG, "WPA: set AP WPA IE", ie, len);
  2016. sm->ap_wpa_ie = os_malloc(len);
  2017. if (sm->ap_wpa_ie == NULL)
  2018. return -1;
  2019. os_memcpy(sm->ap_wpa_ie, ie, len);
  2020. sm->ap_wpa_ie_len = len;
  2021. }
  2022. return 0;
  2023. }
  2024. /**
  2025. * wpa_sm_set_ap_rsn_ie - Set AP RSN IE from Beacon/ProbeResp
  2026. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2027. * @ie: Pointer to IE data (starting from id)
  2028. * @len: IE length
  2029. * Returns: 0 on success, -1 on failure
  2030. *
  2031. * Inform WPA state machine about the RSN IE used in Beacon / Probe Response
  2032. * frame.
  2033. */
  2034. int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie, size_t len)
  2035. {
  2036. if (sm == NULL)
  2037. return -1;
  2038. os_free(sm->ap_rsn_ie);
  2039. if (ie == NULL || len == 0) {
  2040. wpa_printf(MSG_DEBUG, "WPA: clearing AP RSN IE");
  2041. sm->ap_rsn_ie = NULL;
  2042. sm->ap_rsn_ie_len = 0;
  2043. } else {
  2044. wpa_hexdump(MSG_DEBUG, "WPA: set AP RSN IE", ie, len);
  2045. sm->ap_rsn_ie = os_malloc(len);
  2046. if (sm->ap_rsn_ie == NULL)
  2047. return -1;
  2048. os_memcpy(sm->ap_rsn_ie, ie, len);
  2049. sm->ap_rsn_ie_len = len;
  2050. }
  2051. return 0;
  2052. }
  2053. /**
  2054. * wpa_sm_parse_own_wpa_ie - Parse own WPA/RSN IE
  2055. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2056. * @data: Pointer to data area for parsing results
  2057. * Returns: 0 on success, -1 if IE is not known, or -2 on parsing failure
  2058. *
  2059. * Parse the contents of the own WPA or RSN IE from (Re)AssocReq and write the
  2060. * parsed data into data.
  2061. */
  2062. int wpa_sm_parse_own_wpa_ie(struct wpa_sm *sm, struct wpa_ie_data *data)
  2063. {
  2064. if (sm == NULL || sm->assoc_wpa_ie == NULL) {
  2065. wpa_printf(MSG_DEBUG, "WPA: No WPA/RSN IE available from "
  2066. "association info");
  2067. return -1;
  2068. }
  2069. if (wpa_parse_wpa_ie(sm->assoc_wpa_ie, sm->assoc_wpa_ie_len, data))
  2070. return -2;
  2071. return 0;
  2072. }