wpa.c 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475
  1. /*
  2. * hostapd - IEEE 802.11i-2004 / WPA Authenticator
  3. * Copyright (c) 2004-2009, 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. #ifndef CONFIG_NATIVE_WINDOWS
  16. #include "common.h"
  17. #include "eloop.h"
  18. #include "crypto/aes_wrap.h"
  19. #include "crypto/crypto.h"
  20. #include "crypto/sha1.h"
  21. #include "crypto/sha256.h"
  22. #include "eapol_auth/eapol_auth_sm.h"
  23. #include "config.h"
  24. #include "wpa.h"
  25. #include "ieee802_11.h"
  26. #include "pmksa_cache.h"
  27. #include "state_machine.h"
  28. #include "wpa_auth_i.h"
  29. #include "wpa_auth_ie.h"
  30. #define STATE_MACHINE_DATA struct wpa_state_machine
  31. #define STATE_MACHINE_DEBUG_PREFIX "WPA"
  32. #define STATE_MACHINE_ADDR sm->addr
  33. static void wpa_send_eapol_timeout(void *eloop_ctx, void *timeout_ctx);
  34. static void wpa_sm_step(struct wpa_state_machine *sm);
  35. static int wpa_verify_key_mic(struct wpa_ptk *PTK, u8 *data, size_t data_len);
  36. static void wpa_sm_call_step(void *eloop_ctx, void *timeout_ctx);
  37. static void wpa_group_sm_step(struct wpa_authenticator *wpa_auth,
  38. struct wpa_group *group);
  39. static void wpa_request_new_ptk(struct wpa_state_machine *sm);
  40. static int wpa_gtk_update(struct wpa_authenticator *wpa_auth,
  41. struct wpa_group *group);
  42. static const u32 dot11RSNAConfigGroupUpdateCount = 4;
  43. static const u32 dot11RSNAConfigPairwiseUpdateCount = 4;
  44. static const u32 eapol_key_timeout_first = 100; /* ms */
  45. static const u32 eapol_key_timeout_subseq = 1000; /* ms */
  46. /* TODO: make these configurable */
  47. static const int dot11RSNAConfigPMKLifetime = 43200;
  48. static const int dot11RSNAConfigPMKReauthThreshold = 70;
  49. static const int dot11RSNAConfigSATimeout = 60;
  50. static inline void wpa_auth_mic_failure_report(
  51. struct wpa_authenticator *wpa_auth, const u8 *addr)
  52. {
  53. if (wpa_auth->cb.mic_failure_report)
  54. wpa_auth->cb.mic_failure_report(wpa_auth->cb.ctx, addr);
  55. }
  56. static inline void wpa_auth_set_eapol(struct wpa_authenticator *wpa_auth,
  57. const u8 *addr, wpa_eapol_variable var,
  58. int value)
  59. {
  60. if (wpa_auth->cb.set_eapol)
  61. wpa_auth->cb.set_eapol(wpa_auth->cb.ctx, addr, var, value);
  62. }
  63. static inline int wpa_auth_get_eapol(struct wpa_authenticator *wpa_auth,
  64. const u8 *addr, wpa_eapol_variable var)
  65. {
  66. if (wpa_auth->cb.get_eapol == NULL)
  67. return -1;
  68. return wpa_auth->cb.get_eapol(wpa_auth->cb.ctx, addr, var);
  69. }
  70. static inline const u8 * wpa_auth_get_psk(struct wpa_authenticator *wpa_auth,
  71. const u8 *addr, const u8 *prev_psk)
  72. {
  73. if (wpa_auth->cb.get_psk == NULL)
  74. return NULL;
  75. return wpa_auth->cb.get_psk(wpa_auth->cb.ctx, addr, prev_psk);
  76. }
  77. static inline int wpa_auth_get_msk(struct wpa_authenticator *wpa_auth,
  78. const u8 *addr, u8 *msk, size_t *len)
  79. {
  80. if (wpa_auth->cb.get_msk == NULL)
  81. return -1;
  82. return wpa_auth->cb.get_msk(wpa_auth->cb.ctx, addr, msk, len);
  83. }
  84. static inline int wpa_auth_set_key(struct wpa_authenticator *wpa_auth,
  85. int vlan_id,
  86. wpa_alg alg, const u8 *addr, int idx,
  87. u8 *key, size_t key_len)
  88. {
  89. if (wpa_auth->cb.set_key == NULL)
  90. return -1;
  91. return wpa_auth->cb.set_key(wpa_auth->cb.ctx, vlan_id, alg, addr, idx,
  92. key, key_len);
  93. }
  94. static inline int wpa_auth_get_seqnum(struct wpa_authenticator *wpa_auth,
  95. const u8 *addr, int idx, u8 *seq)
  96. {
  97. if (wpa_auth->cb.get_seqnum == NULL)
  98. return -1;
  99. return wpa_auth->cb.get_seqnum(wpa_auth->cb.ctx, addr, idx, seq);
  100. }
  101. static inline int
  102. wpa_auth_send_eapol(struct wpa_authenticator *wpa_auth, const u8 *addr,
  103. const u8 *data, size_t data_len, int encrypt)
  104. {
  105. if (wpa_auth->cb.send_eapol == NULL)
  106. return -1;
  107. return wpa_auth->cb.send_eapol(wpa_auth->cb.ctx, addr, data, data_len,
  108. encrypt);
  109. }
  110. int wpa_auth_for_each_sta(struct wpa_authenticator *wpa_auth,
  111. int (*cb)(struct wpa_state_machine *sm, void *ctx),
  112. void *cb_ctx)
  113. {
  114. if (wpa_auth->cb.for_each_sta == NULL)
  115. return 0;
  116. return wpa_auth->cb.for_each_sta(wpa_auth->cb.ctx, cb, cb_ctx);
  117. }
  118. int wpa_auth_for_each_auth(struct wpa_authenticator *wpa_auth,
  119. int (*cb)(struct wpa_authenticator *a, void *ctx),
  120. void *cb_ctx)
  121. {
  122. if (wpa_auth->cb.for_each_auth == NULL)
  123. return 0;
  124. return wpa_auth->cb.for_each_auth(wpa_auth->cb.ctx, cb, cb_ctx);
  125. }
  126. void wpa_auth_logger(struct wpa_authenticator *wpa_auth, const u8 *addr,
  127. logger_level level, const char *txt)
  128. {
  129. if (wpa_auth->cb.logger == NULL)
  130. return;
  131. wpa_auth->cb.logger(wpa_auth->cb.ctx, addr, level, txt);
  132. }
  133. void wpa_auth_vlogger(struct wpa_authenticator *wpa_auth, const u8 *addr,
  134. logger_level level, const char *fmt, ...)
  135. {
  136. char *format;
  137. int maxlen;
  138. va_list ap;
  139. if (wpa_auth->cb.logger == NULL)
  140. return;
  141. maxlen = os_strlen(fmt) + 100;
  142. format = os_malloc(maxlen);
  143. if (!format)
  144. return;
  145. va_start(ap, fmt);
  146. vsnprintf(format, maxlen, fmt, ap);
  147. va_end(ap);
  148. wpa_auth_logger(wpa_auth, addr, level, format);
  149. os_free(format);
  150. }
  151. static void wpa_sta_disconnect(struct wpa_authenticator *wpa_auth,
  152. const u8 *addr)
  153. {
  154. if (wpa_auth->cb.disconnect == NULL)
  155. return;
  156. wpa_auth->cb.disconnect(wpa_auth->cb.ctx, addr,
  157. WLAN_REASON_PREV_AUTH_NOT_VALID);
  158. }
  159. static int wpa_use_aes_cmac(struct wpa_state_machine *sm)
  160. {
  161. int ret = 0;
  162. #ifdef CONFIG_IEEE80211R
  163. if (wpa_key_mgmt_ft(sm->wpa_key_mgmt))
  164. ret = 1;
  165. #endif /* CONFIG_IEEE80211R */
  166. #ifdef CONFIG_IEEE80211W
  167. if (wpa_key_mgmt_sha256(sm->wpa_key_mgmt))
  168. ret = 1;
  169. #endif /* CONFIG_IEEE80211W */
  170. return ret;
  171. }
  172. static void wpa_rekey_gmk(void *eloop_ctx, void *timeout_ctx)
  173. {
  174. struct wpa_authenticator *wpa_auth = eloop_ctx;
  175. if (os_get_random(wpa_auth->group->GMK, WPA_GMK_LEN)) {
  176. wpa_printf(MSG_ERROR, "Failed to get random data for WPA "
  177. "initialization.");
  178. } else {
  179. wpa_auth_logger(wpa_auth, NULL, LOGGER_DEBUG, "GMK rekeyd");
  180. }
  181. if (wpa_auth->conf.wpa_gmk_rekey) {
  182. eloop_register_timeout(wpa_auth->conf.wpa_gmk_rekey, 0,
  183. wpa_rekey_gmk, wpa_auth, NULL);
  184. }
  185. }
  186. static void wpa_rekey_gtk(void *eloop_ctx, void *timeout_ctx)
  187. {
  188. struct wpa_authenticator *wpa_auth = eloop_ctx;
  189. struct wpa_group *group;
  190. wpa_auth_logger(wpa_auth, NULL, LOGGER_DEBUG, "rekeying GTK");
  191. for (group = wpa_auth->group; group; group = group->next) {
  192. group->GTKReKey = TRUE;
  193. do {
  194. group->changed = FALSE;
  195. wpa_group_sm_step(wpa_auth, group);
  196. } while (group->changed);
  197. }
  198. if (wpa_auth->conf.wpa_group_rekey) {
  199. eloop_register_timeout(wpa_auth->conf.wpa_group_rekey,
  200. 0, wpa_rekey_gtk, wpa_auth, NULL);
  201. }
  202. }
  203. static void wpa_rekey_ptk(void *eloop_ctx, void *timeout_ctx)
  204. {
  205. struct wpa_authenticator *wpa_auth = eloop_ctx;
  206. struct wpa_state_machine *sm = timeout_ctx;
  207. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG, "rekeying PTK");
  208. wpa_request_new_ptk(sm);
  209. wpa_sm_step(sm);
  210. }
  211. static int wpa_auth_pmksa_clear_cb(struct wpa_state_machine *sm, void *ctx)
  212. {
  213. if (sm->pmksa == ctx)
  214. sm->pmksa = NULL;
  215. return 0;
  216. }
  217. static void wpa_auth_pmksa_free_cb(struct rsn_pmksa_cache_entry *entry,
  218. void *ctx)
  219. {
  220. struct wpa_authenticator *wpa_auth = ctx;
  221. wpa_auth_for_each_sta(wpa_auth, wpa_auth_pmksa_clear_cb, entry);
  222. }
  223. static void wpa_group_set_key_len(struct wpa_group *group, int cipher)
  224. {
  225. switch (cipher) {
  226. case WPA_CIPHER_CCMP:
  227. group->GTK_len = 16;
  228. break;
  229. case WPA_CIPHER_TKIP:
  230. group->GTK_len = 32;
  231. break;
  232. case WPA_CIPHER_WEP104:
  233. group->GTK_len = 13;
  234. break;
  235. case WPA_CIPHER_WEP40:
  236. group->GTK_len = 5;
  237. break;
  238. }
  239. }
  240. static struct wpa_group * wpa_group_init(struct wpa_authenticator *wpa_auth,
  241. int vlan_id)
  242. {
  243. struct wpa_group *group;
  244. u8 buf[ETH_ALEN + 8 + sizeof(group)];
  245. u8 rkey[32];
  246. group = os_zalloc(sizeof(struct wpa_group));
  247. if (group == NULL)
  248. return NULL;
  249. group->GTKAuthenticator = TRUE;
  250. group->vlan_id = vlan_id;
  251. wpa_group_set_key_len(group, wpa_auth->conf.wpa_group);
  252. /* Counter = PRF-256(Random number, "Init Counter",
  253. * Local MAC Address || Time)
  254. */
  255. os_memcpy(buf, wpa_auth->addr, ETH_ALEN);
  256. wpa_get_ntp_timestamp(buf + ETH_ALEN);
  257. os_memcpy(buf + ETH_ALEN + 8, &group, sizeof(group));
  258. if (os_get_random(rkey, sizeof(rkey)) ||
  259. os_get_random(group->GMK, WPA_GMK_LEN)) {
  260. wpa_printf(MSG_ERROR, "Failed to get random data for WPA "
  261. "initialization.");
  262. os_free(group);
  263. return NULL;
  264. }
  265. sha1_prf(rkey, sizeof(rkey), "Init Counter", buf, sizeof(buf),
  266. group->Counter, WPA_NONCE_LEN);
  267. group->GInit = TRUE;
  268. wpa_group_sm_step(wpa_auth, group);
  269. group->GInit = FALSE;
  270. wpa_group_sm_step(wpa_auth, group);
  271. return group;
  272. }
  273. /**
  274. * wpa_init - Initialize WPA authenticator
  275. * @addr: Authenticator address
  276. * @conf: Configuration for WPA authenticator
  277. * @cb: Callback functions for WPA authenticator
  278. * Returns: Pointer to WPA authenticator data or %NULL on failure
  279. */
  280. struct wpa_authenticator * wpa_init(const u8 *addr,
  281. struct wpa_auth_config *conf,
  282. struct wpa_auth_callbacks *cb)
  283. {
  284. struct wpa_authenticator *wpa_auth;
  285. wpa_auth = os_zalloc(sizeof(struct wpa_authenticator));
  286. if (wpa_auth == NULL)
  287. return NULL;
  288. os_memcpy(wpa_auth->addr, addr, ETH_ALEN);
  289. os_memcpy(&wpa_auth->conf, conf, sizeof(*conf));
  290. os_memcpy(&wpa_auth->cb, cb, sizeof(*cb));
  291. if (wpa_auth_gen_wpa_ie(wpa_auth)) {
  292. wpa_printf(MSG_ERROR, "Could not generate WPA IE.");
  293. os_free(wpa_auth);
  294. return NULL;
  295. }
  296. wpa_auth->group = wpa_group_init(wpa_auth, 0);
  297. if (wpa_auth->group == NULL) {
  298. os_free(wpa_auth->wpa_ie);
  299. os_free(wpa_auth);
  300. return NULL;
  301. }
  302. wpa_auth->pmksa = pmksa_cache_auth_init(wpa_auth_pmksa_free_cb,
  303. wpa_auth);
  304. if (wpa_auth->pmksa == NULL) {
  305. wpa_printf(MSG_ERROR, "PMKSA cache initialization failed.");
  306. os_free(wpa_auth->wpa_ie);
  307. os_free(wpa_auth);
  308. return NULL;
  309. }
  310. #ifdef CONFIG_IEEE80211R
  311. wpa_auth->ft_pmk_cache = wpa_ft_pmk_cache_init();
  312. if (wpa_auth->ft_pmk_cache == NULL) {
  313. wpa_printf(MSG_ERROR, "FT PMK cache initialization failed.");
  314. os_free(wpa_auth->wpa_ie);
  315. pmksa_cache_auth_deinit(wpa_auth->pmksa);
  316. os_free(wpa_auth);
  317. return NULL;
  318. }
  319. #endif /* CONFIG_IEEE80211R */
  320. if (wpa_auth->conf.wpa_gmk_rekey) {
  321. eloop_register_timeout(wpa_auth->conf.wpa_gmk_rekey, 0,
  322. wpa_rekey_gmk, wpa_auth, NULL);
  323. }
  324. if (wpa_auth->conf.wpa_group_rekey) {
  325. eloop_register_timeout(wpa_auth->conf.wpa_group_rekey, 0,
  326. wpa_rekey_gtk, wpa_auth, NULL);
  327. }
  328. return wpa_auth;
  329. }
  330. /**
  331. * wpa_deinit - Deinitialize WPA authenticator
  332. * @wpa_auth: Pointer to WPA authenticator data from wpa_init()
  333. */
  334. void wpa_deinit(struct wpa_authenticator *wpa_auth)
  335. {
  336. struct wpa_group *group, *prev;
  337. eloop_cancel_timeout(wpa_rekey_gmk, wpa_auth, NULL);
  338. eloop_cancel_timeout(wpa_rekey_gtk, wpa_auth, NULL);
  339. #ifdef CONFIG_PEERKEY
  340. while (wpa_auth->stsl_negotiations)
  341. wpa_stsl_remove(wpa_auth, wpa_auth->stsl_negotiations);
  342. #endif /* CONFIG_PEERKEY */
  343. pmksa_cache_auth_deinit(wpa_auth->pmksa);
  344. #ifdef CONFIG_IEEE80211R
  345. wpa_ft_pmk_cache_deinit(wpa_auth->ft_pmk_cache);
  346. wpa_auth->ft_pmk_cache = NULL;
  347. #endif /* CONFIG_IEEE80211R */
  348. os_free(wpa_auth->wpa_ie);
  349. group = wpa_auth->group;
  350. while (group) {
  351. prev = group;
  352. group = group->next;
  353. os_free(prev);
  354. }
  355. os_free(wpa_auth);
  356. }
  357. /**
  358. * wpa_reconfig - Update WPA authenticator configuration
  359. * @wpa_auth: Pointer to WPA authenticator data from wpa_init()
  360. * @conf: Configuration for WPA authenticator
  361. */
  362. int wpa_reconfig(struct wpa_authenticator *wpa_auth,
  363. struct wpa_auth_config *conf)
  364. {
  365. struct wpa_group *group;
  366. if (wpa_auth == NULL)
  367. return 0;
  368. os_memcpy(&wpa_auth->conf, conf, sizeof(*conf));
  369. if (wpa_auth_gen_wpa_ie(wpa_auth)) {
  370. wpa_printf(MSG_ERROR, "Could not generate WPA IE.");
  371. return -1;
  372. }
  373. /*
  374. * Reinitialize GTK to make sure it is suitable for the new
  375. * configuration.
  376. */
  377. group = wpa_auth->group;
  378. wpa_group_set_key_len(group, wpa_auth->conf.wpa_group);
  379. group->GInit = TRUE;
  380. wpa_group_sm_step(wpa_auth, group);
  381. group->GInit = FALSE;
  382. wpa_group_sm_step(wpa_auth, group);
  383. return 0;
  384. }
  385. struct wpa_state_machine *
  386. wpa_auth_sta_init(struct wpa_authenticator *wpa_auth, const u8 *addr)
  387. {
  388. struct wpa_state_machine *sm;
  389. sm = os_zalloc(sizeof(struct wpa_state_machine));
  390. if (sm == NULL)
  391. return NULL;
  392. os_memcpy(sm->addr, addr, ETH_ALEN);
  393. sm->wpa_auth = wpa_auth;
  394. sm->group = wpa_auth->group;
  395. return sm;
  396. }
  397. void wpa_auth_sta_associated(struct wpa_authenticator *wpa_auth,
  398. struct wpa_state_machine *sm)
  399. {
  400. if (wpa_auth == NULL || !wpa_auth->conf.wpa || sm == NULL)
  401. return;
  402. #ifdef CONFIG_IEEE80211R
  403. if (sm->ft_completed) {
  404. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG,
  405. "FT authentication already completed - do not "
  406. "start 4-way handshake");
  407. return;
  408. }
  409. #endif /* CONFIG_IEEE80211R */
  410. if (sm->started) {
  411. os_memset(&sm->key_replay, 0, sizeof(sm->key_replay));
  412. sm->ReAuthenticationRequest = TRUE;
  413. wpa_sm_step(sm);
  414. return;
  415. }
  416. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG,
  417. "start authentication");
  418. sm->started = 1;
  419. sm->Init = TRUE;
  420. wpa_sm_step(sm);
  421. sm->Init = FALSE;
  422. sm->AuthenticationRequest = TRUE;
  423. wpa_sm_step(sm);
  424. }
  425. void wpa_auth_sta_no_wpa(struct wpa_state_machine *sm)
  426. {
  427. /* WPA/RSN was not used - clear WPA state. This is needed if the STA
  428. * reassociates back to the same AP while the previous entry for the
  429. * STA has not yet been removed. */
  430. if (sm == NULL)
  431. return;
  432. sm->wpa_key_mgmt = 0;
  433. }
  434. static void wpa_free_sta_sm(struct wpa_state_machine *sm)
  435. {
  436. os_free(sm->last_rx_eapol_key);
  437. os_free(sm->wpa_ie);
  438. os_free(sm);
  439. }
  440. void wpa_auth_sta_deinit(struct wpa_state_machine *sm)
  441. {
  442. if (sm == NULL)
  443. return;
  444. if (sm->wpa_auth->conf.wpa_strict_rekey && sm->has_GTK) {
  445. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  446. "strict rekeying - force GTK rekey since STA "
  447. "is leaving");
  448. eloop_cancel_timeout(wpa_rekey_gtk, sm->wpa_auth, NULL);
  449. eloop_register_timeout(0, 500000, wpa_rekey_gtk, sm->wpa_auth,
  450. NULL);
  451. }
  452. eloop_cancel_timeout(wpa_send_eapol_timeout, sm->wpa_auth, sm);
  453. eloop_cancel_timeout(wpa_sm_call_step, sm, NULL);
  454. eloop_cancel_timeout(wpa_rekey_ptk, sm->wpa_auth, sm);
  455. if (sm->in_step_loop) {
  456. /* Must not free state machine while wpa_sm_step() is running.
  457. * Freeing will be completed in the end of wpa_sm_step(). */
  458. wpa_printf(MSG_DEBUG, "WPA: Registering pending STA state "
  459. "machine deinit for " MACSTR, MAC2STR(sm->addr));
  460. sm->pending_deinit = 1;
  461. } else
  462. wpa_free_sta_sm(sm);
  463. }
  464. static void wpa_request_new_ptk(struct wpa_state_machine *sm)
  465. {
  466. if (sm == NULL)
  467. return;
  468. sm->PTKRequest = TRUE;
  469. sm->PTK_valid = 0;
  470. }
  471. static int wpa_replay_counter_valid(struct wpa_state_machine *sm,
  472. const u8 *replay_counter)
  473. {
  474. int i;
  475. for (i = 0; i < RSNA_MAX_EAPOL_RETRIES; i++) {
  476. if (!sm->key_replay[i].valid)
  477. break;
  478. if (os_memcmp(replay_counter, sm->key_replay[i].counter,
  479. WPA_REPLAY_COUNTER_LEN) == 0)
  480. return 1;
  481. }
  482. return 0;
  483. }
  484. void wpa_receive(struct wpa_authenticator *wpa_auth,
  485. struct wpa_state_machine *sm,
  486. u8 *data, size_t data_len)
  487. {
  488. struct ieee802_1x_hdr *hdr;
  489. struct wpa_eapol_key *key;
  490. u16 key_info, key_data_length;
  491. enum { PAIRWISE_2, PAIRWISE_4, GROUP_2, REQUEST,
  492. SMK_M1, SMK_M3, SMK_ERROR } msg;
  493. char *msgtxt;
  494. struct wpa_eapol_ie_parse kde;
  495. if (wpa_auth == NULL || !wpa_auth->conf.wpa || sm == NULL)
  496. return;
  497. if (data_len < sizeof(*hdr) + sizeof(*key))
  498. return;
  499. hdr = (struct ieee802_1x_hdr *) data;
  500. key = (struct wpa_eapol_key *) (hdr + 1);
  501. key_info = WPA_GET_BE16(key->key_info);
  502. key_data_length = WPA_GET_BE16(key->key_data_length);
  503. if (key_data_length > data_len - sizeof(*hdr) - sizeof(*key)) {
  504. wpa_printf(MSG_INFO, "WPA: Invalid EAPOL-Key frame - "
  505. "key_data overflow (%d > %lu)",
  506. key_data_length,
  507. (unsigned long) (data_len - sizeof(*hdr) -
  508. sizeof(*key)));
  509. return;
  510. }
  511. if (sm->wpa == WPA_VERSION_WPA2) {
  512. if (key->type != EAPOL_KEY_TYPE_RSN) {
  513. wpa_printf(MSG_DEBUG, "Ignore EAPOL-Key with "
  514. "unexpected type %d in RSN mode",
  515. key->type);
  516. return;
  517. }
  518. } else {
  519. if (key->type != EAPOL_KEY_TYPE_WPA) {
  520. wpa_printf(MSG_DEBUG, "Ignore EAPOL-Key with "
  521. "unexpected type %d in WPA mode",
  522. key->type);
  523. return;
  524. }
  525. }
  526. /* FIX: verify that the EAPOL-Key frame was encrypted if pairwise keys
  527. * are set */
  528. if ((key_info & (WPA_KEY_INFO_SMK_MESSAGE | WPA_KEY_INFO_REQUEST)) ==
  529. (WPA_KEY_INFO_SMK_MESSAGE | WPA_KEY_INFO_REQUEST)) {
  530. if (key_info & WPA_KEY_INFO_ERROR) {
  531. msg = SMK_ERROR;
  532. msgtxt = "SMK Error";
  533. } else {
  534. msg = SMK_M1;
  535. msgtxt = "SMK M1";
  536. }
  537. } else if (key_info & WPA_KEY_INFO_SMK_MESSAGE) {
  538. msg = SMK_M3;
  539. msgtxt = "SMK M3";
  540. } else if (key_info & WPA_KEY_INFO_REQUEST) {
  541. msg = REQUEST;
  542. msgtxt = "Request";
  543. } else if (!(key_info & WPA_KEY_INFO_KEY_TYPE)) {
  544. msg = GROUP_2;
  545. msgtxt = "2/2 Group";
  546. } else if (key_data_length == 0) {
  547. msg = PAIRWISE_4;
  548. msgtxt = "4/4 Pairwise";
  549. } else {
  550. msg = PAIRWISE_2;
  551. msgtxt = "2/4 Pairwise";
  552. }
  553. /* TODO: key_info type validation for PeerKey */
  554. if (msg == REQUEST || msg == PAIRWISE_2 || msg == PAIRWISE_4 ||
  555. msg == GROUP_2) {
  556. u16 ver = key_info & WPA_KEY_INFO_TYPE_MASK;
  557. if (sm->pairwise == WPA_CIPHER_CCMP) {
  558. if (wpa_use_aes_cmac(sm) &&
  559. ver != WPA_KEY_INFO_TYPE_AES_128_CMAC) {
  560. wpa_auth_logger(wpa_auth, sm->addr,
  561. LOGGER_WARNING,
  562. "advertised support for "
  563. "AES-128-CMAC, but did not "
  564. "use it");
  565. return;
  566. }
  567. if (!wpa_use_aes_cmac(sm) &&
  568. ver != WPA_KEY_INFO_TYPE_HMAC_SHA1_AES) {
  569. wpa_auth_logger(wpa_auth, sm->addr,
  570. LOGGER_WARNING,
  571. "did not use HMAC-SHA1-AES "
  572. "with CCMP");
  573. return;
  574. }
  575. }
  576. }
  577. if (key_info & WPA_KEY_INFO_REQUEST) {
  578. if (sm->req_replay_counter_used &&
  579. os_memcmp(key->replay_counter, sm->req_replay_counter,
  580. WPA_REPLAY_COUNTER_LEN) <= 0) {
  581. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_WARNING,
  582. "received EAPOL-Key request with "
  583. "replayed counter");
  584. return;
  585. }
  586. }
  587. if (!(key_info & WPA_KEY_INFO_REQUEST) &&
  588. !wpa_replay_counter_valid(sm, key->replay_counter)) {
  589. int i;
  590. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_INFO,
  591. "received EAPOL-Key %s with unexpected "
  592. "replay counter", msgtxt);
  593. for (i = 0; i < RSNA_MAX_EAPOL_RETRIES; i++) {
  594. if (!sm->key_replay[i].valid)
  595. break;
  596. wpa_hexdump(MSG_DEBUG, "pending replay counter",
  597. sm->key_replay[i].counter,
  598. WPA_REPLAY_COUNTER_LEN);
  599. }
  600. wpa_hexdump(MSG_DEBUG, "received replay counter",
  601. key->replay_counter, WPA_REPLAY_COUNTER_LEN);
  602. return;
  603. }
  604. switch (msg) {
  605. case PAIRWISE_2:
  606. if (sm->wpa_ptk_state != WPA_PTK_PTKSTART &&
  607. sm->wpa_ptk_state != WPA_PTK_PTKCALCNEGOTIATING) {
  608. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_INFO,
  609. "received EAPOL-Key msg 2/4 in "
  610. "invalid state (%d) - dropped",
  611. sm->wpa_ptk_state);
  612. return;
  613. }
  614. if (sm->wpa_ie == NULL ||
  615. sm->wpa_ie_len != key_data_length ||
  616. os_memcmp(sm->wpa_ie, key + 1, key_data_length) != 0) {
  617. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  618. "WPA IE from (Re)AssocReq did not "
  619. "match with msg 2/4");
  620. if (sm->wpa_ie) {
  621. wpa_hexdump(MSG_DEBUG, "WPA IE in AssocReq",
  622. sm->wpa_ie, sm->wpa_ie_len);
  623. }
  624. wpa_hexdump(MSG_DEBUG, "WPA IE in msg 2/4",
  625. (u8 *) (key + 1), key_data_length);
  626. /* MLME-DEAUTHENTICATE.request */
  627. wpa_sta_disconnect(wpa_auth, sm->addr);
  628. return;
  629. }
  630. break;
  631. case PAIRWISE_4:
  632. if (sm->wpa_ptk_state != WPA_PTK_PTKINITNEGOTIATING ||
  633. !sm->PTK_valid) {
  634. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_INFO,
  635. "received EAPOL-Key msg 4/4 in "
  636. "invalid state (%d) - dropped",
  637. sm->wpa_ptk_state);
  638. return;
  639. }
  640. break;
  641. case GROUP_2:
  642. if (sm->wpa_ptk_group_state != WPA_PTK_GROUP_REKEYNEGOTIATING
  643. || !sm->PTK_valid) {
  644. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_INFO,
  645. "received EAPOL-Key msg 2/2 in "
  646. "invalid state (%d) - dropped",
  647. sm->wpa_ptk_group_state);
  648. return;
  649. }
  650. break;
  651. #ifdef CONFIG_PEERKEY
  652. case SMK_M1:
  653. case SMK_M3:
  654. case SMK_ERROR:
  655. if (!wpa_auth->conf.peerkey) {
  656. wpa_printf(MSG_DEBUG, "RSN: SMK M1/M3/Error, but "
  657. "PeerKey use disabled - ignoring message");
  658. return;
  659. }
  660. if (!sm->PTK_valid) {
  661. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  662. "received EAPOL-Key msg SMK in "
  663. "invalid state - dropped");
  664. return;
  665. }
  666. break;
  667. #else /* CONFIG_PEERKEY */
  668. case SMK_M1:
  669. case SMK_M3:
  670. case SMK_ERROR:
  671. return; /* STSL disabled - ignore SMK messages */
  672. #endif /* CONFIG_PEERKEY */
  673. case REQUEST:
  674. break;
  675. }
  676. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_DEBUG,
  677. "received EAPOL-Key frame (%s)", msgtxt);
  678. if (key_info & WPA_KEY_INFO_ACK) {
  679. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  680. "received invalid EAPOL-Key: Key Ack set");
  681. return;
  682. }
  683. if (!(key_info & WPA_KEY_INFO_MIC)) {
  684. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  685. "received invalid EAPOL-Key: Key MIC not set");
  686. return;
  687. }
  688. sm->MICVerified = FALSE;
  689. if (sm->PTK_valid) {
  690. if (wpa_verify_key_mic(&sm->PTK, data, data_len)) {
  691. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  692. "received EAPOL-Key with invalid MIC");
  693. return;
  694. }
  695. sm->MICVerified = TRUE;
  696. eloop_cancel_timeout(wpa_send_eapol_timeout, wpa_auth, sm);
  697. }
  698. if (key_info & WPA_KEY_INFO_REQUEST) {
  699. if (sm->MICVerified) {
  700. sm->req_replay_counter_used = 1;
  701. os_memcpy(sm->req_replay_counter, key->replay_counter,
  702. WPA_REPLAY_COUNTER_LEN);
  703. } else {
  704. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  705. "received EAPOL-Key request with "
  706. "invalid MIC");
  707. return;
  708. }
  709. /*
  710. * TODO: should decrypt key data field if encryption was used;
  711. * even though MAC address KDE is not normally encrypted,
  712. * supplicant is allowed to encrypt it.
  713. */
  714. if (msg == SMK_ERROR) {
  715. #ifdef CONFIG_PEERKEY
  716. wpa_smk_error(wpa_auth, sm, key);
  717. #endif /* CONFIG_PEERKEY */
  718. return;
  719. } else if (key_info & WPA_KEY_INFO_ERROR) {
  720. /* Supplicant reported a Michael MIC error */
  721. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  722. "received EAPOL-Key Error Request "
  723. "(STA detected Michael MIC failure)");
  724. wpa_auth_mic_failure_report(wpa_auth, sm->addr);
  725. sm->dot11RSNAStatsTKIPRemoteMICFailures++;
  726. wpa_auth->dot11RSNAStatsTKIPRemoteMICFailures++;
  727. /* Error report is not a request for a new key
  728. * handshake, but since Authenticator may do it, let's
  729. * change the keys now anyway. */
  730. wpa_request_new_ptk(sm);
  731. } else if (key_info & WPA_KEY_INFO_KEY_TYPE) {
  732. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  733. "received EAPOL-Key Request for new "
  734. "4-Way Handshake");
  735. wpa_request_new_ptk(sm);
  736. #ifdef CONFIG_PEERKEY
  737. } else if (msg == SMK_M1) {
  738. wpa_smk_m1(wpa_auth, sm, key);
  739. #endif /* CONFIG_PEERKEY */
  740. } else if (key_data_length > 0 &&
  741. wpa_parse_kde_ies((const u8 *) (key + 1),
  742. key_data_length, &kde) == 0 &&
  743. kde.mac_addr) {
  744. } else {
  745. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  746. "received EAPOL-Key Request for GTK "
  747. "rekeying");
  748. /* FIX: why was this triggering PTK rekeying for the
  749. * STA that requested Group Key rekeying?? */
  750. /* wpa_request_new_ptk(sta->wpa_sm); */
  751. eloop_cancel_timeout(wpa_rekey_gtk, wpa_auth, NULL);
  752. wpa_rekey_gtk(wpa_auth, NULL);
  753. }
  754. } else {
  755. /* Do not allow the same key replay counter to be reused. This
  756. * does also invalidate all other pending replay counters if
  757. * retransmissions were used, i.e., we will only process one of
  758. * the pending replies and ignore rest if more than one is
  759. * received. */
  760. sm->key_replay[0].valid = FALSE;
  761. }
  762. #ifdef CONFIG_PEERKEY
  763. if (msg == SMK_M3) {
  764. wpa_smk_m3(wpa_auth, sm, key);
  765. return;
  766. }
  767. #endif /* CONFIG_PEERKEY */
  768. os_free(sm->last_rx_eapol_key);
  769. sm->last_rx_eapol_key = os_malloc(data_len);
  770. if (sm->last_rx_eapol_key == NULL)
  771. return;
  772. os_memcpy(sm->last_rx_eapol_key, data, data_len);
  773. sm->last_rx_eapol_key_len = data_len;
  774. sm->EAPOLKeyReceived = TRUE;
  775. sm->EAPOLKeyPairwise = !!(key_info & WPA_KEY_INFO_KEY_TYPE);
  776. sm->EAPOLKeyRequest = !!(key_info & WPA_KEY_INFO_REQUEST);
  777. os_memcpy(sm->SNonce, key->key_nonce, WPA_NONCE_LEN);
  778. wpa_sm_step(sm);
  779. }
  780. static void wpa_gmk_to_gtk(const u8 *gmk, const u8 *addr, const u8 *gnonce,
  781. u8 *gtk, size_t gtk_len)
  782. {
  783. u8 data[ETH_ALEN + WPA_NONCE_LEN];
  784. /* GTK = PRF-X(GMK, "Group key expansion", AA || GNonce) */
  785. os_memcpy(data, addr, ETH_ALEN);
  786. os_memcpy(data + ETH_ALEN, gnonce, WPA_NONCE_LEN);
  787. #ifdef CONFIG_IEEE80211W
  788. sha256_prf(gmk, WPA_GMK_LEN, "Group key expansion",
  789. data, sizeof(data), gtk, gtk_len);
  790. #else /* CONFIG_IEEE80211W */
  791. sha1_prf(gmk, WPA_GMK_LEN, "Group key expansion",
  792. data, sizeof(data), gtk, gtk_len);
  793. #endif /* CONFIG_IEEE80211W */
  794. wpa_hexdump_key(MSG_DEBUG, "GMK", gmk, WPA_GMK_LEN);
  795. wpa_hexdump_key(MSG_DEBUG, "GTK", gtk, gtk_len);
  796. }
  797. static void wpa_send_eapol_timeout(void *eloop_ctx, void *timeout_ctx)
  798. {
  799. struct wpa_authenticator *wpa_auth = eloop_ctx;
  800. struct wpa_state_machine *sm = timeout_ctx;
  801. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG, "EAPOL-Key timeout");
  802. sm->TimeoutEvt = TRUE;
  803. wpa_sm_step(sm);
  804. }
  805. void __wpa_send_eapol(struct wpa_authenticator *wpa_auth,
  806. struct wpa_state_machine *sm, int key_info,
  807. const u8 *key_rsc, const u8 *nonce,
  808. const u8 *kde, size_t kde_len,
  809. int keyidx, int encr, int force_version)
  810. {
  811. struct ieee802_1x_hdr *hdr;
  812. struct wpa_eapol_key *key;
  813. size_t len;
  814. int alg;
  815. int key_data_len, pad_len = 0;
  816. u8 *buf, *pos;
  817. int version, pairwise;
  818. int i;
  819. len = sizeof(struct ieee802_1x_hdr) + sizeof(struct wpa_eapol_key);
  820. if (force_version)
  821. version = force_version;
  822. else if (wpa_use_aes_cmac(sm))
  823. version = WPA_KEY_INFO_TYPE_AES_128_CMAC;
  824. else if (sm->pairwise == WPA_CIPHER_CCMP)
  825. version = WPA_KEY_INFO_TYPE_HMAC_SHA1_AES;
  826. else
  827. version = WPA_KEY_INFO_TYPE_HMAC_MD5_RC4;
  828. pairwise = key_info & WPA_KEY_INFO_KEY_TYPE;
  829. wpa_printf(MSG_DEBUG, "WPA: Send EAPOL(version=%d secure=%d mic=%d "
  830. "ack=%d install=%d pairwise=%d kde_len=%lu keyidx=%d "
  831. "encr=%d)",
  832. version,
  833. (key_info & WPA_KEY_INFO_SECURE) ? 1 : 0,
  834. (key_info & WPA_KEY_INFO_MIC) ? 1 : 0,
  835. (key_info & WPA_KEY_INFO_ACK) ? 1 : 0,
  836. (key_info & WPA_KEY_INFO_INSTALL) ? 1 : 0,
  837. pairwise, (unsigned long) kde_len, keyidx, encr);
  838. key_data_len = kde_len;
  839. if ((version == WPA_KEY_INFO_TYPE_HMAC_SHA1_AES ||
  840. version == WPA_KEY_INFO_TYPE_AES_128_CMAC) && encr) {
  841. pad_len = key_data_len % 8;
  842. if (pad_len)
  843. pad_len = 8 - pad_len;
  844. key_data_len += pad_len + 8;
  845. }
  846. len += key_data_len;
  847. hdr = os_zalloc(len);
  848. if (hdr == NULL)
  849. return;
  850. hdr->version = wpa_auth->conf.eapol_version;
  851. hdr->type = IEEE802_1X_TYPE_EAPOL_KEY;
  852. hdr->length = host_to_be16(len - sizeof(*hdr));
  853. key = (struct wpa_eapol_key *) (hdr + 1);
  854. key->type = sm->wpa == WPA_VERSION_WPA2 ?
  855. EAPOL_KEY_TYPE_RSN : EAPOL_KEY_TYPE_WPA;
  856. key_info |= version;
  857. if (encr && sm->wpa == WPA_VERSION_WPA2)
  858. key_info |= WPA_KEY_INFO_ENCR_KEY_DATA;
  859. if (sm->wpa != WPA_VERSION_WPA2)
  860. key_info |= keyidx << WPA_KEY_INFO_KEY_INDEX_SHIFT;
  861. WPA_PUT_BE16(key->key_info, key_info);
  862. alg = pairwise ? sm->pairwise : wpa_auth->conf.wpa_group;
  863. switch (alg) {
  864. case WPA_CIPHER_CCMP:
  865. WPA_PUT_BE16(key->key_length, 16);
  866. break;
  867. case WPA_CIPHER_TKIP:
  868. WPA_PUT_BE16(key->key_length, 32);
  869. break;
  870. case WPA_CIPHER_WEP40:
  871. WPA_PUT_BE16(key->key_length, 5);
  872. break;
  873. case WPA_CIPHER_WEP104:
  874. WPA_PUT_BE16(key->key_length, 13);
  875. break;
  876. }
  877. if (key_info & WPA_KEY_INFO_SMK_MESSAGE)
  878. WPA_PUT_BE16(key->key_length, 0);
  879. /* FIX: STSL: what to use as key_replay_counter? */
  880. for (i = RSNA_MAX_EAPOL_RETRIES - 1; i > 0; i--) {
  881. sm->key_replay[i].valid = sm->key_replay[i - 1].valid;
  882. os_memcpy(sm->key_replay[i].counter,
  883. sm->key_replay[i - 1].counter,
  884. WPA_REPLAY_COUNTER_LEN);
  885. }
  886. inc_byte_array(sm->key_replay[0].counter, WPA_REPLAY_COUNTER_LEN);
  887. os_memcpy(key->replay_counter, sm->key_replay[0].counter,
  888. WPA_REPLAY_COUNTER_LEN);
  889. sm->key_replay[0].valid = TRUE;
  890. if (nonce)
  891. os_memcpy(key->key_nonce, nonce, WPA_NONCE_LEN);
  892. if (key_rsc)
  893. os_memcpy(key->key_rsc, key_rsc, WPA_KEY_RSC_LEN);
  894. if (kde && !encr) {
  895. os_memcpy(key + 1, kde, kde_len);
  896. WPA_PUT_BE16(key->key_data_length, kde_len);
  897. } else if (encr && kde) {
  898. buf = os_zalloc(key_data_len);
  899. if (buf == NULL) {
  900. os_free(hdr);
  901. return;
  902. }
  903. pos = buf;
  904. os_memcpy(pos, kde, kde_len);
  905. pos += kde_len;
  906. if (pad_len)
  907. *pos++ = 0xdd;
  908. wpa_hexdump_key(MSG_DEBUG, "Plaintext EAPOL-Key Key Data",
  909. buf, key_data_len);
  910. if (version == WPA_KEY_INFO_TYPE_HMAC_SHA1_AES ||
  911. version == WPA_KEY_INFO_TYPE_AES_128_CMAC) {
  912. if (aes_wrap(sm->PTK.kek, (key_data_len - 8) / 8, buf,
  913. (u8 *) (key + 1))) {
  914. os_free(hdr);
  915. os_free(buf);
  916. return;
  917. }
  918. WPA_PUT_BE16(key->key_data_length, key_data_len);
  919. } else {
  920. u8 ek[32];
  921. os_memcpy(key->key_iv,
  922. sm->group->Counter + WPA_NONCE_LEN - 16, 16);
  923. inc_byte_array(sm->group->Counter, WPA_NONCE_LEN);
  924. os_memcpy(ek, key->key_iv, 16);
  925. os_memcpy(ek + 16, sm->PTK.kek, 16);
  926. os_memcpy(key + 1, buf, key_data_len);
  927. rc4_skip(ek, 32, 256, (u8 *) (key + 1), key_data_len);
  928. WPA_PUT_BE16(key->key_data_length, key_data_len);
  929. }
  930. os_free(buf);
  931. }
  932. if (key_info & WPA_KEY_INFO_MIC) {
  933. if (!sm->PTK_valid) {
  934. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG,
  935. "PTK not valid when sending EAPOL-Key "
  936. "frame");
  937. os_free(hdr);
  938. return;
  939. }
  940. wpa_eapol_key_mic(sm->PTK.kck, version, (u8 *) hdr, len,
  941. key->key_mic);
  942. }
  943. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_inc_EapolFramesTx,
  944. 1);
  945. wpa_auth_send_eapol(wpa_auth, sm->addr, (u8 *) hdr, len,
  946. sm->pairwise_set);
  947. os_free(hdr);
  948. }
  949. static void wpa_send_eapol(struct wpa_authenticator *wpa_auth,
  950. struct wpa_state_machine *sm, int key_info,
  951. const u8 *key_rsc, const u8 *nonce,
  952. const u8 *kde, size_t kde_len,
  953. int keyidx, int encr)
  954. {
  955. int timeout_ms;
  956. int pairwise = key_info & WPA_KEY_INFO_KEY_TYPE;
  957. int ctr;
  958. if (sm == NULL)
  959. return;
  960. __wpa_send_eapol(wpa_auth, sm, key_info, key_rsc, nonce, kde, kde_len,
  961. keyidx, encr, 0);
  962. ctr = pairwise ? sm->TimeoutCtr : sm->GTimeoutCtr;
  963. if (ctr == 1)
  964. timeout_ms = eapol_key_timeout_first;
  965. else
  966. timeout_ms = eapol_key_timeout_subseq;
  967. eloop_register_timeout(timeout_ms / 1000, (timeout_ms % 1000) * 1000,
  968. wpa_send_eapol_timeout, wpa_auth, sm);
  969. }
  970. static int wpa_verify_key_mic(struct wpa_ptk *PTK, u8 *data, size_t data_len)
  971. {
  972. struct ieee802_1x_hdr *hdr;
  973. struct wpa_eapol_key *key;
  974. u16 key_info;
  975. int ret = 0;
  976. u8 mic[16];
  977. if (data_len < sizeof(*hdr) + sizeof(*key))
  978. return -1;
  979. hdr = (struct ieee802_1x_hdr *) data;
  980. key = (struct wpa_eapol_key *) (hdr + 1);
  981. key_info = WPA_GET_BE16(key->key_info);
  982. os_memcpy(mic, key->key_mic, 16);
  983. os_memset(key->key_mic, 0, 16);
  984. if (wpa_eapol_key_mic(PTK->kck, key_info & WPA_KEY_INFO_TYPE_MASK,
  985. data, data_len, key->key_mic) ||
  986. os_memcmp(mic, key->key_mic, 16) != 0)
  987. ret = -1;
  988. os_memcpy(key->key_mic, mic, 16);
  989. return ret;
  990. }
  991. void wpa_remove_ptk(struct wpa_state_machine *sm)
  992. {
  993. sm->PTK_valid = FALSE;
  994. os_memset(&sm->PTK, 0, sizeof(sm->PTK));
  995. wpa_auth_set_key(sm->wpa_auth, 0, WPA_ALG_NONE, sm->addr, 0, (u8 *) "",
  996. 0);
  997. sm->pairwise_set = FALSE;
  998. eloop_cancel_timeout(wpa_rekey_ptk, sm->wpa_auth, sm);
  999. }
  1000. void wpa_auth_sm_event(struct wpa_state_machine *sm, wpa_event event)
  1001. {
  1002. int remove_ptk = 1;
  1003. if (sm == NULL)
  1004. return;
  1005. wpa_auth_vlogger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1006. "event %d notification", event);
  1007. switch (event) {
  1008. case WPA_AUTH:
  1009. case WPA_ASSOC:
  1010. break;
  1011. case WPA_DEAUTH:
  1012. case WPA_DISASSOC:
  1013. sm->DeauthenticationRequest = TRUE;
  1014. break;
  1015. case WPA_REAUTH:
  1016. case WPA_REAUTH_EAPOL:
  1017. if (sm->GUpdateStationKeys) {
  1018. /*
  1019. * Reauthentication cancels the pending group key
  1020. * update for this STA.
  1021. */
  1022. sm->group->GKeyDoneStations--;
  1023. sm->GUpdateStationKeys = FALSE;
  1024. sm->PtkGroupInit = TRUE;
  1025. }
  1026. sm->ReAuthenticationRequest = TRUE;
  1027. break;
  1028. case WPA_ASSOC_FT:
  1029. #ifdef CONFIG_IEEE80211R
  1030. /* Using FT protocol, not WPA auth state machine */
  1031. sm->ft_completed = 1;
  1032. return;
  1033. #else /* CONFIG_IEEE80211R */
  1034. break;
  1035. #endif /* CONFIG_IEEE80211R */
  1036. }
  1037. #ifdef CONFIG_IEEE80211R
  1038. sm->ft_completed = 0;
  1039. #endif /* CONFIG_IEEE80211R */
  1040. #ifdef CONFIG_IEEE80211W
  1041. if (sm->mgmt_frame_prot && event == WPA_AUTH)
  1042. remove_ptk = 0;
  1043. #endif /* CONFIG_IEEE80211W */
  1044. if (remove_ptk) {
  1045. sm->PTK_valid = FALSE;
  1046. os_memset(&sm->PTK, 0, sizeof(sm->PTK));
  1047. if (event != WPA_REAUTH_EAPOL)
  1048. wpa_remove_ptk(sm);
  1049. }
  1050. wpa_sm_step(sm);
  1051. }
  1052. static wpa_alg wpa_alg_enum(int alg)
  1053. {
  1054. switch (alg) {
  1055. case WPA_CIPHER_CCMP:
  1056. return WPA_ALG_CCMP;
  1057. case WPA_CIPHER_TKIP:
  1058. return WPA_ALG_TKIP;
  1059. case WPA_CIPHER_WEP104:
  1060. case WPA_CIPHER_WEP40:
  1061. return WPA_ALG_WEP;
  1062. default:
  1063. return WPA_ALG_NONE;
  1064. }
  1065. }
  1066. SM_STATE(WPA_PTK, INITIALIZE)
  1067. {
  1068. SM_ENTRY_MA(WPA_PTK, INITIALIZE, wpa_ptk);
  1069. if (sm->Init) {
  1070. /* Init flag is not cleared here, so avoid busy
  1071. * loop by claiming nothing changed. */
  1072. sm->changed = FALSE;
  1073. }
  1074. sm->keycount = 0;
  1075. if (sm->GUpdateStationKeys)
  1076. sm->group->GKeyDoneStations--;
  1077. sm->GUpdateStationKeys = FALSE;
  1078. if (sm->wpa == WPA_VERSION_WPA)
  1079. sm->PInitAKeys = FALSE;
  1080. if (1 /* Unicast cipher supported AND (ESS OR ((IBSS or WDS) and
  1081. * Local AA > Remote AA)) */) {
  1082. sm->Pair = TRUE;
  1083. }
  1084. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_portEnabled, 0);
  1085. wpa_remove_ptk(sm);
  1086. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_portValid, 0);
  1087. sm->TimeoutCtr = 0;
  1088. if (wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt)) {
  1089. wpa_auth_set_eapol(sm->wpa_auth, sm->addr,
  1090. WPA_EAPOL_authorized, 0);
  1091. }
  1092. }
  1093. SM_STATE(WPA_PTK, DISCONNECT)
  1094. {
  1095. SM_ENTRY_MA(WPA_PTK, DISCONNECT, wpa_ptk);
  1096. sm->Disconnect = FALSE;
  1097. wpa_sta_disconnect(sm->wpa_auth, sm->addr);
  1098. }
  1099. SM_STATE(WPA_PTK, DISCONNECTED)
  1100. {
  1101. SM_ENTRY_MA(WPA_PTK, DISCONNECTED, wpa_ptk);
  1102. sm->DeauthenticationRequest = FALSE;
  1103. }
  1104. SM_STATE(WPA_PTK, AUTHENTICATION)
  1105. {
  1106. SM_ENTRY_MA(WPA_PTK, AUTHENTICATION, wpa_ptk);
  1107. os_memset(&sm->PTK, 0, sizeof(sm->PTK));
  1108. sm->PTK_valid = FALSE;
  1109. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_portControl_Auto,
  1110. 1);
  1111. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_portEnabled, 1);
  1112. sm->AuthenticationRequest = FALSE;
  1113. }
  1114. SM_STATE(WPA_PTK, AUTHENTICATION2)
  1115. {
  1116. SM_ENTRY_MA(WPA_PTK, AUTHENTICATION2, wpa_ptk);
  1117. os_memcpy(sm->ANonce, sm->group->Counter, WPA_NONCE_LEN);
  1118. inc_byte_array(sm->group->Counter, WPA_NONCE_LEN);
  1119. sm->ReAuthenticationRequest = FALSE;
  1120. /* IEEE 802.11i does not clear TimeoutCtr here, but this is more
  1121. * logical place than INITIALIZE since AUTHENTICATION2 can be
  1122. * re-entered on ReAuthenticationRequest without going through
  1123. * INITIALIZE. */
  1124. sm->TimeoutCtr = 0;
  1125. }
  1126. SM_STATE(WPA_PTK, INITPMK)
  1127. {
  1128. u8 msk[2 * PMK_LEN];
  1129. size_t len = 2 * PMK_LEN;
  1130. SM_ENTRY_MA(WPA_PTK, INITPMK, wpa_ptk);
  1131. #ifdef CONFIG_IEEE80211R
  1132. sm->xxkey_len = 0;
  1133. #endif /* CONFIG_IEEE80211R */
  1134. if (sm->pmksa) {
  1135. wpa_printf(MSG_DEBUG, "WPA: PMK from PMKSA cache");
  1136. os_memcpy(sm->PMK, sm->pmksa->pmk, PMK_LEN);
  1137. } else if (wpa_auth_get_msk(sm->wpa_auth, sm->addr, msk, &len) == 0) {
  1138. wpa_printf(MSG_DEBUG, "WPA: PMK from EAPOL state machine "
  1139. "(len=%lu)", (unsigned long) len);
  1140. os_memcpy(sm->PMK, msk, PMK_LEN);
  1141. #ifdef CONFIG_IEEE80211R
  1142. if (len >= 2 * PMK_LEN) {
  1143. os_memcpy(sm->xxkey, msk + PMK_LEN, PMK_LEN);
  1144. sm->xxkey_len = PMK_LEN;
  1145. }
  1146. #endif /* CONFIG_IEEE80211R */
  1147. } else {
  1148. wpa_printf(MSG_DEBUG, "WPA: Could not get PMK");
  1149. }
  1150. sm->req_replay_counter_used = 0;
  1151. /* IEEE 802.11i does not set keyRun to FALSE, but not doing this
  1152. * will break reauthentication since EAPOL state machines may not be
  1153. * get into AUTHENTICATING state that clears keyRun before WPA state
  1154. * machine enters AUTHENTICATION2 state and goes immediately to INITPMK
  1155. * state and takes PMK from the previously used AAA Key. This will
  1156. * eventually fail in 4-Way Handshake because Supplicant uses PMK
  1157. * derived from the new AAA Key. Setting keyRun = FALSE here seems to
  1158. * be good workaround for this issue. */
  1159. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_keyRun, 0);
  1160. }
  1161. SM_STATE(WPA_PTK, INITPSK)
  1162. {
  1163. const u8 *psk;
  1164. SM_ENTRY_MA(WPA_PTK, INITPSK, wpa_ptk);
  1165. psk = wpa_auth_get_psk(sm->wpa_auth, sm->addr, NULL);
  1166. if (psk) {
  1167. os_memcpy(sm->PMK, psk, PMK_LEN);
  1168. #ifdef CONFIG_IEEE80211R
  1169. os_memcpy(sm->xxkey, psk, PMK_LEN);
  1170. sm->xxkey_len = PMK_LEN;
  1171. #endif /* CONFIG_IEEE80211R */
  1172. }
  1173. sm->req_replay_counter_used = 0;
  1174. }
  1175. SM_STATE(WPA_PTK, PTKSTART)
  1176. {
  1177. u8 buf[2 + RSN_SELECTOR_LEN + PMKID_LEN], *pmkid = NULL;
  1178. size_t pmkid_len = 0;
  1179. SM_ENTRY_MA(WPA_PTK, PTKSTART, wpa_ptk);
  1180. sm->PTKRequest = FALSE;
  1181. sm->TimeoutEvt = FALSE;
  1182. sm->TimeoutCtr++;
  1183. if (sm->TimeoutCtr > (int) dot11RSNAConfigPairwiseUpdateCount) {
  1184. /* No point in sending the EAPOL-Key - we will disconnect
  1185. * immediately following this. */
  1186. return;
  1187. }
  1188. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1189. "sending 1/4 msg of 4-Way Handshake");
  1190. /*
  1191. * TODO: Could add PMKID even with WPA2-PSK, but only if there is only
  1192. * one possible PSK for this STA.
  1193. */
  1194. if (sm->wpa == WPA_VERSION_WPA2 &&
  1195. wpa_key_mgmt_wpa_ieee8021x(sm->wpa_key_mgmt)) {
  1196. pmkid = buf;
  1197. pmkid_len = 2 + RSN_SELECTOR_LEN + PMKID_LEN;
  1198. pmkid[0] = WLAN_EID_VENDOR_SPECIFIC;
  1199. pmkid[1] = RSN_SELECTOR_LEN + PMKID_LEN;
  1200. RSN_SELECTOR_PUT(&pmkid[2], RSN_KEY_DATA_PMKID);
  1201. if (sm->pmksa)
  1202. os_memcpy(&pmkid[2 + RSN_SELECTOR_LEN],
  1203. sm->pmksa->pmkid, PMKID_LEN);
  1204. else {
  1205. /*
  1206. * Calculate PMKID since no PMKSA cache entry was
  1207. * available with pre-calculated PMKID.
  1208. */
  1209. rsn_pmkid(sm->PMK, PMK_LEN, sm->wpa_auth->addr,
  1210. sm->addr, &pmkid[2 + RSN_SELECTOR_LEN],
  1211. wpa_key_mgmt_sha256(sm->wpa_key_mgmt));
  1212. }
  1213. }
  1214. wpa_send_eapol(sm->wpa_auth, sm,
  1215. WPA_KEY_INFO_ACK | WPA_KEY_INFO_KEY_TYPE, NULL,
  1216. sm->ANonce, pmkid, pmkid_len, 0, 0);
  1217. }
  1218. static int wpa_derive_ptk(struct wpa_state_machine *sm, const u8 *pmk,
  1219. struct wpa_ptk *ptk)
  1220. {
  1221. size_t ptk_len = sm->pairwise == WPA_CIPHER_CCMP ? 48 : 64;
  1222. #ifdef CONFIG_IEEE80211R
  1223. if (wpa_key_mgmt_ft(sm->wpa_key_mgmt))
  1224. return wpa_auth_derive_ptk_ft(sm, pmk, ptk, ptk_len);
  1225. #endif /* CONFIG_IEEE80211R */
  1226. wpa_pmk_to_ptk(pmk, PMK_LEN, "Pairwise key expansion",
  1227. sm->wpa_auth->addr, sm->addr, sm->ANonce, sm->SNonce,
  1228. (u8 *) ptk, ptk_len,
  1229. wpa_key_mgmt_sha256(sm->wpa_key_mgmt));
  1230. return 0;
  1231. }
  1232. SM_STATE(WPA_PTK, PTKCALCNEGOTIATING)
  1233. {
  1234. struct wpa_ptk PTK;
  1235. int ok = 0;
  1236. const u8 *pmk = NULL;
  1237. SM_ENTRY_MA(WPA_PTK, PTKCALCNEGOTIATING, wpa_ptk);
  1238. sm->EAPOLKeyReceived = FALSE;
  1239. /* WPA with IEEE 802.1X: use the derived PMK from EAP
  1240. * WPA-PSK: iterate through possible PSKs and select the one matching
  1241. * the packet */
  1242. for (;;) {
  1243. if (wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt)) {
  1244. pmk = wpa_auth_get_psk(sm->wpa_auth, sm->addr, pmk);
  1245. if (pmk == NULL)
  1246. break;
  1247. } else
  1248. pmk = sm->PMK;
  1249. wpa_derive_ptk(sm, pmk, &PTK);
  1250. if (wpa_verify_key_mic(&PTK, sm->last_rx_eapol_key,
  1251. sm->last_rx_eapol_key_len) == 0) {
  1252. ok = 1;
  1253. break;
  1254. }
  1255. if (!wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt))
  1256. break;
  1257. }
  1258. if (!ok) {
  1259. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1260. "invalid MIC in msg 2/4 of 4-Way Handshake");
  1261. return;
  1262. }
  1263. eloop_cancel_timeout(wpa_send_eapol_timeout, sm->wpa_auth, sm);
  1264. if (wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt)) {
  1265. /* PSK may have changed from the previous choice, so update
  1266. * state machine data based on whatever PSK was selected here.
  1267. */
  1268. os_memcpy(sm->PMK, pmk, PMK_LEN);
  1269. }
  1270. sm->MICVerified = TRUE;
  1271. os_memcpy(&sm->PTK, &PTK, sizeof(PTK));
  1272. sm->PTK_valid = TRUE;
  1273. }
  1274. SM_STATE(WPA_PTK, PTKCALCNEGOTIATING2)
  1275. {
  1276. SM_ENTRY_MA(WPA_PTK, PTKCALCNEGOTIATING2, wpa_ptk);
  1277. sm->TimeoutCtr = 0;
  1278. }
  1279. #ifdef CONFIG_IEEE80211W
  1280. static int ieee80211w_kde_len(struct wpa_state_machine *sm)
  1281. {
  1282. if (sm->mgmt_frame_prot) {
  1283. return 2 + RSN_SELECTOR_LEN + sizeof(struct wpa_igtk_kde);
  1284. }
  1285. return 0;
  1286. }
  1287. static u8 * ieee80211w_kde_add(struct wpa_state_machine *sm, u8 *pos)
  1288. {
  1289. struct wpa_igtk_kde igtk;
  1290. struct wpa_group *gsm = sm->group;
  1291. if (!sm->mgmt_frame_prot)
  1292. return pos;
  1293. igtk.keyid[0] = gsm->GN_igtk;
  1294. igtk.keyid[1] = 0;
  1295. if (wpa_auth_get_seqnum(sm->wpa_auth, NULL, gsm->GN_igtk, igtk.pn) < 0)
  1296. os_memset(igtk.pn, 0, sizeof(igtk.pn));
  1297. os_memcpy(igtk.igtk, gsm->IGTK[gsm->GN_igtk - 4], WPA_IGTK_LEN);
  1298. pos = wpa_add_kde(pos, RSN_KEY_DATA_IGTK,
  1299. (const u8 *) &igtk, sizeof(igtk), NULL, 0);
  1300. return pos;
  1301. }
  1302. #else /* CONFIG_IEEE80211W */
  1303. static int ieee80211w_kde_len(struct wpa_state_machine *sm)
  1304. {
  1305. return 0;
  1306. }
  1307. static u8 * ieee80211w_kde_add(struct wpa_state_machine *sm, u8 *pos)
  1308. {
  1309. return pos;
  1310. }
  1311. #endif /* CONFIG_IEEE80211W */
  1312. SM_STATE(WPA_PTK, PTKINITNEGOTIATING)
  1313. {
  1314. u8 rsc[WPA_KEY_RSC_LEN], *_rsc, *gtk, *kde, *pos;
  1315. size_t gtk_len, kde_len;
  1316. struct wpa_group *gsm = sm->group;
  1317. u8 *wpa_ie;
  1318. int wpa_ie_len, secure, keyidx, encr = 0;
  1319. SM_ENTRY_MA(WPA_PTK, PTKINITNEGOTIATING, wpa_ptk);
  1320. sm->TimeoutEvt = FALSE;
  1321. sm->TimeoutCtr++;
  1322. if (sm->TimeoutCtr > (int) dot11RSNAConfigPairwiseUpdateCount) {
  1323. /* No point in sending the EAPOL-Key - we will disconnect
  1324. * immediately following this. */
  1325. return;
  1326. }
  1327. /* Send EAPOL(1, 1, 1, Pair, P, RSC, ANonce, MIC(PTK), RSNIE, GTK[GN])
  1328. */
  1329. os_memset(rsc, 0, WPA_KEY_RSC_LEN);
  1330. wpa_auth_get_seqnum(sm->wpa_auth, NULL, gsm->GN, rsc);
  1331. wpa_ie = sm->wpa_auth->wpa_ie;
  1332. wpa_ie_len = sm->wpa_auth->wpa_ie_len;
  1333. if (sm->wpa == WPA_VERSION_WPA &&
  1334. (sm->wpa_auth->conf.wpa & WPA_PROTO_RSN) &&
  1335. wpa_ie_len > wpa_ie[1] + 2 && wpa_ie[0] == WLAN_EID_RSN) {
  1336. /* WPA-only STA, remove RSN IE */
  1337. wpa_ie = wpa_ie + wpa_ie[1] + 2;
  1338. wpa_ie_len = wpa_ie[1] + 2;
  1339. }
  1340. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1341. "sending 3/4 msg of 4-Way Handshake");
  1342. if (sm->wpa == WPA_VERSION_WPA2) {
  1343. /* WPA2 send GTK in the 4-way handshake */
  1344. secure = 1;
  1345. gtk = gsm->GTK[gsm->GN - 1];
  1346. gtk_len = gsm->GTK_len;
  1347. keyidx = gsm->GN;
  1348. _rsc = rsc;
  1349. encr = 1;
  1350. } else {
  1351. /* WPA does not include GTK in msg 3/4 */
  1352. secure = 0;
  1353. gtk = NULL;
  1354. gtk_len = 0;
  1355. keyidx = 0;
  1356. _rsc = NULL;
  1357. }
  1358. kde_len = wpa_ie_len + ieee80211w_kde_len(sm);
  1359. if (gtk)
  1360. kde_len += 2 + RSN_SELECTOR_LEN + 2 + gtk_len;
  1361. kde = os_malloc(kde_len);
  1362. if (kde == NULL)
  1363. return;
  1364. pos = kde;
  1365. os_memcpy(pos, wpa_ie, wpa_ie_len);
  1366. pos += wpa_ie_len;
  1367. if (gtk) {
  1368. u8 hdr[2];
  1369. hdr[0] = keyidx & 0x03;
  1370. hdr[1] = 0;
  1371. pos = wpa_add_kde(pos, RSN_KEY_DATA_GROUPKEY, hdr, 2,
  1372. gtk, gtk_len);
  1373. }
  1374. pos = ieee80211w_kde_add(sm, pos);
  1375. wpa_send_eapol(sm->wpa_auth, sm,
  1376. (secure ? WPA_KEY_INFO_SECURE : 0) | WPA_KEY_INFO_MIC |
  1377. WPA_KEY_INFO_ACK | WPA_KEY_INFO_INSTALL |
  1378. WPA_KEY_INFO_KEY_TYPE,
  1379. _rsc, sm->ANonce, kde, pos - kde, keyidx, encr);
  1380. os_free(kde);
  1381. }
  1382. SM_STATE(WPA_PTK, PTKINITDONE)
  1383. {
  1384. SM_ENTRY_MA(WPA_PTK, PTKINITDONE, wpa_ptk);
  1385. sm->EAPOLKeyReceived = FALSE;
  1386. if (sm->Pair) {
  1387. wpa_alg alg;
  1388. int klen;
  1389. if (sm->pairwise == WPA_CIPHER_TKIP) {
  1390. alg = WPA_ALG_TKIP;
  1391. klen = 32;
  1392. } else {
  1393. alg = WPA_ALG_CCMP;
  1394. klen = 16;
  1395. }
  1396. if (wpa_auth_set_key(sm->wpa_auth, 0, alg, sm->addr, 0,
  1397. sm->PTK.tk1, klen)) {
  1398. wpa_sta_disconnect(sm->wpa_auth, sm->addr);
  1399. return;
  1400. }
  1401. /* FIX: MLME-SetProtection.Request(TA, Tx_Rx) */
  1402. sm->pairwise_set = TRUE;
  1403. if (sm->wpa_auth->conf.wpa_ptk_rekey) {
  1404. eloop_cancel_timeout(wpa_rekey_ptk, sm->wpa_auth, sm);
  1405. eloop_register_timeout(sm->wpa_auth->conf.
  1406. wpa_ptk_rekey, 0, wpa_rekey_ptk,
  1407. sm->wpa_auth, sm);
  1408. }
  1409. if (wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt)) {
  1410. wpa_auth_set_eapol(sm->wpa_auth, sm->addr,
  1411. WPA_EAPOL_authorized, 1);
  1412. }
  1413. }
  1414. if (0 /* IBSS == TRUE */) {
  1415. sm->keycount++;
  1416. if (sm->keycount == 2) {
  1417. wpa_auth_set_eapol(sm->wpa_auth, sm->addr,
  1418. WPA_EAPOL_portValid, 1);
  1419. }
  1420. } else {
  1421. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_portValid,
  1422. 1);
  1423. }
  1424. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_keyAvailable, 0);
  1425. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_keyDone, 1);
  1426. if (sm->wpa == WPA_VERSION_WPA)
  1427. sm->PInitAKeys = TRUE;
  1428. else
  1429. sm->has_GTK = TRUE;
  1430. wpa_auth_vlogger(sm->wpa_auth, sm->addr, LOGGER_INFO,
  1431. "pairwise key handshake completed (%s)",
  1432. sm->wpa == WPA_VERSION_WPA ? "WPA" : "RSN");
  1433. #ifdef CONFIG_IEEE80211R
  1434. wpa_ft_push_pmk_r1(sm->wpa_auth, sm->addr);
  1435. #endif /* CONFIG_IEEE80211R */
  1436. }
  1437. SM_STEP(WPA_PTK)
  1438. {
  1439. struct wpa_authenticator *wpa_auth = sm->wpa_auth;
  1440. if (sm->Init)
  1441. SM_ENTER(WPA_PTK, INITIALIZE);
  1442. else if (sm->Disconnect
  1443. /* || FIX: dot11RSNAConfigSALifetime timeout */)
  1444. SM_ENTER(WPA_PTK, DISCONNECT);
  1445. else if (sm->DeauthenticationRequest)
  1446. SM_ENTER(WPA_PTK, DISCONNECTED);
  1447. else if (sm->AuthenticationRequest)
  1448. SM_ENTER(WPA_PTK, AUTHENTICATION);
  1449. else if (sm->ReAuthenticationRequest)
  1450. SM_ENTER(WPA_PTK, AUTHENTICATION2);
  1451. else if (sm->PTKRequest)
  1452. SM_ENTER(WPA_PTK, PTKSTART);
  1453. else switch (sm->wpa_ptk_state) {
  1454. case WPA_PTK_INITIALIZE:
  1455. break;
  1456. case WPA_PTK_DISCONNECT:
  1457. SM_ENTER(WPA_PTK, DISCONNECTED);
  1458. break;
  1459. case WPA_PTK_DISCONNECTED:
  1460. SM_ENTER(WPA_PTK, INITIALIZE);
  1461. break;
  1462. case WPA_PTK_AUTHENTICATION:
  1463. SM_ENTER(WPA_PTK, AUTHENTICATION2);
  1464. break;
  1465. case WPA_PTK_AUTHENTICATION2:
  1466. if (wpa_key_mgmt_wpa_ieee8021x(sm->wpa_key_mgmt) &&
  1467. wpa_auth_get_eapol(sm->wpa_auth, sm->addr,
  1468. WPA_EAPOL_keyRun) > 0)
  1469. SM_ENTER(WPA_PTK, INITPMK);
  1470. else if (wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt)
  1471. /* FIX: && 802.1X::keyRun */)
  1472. SM_ENTER(WPA_PTK, INITPSK);
  1473. break;
  1474. case WPA_PTK_INITPMK:
  1475. if (wpa_auth_get_eapol(sm->wpa_auth, sm->addr,
  1476. WPA_EAPOL_keyAvailable) > 0)
  1477. SM_ENTER(WPA_PTK, PTKSTART);
  1478. else {
  1479. wpa_auth->dot11RSNA4WayHandshakeFailures++;
  1480. SM_ENTER(WPA_PTK, DISCONNECT);
  1481. }
  1482. break;
  1483. case WPA_PTK_INITPSK:
  1484. if (wpa_auth_get_psk(sm->wpa_auth, sm->addr, NULL))
  1485. SM_ENTER(WPA_PTK, PTKSTART);
  1486. else {
  1487. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_INFO,
  1488. "no PSK configured for the STA");
  1489. wpa_auth->dot11RSNA4WayHandshakeFailures++;
  1490. SM_ENTER(WPA_PTK, DISCONNECT);
  1491. }
  1492. break;
  1493. case WPA_PTK_PTKSTART:
  1494. if (sm->EAPOLKeyReceived && !sm->EAPOLKeyRequest &&
  1495. sm->EAPOLKeyPairwise)
  1496. SM_ENTER(WPA_PTK, PTKCALCNEGOTIATING);
  1497. else if (sm->TimeoutCtr >
  1498. (int) dot11RSNAConfigPairwiseUpdateCount) {
  1499. wpa_auth->dot11RSNA4WayHandshakeFailures++;
  1500. SM_ENTER(WPA_PTK, DISCONNECT);
  1501. } else if (sm->TimeoutEvt)
  1502. SM_ENTER(WPA_PTK, PTKSTART);
  1503. break;
  1504. case WPA_PTK_PTKCALCNEGOTIATING:
  1505. if (sm->MICVerified)
  1506. SM_ENTER(WPA_PTK, PTKCALCNEGOTIATING2);
  1507. else if (sm->EAPOLKeyReceived && !sm->EAPOLKeyRequest &&
  1508. sm->EAPOLKeyPairwise)
  1509. SM_ENTER(WPA_PTK, PTKCALCNEGOTIATING);
  1510. else if (sm->TimeoutEvt)
  1511. SM_ENTER(WPA_PTK, PTKSTART);
  1512. break;
  1513. case WPA_PTK_PTKCALCNEGOTIATING2:
  1514. SM_ENTER(WPA_PTK, PTKINITNEGOTIATING);
  1515. break;
  1516. case WPA_PTK_PTKINITNEGOTIATING:
  1517. if (sm->EAPOLKeyReceived && !sm->EAPOLKeyRequest &&
  1518. sm->EAPOLKeyPairwise && sm->MICVerified)
  1519. SM_ENTER(WPA_PTK, PTKINITDONE);
  1520. else if (sm->TimeoutCtr >
  1521. (int) dot11RSNAConfigPairwiseUpdateCount) {
  1522. wpa_auth->dot11RSNA4WayHandshakeFailures++;
  1523. SM_ENTER(WPA_PTK, DISCONNECT);
  1524. } else if (sm->TimeoutEvt)
  1525. SM_ENTER(WPA_PTK, PTKINITNEGOTIATING);
  1526. break;
  1527. case WPA_PTK_PTKINITDONE:
  1528. break;
  1529. }
  1530. }
  1531. SM_STATE(WPA_PTK_GROUP, IDLE)
  1532. {
  1533. SM_ENTRY_MA(WPA_PTK_GROUP, IDLE, wpa_ptk_group);
  1534. if (sm->Init) {
  1535. /* Init flag is not cleared here, so avoid busy
  1536. * loop by claiming nothing changed. */
  1537. sm->changed = FALSE;
  1538. }
  1539. sm->GTimeoutCtr = 0;
  1540. }
  1541. SM_STATE(WPA_PTK_GROUP, REKEYNEGOTIATING)
  1542. {
  1543. u8 rsc[WPA_KEY_RSC_LEN];
  1544. struct wpa_group *gsm = sm->group;
  1545. u8 *kde, *pos, hdr[2];
  1546. size_t kde_len;
  1547. SM_ENTRY_MA(WPA_PTK_GROUP, REKEYNEGOTIATING, wpa_ptk_group);
  1548. sm->GTimeoutCtr++;
  1549. if (sm->GTimeoutCtr > (int) dot11RSNAConfigGroupUpdateCount) {
  1550. /* No point in sending the EAPOL-Key - we will disconnect
  1551. * immediately following this. */
  1552. return;
  1553. }
  1554. if (sm->wpa == WPA_VERSION_WPA)
  1555. sm->PInitAKeys = FALSE;
  1556. sm->TimeoutEvt = FALSE;
  1557. /* Send EAPOL(1, 1, 1, !Pair, G, RSC, GNonce, MIC(PTK), GTK[GN]) */
  1558. os_memset(rsc, 0, WPA_KEY_RSC_LEN);
  1559. if (gsm->wpa_group_state == WPA_GROUP_SETKEYSDONE)
  1560. wpa_auth_get_seqnum(sm->wpa_auth, NULL, gsm->GN, rsc);
  1561. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1562. "sending 1/2 msg of Group Key Handshake");
  1563. if (sm->wpa == WPA_VERSION_WPA2) {
  1564. kde_len = 2 + RSN_SELECTOR_LEN + 2 + gsm->GTK_len +
  1565. ieee80211w_kde_len(sm);
  1566. kde = os_malloc(kde_len);
  1567. if (kde == NULL)
  1568. return;
  1569. pos = kde;
  1570. hdr[0] = gsm->GN & 0x03;
  1571. hdr[1] = 0;
  1572. pos = wpa_add_kde(pos, RSN_KEY_DATA_GROUPKEY, hdr, 2,
  1573. gsm->GTK[gsm->GN - 1], gsm->GTK_len);
  1574. pos = ieee80211w_kde_add(sm, pos);
  1575. } else {
  1576. kde = gsm->GTK[gsm->GN - 1];
  1577. pos = kde + gsm->GTK_len;
  1578. }
  1579. wpa_send_eapol(sm->wpa_auth, sm,
  1580. WPA_KEY_INFO_SECURE | WPA_KEY_INFO_MIC |
  1581. WPA_KEY_INFO_ACK |
  1582. (!sm->Pair ? WPA_KEY_INFO_INSTALL : 0),
  1583. rsc, gsm->GNonce, kde, pos - kde, gsm->GN, 1);
  1584. if (sm->wpa == WPA_VERSION_WPA2)
  1585. os_free(kde);
  1586. }
  1587. SM_STATE(WPA_PTK_GROUP, REKEYESTABLISHED)
  1588. {
  1589. SM_ENTRY_MA(WPA_PTK_GROUP, REKEYESTABLISHED, wpa_ptk_group);
  1590. sm->EAPOLKeyReceived = FALSE;
  1591. if (sm->GUpdateStationKeys)
  1592. sm->group->GKeyDoneStations--;
  1593. sm->GUpdateStationKeys = FALSE;
  1594. sm->GTimeoutCtr = 0;
  1595. /* FIX: MLME.SetProtection.Request(TA, Tx_Rx) */
  1596. wpa_auth_vlogger(sm->wpa_auth, sm->addr, LOGGER_INFO,
  1597. "group key handshake completed (%s)",
  1598. sm->wpa == WPA_VERSION_WPA ? "WPA" : "RSN");
  1599. sm->has_GTK = TRUE;
  1600. }
  1601. SM_STATE(WPA_PTK_GROUP, KEYERROR)
  1602. {
  1603. SM_ENTRY_MA(WPA_PTK_GROUP, KEYERROR, wpa_ptk_group);
  1604. if (sm->GUpdateStationKeys)
  1605. sm->group->GKeyDoneStations--;
  1606. sm->GUpdateStationKeys = FALSE;
  1607. sm->Disconnect = TRUE;
  1608. }
  1609. SM_STEP(WPA_PTK_GROUP)
  1610. {
  1611. if (sm->Init || sm->PtkGroupInit) {
  1612. SM_ENTER(WPA_PTK_GROUP, IDLE);
  1613. sm->PtkGroupInit = FALSE;
  1614. } else switch (sm->wpa_ptk_group_state) {
  1615. case WPA_PTK_GROUP_IDLE:
  1616. if (sm->GUpdateStationKeys ||
  1617. (sm->wpa == WPA_VERSION_WPA && sm->PInitAKeys))
  1618. SM_ENTER(WPA_PTK_GROUP, REKEYNEGOTIATING);
  1619. break;
  1620. case WPA_PTK_GROUP_REKEYNEGOTIATING:
  1621. if (sm->EAPOLKeyReceived && !sm->EAPOLKeyRequest &&
  1622. !sm->EAPOLKeyPairwise && sm->MICVerified)
  1623. SM_ENTER(WPA_PTK_GROUP, REKEYESTABLISHED);
  1624. else if (sm->GTimeoutCtr >
  1625. (int) dot11RSNAConfigGroupUpdateCount)
  1626. SM_ENTER(WPA_PTK_GROUP, KEYERROR);
  1627. else if (sm->TimeoutEvt)
  1628. SM_ENTER(WPA_PTK_GROUP, REKEYNEGOTIATING);
  1629. break;
  1630. case WPA_PTK_GROUP_KEYERROR:
  1631. SM_ENTER(WPA_PTK_GROUP, IDLE);
  1632. break;
  1633. case WPA_PTK_GROUP_REKEYESTABLISHED:
  1634. SM_ENTER(WPA_PTK_GROUP, IDLE);
  1635. break;
  1636. }
  1637. }
  1638. static int wpa_gtk_update(struct wpa_authenticator *wpa_auth,
  1639. struct wpa_group *group)
  1640. {
  1641. int ret = 0;
  1642. /* FIX: is this the correct way of getting GNonce? */
  1643. os_memcpy(group->GNonce, group->Counter, WPA_NONCE_LEN);
  1644. inc_byte_array(group->Counter, WPA_NONCE_LEN);
  1645. wpa_gmk_to_gtk(group->GMK, wpa_auth->addr, group->GNonce,
  1646. group->GTK[group->GN - 1], group->GTK_len);
  1647. #ifdef CONFIG_IEEE80211W
  1648. if (wpa_auth->conf.ieee80211w != WPA_NO_IEEE80211W) {
  1649. if (os_get_random(group->IGTK[group->GN_igtk - 4],
  1650. WPA_IGTK_LEN) < 0) {
  1651. wpa_printf(MSG_INFO, "RSN: Failed to get new random "
  1652. "IGTK");
  1653. ret = -1;
  1654. }
  1655. wpa_hexdump_key(MSG_DEBUG, "IGTK",
  1656. group->IGTK[group->GN_igtk - 4], WPA_IGTK_LEN);
  1657. }
  1658. #endif /* CONFIG_IEEE80211W */
  1659. return ret;
  1660. }
  1661. static void wpa_group_gtk_init(struct wpa_authenticator *wpa_auth,
  1662. struct wpa_group *group)
  1663. {
  1664. wpa_printf(MSG_DEBUG, "WPA: group state machine entering state "
  1665. "GTK_INIT (VLAN-ID %d)", group->vlan_id);
  1666. group->changed = FALSE; /* GInit is not cleared here; avoid loop */
  1667. group->wpa_group_state = WPA_GROUP_GTK_INIT;
  1668. /* GTK[0..N] = 0 */
  1669. os_memset(group->GTK, 0, sizeof(group->GTK));
  1670. group->GN = 1;
  1671. group->GM = 2;
  1672. #ifdef CONFIG_IEEE80211W
  1673. group->GN_igtk = 4;
  1674. group->GM_igtk = 5;
  1675. #endif /* CONFIG_IEEE80211W */
  1676. /* GTK[GN] = CalcGTK() */
  1677. wpa_gtk_update(wpa_auth, group);
  1678. }
  1679. static int wpa_group_update_sta(struct wpa_state_machine *sm, void *ctx)
  1680. {
  1681. if (sm->wpa_ptk_state != WPA_PTK_PTKINITDONE) {
  1682. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1683. "Not in PTKINITDONE; skip Group Key update");
  1684. return 0;
  1685. }
  1686. if (sm->GUpdateStationKeys) {
  1687. /*
  1688. * This should not really happen, but just in case, make sure
  1689. * we do not count the same STA twice in GKeyDoneStations.
  1690. */
  1691. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1692. "GUpdateStationKeys already set - do not "
  1693. "increment GKeyDoneStations");
  1694. } else {
  1695. sm->group->GKeyDoneStations++;
  1696. sm->GUpdateStationKeys = TRUE;
  1697. }
  1698. wpa_sm_step(sm);
  1699. return 0;
  1700. }
  1701. static void wpa_group_setkeys(struct wpa_authenticator *wpa_auth,
  1702. struct wpa_group *group)
  1703. {
  1704. int tmp;
  1705. wpa_printf(MSG_DEBUG, "WPA: group state machine entering state "
  1706. "SETKEYS (VLAN-ID %d)", group->vlan_id);
  1707. group->changed = TRUE;
  1708. group->wpa_group_state = WPA_GROUP_SETKEYS;
  1709. group->GTKReKey = FALSE;
  1710. tmp = group->GM;
  1711. group->GM = group->GN;
  1712. group->GN = tmp;
  1713. #ifdef CONFIG_IEEE80211W
  1714. tmp = group->GM_igtk;
  1715. group->GM_igtk = group->GN_igtk;
  1716. group->GN_igtk = tmp;
  1717. #endif /* CONFIG_IEEE80211W */
  1718. /* "GKeyDoneStations = GNoStations" is done in more robust way by
  1719. * counting the STAs that are marked with GUpdateStationKeys instead of
  1720. * including all STAs that could be in not-yet-completed state. */
  1721. wpa_gtk_update(wpa_auth, group);
  1722. wpa_auth_for_each_sta(wpa_auth, wpa_group_update_sta, NULL);
  1723. wpa_printf(MSG_DEBUG, "wpa_group_setkeys: GKeyDoneStations=%d",
  1724. group->GKeyDoneStations);
  1725. }
  1726. static void wpa_group_setkeysdone(struct wpa_authenticator *wpa_auth,
  1727. struct wpa_group *group)
  1728. {
  1729. wpa_printf(MSG_DEBUG, "WPA: group state machine entering state "
  1730. "SETKEYSDONE (VLAN-ID %d)", group->vlan_id);
  1731. group->changed = TRUE;
  1732. group->wpa_group_state = WPA_GROUP_SETKEYSDONE;
  1733. wpa_auth_set_key(wpa_auth, group->vlan_id,
  1734. wpa_alg_enum(wpa_auth->conf.wpa_group),
  1735. NULL, group->GN, group->GTK[group->GN - 1],
  1736. group->GTK_len);
  1737. #ifdef CONFIG_IEEE80211W
  1738. if (wpa_auth->conf.ieee80211w != WPA_NO_IEEE80211W) {
  1739. wpa_auth_set_key(wpa_auth, group->vlan_id, WPA_ALG_IGTK,
  1740. NULL, group->GN_igtk,
  1741. group->IGTK[group->GN_igtk - 4],
  1742. WPA_IGTK_LEN);
  1743. }
  1744. #endif /* CONFIG_IEEE80211W */
  1745. }
  1746. static void wpa_group_sm_step(struct wpa_authenticator *wpa_auth,
  1747. struct wpa_group *group)
  1748. {
  1749. if (group->GInit) {
  1750. wpa_group_gtk_init(wpa_auth, group);
  1751. } else if (group->wpa_group_state == WPA_GROUP_GTK_INIT &&
  1752. group->GTKAuthenticator) {
  1753. wpa_group_setkeysdone(wpa_auth, group);
  1754. } else if (group->wpa_group_state == WPA_GROUP_SETKEYSDONE &&
  1755. group->GTKReKey) {
  1756. wpa_group_setkeys(wpa_auth, group);
  1757. } else if (group->wpa_group_state == WPA_GROUP_SETKEYS) {
  1758. if (group->GKeyDoneStations == 0)
  1759. wpa_group_setkeysdone(wpa_auth, group);
  1760. else if (group->GTKReKey)
  1761. wpa_group_setkeys(wpa_auth, group);
  1762. }
  1763. }
  1764. static void wpa_sm_step(struct wpa_state_machine *sm)
  1765. {
  1766. if (sm == NULL)
  1767. return;
  1768. if (sm->in_step_loop) {
  1769. /* This should not happen, but if it does, make sure we do not
  1770. * end up freeing the state machine too early by exiting the
  1771. * recursive call. */
  1772. wpa_printf(MSG_ERROR, "WPA: wpa_sm_step() called recursively");
  1773. return;
  1774. }
  1775. sm->in_step_loop = 1;
  1776. do {
  1777. if (sm->pending_deinit)
  1778. break;
  1779. sm->changed = FALSE;
  1780. sm->wpa_auth->group->changed = FALSE;
  1781. SM_STEP_RUN(WPA_PTK);
  1782. if (sm->pending_deinit)
  1783. break;
  1784. SM_STEP_RUN(WPA_PTK_GROUP);
  1785. if (sm->pending_deinit)
  1786. break;
  1787. wpa_group_sm_step(sm->wpa_auth, sm->group);
  1788. } while (sm->changed || sm->wpa_auth->group->changed);
  1789. sm->in_step_loop = 0;
  1790. if (sm->pending_deinit) {
  1791. wpa_printf(MSG_DEBUG, "WPA: Completing pending STA state "
  1792. "machine deinit for " MACSTR, MAC2STR(sm->addr));
  1793. wpa_free_sta_sm(sm);
  1794. }
  1795. }
  1796. static void wpa_sm_call_step(void *eloop_ctx, void *timeout_ctx)
  1797. {
  1798. struct wpa_state_machine *sm = eloop_ctx;
  1799. wpa_sm_step(sm);
  1800. }
  1801. void wpa_auth_sm_notify(struct wpa_state_machine *sm)
  1802. {
  1803. if (sm == NULL)
  1804. return;
  1805. eloop_register_timeout(0, 0, wpa_sm_call_step, sm, NULL);
  1806. }
  1807. void wpa_gtk_rekey(struct wpa_authenticator *wpa_auth)
  1808. {
  1809. int tmp, i;
  1810. struct wpa_group *group;
  1811. if (wpa_auth == NULL)
  1812. return;
  1813. group = wpa_auth->group;
  1814. for (i = 0; i < 2; i++) {
  1815. tmp = group->GM;
  1816. group->GM = group->GN;
  1817. group->GN = tmp;
  1818. #ifdef CONFIG_IEEE80211W
  1819. tmp = group->GM_igtk;
  1820. group->GM_igtk = group->GN_igtk;
  1821. group->GN_igtk = tmp;
  1822. #endif /* CONFIG_IEEE80211W */
  1823. wpa_gtk_update(wpa_auth, group);
  1824. }
  1825. }
  1826. static const char * wpa_bool_txt(int bool)
  1827. {
  1828. return bool ? "TRUE" : "FALSE";
  1829. }
  1830. static int wpa_cipher_bits(int cipher)
  1831. {
  1832. switch (cipher) {
  1833. case WPA_CIPHER_CCMP:
  1834. return 128;
  1835. case WPA_CIPHER_TKIP:
  1836. return 256;
  1837. case WPA_CIPHER_WEP104:
  1838. return 104;
  1839. case WPA_CIPHER_WEP40:
  1840. return 40;
  1841. default:
  1842. return 0;
  1843. }
  1844. }
  1845. #define RSN_SUITE "%02x-%02x-%02x-%d"
  1846. #define RSN_SUITE_ARG(s) \
  1847. ((s) >> 24) & 0xff, ((s) >> 16) & 0xff, ((s) >> 8) & 0xff, (s) & 0xff
  1848. int wpa_get_mib(struct wpa_authenticator *wpa_auth, char *buf, size_t buflen)
  1849. {
  1850. int len = 0, ret;
  1851. char pmkid_txt[PMKID_LEN * 2 + 1];
  1852. if (wpa_auth == NULL)
  1853. return len;
  1854. ret = os_snprintf(buf + len, buflen - len,
  1855. "dot11RSNAOptionImplemented=TRUE\n"
  1856. #ifdef CONFIG_RSN_PREAUTH
  1857. "dot11RSNAPreauthenticationImplemented=TRUE\n"
  1858. #else /* CONFIG_RSN_PREAUTH */
  1859. "dot11RSNAPreauthenticationImplemented=FALSE\n"
  1860. #endif /* CONFIG_RSN_PREAUTH */
  1861. "dot11RSNAEnabled=%s\n"
  1862. "dot11RSNAPreauthenticationEnabled=%s\n",
  1863. wpa_bool_txt(wpa_auth->conf.wpa & WPA_PROTO_RSN),
  1864. wpa_bool_txt(wpa_auth->conf.rsn_preauth));
  1865. if (ret < 0 || (size_t) ret >= buflen - len)
  1866. return len;
  1867. len += ret;
  1868. wpa_snprintf_hex(pmkid_txt, sizeof(pmkid_txt),
  1869. wpa_auth->dot11RSNAPMKIDUsed, PMKID_LEN);
  1870. ret = os_snprintf(
  1871. buf + len, buflen - len,
  1872. "dot11RSNAConfigVersion=%u\n"
  1873. "dot11RSNAConfigPairwiseKeysSupported=9999\n"
  1874. /* FIX: dot11RSNAConfigGroupCipher */
  1875. /* FIX: dot11RSNAConfigGroupRekeyMethod */
  1876. /* FIX: dot11RSNAConfigGroupRekeyTime */
  1877. /* FIX: dot11RSNAConfigGroupRekeyPackets */
  1878. "dot11RSNAConfigGroupRekeyStrict=%u\n"
  1879. "dot11RSNAConfigGroupUpdateCount=%u\n"
  1880. "dot11RSNAConfigPairwiseUpdateCount=%u\n"
  1881. "dot11RSNAConfigGroupCipherSize=%u\n"
  1882. "dot11RSNAConfigPMKLifetime=%u\n"
  1883. "dot11RSNAConfigPMKReauthThreshold=%u\n"
  1884. "dot11RSNAConfigNumberOfPTKSAReplayCounters=0\n"
  1885. "dot11RSNAConfigSATimeout=%u\n"
  1886. "dot11RSNAAuthenticationSuiteSelected=" RSN_SUITE "\n"
  1887. "dot11RSNAPairwiseCipherSelected=" RSN_SUITE "\n"
  1888. "dot11RSNAGroupCipherSelected=" RSN_SUITE "\n"
  1889. "dot11RSNAPMKIDUsed=%s\n"
  1890. "dot11RSNAAuthenticationSuiteRequested=" RSN_SUITE "\n"
  1891. "dot11RSNAPairwiseCipherRequested=" RSN_SUITE "\n"
  1892. "dot11RSNAGroupCipherRequested=" RSN_SUITE "\n"
  1893. "dot11RSNATKIPCounterMeasuresInvoked=%u\n"
  1894. "dot11RSNA4WayHandshakeFailures=%u\n"
  1895. "dot11RSNAConfigNumberOfGTKSAReplayCounters=0\n",
  1896. RSN_VERSION,
  1897. !!wpa_auth->conf.wpa_strict_rekey,
  1898. dot11RSNAConfigGroupUpdateCount,
  1899. dot11RSNAConfigPairwiseUpdateCount,
  1900. wpa_cipher_bits(wpa_auth->conf.wpa_group),
  1901. dot11RSNAConfigPMKLifetime,
  1902. dot11RSNAConfigPMKReauthThreshold,
  1903. dot11RSNAConfigSATimeout,
  1904. RSN_SUITE_ARG(wpa_auth->dot11RSNAAuthenticationSuiteSelected),
  1905. RSN_SUITE_ARG(wpa_auth->dot11RSNAPairwiseCipherSelected),
  1906. RSN_SUITE_ARG(wpa_auth->dot11RSNAGroupCipherSelected),
  1907. pmkid_txt,
  1908. RSN_SUITE_ARG(wpa_auth->dot11RSNAAuthenticationSuiteRequested),
  1909. RSN_SUITE_ARG(wpa_auth->dot11RSNAPairwiseCipherRequested),
  1910. RSN_SUITE_ARG(wpa_auth->dot11RSNAGroupCipherRequested),
  1911. wpa_auth->dot11RSNATKIPCounterMeasuresInvoked,
  1912. wpa_auth->dot11RSNA4WayHandshakeFailures);
  1913. if (ret < 0 || (size_t) ret >= buflen - len)
  1914. return len;
  1915. len += ret;
  1916. /* TODO: dot11RSNAConfigPairwiseCiphersTable */
  1917. /* TODO: dot11RSNAConfigAuthenticationSuitesTable */
  1918. /* Private MIB */
  1919. ret = os_snprintf(buf + len, buflen - len, "hostapdWPAGroupState=%d\n",
  1920. wpa_auth->group->wpa_group_state);
  1921. if (ret < 0 || (size_t) ret >= buflen - len)
  1922. return len;
  1923. len += ret;
  1924. return len;
  1925. }
  1926. int wpa_get_mib_sta(struct wpa_state_machine *sm, char *buf, size_t buflen)
  1927. {
  1928. int len = 0, ret;
  1929. u32 pairwise = 0;
  1930. if (sm == NULL)
  1931. return 0;
  1932. /* TODO: FF-FF-FF-FF-FF-FF entry for broadcast/multicast stats */
  1933. /* dot11RSNAStatsEntry */
  1934. if (sm->wpa == WPA_VERSION_WPA) {
  1935. if (sm->pairwise == WPA_CIPHER_CCMP)
  1936. pairwise = WPA_CIPHER_SUITE_CCMP;
  1937. else if (sm->pairwise == WPA_CIPHER_TKIP)
  1938. pairwise = WPA_CIPHER_SUITE_TKIP;
  1939. else if (sm->pairwise == WPA_CIPHER_WEP104)
  1940. pairwise = WPA_CIPHER_SUITE_WEP104;
  1941. else if (sm->pairwise == WPA_CIPHER_WEP40)
  1942. pairwise = WPA_CIPHER_SUITE_WEP40;
  1943. else if (sm->pairwise == WPA_CIPHER_NONE)
  1944. pairwise = WPA_CIPHER_SUITE_NONE;
  1945. } else if (sm->wpa == WPA_VERSION_WPA2) {
  1946. if (sm->pairwise == WPA_CIPHER_CCMP)
  1947. pairwise = RSN_CIPHER_SUITE_CCMP;
  1948. else if (sm->pairwise == WPA_CIPHER_TKIP)
  1949. pairwise = RSN_CIPHER_SUITE_TKIP;
  1950. else if (sm->pairwise == WPA_CIPHER_WEP104)
  1951. pairwise = RSN_CIPHER_SUITE_WEP104;
  1952. else if (sm->pairwise == WPA_CIPHER_WEP40)
  1953. pairwise = RSN_CIPHER_SUITE_WEP40;
  1954. else if (sm->pairwise == WPA_CIPHER_NONE)
  1955. pairwise = RSN_CIPHER_SUITE_NONE;
  1956. } else
  1957. return 0;
  1958. ret = os_snprintf(
  1959. buf + len, buflen - len,
  1960. /* TODO: dot11RSNAStatsIndex */
  1961. "dot11RSNAStatsSTAAddress=" MACSTR "\n"
  1962. "dot11RSNAStatsVersion=1\n"
  1963. "dot11RSNAStatsSelectedPairwiseCipher=" RSN_SUITE "\n"
  1964. /* TODO: dot11RSNAStatsTKIPICVErrors */
  1965. "dot11RSNAStatsTKIPLocalMICFailures=%u\n"
  1966. "dot11RSNAStatsTKIPRemoveMICFailures=%u\n"
  1967. /* TODO: dot11RSNAStatsCCMPReplays */
  1968. /* TODO: dot11RSNAStatsCCMPDecryptErrors */
  1969. /* TODO: dot11RSNAStatsTKIPReplays */,
  1970. MAC2STR(sm->addr),
  1971. RSN_SUITE_ARG(pairwise),
  1972. sm->dot11RSNAStatsTKIPLocalMICFailures,
  1973. sm->dot11RSNAStatsTKIPRemoteMICFailures);
  1974. if (ret < 0 || (size_t) ret >= buflen - len)
  1975. return len;
  1976. len += ret;
  1977. /* Private MIB */
  1978. ret = os_snprintf(buf + len, buflen - len,
  1979. "hostapdWPAPTKState=%d\n"
  1980. "hostapdWPAPTKGroupState=%d\n",
  1981. sm->wpa_ptk_state,
  1982. sm->wpa_ptk_group_state);
  1983. if (ret < 0 || (size_t) ret >= buflen - len)
  1984. return len;
  1985. len += ret;
  1986. return len;
  1987. }
  1988. void wpa_auth_countermeasures_start(struct wpa_authenticator *wpa_auth)
  1989. {
  1990. if (wpa_auth)
  1991. wpa_auth->dot11RSNATKIPCounterMeasuresInvoked++;
  1992. }
  1993. int wpa_auth_pairwise_set(struct wpa_state_machine *sm)
  1994. {
  1995. return sm && sm->pairwise_set;
  1996. }
  1997. int wpa_auth_get_pairwise(struct wpa_state_machine *sm)
  1998. {
  1999. return sm->pairwise;
  2000. }
  2001. int wpa_auth_sta_key_mgmt(struct wpa_state_machine *sm)
  2002. {
  2003. if (sm == NULL)
  2004. return -1;
  2005. return sm->wpa_key_mgmt;
  2006. }
  2007. int wpa_auth_sta_wpa_version(struct wpa_state_machine *sm)
  2008. {
  2009. if (sm == NULL)
  2010. return 0;
  2011. return sm->wpa;
  2012. }
  2013. int wpa_auth_sta_clear_pmksa(struct wpa_state_machine *sm,
  2014. struct rsn_pmksa_cache_entry *entry)
  2015. {
  2016. if (sm == NULL || sm->pmksa != entry)
  2017. return -1;
  2018. sm->pmksa = NULL;
  2019. return 0;
  2020. }
  2021. struct rsn_pmksa_cache_entry *
  2022. wpa_auth_sta_get_pmksa(struct wpa_state_machine *sm)
  2023. {
  2024. return sm ? sm->pmksa : NULL;
  2025. }
  2026. void wpa_auth_sta_local_mic_failure_report(struct wpa_state_machine *sm)
  2027. {
  2028. if (sm)
  2029. sm->dot11RSNAStatsTKIPLocalMICFailures++;
  2030. }
  2031. const u8 * wpa_auth_get_wpa_ie(struct wpa_authenticator *wpa_auth, size_t *len)
  2032. {
  2033. if (wpa_auth == NULL)
  2034. return NULL;
  2035. *len = wpa_auth->wpa_ie_len;
  2036. return wpa_auth->wpa_ie;
  2037. }
  2038. int wpa_auth_pmksa_add(struct wpa_state_machine *sm, const u8 *pmk,
  2039. int session_timeout, struct eapol_state_machine *eapol)
  2040. {
  2041. if (sm == NULL || sm->wpa != WPA_VERSION_WPA2)
  2042. return -1;
  2043. if (pmksa_cache_auth_add(sm->wpa_auth->pmksa, pmk, PMK_LEN,
  2044. sm->wpa_auth->addr, sm->addr, session_timeout,
  2045. eapol, sm->wpa_key_mgmt))
  2046. return 0;
  2047. return -1;
  2048. }
  2049. int wpa_auth_pmksa_add_preauth(struct wpa_authenticator *wpa_auth,
  2050. const u8 *pmk, size_t len, const u8 *sta_addr,
  2051. int session_timeout,
  2052. struct eapol_state_machine *eapol)
  2053. {
  2054. if (wpa_auth == NULL)
  2055. return -1;
  2056. if (pmksa_cache_auth_add(wpa_auth->pmksa, pmk, len, wpa_auth->addr,
  2057. sta_addr, session_timeout, eapol,
  2058. WPA_KEY_MGMT_IEEE8021X))
  2059. return 0;
  2060. return -1;
  2061. }
  2062. static struct wpa_group *
  2063. wpa_auth_add_group(struct wpa_authenticator *wpa_auth, int vlan_id)
  2064. {
  2065. struct wpa_group *group;
  2066. if (wpa_auth == NULL || wpa_auth->group == NULL)
  2067. return NULL;
  2068. wpa_printf(MSG_DEBUG, "WPA: Add group state machine for VLAN-ID %d",
  2069. vlan_id);
  2070. group = wpa_group_init(wpa_auth, vlan_id);
  2071. if (group == NULL)
  2072. return NULL;
  2073. group->next = wpa_auth->group->next;
  2074. wpa_auth->group->next = group;
  2075. return group;
  2076. }
  2077. int wpa_auth_sta_set_vlan(struct wpa_state_machine *sm, int vlan_id)
  2078. {
  2079. struct wpa_group *group;
  2080. if (sm == NULL || sm->wpa_auth == NULL)
  2081. return 0;
  2082. group = sm->wpa_auth->group;
  2083. while (group) {
  2084. if (group->vlan_id == vlan_id)
  2085. break;
  2086. group = group->next;
  2087. }
  2088. if (group == NULL) {
  2089. group = wpa_auth_add_group(sm->wpa_auth, vlan_id);
  2090. if (group == NULL)
  2091. return -1;
  2092. }
  2093. if (sm->group == group)
  2094. return 0;
  2095. wpa_printf(MSG_DEBUG, "WPA: Moving STA " MACSTR " to use group state "
  2096. "machine for VLAN ID %d", MAC2STR(sm->addr), vlan_id);
  2097. sm->group = group;
  2098. return 0;
  2099. }
  2100. #endif /* CONFIG_NATIVE_WINDOWS */