wpa_auth.c 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492
  1. /*
  2. * IEEE 802.11 RSN / WPA Authenticator
  3. * Copyright (c) 2004-2015, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "utils/eloop.h"
  11. #include "utils/state_machine.h"
  12. #include "utils/bitfield.h"
  13. #include "common/ieee802_11_defs.h"
  14. #include "crypto/aes_wrap.h"
  15. #include "crypto/crypto.h"
  16. #include "crypto/sha1.h"
  17. #include "crypto/sha256.h"
  18. #include "crypto/random.h"
  19. #include "eapol_auth/eapol_auth_sm.h"
  20. #include "ap_config.h"
  21. #include "ieee802_11.h"
  22. #include "wpa_auth.h"
  23. #include "pmksa_cache_auth.h"
  24. #include "wpa_auth_i.h"
  25. #include "wpa_auth_ie.h"
  26. #define STATE_MACHINE_DATA struct wpa_state_machine
  27. #define STATE_MACHINE_DEBUG_PREFIX "WPA"
  28. #define STATE_MACHINE_ADDR sm->addr
  29. static void wpa_send_eapol_timeout(void *eloop_ctx, void *timeout_ctx);
  30. static int wpa_sm_step(struct wpa_state_machine *sm);
  31. static int wpa_verify_key_mic(int akmp, struct wpa_ptk *PTK, u8 *data,
  32. size_t data_len);
  33. static void wpa_sm_call_step(void *eloop_ctx, void *timeout_ctx);
  34. static void wpa_group_sm_step(struct wpa_authenticator *wpa_auth,
  35. struct wpa_group *group);
  36. static void wpa_request_new_ptk(struct wpa_state_machine *sm);
  37. static int wpa_gtk_update(struct wpa_authenticator *wpa_auth,
  38. struct wpa_group *group);
  39. static int wpa_group_config_group_keys(struct wpa_authenticator *wpa_auth,
  40. struct wpa_group *group);
  41. static int wpa_derive_ptk(struct wpa_state_machine *sm, const u8 *snonce,
  42. const u8 *pmk, struct wpa_ptk *ptk);
  43. static void wpa_group_free(struct wpa_authenticator *wpa_auth,
  44. struct wpa_group *group);
  45. static void wpa_group_get(struct wpa_authenticator *wpa_auth,
  46. struct wpa_group *group);
  47. static void wpa_group_put(struct wpa_authenticator *wpa_auth,
  48. struct wpa_group *group);
  49. static const u32 dot11RSNAConfigGroupUpdateCount = 4;
  50. static const u32 dot11RSNAConfigPairwiseUpdateCount = 4;
  51. static const u32 eapol_key_timeout_first = 100; /* ms */
  52. static const u32 eapol_key_timeout_subseq = 1000; /* ms */
  53. static const u32 eapol_key_timeout_first_group = 500; /* ms */
  54. /* TODO: make these configurable */
  55. static const int dot11RSNAConfigPMKLifetime = 43200;
  56. static const int dot11RSNAConfigPMKReauthThreshold = 70;
  57. static const int dot11RSNAConfigSATimeout = 60;
  58. static inline int wpa_auth_mic_failure_report(
  59. struct wpa_authenticator *wpa_auth, const u8 *addr)
  60. {
  61. if (wpa_auth->cb.mic_failure_report)
  62. return wpa_auth->cb.mic_failure_report(wpa_auth->cb.ctx, addr);
  63. return 0;
  64. }
  65. static inline void wpa_auth_psk_failure_report(
  66. struct wpa_authenticator *wpa_auth, const u8 *addr)
  67. {
  68. if (wpa_auth->cb.psk_failure_report)
  69. wpa_auth->cb.psk_failure_report(wpa_auth->cb.ctx, addr);
  70. }
  71. static inline void wpa_auth_set_eapol(struct wpa_authenticator *wpa_auth,
  72. const u8 *addr, wpa_eapol_variable var,
  73. int value)
  74. {
  75. if (wpa_auth->cb.set_eapol)
  76. wpa_auth->cb.set_eapol(wpa_auth->cb.ctx, addr, var, value);
  77. }
  78. static inline int wpa_auth_get_eapol(struct wpa_authenticator *wpa_auth,
  79. const u8 *addr, wpa_eapol_variable var)
  80. {
  81. if (wpa_auth->cb.get_eapol == NULL)
  82. return -1;
  83. return wpa_auth->cb.get_eapol(wpa_auth->cb.ctx, addr, var);
  84. }
  85. static inline const u8 * wpa_auth_get_psk(struct wpa_authenticator *wpa_auth,
  86. const u8 *addr,
  87. const u8 *p2p_dev_addr,
  88. const u8 *prev_psk)
  89. {
  90. if (wpa_auth->cb.get_psk == NULL)
  91. return NULL;
  92. return wpa_auth->cb.get_psk(wpa_auth->cb.ctx, addr, p2p_dev_addr,
  93. prev_psk);
  94. }
  95. static inline int wpa_auth_get_msk(struct wpa_authenticator *wpa_auth,
  96. const u8 *addr, u8 *msk, size_t *len)
  97. {
  98. if (wpa_auth->cb.get_msk == NULL)
  99. return -1;
  100. return wpa_auth->cb.get_msk(wpa_auth->cb.ctx, addr, msk, len);
  101. }
  102. static inline int wpa_auth_set_key(struct wpa_authenticator *wpa_auth,
  103. int vlan_id,
  104. enum wpa_alg alg, const u8 *addr, int idx,
  105. u8 *key, size_t key_len)
  106. {
  107. if (wpa_auth->cb.set_key == NULL)
  108. return -1;
  109. return wpa_auth->cb.set_key(wpa_auth->cb.ctx, vlan_id, alg, addr, idx,
  110. key, key_len);
  111. }
  112. static inline int wpa_auth_get_seqnum(struct wpa_authenticator *wpa_auth,
  113. const u8 *addr, int idx, u8 *seq)
  114. {
  115. if (wpa_auth->cb.get_seqnum == NULL)
  116. return -1;
  117. return wpa_auth->cb.get_seqnum(wpa_auth->cb.ctx, addr, idx, seq);
  118. }
  119. static inline int
  120. wpa_auth_send_eapol(struct wpa_authenticator *wpa_auth, const u8 *addr,
  121. const u8 *data, size_t data_len, int encrypt)
  122. {
  123. if (wpa_auth->cb.send_eapol == NULL)
  124. return -1;
  125. return wpa_auth->cb.send_eapol(wpa_auth->cb.ctx, addr, data, data_len,
  126. encrypt);
  127. }
  128. #ifdef CONFIG_MESH
  129. static inline int wpa_auth_start_ampe(struct wpa_authenticator *wpa_auth,
  130. const u8 *addr)
  131. {
  132. if (wpa_auth->cb.start_ampe == NULL)
  133. return -1;
  134. return wpa_auth->cb.start_ampe(wpa_auth->cb.ctx, addr);
  135. }
  136. #endif /* CONFIG_MESH */
  137. int wpa_auth_for_each_sta(struct wpa_authenticator *wpa_auth,
  138. int (*cb)(struct wpa_state_machine *sm, void *ctx),
  139. void *cb_ctx)
  140. {
  141. if (wpa_auth->cb.for_each_sta == NULL)
  142. return 0;
  143. return wpa_auth->cb.for_each_sta(wpa_auth->cb.ctx, cb, cb_ctx);
  144. }
  145. int wpa_auth_for_each_auth(struct wpa_authenticator *wpa_auth,
  146. int (*cb)(struct wpa_authenticator *a, void *ctx),
  147. void *cb_ctx)
  148. {
  149. if (wpa_auth->cb.for_each_auth == NULL)
  150. return 0;
  151. return wpa_auth->cb.for_each_auth(wpa_auth->cb.ctx, cb, cb_ctx);
  152. }
  153. void wpa_auth_logger(struct wpa_authenticator *wpa_auth, const u8 *addr,
  154. logger_level level, const char *txt)
  155. {
  156. if (wpa_auth->cb.logger == NULL)
  157. return;
  158. wpa_auth->cb.logger(wpa_auth->cb.ctx, addr, level, txt);
  159. }
  160. void wpa_auth_vlogger(struct wpa_authenticator *wpa_auth, const u8 *addr,
  161. logger_level level, const char *fmt, ...)
  162. {
  163. char *format;
  164. int maxlen;
  165. va_list ap;
  166. if (wpa_auth->cb.logger == NULL)
  167. return;
  168. maxlen = os_strlen(fmt) + 100;
  169. format = os_malloc(maxlen);
  170. if (!format)
  171. return;
  172. va_start(ap, fmt);
  173. vsnprintf(format, maxlen, fmt, ap);
  174. va_end(ap);
  175. wpa_auth_logger(wpa_auth, addr, level, format);
  176. os_free(format);
  177. }
  178. static void wpa_sta_disconnect(struct wpa_authenticator *wpa_auth,
  179. const u8 *addr)
  180. {
  181. if (wpa_auth->cb.disconnect == NULL)
  182. return;
  183. wpa_printf(MSG_DEBUG, "wpa_sta_disconnect STA " MACSTR, MAC2STR(addr));
  184. wpa_auth->cb.disconnect(wpa_auth->cb.ctx, addr,
  185. WLAN_REASON_PREV_AUTH_NOT_VALID);
  186. }
  187. static int wpa_use_aes_cmac(struct wpa_state_machine *sm)
  188. {
  189. int ret = 0;
  190. #ifdef CONFIG_IEEE80211R
  191. if (wpa_key_mgmt_ft(sm->wpa_key_mgmt))
  192. ret = 1;
  193. #endif /* CONFIG_IEEE80211R */
  194. #ifdef CONFIG_IEEE80211W
  195. if (wpa_key_mgmt_sha256(sm->wpa_key_mgmt))
  196. ret = 1;
  197. #endif /* CONFIG_IEEE80211W */
  198. if (sm->wpa_key_mgmt == WPA_KEY_MGMT_OSEN)
  199. ret = 1;
  200. return ret;
  201. }
  202. static void wpa_rekey_gmk(void *eloop_ctx, void *timeout_ctx)
  203. {
  204. struct wpa_authenticator *wpa_auth = eloop_ctx;
  205. if (random_get_bytes(wpa_auth->group->GMK, WPA_GMK_LEN)) {
  206. wpa_printf(MSG_ERROR, "Failed to get random data for WPA "
  207. "initialization.");
  208. } else {
  209. wpa_auth_logger(wpa_auth, NULL, LOGGER_DEBUG, "GMK rekeyd");
  210. wpa_hexdump_key(MSG_DEBUG, "GMK",
  211. wpa_auth->group->GMK, WPA_GMK_LEN);
  212. }
  213. if (wpa_auth->conf.wpa_gmk_rekey) {
  214. eloop_register_timeout(wpa_auth->conf.wpa_gmk_rekey, 0,
  215. wpa_rekey_gmk, wpa_auth, NULL);
  216. }
  217. }
  218. static void wpa_rekey_gtk(void *eloop_ctx, void *timeout_ctx)
  219. {
  220. struct wpa_authenticator *wpa_auth = eloop_ctx;
  221. struct wpa_group *group, *next;
  222. wpa_auth_logger(wpa_auth, NULL, LOGGER_DEBUG, "rekeying GTK");
  223. group = wpa_auth->group;
  224. while (group) {
  225. wpa_group_get(wpa_auth, group);
  226. group->GTKReKey = TRUE;
  227. do {
  228. group->changed = FALSE;
  229. wpa_group_sm_step(wpa_auth, group);
  230. } while (group->changed);
  231. next = group->next;
  232. wpa_group_put(wpa_auth, group);
  233. group = next;
  234. }
  235. if (wpa_auth->conf.wpa_group_rekey) {
  236. eloop_register_timeout(wpa_auth->conf.wpa_group_rekey,
  237. 0, wpa_rekey_gtk, wpa_auth, NULL);
  238. }
  239. }
  240. static void wpa_rekey_ptk(void *eloop_ctx, void *timeout_ctx)
  241. {
  242. struct wpa_authenticator *wpa_auth = eloop_ctx;
  243. struct wpa_state_machine *sm = timeout_ctx;
  244. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG, "rekeying PTK");
  245. wpa_request_new_ptk(sm);
  246. wpa_sm_step(sm);
  247. }
  248. static int wpa_auth_pmksa_clear_cb(struct wpa_state_machine *sm, void *ctx)
  249. {
  250. if (sm->pmksa == ctx)
  251. sm->pmksa = NULL;
  252. return 0;
  253. }
  254. static void wpa_auth_pmksa_free_cb(struct rsn_pmksa_cache_entry *entry,
  255. void *ctx)
  256. {
  257. struct wpa_authenticator *wpa_auth = ctx;
  258. wpa_auth_for_each_sta(wpa_auth, wpa_auth_pmksa_clear_cb, entry);
  259. }
  260. static int wpa_group_init_gmk_and_counter(struct wpa_authenticator *wpa_auth,
  261. struct wpa_group *group)
  262. {
  263. u8 buf[ETH_ALEN + 8 + sizeof(unsigned long)];
  264. u8 rkey[32];
  265. unsigned long ptr;
  266. if (random_get_bytes(group->GMK, WPA_GMK_LEN) < 0)
  267. return -1;
  268. wpa_hexdump_key(MSG_DEBUG, "GMK", group->GMK, WPA_GMK_LEN);
  269. /*
  270. * Counter = PRF-256(Random number, "Init Counter",
  271. * Local MAC Address || Time)
  272. */
  273. os_memcpy(buf, wpa_auth->addr, ETH_ALEN);
  274. wpa_get_ntp_timestamp(buf + ETH_ALEN);
  275. ptr = (unsigned long) group;
  276. os_memcpy(buf + ETH_ALEN + 8, &ptr, sizeof(ptr));
  277. if (random_get_bytes(rkey, sizeof(rkey)) < 0)
  278. return -1;
  279. if (sha1_prf(rkey, sizeof(rkey), "Init Counter", buf, sizeof(buf),
  280. group->Counter, WPA_NONCE_LEN) < 0)
  281. return -1;
  282. wpa_hexdump_key(MSG_DEBUG, "Key Counter",
  283. group->Counter, WPA_NONCE_LEN);
  284. return 0;
  285. }
  286. static struct wpa_group * wpa_group_init(struct wpa_authenticator *wpa_auth,
  287. int vlan_id, int delay_init)
  288. {
  289. struct wpa_group *group;
  290. group = os_zalloc(sizeof(struct wpa_group));
  291. if (group == NULL)
  292. return NULL;
  293. group->GTKAuthenticator = TRUE;
  294. group->vlan_id = vlan_id;
  295. group->GTK_len = wpa_cipher_key_len(wpa_auth->conf.wpa_group);
  296. if (random_pool_ready() != 1) {
  297. wpa_printf(MSG_INFO, "WPA: Not enough entropy in random pool "
  298. "for secure operations - update keys later when "
  299. "the first station connects");
  300. }
  301. /*
  302. * Set initial GMK/Counter value here. The actual values that will be
  303. * used in negotiations will be set once the first station tries to
  304. * connect. This allows more time for collecting additional randomness
  305. * on embedded devices.
  306. */
  307. if (wpa_group_init_gmk_and_counter(wpa_auth, group) < 0) {
  308. wpa_printf(MSG_ERROR, "Failed to get random data for WPA "
  309. "initialization.");
  310. os_free(group);
  311. return NULL;
  312. }
  313. group->GInit = TRUE;
  314. if (delay_init) {
  315. wpa_printf(MSG_DEBUG, "WPA: Delay group state machine start "
  316. "until Beacon frames have been configured");
  317. /* Initialization is completed in wpa_init_keys(). */
  318. } else {
  319. wpa_group_sm_step(wpa_auth, group);
  320. group->GInit = FALSE;
  321. wpa_group_sm_step(wpa_auth, group);
  322. }
  323. return group;
  324. }
  325. /**
  326. * wpa_init - Initialize WPA authenticator
  327. * @addr: Authenticator address
  328. * @conf: Configuration for WPA authenticator
  329. * @cb: Callback functions for WPA authenticator
  330. * Returns: Pointer to WPA authenticator data or %NULL on failure
  331. */
  332. struct wpa_authenticator * wpa_init(const u8 *addr,
  333. struct wpa_auth_config *conf,
  334. struct wpa_auth_callbacks *cb)
  335. {
  336. struct wpa_authenticator *wpa_auth;
  337. wpa_auth = os_zalloc(sizeof(struct wpa_authenticator));
  338. if (wpa_auth == NULL)
  339. return NULL;
  340. os_memcpy(wpa_auth->addr, addr, ETH_ALEN);
  341. os_memcpy(&wpa_auth->conf, conf, sizeof(*conf));
  342. os_memcpy(&wpa_auth->cb, cb, sizeof(*cb));
  343. if (wpa_auth_gen_wpa_ie(wpa_auth)) {
  344. wpa_printf(MSG_ERROR, "Could not generate WPA IE.");
  345. os_free(wpa_auth);
  346. return NULL;
  347. }
  348. wpa_auth->group = wpa_group_init(wpa_auth, 0, 1);
  349. if (wpa_auth->group == NULL) {
  350. os_free(wpa_auth->wpa_ie);
  351. os_free(wpa_auth);
  352. return NULL;
  353. }
  354. wpa_auth->pmksa = pmksa_cache_auth_init(wpa_auth_pmksa_free_cb,
  355. wpa_auth);
  356. if (wpa_auth->pmksa == NULL) {
  357. wpa_printf(MSG_ERROR, "PMKSA cache initialization failed.");
  358. os_free(wpa_auth->group);
  359. os_free(wpa_auth->wpa_ie);
  360. os_free(wpa_auth);
  361. return NULL;
  362. }
  363. #ifdef CONFIG_IEEE80211R
  364. wpa_auth->ft_pmk_cache = wpa_ft_pmk_cache_init();
  365. if (wpa_auth->ft_pmk_cache == NULL) {
  366. wpa_printf(MSG_ERROR, "FT PMK cache initialization failed.");
  367. os_free(wpa_auth->group);
  368. os_free(wpa_auth->wpa_ie);
  369. pmksa_cache_auth_deinit(wpa_auth->pmksa);
  370. os_free(wpa_auth);
  371. return NULL;
  372. }
  373. #endif /* CONFIG_IEEE80211R */
  374. if (wpa_auth->conf.wpa_gmk_rekey) {
  375. eloop_register_timeout(wpa_auth->conf.wpa_gmk_rekey, 0,
  376. wpa_rekey_gmk, wpa_auth, NULL);
  377. }
  378. if (wpa_auth->conf.wpa_group_rekey) {
  379. eloop_register_timeout(wpa_auth->conf.wpa_group_rekey, 0,
  380. wpa_rekey_gtk, wpa_auth, NULL);
  381. }
  382. #ifdef CONFIG_P2P
  383. if (WPA_GET_BE32(conf->ip_addr_start)) {
  384. int count = WPA_GET_BE32(conf->ip_addr_end) -
  385. WPA_GET_BE32(conf->ip_addr_start) + 1;
  386. if (count > 1000)
  387. count = 1000;
  388. if (count > 0)
  389. wpa_auth->ip_pool = bitfield_alloc(count);
  390. }
  391. #endif /* CONFIG_P2P */
  392. return wpa_auth;
  393. }
  394. int wpa_init_keys(struct wpa_authenticator *wpa_auth)
  395. {
  396. struct wpa_group *group = wpa_auth->group;
  397. wpa_printf(MSG_DEBUG, "WPA: Start group state machine to set initial "
  398. "keys");
  399. wpa_group_sm_step(wpa_auth, group);
  400. group->GInit = FALSE;
  401. wpa_group_sm_step(wpa_auth, group);
  402. if (group->wpa_group_state == WPA_GROUP_FATAL_FAILURE)
  403. return -1;
  404. return 0;
  405. }
  406. /**
  407. * wpa_deinit - Deinitialize WPA authenticator
  408. * @wpa_auth: Pointer to WPA authenticator data from wpa_init()
  409. */
  410. void wpa_deinit(struct wpa_authenticator *wpa_auth)
  411. {
  412. struct wpa_group *group, *prev;
  413. eloop_cancel_timeout(wpa_rekey_gmk, wpa_auth, NULL);
  414. eloop_cancel_timeout(wpa_rekey_gtk, wpa_auth, NULL);
  415. #ifdef CONFIG_PEERKEY
  416. while (wpa_auth->stsl_negotiations)
  417. wpa_stsl_remove(wpa_auth, wpa_auth->stsl_negotiations);
  418. #endif /* CONFIG_PEERKEY */
  419. pmksa_cache_auth_deinit(wpa_auth->pmksa);
  420. #ifdef CONFIG_IEEE80211R
  421. wpa_ft_pmk_cache_deinit(wpa_auth->ft_pmk_cache);
  422. wpa_auth->ft_pmk_cache = NULL;
  423. #endif /* CONFIG_IEEE80211R */
  424. #ifdef CONFIG_P2P
  425. bitfield_free(wpa_auth->ip_pool);
  426. #endif /* CONFIG_P2P */
  427. os_free(wpa_auth->wpa_ie);
  428. group = wpa_auth->group;
  429. while (group) {
  430. prev = group;
  431. group = group->next;
  432. os_free(prev);
  433. }
  434. os_free(wpa_auth);
  435. }
  436. /**
  437. * wpa_reconfig - Update WPA authenticator configuration
  438. * @wpa_auth: Pointer to WPA authenticator data from wpa_init()
  439. * @conf: Configuration for WPA authenticator
  440. */
  441. int wpa_reconfig(struct wpa_authenticator *wpa_auth,
  442. struct wpa_auth_config *conf)
  443. {
  444. struct wpa_group *group;
  445. if (wpa_auth == NULL)
  446. return 0;
  447. os_memcpy(&wpa_auth->conf, conf, sizeof(*conf));
  448. if (wpa_auth_gen_wpa_ie(wpa_auth)) {
  449. wpa_printf(MSG_ERROR, "Could not generate WPA IE.");
  450. return -1;
  451. }
  452. /*
  453. * Reinitialize GTK to make sure it is suitable for the new
  454. * configuration.
  455. */
  456. group = wpa_auth->group;
  457. group->GTK_len = wpa_cipher_key_len(wpa_auth->conf.wpa_group);
  458. group->GInit = TRUE;
  459. wpa_group_sm_step(wpa_auth, group);
  460. group->GInit = FALSE;
  461. wpa_group_sm_step(wpa_auth, group);
  462. return 0;
  463. }
  464. struct wpa_state_machine *
  465. wpa_auth_sta_init(struct wpa_authenticator *wpa_auth, const u8 *addr,
  466. const u8 *p2p_dev_addr)
  467. {
  468. struct wpa_state_machine *sm;
  469. if (wpa_auth->group->wpa_group_state == WPA_GROUP_FATAL_FAILURE)
  470. return NULL;
  471. sm = os_zalloc(sizeof(struct wpa_state_machine));
  472. if (sm == NULL)
  473. return NULL;
  474. os_memcpy(sm->addr, addr, ETH_ALEN);
  475. if (p2p_dev_addr)
  476. os_memcpy(sm->p2p_dev_addr, p2p_dev_addr, ETH_ALEN);
  477. sm->wpa_auth = wpa_auth;
  478. sm->group = wpa_auth->group;
  479. wpa_group_get(sm->wpa_auth, sm->group);
  480. return sm;
  481. }
  482. int wpa_auth_sta_associated(struct wpa_authenticator *wpa_auth,
  483. struct wpa_state_machine *sm)
  484. {
  485. if (wpa_auth == NULL || !wpa_auth->conf.wpa || sm == NULL)
  486. return -1;
  487. #ifdef CONFIG_IEEE80211R
  488. if (sm->ft_completed) {
  489. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG,
  490. "FT authentication already completed - do not "
  491. "start 4-way handshake");
  492. /* Go to PTKINITDONE state to allow GTK rekeying */
  493. sm->wpa_ptk_state = WPA_PTK_PTKINITDONE;
  494. return 0;
  495. }
  496. #endif /* CONFIG_IEEE80211R */
  497. if (sm->started) {
  498. os_memset(&sm->key_replay, 0, sizeof(sm->key_replay));
  499. sm->ReAuthenticationRequest = TRUE;
  500. return wpa_sm_step(sm);
  501. }
  502. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG,
  503. "start authentication");
  504. sm->started = 1;
  505. sm->Init = TRUE;
  506. if (wpa_sm_step(sm) == 1)
  507. return 1; /* should not really happen */
  508. sm->Init = FALSE;
  509. sm->AuthenticationRequest = TRUE;
  510. return wpa_sm_step(sm);
  511. }
  512. void wpa_auth_sta_no_wpa(struct wpa_state_machine *sm)
  513. {
  514. /* WPA/RSN was not used - clear WPA state. This is needed if the STA
  515. * reassociates back to the same AP while the previous entry for the
  516. * STA has not yet been removed. */
  517. if (sm == NULL)
  518. return;
  519. sm->wpa_key_mgmt = 0;
  520. }
  521. static void wpa_free_sta_sm(struct wpa_state_machine *sm)
  522. {
  523. #ifdef CONFIG_P2P
  524. if (WPA_GET_BE32(sm->ip_addr)) {
  525. u32 start;
  526. wpa_printf(MSG_DEBUG, "P2P: Free assigned IP "
  527. "address %u.%u.%u.%u from " MACSTR,
  528. sm->ip_addr[0], sm->ip_addr[1],
  529. sm->ip_addr[2], sm->ip_addr[3],
  530. MAC2STR(sm->addr));
  531. start = WPA_GET_BE32(sm->wpa_auth->conf.ip_addr_start);
  532. bitfield_clear(sm->wpa_auth->ip_pool,
  533. WPA_GET_BE32(sm->ip_addr) - start);
  534. }
  535. #endif /* CONFIG_P2P */
  536. if (sm->GUpdateStationKeys) {
  537. sm->group->GKeyDoneStations--;
  538. sm->GUpdateStationKeys = FALSE;
  539. }
  540. #ifdef CONFIG_IEEE80211R
  541. os_free(sm->assoc_resp_ftie);
  542. wpabuf_free(sm->ft_pending_req_ies);
  543. #endif /* CONFIG_IEEE80211R */
  544. os_free(sm->last_rx_eapol_key);
  545. os_free(sm->wpa_ie);
  546. wpa_group_put(sm->wpa_auth, sm->group);
  547. os_free(sm);
  548. }
  549. void wpa_auth_sta_deinit(struct wpa_state_machine *sm)
  550. {
  551. if (sm == NULL)
  552. return;
  553. if (sm->wpa_auth->conf.wpa_strict_rekey && sm->has_GTK) {
  554. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  555. "strict rekeying - force GTK rekey since STA "
  556. "is leaving");
  557. eloop_cancel_timeout(wpa_rekey_gtk, sm->wpa_auth, NULL);
  558. eloop_register_timeout(0, 500000, wpa_rekey_gtk, sm->wpa_auth,
  559. NULL);
  560. }
  561. eloop_cancel_timeout(wpa_send_eapol_timeout, sm->wpa_auth, sm);
  562. sm->pending_1_of_4_timeout = 0;
  563. eloop_cancel_timeout(wpa_sm_call_step, sm, NULL);
  564. eloop_cancel_timeout(wpa_rekey_ptk, sm->wpa_auth, sm);
  565. if (sm->in_step_loop) {
  566. /* Must not free state machine while wpa_sm_step() is running.
  567. * Freeing will be completed in the end of wpa_sm_step(). */
  568. wpa_printf(MSG_DEBUG, "WPA: Registering pending STA state "
  569. "machine deinit for " MACSTR, MAC2STR(sm->addr));
  570. sm->pending_deinit = 1;
  571. } else
  572. wpa_free_sta_sm(sm);
  573. }
  574. static void wpa_request_new_ptk(struct wpa_state_machine *sm)
  575. {
  576. if (sm == NULL)
  577. return;
  578. sm->PTKRequest = TRUE;
  579. sm->PTK_valid = 0;
  580. }
  581. static int wpa_replay_counter_valid(struct wpa_key_replay_counter *ctr,
  582. const u8 *replay_counter)
  583. {
  584. int i;
  585. for (i = 0; i < RSNA_MAX_EAPOL_RETRIES; i++) {
  586. if (!ctr[i].valid)
  587. break;
  588. if (os_memcmp(replay_counter, ctr[i].counter,
  589. WPA_REPLAY_COUNTER_LEN) == 0)
  590. return 1;
  591. }
  592. return 0;
  593. }
  594. static void wpa_replay_counter_mark_invalid(struct wpa_key_replay_counter *ctr,
  595. const u8 *replay_counter)
  596. {
  597. int i;
  598. for (i = 0; i < RSNA_MAX_EAPOL_RETRIES; i++) {
  599. if (ctr[i].valid &&
  600. (replay_counter == NULL ||
  601. os_memcmp(replay_counter, ctr[i].counter,
  602. WPA_REPLAY_COUNTER_LEN) == 0))
  603. ctr[i].valid = FALSE;
  604. }
  605. }
  606. #ifdef CONFIG_IEEE80211R
  607. static int ft_check_msg_2_of_4(struct wpa_authenticator *wpa_auth,
  608. struct wpa_state_machine *sm,
  609. struct wpa_eapol_ie_parse *kde)
  610. {
  611. struct wpa_ie_data ie;
  612. struct rsn_mdie *mdie;
  613. if (wpa_parse_wpa_ie_rsn(kde->rsn_ie, kde->rsn_ie_len, &ie) < 0 ||
  614. ie.num_pmkid != 1 || ie.pmkid == NULL) {
  615. wpa_printf(MSG_DEBUG, "FT: No PMKR1Name in "
  616. "FT 4-way handshake message 2/4");
  617. return -1;
  618. }
  619. os_memcpy(sm->sup_pmk_r1_name, ie.pmkid, PMKID_LEN);
  620. wpa_hexdump(MSG_DEBUG, "FT: PMKR1Name from Supplicant",
  621. sm->sup_pmk_r1_name, PMKID_LEN);
  622. if (!kde->mdie || !kde->ftie) {
  623. wpa_printf(MSG_DEBUG, "FT: No %s in FT 4-way handshake "
  624. "message 2/4", kde->mdie ? "FTIE" : "MDIE");
  625. return -1;
  626. }
  627. mdie = (struct rsn_mdie *) (kde->mdie + 2);
  628. if (kde->mdie[1] < sizeof(struct rsn_mdie) ||
  629. os_memcmp(wpa_auth->conf.mobility_domain, mdie->mobility_domain,
  630. MOBILITY_DOMAIN_ID_LEN) != 0) {
  631. wpa_printf(MSG_DEBUG, "FT: MDIE mismatch");
  632. return -1;
  633. }
  634. if (sm->assoc_resp_ftie &&
  635. (kde->ftie[1] != sm->assoc_resp_ftie[1] ||
  636. os_memcmp(kde->ftie, sm->assoc_resp_ftie,
  637. 2 + sm->assoc_resp_ftie[1]) != 0)) {
  638. wpa_printf(MSG_DEBUG, "FT: FTIE mismatch");
  639. wpa_hexdump(MSG_DEBUG, "FT: FTIE in EAPOL-Key msg 2/4",
  640. kde->ftie, kde->ftie_len);
  641. wpa_hexdump(MSG_DEBUG, "FT: FTIE in (Re)AssocResp",
  642. sm->assoc_resp_ftie, 2 + sm->assoc_resp_ftie[1]);
  643. return -1;
  644. }
  645. return 0;
  646. }
  647. #endif /* CONFIG_IEEE80211R */
  648. static int wpa_receive_error_report(struct wpa_authenticator *wpa_auth,
  649. struct wpa_state_machine *sm, int group)
  650. {
  651. /* Supplicant reported a Michael MIC error */
  652. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_INFO,
  653. "received EAPOL-Key Error Request "
  654. "(STA detected Michael MIC failure (group=%d))",
  655. group);
  656. if (group && wpa_auth->conf.wpa_group != WPA_CIPHER_TKIP) {
  657. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  658. "ignore Michael MIC failure report since "
  659. "group cipher is not TKIP");
  660. } else if (!group && sm->pairwise != WPA_CIPHER_TKIP) {
  661. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  662. "ignore Michael MIC failure report since "
  663. "pairwise cipher is not TKIP");
  664. } else {
  665. if (wpa_auth_mic_failure_report(wpa_auth, sm->addr) > 0)
  666. return 1; /* STA entry was removed */
  667. sm->dot11RSNAStatsTKIPRemoteMICFailures++;
  668. wpa_auth->dot11RSNAStatsTKIPRemoteMICFailures++;
  669. }
  670. /*
  671. * Error report is not a request for a new key handshake, but since
  672. * Authenticator may do it, let's change the keys now anyway.
  673. */
  674. wpa_request_new_ptk(sm);
  675. return 0;
  676. }
  677. static int wpa_try_alt_snonce(struct wpa_state_machine *sm, u8 *data,
  678. size_t data_len)
  679. {
  680. struct wpa_ptk PTK;
  681. int ok = 0;
  682. const u8 *pmk = NULL;
  683. for (;;) {
  684. if (wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt)) {
  685. pmk = wpa_auth_get_psk(sm->wpa_auth, sm->addr,
  686. sm->p2p_dev_addr, pmk);
  687. if (pmk == NULL)
  688. break;
  689. } else
  690. pmk = sm->PMK;
  691. wpa_derive_ptk(sm, sm->alt_SNonce, pmk, &PTK);
  692. if (wpa_verify_key_mic(sm->wpa_key_mgmt, &PTK, data, data_len)
  693. == 0) {
  694. ok = 1;
  695. break;
  696. }
  697. if (!wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt))
  698. break;
  699. }
  700. if (!ok) {
  701. wpa_printf(MSG_DEBUG,
  702. "WPA: Earlier SNonce did not result in matching MIC");
  703. return -1;
  704. }
  705. wpa_printf(MSG_DEBUG,
  706. "WPA: Earlier SNonce resulted in matching MIC");
  707. sm->alt_snonce_valid = 0;
  708. os_memcpy(sm->SNonce, sm->alt_SNonce, WPA_NONCE_LEN);
  709. os_memcpy(&sm->PTK, &PTK, sizeof(PTK));
  710. sm->PTK_valid = TRUE;
  711. return 0;
  712. }
  713. void wpa_receive(struct wpa_authenticator *wpa_auth,
  714. struct wpa_state_machine *sm,
  715. u8 *data, size_t data_len)
  716. {
  717. struct ieee802_1x_hdr *hdr;
  718. struct wpa_eapol_key *key;
  719. struct wpa_eapol_key_192 *key192;
  720. u16 key_info, key_data_length;
  721. enum { PAIRWISE_2, PAIRWISE_4, GROUP_2, REQUEST,
  722. SMK_M1, SMK_M3, SMK_ERROR } msg;
  723. char *msgtxt;
  724. struct wpa_eapol_ie_parse kde;
  725. int ft;
  726. const u8 *eapol_key_ie, *key_data;
  727. size_t eapol_key_ie_len, keyhdrlen, mic_len;
  728. if (wpa_auth == NULL || !wpa_auth->conf.wpa || sm == NULL)
  729. return;
  730. mic_len = wpa_mic_len(sm->wpa_key_mgmt);
  731. keyhdrlen = mic_len == 24 ? sizeof(*key192) : sizeof(*key);
  732. if (data_len < sizeof(*hdr) + keyhdrlen)
  733. return;
  734. hdr = (struct ieee802_1x_hdr *) data;
  735. key = (struct wpa_eapol_key *) (hdr + 1);
  736. key192 = (struct wpa_eapol_key_192 *) (hdr + 1);
  737. key_info = WPA_GET_BE16(key->key_info);
  738. if (mic_len == 24) {
  739. key_data = (const u8 *) (key192 + 1);
  740. key_data_length = WPA_GET_BE16(key192->key_data_length);
  741. } else {
  742. key_data = (const u8 *) (key + 1);
  743. key_data_length = WPA_GET_BE16(key->key_data_length);
  744. }
  745. wpa_printf(MSG_DEBUG, "WPA: Received EAPOL-Key from " MACSTR
  746. " key_info=0x%x type=%u key_data_length=%u",
  747. MAC2STR(sm->addr), key_info, key->type, key_data_length);
  748. if (key_data_length > data_len - sizeof(*hdr) - keyhdrlen) {
  749. wpa_printf(MSG_INFO, "WPA: Invalid EAPOL-Key frame - "
  750. "key_data overflow (%d > %lu)",
  751. key_data_length,
  752. (unsigned long) (data_len - sizeof(*hdr) -
  753. keyhdrlen));
  754. return;
  755. }
  756. if (sm->wpa == WPA_VERSION_WPA2) {
  757. if (key->type == EAPOL_KEY_TYPE_WPA) {
  758. /*
  759. * Some deployed station implementations seem to send
  760. * msg 4/4 with incorrect type value in WPA2 mode.
  761. */
  762. wpa_printf(MSG_DEBUG, "Workaround: Allow EAPOL-Key "
  763. "with unexpected WPA type in RSN mode");
  764. } else if (key->type != EAPOL_KEY_TYPE_RSN) {
  765. wpa_printf(MSG_DEBUG, "Ignore EAPOL-Key with "
  766. "unexpected type %d in RSN mode",
  767. key->type);
  768. return;
  769. }
  770. } else {
  771. if (key->type != EAPOL_KEY_TYPE_WPA) {
  772. wpa_printf(MSG_DEBUG, "Ignore EAPOL-Key with "
  773. "unexpected type %d in WPA mode",
  774. key->type);
  775. return;
  776. }
  777. }
  778. wpa_hexdump(MSG_DEBUG, "WPA: Received Key Nonce", key->key_nonce,
  779. WPA_NONCE_LEN);
  780. wpa_hexdump(MSG_DEBUG, "WPA: Received Replay Counter",
  781. key->replay_counter, WPA_REPLAY_COUNTER_LEN);
  782. /* FIX: verify that the EAPOL-Key frame was encrypted if pairwise keys
  783. * are set */
  784. if ((key_info & (WPA_KEY_INFO_SMK_MESSAGE | WPA_KEY_INFO_REQUEST)) ==
  785. (WPA_KEY_INFO_SMK_MESSAGE | WPA_KEY_INFO_REQUEST)) {
  786. if (key_info & WPA_KEY_INFO_ERROR) {
  787. msg = SMK_ERROR;
  788. msgtxt = "SMK Error";
  789. } else {
  790. msg = SMK_M1;
  791. msgtxt = "SMK M1";
  792. }
  793. } else if (key_info & WPA_KEY_INFO_SMK_MESSAGE) {
  794. msg = SMK_M3;
  795. msgtxt = "SMK M3";
  796. } else if (key_info & WPA_KEY_INFO_REQUEST) {
  797. msg = REQUEST;
  798. msgtxt = "Request";
  799. } else if (!(key_info & WPA_KEY_INFO_KEY_TYPE)) {
  800. msg = GROUP_2;
  801. msgtxt = "2/2 Group";
  802. } else if (key_data_length == 0) {
  803. msg = PAIRWISE_4;
  804. msgtxt = "4/4 Pairwise";
  805. } else {
  806. msg = PAIRWISE_2;
  807. msgtxt = "2/4 Pairwise";
  808. }
  809. /* TODO: key_info type validation for PeerKey */
  810. if (msg == REQUEST || msg == PAIRWISE_2 || msg == PAIRWISE_4 ||
  811. msg == GROUP_2) {
  812. u16 ver = key_info & WPA_KEY_INFO_TYPE_MASK;
  813. if (sm->pairwise == WPA_CIPHER_CCMP ||
  814. sm->pairwise == WPA_CIPHER_GCMP) {
  815. if (wpa_use_aes_cmac(sm) &&
  816. sm->wpa_key_mgmt != WPA_KEY_MGMT_OSEN &&
  817. !wpa_key_mgmt_suite_b(sm->wpa_key_mgmt) &&
  818. ver != WPA_KEY_INFO_TYPE_AES_128_CMAC) {
  819. wpa_auth_logger(wpa_auth, sm->addr,
  820. LOGGER_WARNING,
  821. "advertised support for "
  822. "AES-128-CMAC, but did not "
  823. "use it");
  824. return;
  825. }
  826. if (!wpa_use_aes_cmac(sm) &&
  827. ver != WPA_KEY_INFO_TYPE_HMAC_SHA1_AES) {
  828. wpa_auth_logger(wpa_auth, sm->addr,
  829. LOGGER_WARNING,
  830. "did not use HMAC-SHA1-AES "
  831. "with CCMP/GCMP");
  832. return;
  833. }
  834. }
  835. if (wpa_key_mgmt_suite_b(sm->wpa_key_mgmt) &&
  836. ver != WPA_KEY_INFO_TYPE_AKM_DEFINED) {
  837. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_WARNING,
  838. "did not use EAPOL-Key descriptor version 0 as required for AKM-defined cases");
  839. return;
  840. }
  841. }
  842. if (key_info & WPA_KEY_INFO_REQUEST) {
  843. if (sm->req_replay_counter_used &&
  844. os_memcmp(key->replay_counter, sm->req_replay_counter,
  845. WPA_REPLAY_COUNTER_LEN) <= 0) {
  846. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_WARNING,
  847. "received EAPOL-Key request with "
  848. "replayed counter");
  849. return;
  850. }
  851. }
  852. if (!(key_info & WPA_KEY_INFO_REQUEST) &&
  853. !wpa_replay_counter_valid(sm->key_replay, key->replay_counter)) {
  854. int i;
  855. if (msg == PAIRWISE_2 &&
  856. wpa_replay_counter_valid(sm->prev_key_replay,
  857. key->replay_counter) &&
  858. sm->wpa_ptk_state == WPA_PTK_PTKINITNEGOTIATING &&
  859. os_memcmp(sm->SNonce, key->key_nonce, WPA_NONCE_LEN) != 0)
  860. {
  861. /*
  862. * Some supplicant implementations (e.g., Windows XP
  863. * WZC) update SNonce for each EAPOL-Key 2/4. This
  864. * breaks the workaround on accepting any of the
  865. * pending requests, so allow the SNonce to be updated
  866. * even if we have already sent out EAPOL-Key 3/4.
  867. */
  868. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_DEBUG,
  869. "Process SNonce update from STA "
  870. "based on retransmitted EAPOL-Key "
  871. "1/4");
  872. sm->update_snonce = 1;
  873. os_memcpy(sm->alt_SNonce, sm->SNonce, WPA_NONCE_LEN);
  874. sm->alt_snonce_valid = TRUE;
  875. os_memcpy(sm->alt_replay_counter,
  876. sm->key_replay[0].counter,
  877. WPA_REPLAY_COUNTER_LEN);
  878. goto continue_processing;
  879. }
  880. if (msg == PAIRWISE_4 && sm->alt_snonce_valid &&
  881. sm->wpa_ptk_state == WPA_PTK_PTKINITNEGOTIATING &&
  882. os_memcmp(key->replay_counter, sm->alt_replay_counter,
  883. WPA_REPLAY_COUNTER_LEN) == 0) {
  884. /*
  885. * Supplicant may still be using the old SNonce since
  886. * there was two EAPOL-Key 2/4 messages and they had
  887. * different SNonce values.
  888. */
  889. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_DEBUG,
  890. "Try to process received EAPOL-Key 4/4 based on old Replay Counter and SNonce from an earlier EAPOL-Key 1/4");
  891. goto continue_processing;
  892. }
  893. if (msg == PAIRWISE_2 &&
  894. wpa_replay_counter_valid(sm->prev_key_replay,
  895. key->replay_counter) &&
  896. sm->wpa_ptk_state == WPA_PTK_PTKINITNEGOTIATING) {
  897. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_DEBUG,
  898. "ignore retransmitted EAPOL-Key %s - "
  899. "SNonce did not change", msgtxt);
  900. } else {
  901. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_DEBUG,
  902. "received EAPOL-Key %s with "
  903. "unexpected replay counter", msgtxt);
  904. }
  905. for (i = 0; i < RSNA_MAX_EAPOL_RETRIES; i++) {
  906. if (!sm->key_replay[i].valid)
  907. break;
  908. wpa_hexdump(MSG_DEBUG, "pending replay counter",
  909. sm->key_replay[i].counter,
  910. WPA_REPLAY_COUNTER_LEN);
  911. }
  912. wpa_hexdump(MSG_DEBUG, "received replay counter",
  913. key->replay_counter, WPA_REPLAY_COUNTER_LEN);
  914. return;
  915. }
  916. continue_processing:
  917. switch (msg) {
  918. case PAIRWISE_2:
  919. if (sm->wpa_ptk_state != WPA_PTK_PTKSTART &&
  920. sm->wpa_ptk_state != WPA_PTK_PTKCALCNEGOTIATING &&
  921. (!sm->update_snonce ||
  922. sm->wpa_ptk_state != WPA_PTK_PTKINITNEGOTIATING)) {
  923. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_INFO,
  924. "received EAPOL-Key msg 2/4 in "
  925. "invalid state (%d) - dropped",
  926. sm->wpa_ptk_state);
  927. return;
  928. }
  929. random_add_randomness(key->key_nonce, WPA_NONCE_LEN);
  930. if (sm->group->reject_4way_hs_for_entropy) {
  931. /*
  932. * The system did not have enough entropy to generate
  933. * strong random numbers. Reject the first 4-way
  934. * handshake(s) and collect some entropy based on the
  935. * information from it. Once enough entropy is
  936. * available, the next atempt will trigger GMK/Key
  937. * Counter update and the station will be allowed to
  938. * continue.
  939. */
  940. wpa_printf(MSG_DEBUG, "WPA: Reject 4-way handshake to "
  941. "collect more entropy for random number "
  942. "generation");
  943. random_mark_pool_ready();
  944. wpa_sta_disconnect(wpa_auth, sm->addr);
  945. return;
  946. }
  947. if (wpa_parse_kde_ies(key_data, key_data_length, &kde) < 0) {
  948. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_INFO,
  949. "received EAPOL-Key msg 2/4 with "
  950. "invalid Key Data contents");
  951. return;
  952. }
  953. if (kde.rsn_ie) {
  954. eapol_key_ie = kde.rsn_ie;
  955. eapol_key_ie_len = kde.rsn_ie_len;
  956. } else if (kde.osen) {
  957. eapol_key_ie = kde.osen;
  958. eapol_key_ie_len = kde.osen_len;
  959. } else {
  960. eapol_key_ie = kde.wpa_ie;
  961. eapol_key_ie_len = kde.wpa_ie_len;
  962. }
  963. ft = sm->wpa == WPA_VERSION_WPA2 &&
  964. wpa_key_mgmt_ft(sm->wpa_key_mgmt);
  965. if (sm->wpa_ie == NULL ||
  966. wpa_compare_rsn_ie(ft,
  967. sm->wpa_ie, sm->wpa_ie_len,
  968. eapol_key_ie, eapol_key_ie_len)) {
  969. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  970. "WPA IE from (Re)AssocReq did not "
  971. "match with msg 2/4");
  972. if (sm->wpa_ie) {
  973. wpa_hexdump(MSG_DEBUG, "WPA IE in AssocReq",
  974. sm->wpa_ie, sm->wpa_ie_len);
  975. }
  976. wpa_hexdump(MSG_DEBUG, "WPA IE in msg 2/4",
  977. eapol_key_ie, eapol_key_ie_len);
  978. /* MLME-DEAUTHENTICATE.request */
  979. wpa_sta_disconnect(wpa_auth, sm->addr);
  980. return;
  981. }
  982. #ifdef CONFIG_IEEE80211R
  983. if (ft && ft_check_msg_2_of_4(wpa_auth, sm, &kde) < 0) {
  984. wpa_sta_disconnect(wpa_auth, sm->addr);
  985. return;
  986. }
  987. #endif /* CONFIG_IEEE80211R */
  988. #ifdef CONFIG_P2P
  989. if (kde.ip_addr_req && kde.ip_addr_req[0] &&
  990. wpa_auth->ip_pool && WPA_GET_BE32(sm->ip_addr) == 0) {
  991. int idx;
  992. wpa_printf(MSG_DEBUG, "P2P: IP address requested in "
  993. "EAPOL-Key exchange");
  994. idx = bitfield_get_first_zero(wpa_auth->ip_pool);
  995. if (idx >= 0) {
  996. u32 start = WPA_GET_BE32(wpa_auth->conf.
  997. ip_addr_start);
  998. bitfield_set(wpa_auth->ip_pool, idx);
  999. WPA_PUT_BE32(sm->ip_addr, start + idx);
  1000. wpa_printf(MSG_DEBUG, "P2P: Assigned IP "
  1001. "address %u.%u.%u.%u to " MACSTR,
  1002. sm->ip_addr[0], sm->ip_addr[1],
  1003. sm->ip_addr[2], sm->ip_addr[3],
  1004. MAC2STR(sm->addr));
  1005. }
  1006. }
  1007. #endif /* CONFIG_P2P */
  1008. break;
  1009. case PAIRWISE_4:
  1010. if (sm->wpa_ptk_state != WPA_PTK_PTKINITNEGOTIATING ||
  1011. !sm->PTK_valid) {
  1012. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_INFO,
  1013. "received EAPOL-Key msg 4/4 in "
  1014. "invalid state (%d) - dropped",
  1015. sm->wpa_ptk_state);
  1016. return;
  1017. }
  1018. break;
  1019. case GROUP_2:
  1020. if (sm->wpa_ptk_group_state != WPA_PTK_GROUP_REKEYNEGOTIATING
  1021. || !sm->PTK_valid) {
  1022. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_INFO,
  1023. "received EAPOL-Key msg 2/2 in "
  1024. "invalid state (%d) - dropped",
  1025. sm->wpa_ptk_group_state);
  1026. return;
  1027. }
  1028. break;
  1029. #ifdef CONFIG_PEERKEY
  1030. case SMK_M1:
  1031. case SMK_M3:
  1032. case SMK_ERROR:
  1033. if (!wpa_auth->conf.peerkey) {
  1034. wpa_printf(MSG_DEBUG, "RSN: SMK M1/M3/Error, but "
  1035. "PeerKey use disabled - ignoring message");
  1036. return;
  1037. }
  1038. if (!sm->PTK_valid) {
  1039. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  1040. "received EAPOL-Key msg SMK in "
  1041. "invalid state - dropped");
  1042. return;
  1043. }
  1044. break;
  1045. #else /* CONFIG_PEERKEY */
  1046. case SMK_M1:
  1047. case SMK_M3:
  1048. case SMK_ERROR:
  1049. return; /* STSL disabled - ignore SMK messages */
  1050. #endif /* CONFIG_PEERKEY */
  1051. case REQUEST:
  1052. break;
  1053. }
  1054. wpa_auth_vlogger(wpa_auth, sm->addr, LOGGER_DEBUG,
  1055. "received EAPOL-Key frame (%s)", msgtxt);
  1056. if (key_info & WPA_KEY_INFO_ACK) {
  1057. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  1058. "received invalid EAPOL-Key: Key Ack set");
  1059. return;
  1060. }
  1061. if (!(key_info & WPA_KEY_INFO_MIC)) {
  1062. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  1063. "received invalid EAPOL-Key: Key MIC not set");
  1064. return;
  1065. }
  1066. sm->MICVerified = FALSE;
  1067. if (sm->PTK_valid && !sm->update_snonce) {
  1068. if (wpa_verify_key_mic(sm->wpa_key_mgmt, &sm->PTK, data,
  1069. data_len) &&
  1070. (msg != PAIRWISE_4 || !sm->alt_snonce_valid ||
  1071. wpa_try_alt_snonce(sm, data, data_len))) {
  1072. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  1073. "received EAPOL-Key with invalid MIC");
  1074. return;
  1075. }
  1076. sm->MICVerified = TRUE;
  1077. eloop_cancel_timeout(wpa_send_eapol_timeout, wpa_auth, sm);
  1078. sm->pending_1_of_4_timeout = 0;
  1079. }
  1080. if (key_info & WPA_KEY_INFO_REQUEST) {
  1081. if (sm->MICVerified) {
  1082. sm->req_replay_counter_used = 1;
  1083. os_memcpy(sm->req_replay_counter, key->replay_counter,
  1084. WPA_REPLAY_COUNTER_LEN);
  1085. } else {
  1086. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  1087. "received EAPOL-Key request with "
  1088. "invalid MIC");
  1089. return;
  1090. }
  1091. /*
  1092. * TODO: should decrypt key data field if encryption was used;
  1093. * even though MAC address KDE is not normally encrypted,
  1094. * supplicant is allowed to encrypt it.
  1095. */
  1096. if (msg == SMK_ERROR) {
  1097. #ifdef CONFIG_PEERKEY
  1098. wpa_smk_error(wpa_auth, sm, key_data, key_data_length);
  1099. #endif /* CONFIG_PEERKEY */
  1100. return;
  1101. } else if (key_info & WPA_KEY_INFO_ERROR) {
  1102. if (wpa_receive_error_report(
  1103. wpa_auth, sm,
  1104. !(key_info & WPA_KEY_INFO_KEY_TYPE)) > 0)
  1105. return; /* STA entry was removed */
  1106. } else if (key_info & WPA_KEY_INFO_KEY_TYPE) {
  1107. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  1108. "received EAPOL-Key Request for new "
  1109. "4-Way Handshake");
  1110. wpa_request_new_ptk(sm);
  1111. #ifdef CONFIG_PEERKEY
  1112. } else if (msg == SMK_M1) {
  1113. wpa_smk_m1(wpa_auth, sm, key, key_data,
  1114. key_data_length);
  1115. #endif /* CONFIG_PEERKEY */
  1116. } else if (key_data_length > 0 &&
  1117. wpa_parse_kde_ies(key_data, key_data_length,
  1118. &kde) == 0 &&
  1119. kde.mac_addr) {
  1120. } else {
  1121. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  1122. "received EAPOL-Key Request for GTK "
  1123. "rekeying");
  1124. eloop_cancel_timeout(wpa_rekey_gtk, wpa_auth, NULL);
  1125. wpa_rekey_gtk(wpa_auth, NULL);
  1126. }
  1127. } else {
  1128. /* Do not allow the same key replay counter to be reused. */
  1129. wpa_replay_counter_mark_invalid(sm->key_replay,
  1130. key->replay_counter);
  1131. if (msg == PAIRWISE_2) {
  1132. /*
  1133. * Maintain a copy of the pending EAPOL-Key frames in
  1134. * case the EAPOL-Key frame was retransmitted. This is
  1135. * needed to allow EAPOL-Key msg 2/4 reply to another
  1136. * pending msg 1/4 to update the SNonce to work around
  1137. * unexpected supplicant behavior.
  1138. */
  1139. os_memcpy(sm->prev_key_replay, sm->key_replay,
  1140. sizeof(sm->key_replay));
  1141. } else {
  1142. os_memset(sm->prev_key_replay, 0,
  1143. sizeof(sm->prev_key_replay));
  1144. }
  1145. /*
  1146. * Make sure old valid counters are not accepted anymore and
  1147. * do not get copied again.
  1148. */
  1149. wpa_replay_counter_mark_invalid(sm->key_replay, NULL);
  1150. }
  1151. #ifdef CONFIG_PEERKEY
  1152. if (msg == SMK_M3) {
  1153. wpa_smk_m3(wpa_auth, sm, key, key_data, key_data_length);
  1154. return;
  1155. }
  1156. #endif /* CONFIG_PEERKEY */
  1157. os_free(sm->last_rx_eapol_key);
  1158. sm->last_rx_eapol_key = os_malloc(data_len);
  1159. if (sm->last_rx_eapol_key == NULL)
  1160. return;
  1161. os_memcpy(sm->last_rx_eapol_key, data, data_len);
  1162. sm->last_rx_eapol_key_len = data_len;
  1163. sm->rx_eapol_key_secure = !!(key_info & WPA_KEY_INFO_SECURE);
  1164. sm->EAPOLKeyReceived = TRUE;
  1165. sm->EAPOLKeyPairwise = !!(key_info & WPA_KEY_INFO_KEY_TYPE);
  1166. sm->EAPOLKeyRequest = !!(key_info & WPA_KEY_INFO_REQUEST);
  1167. os_memcpy(sm->SNonce, key->key_nonce, WPA_NONCE_LEN);
  1168. wpa_sm_step(sm);
  1169. }
  1170. static int wpa_gmk_to_gtk(const u8 *gmk, const char *label, const u8 *addr,
  1171. const u8 *gnonce, u8 *gtk, size_t gtk_len)
  1172. {
  1173. u8 data[ETH_ALEN + WPA_NONCE_LEN + 8 + 16];
  1174. u8 *pos;
  1175. int ret = 0;
  1176. /* GTK = PRF-X(GMK, "Group key expansion",
  1177. * AA || GNonce || Time || random data)
  1178. * The example described in the IEEE 802.11 standard uses only AA and
  1179. * GNonce as inputs here. Add some more entropy since this derivation
  1180. * is done only at the Authenticator and as such, does not need to be
  1181. * exactly same.
  1182. */
  1183. os_memcpy(data, addr, ETH_ALEN);
  1184. os_memcpy(data + ETH_ALEN, gnonce, WPA_NONCE_LEN);
  1185. pos = data + ETH_ALEN + WPA_NONCE_LEN;
  1186. wpa_get_ntp_timestamp(pos);
  1187. pos += 8;
  1188. if (random_get_bytes(pos, 16) < 0)
  1189. ret = -1;
  1190. #ifdef CONFIG_IEEE80211W
  1191. sha256_prf(gmk, WPA_GMK_LEN, label, data, sizeof(data), gtk, gtk_len);
  1192. #else /* CONFIG_IEEE80211W */
  1193. if (sha1_prf(gmk, WPA_GMK_LEN, label, data, sizeof(data), gtk, gtk_len)
  1194. < 0)
  1195. ret = -1;
  1196. #endif /* CONFIG_IEEE80211W */
  1197. return ret;
  1198. }
  1199. static void wpa_send_eapol_timeout(void *eloop_ctx, void *timeout_ctx)
  1200. {
  1201. struct wpa_authenticator *wpa_auth = eloop_ctx;
  1202. struct wpa_state_machine *sm = timeout_ctx;
  1203. sm->pending_1_of_4_timeout = 0;
  1204. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG, "EAPOL-Key timeout");
  1205. sm->TimeoutEvt = TRUE;
  1206. wpa_sm_step(sm);
  1207. }
  1208. void __wpa_send_eapol(struct wpa_authenticator *wpa_auth,
  1209. struct wpa_state_machine *sm, int key_info,
  1210. const u8 *key_rsc, const u8 *nonce,
  1211. const u8 *kde, size_t kde_len,
  1212. int keyidx, int encr, int force_version)
  1213. {
  1214. struct ieee802_1x_hdr *hdr;
  1215. struct wpa_eapol_key *key;
  1216. struct wpa_eapol_key_192 *key192;
  1217. size_t len, mic_len, keyhdrlen;
  1218. int alg;
  1219. int key_data_len, pad_len = 0;
  1220. u8 *buf, *pos;
  1221. int version, pairwise;
  1222. int i;
  1223. u8 *key_data;
  1224. mic_len = wpa_mic_len(sm->wpa_key_mgmt);
  1225. keyhdrlen = mic_len == 24 ? sizeof(*key192) : sizeof(*key);
  1226. len = sizeof(struct ieee802_1x_hdr) + keyhdrlen;
  1227. if (force_version)
  1228. version = force_version;
  1229. else if (sm->wpa_key_mgmt == WPA_KEY_MGMT_OSEN ||
  1230. wpa_key_mgmt_suite_b(sm->wpa_key_mgmt))
  1231. version = WPA_KEY_INFO_TYPE_AKM_DEFINED;
  1232. else if (wpa_use_aes_cmac(sm))
  1233. version = WPA_KEY_INFO_TYPE_AES_128_CMAC;
  1234. else if (sm->pairwise != WPA_CIPHER_TKIP)
  1235. version = WPA_KEY_INFO_TYPE_HMAC_SHA1_AES;
  1236. else
  1237. version = WPA_KEY_INFO_TYPE_HMAC_MD5_RC4;
  1238. pairwise = !!(key_info & WPA_KEY_INFO_KEY_TYPE);
  1239. wpa_printf(MSG_DEBUG, "WPA: Send EAPOL(version=%d secure=%d mic=%d "
  1240. "ack=%d install=%d pairwise=%d kde_len=%lu keyidx=%d "
  1241. "encr=%d)",
  1242. version,
  1243. (key_info & WPA_KEY_INFO_SECURE) ? 1 : 0,
  1244. (key_info & WPA_KEY_INFO_MIC) ? 1 : 0,
  1245. (key_info & WPA_KEY_INFO_ACK) ? 1 : 0,
  1246. (key_info & WPA_KEY_INFO_INSTALL) ? 1 : 0,
  1247. pairwise, (unsigned long) kde_len, keyidx, encr);
  1248. key_data_len = kde_len;
  1249. if ((version == WPA_KEY_INFO_TYPE_HMAC_SHA1_AES ||
  1250. sm->wpa_key_mgmt == WPA_KEY_MGMT_OSEN ||
  1251. wpa_key_mgmt_suite_b(sm->wpa_key_mgmt) ||
  1252. version == WPA_KEY_INFO_TYPE_AES_128_CMAC) && encr) {
  1253. pad_len = key_data_len % 8;
  1254. if (pad_len)
  1255. pad_len = 8 - pad_len;
  1256. key_data_len += pad_len + 8;
  1257. }
  1258. len += key_data_len;
  1259. hdr = os_zalloc(len);
  1260. if (hdr == NULL)
  1261. return;
  1262. hdr->version = wpa_auth->conf.eapol_version;
  1263. hdr->type = IEEE802_1X_TYPE_EAPOL_KEY;
  1264. hdr->length = host_to_be16(len - sizeof(*hdr));
  1265. key = (struct wpa_eapol_key *) (hdr + 1);
  1266. key192 = (struct wpa_eapol_key_192 *) (hdr + 1);
  1267. key_data = ((u8 *) (hdr + 1)) + keyhdrlen;
  1268. key->type = sm->wpa == WPA_VERSION_WPA2 ?
  1269. EAPOL_KEY_TYPE_RSN : EAPOL_KEY_TYPE_WPA;
  1270. key_info |= version;
  1271. if (encr && sm->wpa == WPA_VERSION_WPA2)
  1272. key_info |= WPA_KEY_INFO_ENCR_KEY_DATA;
  1273. if (sm->wpa != WPA_VERSION_WPA2)
  1274. key_info |= keyidx << WPA_KEY_INFO_KEY_INDEX_SHIFT;
  1275. WPA_PUT_BE16(key->key_info, key_info);
  1276. alg = pairwise ? sm->pairwise : wpa_auth->conf.wpa_group;
  1277. WPA_PUT_BE16(key->key_length, wpa_cipher_key_len(alg));
  1278. if (key_info & WPA_KEY_INFO_SMK_MESSAGE)
  1279. WPA_PUT_BE16(key->key_length, 0);
  1280. /* FIX: STSL: what to use as key_replay_counter? */
  1281. for (i = RSNA_MAX_EAPOL_RETRIES - 1; i > 0; i--) {
  1282. sm->key_replay[i].valid = sm->key_replay[i - 1].valid;
  1283. os_memcpy(sm->key_replay[i].counter,
  1284. sm->key_replay[i - 1].counter,
  1285. WPA_REPLAY_COUNTER_LEN);
  1286. }
  1287. inc_byte_array(sm->key_replay[0].counter, WPA_REPLAY_COUNTER_LEN);
  1288. os_memcpy(key->replay_counter, sm->key_replay[0].counter,
  1289. WPA_REPLAY_COUNTER_LEN);
  1290. wpa_hexdump(MSG_DEBUG, "WPA: Replay Counter",
  1291. key->replay_counter, WPA_REPLAY_COUNTER_LEN);
  1292. sm->key_replay[0].valid = TRUE;
  1293. if (nonce)
  1294. os_memcpy(key->key_nonce, nonce, WPA_NONCE_LEN);
  1295. if (key_rsc)
  1296. os_memcpy(key->key_rsc, key_rsc, WPA_KEY_RSC_LEN);
  1297. if (kde && !encr) {
  1298. os_memcpy(key_data, kde, kde_len);
  1299. if (mic_len == 24)
  1300. WPA_PUT_BE16(key192->key_data_length, kde_len);
  1301. else
  1302. WPA_PUT_BE16(key->key_data_length, kde_len);
  1303. } else if (encr && kde) {
  1304. buf = os_zalloc(key_data_len);
  1305. if (buf == NULL) {
  1306. os_free(hdr);
  1307. return;
  1308. }
  1309. pos = buf;
  1310. os_memcpy(pos, kde, kde_len);
  1311. pos += kde_len;
  1312. if (pad_len)
  1313. *pos++ = 0xdd;
  1314. wpa_hexdump_key(MSG_DEBUG, "Plaintext EAPOL-Key Key Data",
  1315. buf, key_data_len);
  1316. if (version == WPA_KEY_INFO_TYPE_HMAC_SHA1_AES ||
  1317. sm->wpa_key_mgmt == WPA_KEY_MGMT_OSEN ||
  1318. wpa_key_mgmt_suite_b(sm->wpa_key_mgmt) ||
  1319. version == WPA_KEY_INFO_TYPE_AES_128_CMAC) {
  1320. if (aes_wrap(sm->PTK.kek, sm->PTK.kek_len,
  1321. (key_data_len - 8) / 8, buf, key_data)) {
  1322. os_free(hdr);
  1323. os_free(buf);
  1324. return;
  1325. }
  1326. if (mic_len == 24)
  1327. WPA_PUT_BE16(key192->key_data_length,
  1328. key_data_len);
  1329. else
  1330. WPA_PUT_BE16(key->key_data_length,
  1331. key_data_len);
  1332. #ifndef CONFIG_NO_RC4
  1333. } else if (sm->PTK.kek_len == 16) {
  1334. u8 ek[32];
  1335. os_memcpy(key->key_iv,
  1336. sm->group->Counter + WPA_NONCE_LEN - 16, 16);
  1337. inc_byte_array(sm->group->Counter, WPA_NONCE_LEN);
  1338. os_memcpy(ek, key->key_iv, 16);
  1339. os_memcpy(ek + 16, sm->PTK.kek, sm->PTK.kek_len);
  1340. os_memcpy(key_data, buf, key_data_len);
  1341. rc4_skip(ek, 32, 256, key_data, key_data_len);
  1342. if (mic_len == 24)
  1343. WPA_PUT_BE16(key192->key_data_length,
  1344. key_data_len);
  1345. else
  1346. WPA_PUT_BE16(key->key_data_length,
  1347. key_data_len);
  1348. #endif /* CONFIG_NO_RC4 */
  1349. } else {
  1350. os_free(hdr);
  1351. os_free(buf);
  1352. return;
  1353. }
  1354. os_free(buf);
  1355. }
  1356. if (key_info & WPA_KEY_INFO_MIC) {
  1357. u8 *key_mic;
  1358. if (!sm->PTK_valid) {
  1359. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG,
  1360. "PTK not valid when sending EAPOL-Key "
  1361. "frame");
  1362. os_free(hdr);
  1363. return;
  1364. }
  1365. key_mic = key192->key_mic; /* same offset for key and key192 */
  1366. wpa_eapol_key_mic(sm->PTK.kck, sm->PTK.kck_len,
  1367. sm->wpa_key_mgmt, version,
  1368. (u8 *) hdr, len, key_mic);
  1369. #ifdef CONFIG_TESTING_OPTIONS
  1370. if (!pairwise &&
  1371. wpa_auth->conf.corrupt_gtk_rekey_mic_probability > 0.0 &&
  1372. drand48() <
  1373. wpa_auth->conf.corrupt_gtk_rekey_mic_probability) {
  1374. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_INFO,
  1375. "Corrupting group EAPOL-Key Key MIC");
  1376. key_mic[0]++;
  1377. }
  1378. #endif /* CONFIG_TESTING_OPTIONS */
  1379. }
  1380. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_inc_EapolFramesTx,
  1381. 1);
  1382. wpa_auth_send_eapol(wpa_auth, sm->addr, (u8 *) hdr, len,
  1383. sm->pairwise_set);
  1384. os_free(hdr);
  1385. }
  1386. static void wpa_send_eapol(struct wpa_authenticator *wpa_auth,
  1387. struct wpa_state_machine *sm, int key_info,
  1388. const u8 *key_rsc, const u8 *nonce,
  1389. const u8 *kde, size_t kde_len,
  1390. int keyidx, int encr)
  1391. {
  1392. int timeout_ms;
  1393. int pairwise = key_info & WPA_KEY_INFO_KEY_TYPE;
  1394. int ctr;
  1395. if (sm == NULL)
  1396. return;
  1397. __wpa_send_eapol(wpa_auth, sm, key_info, key_rsc, nonce, kde, kde_len,
  1398. keyidx, encr, 0);
  1399. ctr = pairwise ? sm->TimeoutCtr : sm->GTimeoutCtr;
  1400. if (ctr == 1 && wpa_auth->conf.tx_status)
  1401. timeout_ms = pairwise ? eapol_key_timeout_first :
  1402. eapol_key_timeout_first_group;
  1403. else
  1404. timeout_ms = eapol_key_timeout_subseq;
  1405. if (pairwise && ctr == 1 && !(key_info & WPA_KEY_INFO_MIC))
  1406. sm->pending_1_of_4_timeout = 1;
  1407. wpa_printf(MSG_DEBUG, "WPA: Use EAPOL-Key timeout of %u ms (retry "
  1408. "counter %d)", timeout_ms, ctr);
  1409. eloop_register_timeout(timeout_ms / 1000, (timeout_ms % 1000) * 1000,
  1410. wpa_send_eapol_timeout, wpa_auth, sm);
  1411. }
  1412. static int wpa_verify_key_mic(int akmp, struct wpa_ptk *PTK, u8 *data,
  1413. size_t data_len)
  1414. {
  1415. struct ieee802_1x_hdr *hdr;
  1416. struct wpa_eapol_key *key;
  1417. struct wpa_eapol_key_192 *key192;
  1418. u16 key_info;
  1419. int ret = 0;
  1420. u8 mic[WPA_EAPOL_KEY_MIC_MAX_LEN];
  1421. size_t mic_len = wpa_mic_len(akmp);
  1422. if (data_len < sizeof(*hdr) + sizeof(*key))
  1423. return -1;
  1424. hdr = (struct ieee802_1x_hdr *) data;
  1425. key = (struct wpa_eapol_key *) (hdr + 1);
  1426. key192 = (struct wpa_eapol_key_192 *) (hdr + 1);
  1427. key_info = WPA_GET_BE16(key->key_info);
  1428. os_memcpy(mic, key192->key_mic, mic_len);
  1429. os_memset(key192->key_mic, 0, mic_len);
  1430. if (wpa_eapol_key_mic(PTK->kck, PTK->kck_len, akmp,
  1431. key_info & WPA_KEY_INFO_TYPE_MASK,
  1432. data, data_len, key192->key_mic) ||
  1433. os_memcmp_const(mic, key192->key_mic, mic_len) != 0)
  1434. ret = -1;
  1435. os_memcpy(key192->key_mic, mic, mic_len);
  1436. return ret;
  1437. }
  1438. void wpa_remove_ptk(struct wpa_state_machine *sm)
  1439. {
  1440. sm->PTK_valid = FALSE;
  1441. os_memset(&sm->PTK, 0, sizeof(sm->PTK));
  1442. wpa_auth_set_key(sm->wpa_auth, 0, WPA_ALG_NONE, sm->addr, 0, NULL, 0);
  1443. sm->pairwise_set = FALSE;
  1444. eloop_cancel_timeout(wpa_rekey_ptk, sm->wpa_auth, sm);
  1445. }
  1446. int wpa_auth_sm_event(struct wpa_state_machine *sm, wpa_event event)
  1447. {
  1448. int remove_ptk = 1;
  1449. if (sm == NULL)
  1450. return -1;
  1451. wpa_auth_vlogger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1452. "event %d notification", event);
  1453. switch (event) {
  1454. case WPA_AUTH:
  1455. #ifdef CONFIG_MESH
  1456. /* PTKs are derived through AMPE */
  1457. if (wpa_auth_start_ampe(sm->wpa_auth, sm->addr)) {
  1458. /* not mesh */
  1459. break;
  1460. }
  1461. return 0;
  1462. #endif /* CONFIG_MESH */
  1463. case WPA_ASSOC:
  1464. break;
  1465. case WPA_DEAUTH:
  1466. case WPA_DISASSOC:
  1467. sm->DeauthenticationRequest = TRUE;
  1468. break;
  1469. case WPA_REAUTH:
  1470. case WPA_REAUTH_EAPOL:
  1471. if (!sm->started) {
  1472. /*
  1473. * When using WPS, we may end up here if the STA
  1474. * manages to re-associate without the previous STA
  1475. * entry getting removed. Consequently, we need to make
  1476. * sure that the WPA state machines gets initialized
  1477. * properly at this point.
  1478. */
  1479. wpa_printf(MSG_DEBUG, "WPA state machine had not been "
  1480. "started - initialize now");
  1481. sm->started = 1;
  1482. sm->Init = TRUE;
  1483. if (wpa_sm_step(sm) == 1)
  1484. return 1; /* should not really happen */
  1485. sm->Init = FALSE;
  1486. sm->AuthenticationRequest = TRUE;
  1487. break;
  1488. }
  1489. if (sm->GUpdateStationKeys) {
  1490. /*
  1491. * Reauthentication cancels the pending group key
  1492. * update for this STA.
  1493. */
  1494. sm->group->GKeyDoneStations--;
  1495. sm->GUpdateStationKeys = FALSE;
  1496. sm->PtkGroupInit = TRUE;
  1497. }
  1498. sm->ReAuthenticationRequest = TRUE;
  1499. break;
  1500. case WPA_ASSOC_FT:
  1501. #ifdef CONFIG_IEEE80211R
  1502. wpa_printf(MSG_DEBUG, "FT: Retry PTK configuration "
  1503. "after association");
  1504. wpa_ft_install_ptk(sm);
  1505. /* Using FT protocol, not WPA auth state machine */
  1506. sm->ft_completed = 1;
  1507. return 0;
  1508. #else /* CONFIG_IEEE80211R */
  1509. break;
  1510. #endif /* CONFIG_IEEE80211R */
  1511. }
  1512. #ifdef CONFIG_IEEE80211R
  1513. sm->ft_completed = 0;
  1514. #endif /* CONFIG_IEEE80211R */
  1515. #ifdef CONFIG_IEEE80211W
  1516. if (sm->mgmt_frame_prot && event == WPA_AUTH)
  1517. remove_ptk = 0;
  1518. #endif /* CONFIG_IEEE80211W */
  1519. if (remove_ptk) {
  1520. sm->PTK_valid = FALSE;
  1521. os_memset(&sm->PTK, 0, sizeof(sm->PTK));
  1522. if (event != WPA_REAUTH_EAPOL)
  1523. wpa_remove_ptk(sm);
  1524. }
  1525. return wpa_sm_step(sm);
  1526. }
  1527. SM_STATE(WPA_PTK, INITIALIZE)
  1528. {
  1529. SM_ENTRY_MA(WPA_PTK, INITIALIZE, wpa_ptk);
  1530. if (sm->Init) {
  1531. /* Init flag is not cleared here, so avoid busy
  1532. * loop by claiming nothing changed. */
  1533. sm->changed = FALSE;
  1534. }
  1535. sm->keycount = 0;
  1536. if (sm->GUpdateStationKeys)
  1537. sm->group->GKeyDoneStations--;
  1538. sm->GUpdateStationKeys = FALSE;
  1539. if (sm->wpa == WPA_VERSION_WPA)
  1540. sm->PInitAKeys = FALSE;
  1541. if (1 /* Unicast cipher supported AND (ESS OR ((IBSS or WDS) and
  1542. * Local AA > Remote AA)) */) {
  1543. sm->Pair = TRUE;
  1544. }
  1545. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_portEnabled, 0);
  1546. wpa_remove_ptk(sm);
  1547. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_portValid, 0);
  1548. sm->TimeoutCtr = 0;
  1549. if (wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt)) {
  1550. wpa_auth_set_eapol(sm->wpa_auth, sm->addr,
  1551. WPA_EAPOL_authorized, 0);
  1552. }
  1553. }
  1554. SM_STATE(WPA_PTK, DISCONNECT)
  1555. {
  1556. SM_ENTRY_MA(WPA_PTK, DISCONNECT, wpa_ptk);
  1557. sm->Disconnect = FALSE;
  1558. wpa_sta_disconnect(sm->wpa_auth, sm->addr);
  1559. }
  1560. SM_STATE(WPA_PTK, DISCONNECTED)
  1561. {
  1562. SM_ENTRY_MA(WPA_PTK, DISCONNECTED, wpa_ptk);
  1563. sm->DeauthenticationRequest = FALSE;
  1564. }
  1565. SM_STATE(WPA_PTK, AUTHENTICATION)
  1566. {
  1567. SM_ENTRY_MA(WPA_PTK, AUTHENTICATION, wpa_ptk);
  1568. os_memset(&sm->PTK, 0, sizeof(sm->PTK));
  1569. sm->PTK_valid = FALSE;
  1570. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_portControl_Auto,
  1571. 1);
  1572. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_portEnabled, 1);
  1573. sm->AuthenticationRequest = FALSE;
  1574. }
  1575. static void wpa_group_ensure_init(struct wpa_authenticator *wpa_auth,
  1576. struct wpa_group *group)
  1577. {
  1578. if (group->first_sta_seen)
  1579. return;
  1580. /*
  1581. * System has run bit further than at the time hostapd was started
  1582. * potentially very early during boot up. This provides better chances
  1583. * of collecting more randomness on embedded systems. Re-initialize the
  1584. * GMK and Counter here to improve their strength if there was not
  1585. * enough entropy available immediately after system startup.
  1586. */
  1587. wpa_printf(MSG_DEBUG, "WPA: Re-initialize GMK/Counter on first "
  1588. "station");
  1589. if (random_pool_ready() != 1) {
  1590. wpa_printf(MSG_INFO, "WPA: Not enough entropy in random pool "
  1591. "to proceed - reject first 4-way handshake");
  1592. group->reject_4way_hs_for_entropy = TRUE;
  1593. } else {
  1594. group->first_sta_seen = TRUE;
  1595. group->reject_4way_hs_for_entropy = FALSE;
  1596. }
  1597. if (wpa_group_init_gmk_and_counter(wpa_auth, group) < 0 ||
  1598. wpa_gtk_update(wpa_auth, group) < 0 ||
  1599. wpa_group_config_group_keys(wpa_auth, group) < 0) {
  1600. wpa_printf(MSG_INFO, "WPA: GMK/GTK setup failed");
  1601. group->first_sta_seen = FALSE;
  1602. group->reject_4way_hs_for_entropy = TRUE;
  1603. }
  1604. }
  1605. SM_STATE(WPA_PTK, AUTHENTICATION2)
  1606. {
  1607. SM_ENTRY_MA(WPA_PTK, AUTHENTICATION2, wpa_ptk);
  1608. wpa_group_ensure_init(sm->wpa_auth, sm->group);
  1609. sm->ReAuthenticationRequest = FALSE;
  1610. /*
  1611. * Definition of ANonce selection in IEEE Std 802.11i-2004 is somewhat
  1612. * ambiguous. The Authenticator state machine uses a counter that is
  1613. * incremented by one for each 4-way handshake. However, the security
  1614. * analysis of 4-way handshake points out that unpredictable nonces
  1615. * help in preventing precomputation attacks. Instead of the state
  1616. * machine definition, use an unpredictable nonce value here to provide
  1617. * stronger protection against potential precomputation attacks.
  1618. */
  1619. if (random_get_bytes(sm->ANonce, WPA_NONCE_LEN)) {
  1620. wpa_printf(MSG_ERROR, "WPA: Failed to get random data for "
  1621. "ANonce.");
  1622. sm->Disconnect = TRUE;
  1623. return;
  1624. }
  1625. wpa_hexdump(MSG_DEBUG, "WPA: Assign ANonce", sm->ANonce,
  1626. WPA_NONCE_LEN);
  1627. /* IEEE 802.11i does not clear TimeoutCtr here, but this is more
  1628. * logical place than INITIALIZE since AUTHENTICATION2 can be
  1629. * re-entered on ReAuthenticationRequest without going through
  1630. * INITIALIZE. */
  1631. sm->TimeoutCtr = 0;
  1632. }
  1633. SM_STATE(WPA_PTK, INITPMK)
  1634. {
  1635. u8 msk[2 * PMK_LEN];
  1636. size_t len = 2 * PMK_LEN;
  1637. SM_ENTRY_MA(WPA_PTK, INITPMK, wpa_ptk);
  1638. #ifdef CONFIG_IEEE80211R
  1639. sm->xxkey_len = 0;
  1640. #endif /* CONFIG_IEEE80211R */
  1641. if (sm->pmksa) {
  1642. wpa_printf(MSG_DEBUG, "WPA: PMK from PMKSA cache");
  1643. os_memcpy(sm->PMK, sm->pmksa->pmk, PMK_LEN);
  1644. } else if (wpa_auth_get_msk(sm->wpa_auth, sm->addr, msk, &len) == 0) {
  1645. wpa_printf(MSG_DEBUG, "WPA: PMK from EAPOL state machine "
  1646. "(len=%lu)", (unsigned long) len);
  1647. os_memcpy(sm->PMK, msk, PMK_LEN);
  1648. #ifdef CONFIG_IEEE80211R
  1649. if (len >= 2 * PMK_LEN) {
  1650. os_memcpy(sm->xxkey, msk + PMK_LEN, PMK_LEN);
  1651. sm->xxkey_len = PMK_LEN;
  1652. }
  1653. #endif /* CONFIG_IEEE80211R */
  1654. } else {
  1655. wpa_printf(MSG_DEBUG, "WPA: Could not get PMK, get_msk: %p",
  1656. sm->wpa_auth->cb.get_msk);
  1657. sm->Disconnect = TRUE;
  1658. return;
  1659. }
  1660. os_memset(msk, 0, sizeof(msk));
  1661. sm->req_replay_counter_used = 0;
  1662. /* IEEE 802.11i does not set keyRun to FALSE, but not doing this
  1663. * will break reauthentication since EAPOL state machines may not be
  1664. * get into AUTHENTICATING state that clears keyRun before WPA state
  1665. * machine enters AUTHENTICATION2 state and goes immediately to INITPMK
  1666. * state and takes PMK from the previously used AAA Key. This will
  1667. * eventually fail in 4-Way Handshake because Supplicant uses PMK
  1668. * derived from the new AAA Key. Setting keyRun = FALSE here seems to
  1669. * be good workaround for this issue. */
  1670. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_keyRun, 0);
  1671. }
  1672. SM_STATE(WPA_PTK, INITPSK)
  1673. {
  1674. const u8 *psk;
  1675. SM_ENTRY_MA(WPA_PTK, INITPSK, wpa_ptk);
  1676. psk = wpa_auth_get_psk(sm->wpa_auth, sm->addr, sm->p2p_dev_addr, NULL);
  1677. if (psk) {
  1678. os_memcpy(sm->PMK, psk, PMK_LEN);
  1679. #ifdef CONFIG_IEEE80211R
  1680. os_memcpy(sm->xxkey, psk, PMK_LEN);
  1681. sm->xxkey_len = PMK_LEN;
  1682. #endif /* CONFIG_IEEE80211R */
  1683. }
  1684. sm->req_replay_counter_used = 0;
  1685. }
  1686. SM_STATE(WPA_PTK, PTKSTART)
  1687. {
  1688. u8 buf[2 + RSN_SELECTOR_LEN + PMKID_LEN], *pmkid = NULL;
  1689. size_t pmkid_len = 0;
  1690. SM_ENTRY_MA(WPA_PTK, PTKSTART, wpa_ptk);
  1691. sm->PTKRequest = FALSE;
  1692. sm->TimeoutEvt = FALSE;
  1693. sm->alt_snonce_valid = FALSE;
  1694. sm->TimeoutCtr++;
  1695. if (sm->TimeoutCtr > (int) dot11RSNAConfigPairwiseUpdateCount) {
  1696. /* No point in sending the EAPOL-Key - we will disconnect
  1697. * immediately following this. */
  1698. return;
  1699. }
  1700. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1701. "sending 1/4 msg of 4-Way Handshake");
  1702. /*
  1703. * TODO: Could add PMKID even with WPA2-PSK, but only if there is only
  1704. * one possible PSK for this STA.
  1705. */
  1706. if (sm->wpa == WPA_VERSION_WPA2 &&
  1707. wpa_key_mgmt_wpa_ieee8021x(sm->wpa_key_mgmt) &&
  1708. sm->wpa_key_mgmt != WPA_KEY_MGMT_OSEN) {
  1709. pmkid = buf;
  1710. pmkid_len = 2 + RSN_SELECTOR_LEN + PMKID_LEN;
  1711. pmkid[0] = WLAN_EID_VENDOR_SPECIFIC;
  1712. pmkid[1] = RSN_SELECTOR_LEN + PMKID_LEN;
  1713. RSN_SELECTOR_PUT(&pmkid[2], RSN_KEY_DATA_PMKID);
  1714. if (sm->pmksa) {
  1715. os_memcpy(&pmkid[2 + RSN_SELECTOR_LEN],
  1716. sm->pmksa->pmkid, PMKID_LEN);
  1717. } else if (wpa_key_mgmt_suite_b(sm->wpa_key_mgmt)) {
  1718. /* No KCK available to derive PMKID */
  1719. pmkid = NULL;
  1720. } else {
  1721. /*
  1722. * Calculate PMKID since no PMKSA cache entry was
  1723. * available with pre-calculated PMKID.
  1724. */
  1725. rsn_pmkid(sm->PMK, PMK_LEN, sm->wpa_auth->addr,
  1726. sm->addr, &pmkid[2 + RSN_SELECTOR_LEN],
  1727. wpa_key_mgmt_sha256(sm->wpa_key_mgmt));
  1728. }
  1729. }
  1730. wpa_send_eapol(sm->wpa_auth, sm,
  1731. WPA_KEY_INFO_ACK | WPA_KEY_INFO_KEY_TYPE, NULL,
  1732. sm->ANonce, pmkid, pmkid_len, 0, 0);
  1733. }
  1734. static int wpa_derive_ptk(struct wpa_state_machine *sm, const u8 *snonce,
  1735. const u8 *pmk, struct wpa_ptk *ptk)
  1736. {
  1737. #ifdef CONFIG_IEEE80211R
  1738. if (wpa_key_mgmt_ft(sm->wpa_key_mgmt))
  1739. return wpa_auth_derive_ptk_ft(sm, pmk, ptk);
  1740. #endif /* CONFIG_IEEE80211R */
  1741. return wpa_pmk_to_ptk(pmk, PMK_LEN, "Pairwise key expansion",
  1742. sm->wpa_auth->addr, sm->addr, sm->ANonce, snonce,
  1743. ptk, sm->wpa_key_mgmt, sm->pairwise);
  1744. }
  1745. SM_STATE(WPA_PTK, PTKCALCNEGOTIATING)
  1746. {
  1747. struct wpa_ptk PTK;
  1748. int ok = 0, psk_found = 0;
  1749. const u8 *pmk = NULL;
  1750. SM_ENTRY_MA(WPA_PTK, PTKCALCNEGOTIATING, wpa_ptk);
  1751. sm->EAPOLKeyReceived = FALSE;
  1752. sm->update_snonce = FALSE;
  1753. /* WPA with IEEE 802.1X: use the derived PMK from EAP
  1754. * WPA-PSK: iterate through possible PSKs and select the one matching
  1755. * the packet */
  1756. for (;;) {
  1757. if (wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt)) {
  1758. pmk = wpa_auth_get_psk(sm->wpa_auth, sm->addr,
  1759. sm->p2p_dev_addr, pmk);
  1760. if (pmk == NULL)
  1761. break;
  1762. psk_found = 1;
  1763. } else
  1764. pmk = sm->PMK;
  1765. wpa_derive_ptk(sm, sm->SNonce, pmk, &PTK);
  1766. if (wpa_verify_key_mic(sm->wpa_key_mgmt, &PTK,
  1767. sm->last_rx_eapol_key,
  1768. sm->last_rx_eapol_key_len) == 0) {
  1769. ok = 1;
  1770. break;
  1771. }
  1772. if (!wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt))
  1773. break;
  1774. }
  1775. if (!ok) {
  1776. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1777. "invalid MIC in msg 2/4 of 4-Way Handshake");
  1778. if (psk_found)
  1779. wpa_auth_psk_failure_report(sm->wpa_auth, sm->addr);
  1780. return;
  1781. }
  1782. #ifdef CONFIG_IEEE80211R
  1783. if (sm->wpa == WPA_VERSION_WPA2 && wpa_key_mgmt_ft(sm->wpa_key_mgmt)) {
  1784. /*
  1785. * Verify that PMKR1Name from EAPOL-Key message 2/4 matches
  1786. * with the value we derived.
  1787. */
  1788. if (os_memcmp_const(sm->sup_pmk_r1_name, sm->pmk_r1_name,
  1789. WPA_PMK_NAME_LEN) != 0) {
  1790. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1791. "PMKR1Name mismatch in FT 4-way "
  1792. "handshake");
  1793. wpa_hexdump(MSG_DEBUG, "FT: PMKR1Name from "
  1794. "Supplicant",
  1795. sm->sup_pmk_r1_name, WPA_PMK_NAME_LEN);
  1796. wpa_hexdump(MSG_DEBUG, "FT: Derived PMKR1Name",
  1797. sm->pmk_r1_name, WPA_PMK_NAME_LEN);
  1798. return;
  1799. }
  1800. }
  1801. #endif /* CONFIG_IEEE80211R */
  1802. sm->pending_1_of_4_timeout = 0;
  1803. eloop_cancel_timeout(wpa_send_eapol_timeout, sm->wpa_auth, sm);
  1804. if (wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt)) {
  1805. /* PSK may have changed from the previous choice, so update
  1806. * state machine data based on whatever PSK was selected here.
  1807. */
  1808. os_memcpy(sm->PMK, pmk, PMK_LEN);
  1809. }
  1810. sm->MICVerified = TRUE;
  1811. os_memcpy(&sm->PTK, &PTK, sizeof(PTK));
  1812. sm->PTK_valid = TRUE;
  1813. }
  1814. SM_STATE(WPA_PTK, PTKCALCNEGOTIATING2)
  1815. {
  1816. SM_ENTRY_MA(WPA_PTK, PTKCALCNEGOTIATING2, wpa_ptk);
  1817. sm->TimeoutCtr = 0;
  1818. }
  1819. #ifdef CONFIG_IEEE80211W
  1820. static int ieee80211w_kde_len(struct wpa_state_machine *sm)
  1821. {
  1822. if (sm->mgmt_frame_prot) {
  1823. size_t len;
  1824. len = wpa_cipher_key_len(sm->wpa_auth->conf.group_mgmt_cipher);
  1825. return 2 + RSN_SELECTOR_LEN + WPA_IGTK_KDE_PREFIX_LEN + len;
  1826. }
  1827. return 0;
  1828. }
  1829. static u8 * ieee80211w_kde_add(struct wpa_state_machine *sm, u8 *pos)
  1830. {
  1831. struct wpa_igtk_kde igtk;
  1832. struct wpa_group *gsm = sm->group;
  1833. u8 rsc[WPA_KEY_RSC_LEN];
  1834. size_t len = wpa_cipher_key_len(sm->wpa_auth->conf.group_mgmt_cipher);
  1835. if (!sm->mgmt_frame_prot)
  1836. return pos;
  1837. igtk.keyid[0] = gsm->GN_igtk;
  1838. igtk.keyid[1] = 0;
  1839. if (gsm->wpa_group_state != WPA_GROUP_SETKEYSDONE ||
  1840. wpa_auth_get_seqnum(sm->wpa_auth, NULL, gsm->GN_igtk, rsc) < 0)
  1841. os_memset(igtk.pn, 0, sizeof(igtk.pn));
  1842. else
  1843. os_memcpy(igtk.pn, rsc, sizeof(igtk.pn));
  1844. os_memcpy(igtk.igtk, gsm->IGTK[gsm->GN_igtk - 4], len);
  1845. if (sm->wpa_auth->conf.disable_gtk) {
  1846. /*
  1847. * Provide unique random IGTK to each STA to prevent use of
  1848. * IGTK in the BSS.
  1849. */
  1850. if (random_get_bytes(igtk.igtk, len) < 0)
  1851. return pos;
  1852. }
  1853. pos = wpa_add_kde(pos, RSN_KEY_DATA_IGTK,
  1854. (const u8 *) &igtk, WPA_IGTK_KDE_PREFIX_LEN + len,
  1855. NULL, 0);
  1856. return pos;
  1857. }
  1858. #else /* CONFIG_IEEE80211W */
  1859. static int ieee80211w_kde_len(struct wpa_state_machine *sm)
  1860. {
  1861. return 0;
  1862. }
  1863. static u8 * ieee80211w_kde_add(struct wpa_state_machine *sm, u8 *pos)
  1864. {
  1865. return pos;
  1866. }
  1867. #endif /* CONFIG_IEEE80211W */
  1868. SM_STATE(WPA_PTK, PTKINITNEGOTIATING)
  1869. {
  1870. u8 rsc[WPA_KEY_RSC_LEN], *_rsc, *gtk, *kde, *pos, dummy_gtk[32];
  1871. size_t gtk_len, kde_len;
  1872. struct wpa_group *gsm = sm->group;
  1873. u8 *wpa_ie;
  1874. int wpa_ie_len, secure, keyidx, encr = 0;
  1875. SM_ENTRY_MA(WPA_PTK, PTKINITNEGOTIATING, wpa_ptk);
  1876. sm->TimeoutEvt = FALSE;
  1877. sm->TimeoutCtr++;
  1878. if (sm->TimeoutCtr > (int) dot11RSNAConfigPairwiseUpdateCount) {
  1879. /* No point in sending the EAPOL-Key - we will disconnect
  1880. * immediately following this. */
  1881. return;
  1882. }
  1883. /* Send EAPOL(1, 1, 1, Pair, P, RSC, ANonce, MIC(PTK), RSNIE, [MDIE],
  1884. GTK[GN], IGTK, [FTIE], [TIE * 2])
  1885. */
  1886. os_memset(rsc, 0, WPA_KEY_RSC_LEN);
  1887. wpa_auth_get_seqnum(sm->wpa_auth, NULL, gsm->GN, rsc);
  1888. /* If FT is used, wpa_auth->wpa_ie includes both RSNIE and MDIE */
  1889. wpa_ie = sm->wpa_auth->wpa_ie;
  1890. wpa_ie_len = sm->wpa_auth->wpa_ie_len;
  1891. if (sm->wpa == WPA_VERSION_WPA &&
  1892. (sm->wpa_auth->conf.wpa & WPA_PROTO_RSN) &&
  1893. wpa_ie_len > wpa_ie[1] + 2 && wpa_ie[0] == WLAN_EID_RSN) {
  1894. /* WPA-only STA, remove RSN IE and possible MDIE */
  1895. wpa_ie = wpa_ie + wpa_ie[1] + 2;
  1896. if (wpa_ie[0] == WLAN_EID_MOBILITY_DOMAIN)
  1897. wpa_ie = wpa_ie + wpa_ie[1] + 2;
  1898. wpa_ie_len = wpa_ie[1] + 2;
  1899. }
  1900. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1901. "sending 3/4 msg of 4-Way Handshake");
  1902. if (sm->wpa == WPA_VERSION_WPA2) {
  1903. /* WPA2 send GTK in the 4-way handshake */
  1904. secure = 1;
  1905. gtk = gsm->GTK[gsm->GN - 1];
  1906. gtk_len = gsm->GTK_len;
  1907. if (sm->wpa_auth->conf.disable_gtk) {
  1908. /*
  1909. * Provide unique random GTK to each STA to prevent use
  1910. * of GTK in the BSS.
  1911. */
  1912. if (random_get_bytes(dummy_gtk, gtk_len) < 0)
  1913. return;
  1914. gtk = dummy_gtk;
  1915. }
  1916. keyidx = gsm->GN;
  1917. _rsc = rsc;
  1918. encr = 1;
  1919. } else {
  1920. /* WPA does not include GTK in msg 3/4 */
  1921. secure = 0;
  1922. gtk = NULL;
  1923. gtk_len = 0;
  1924. keyidx = 0;
  1925. _rsc = NULL;
  1926. if (sm->rx_eapol_key_secure) {
  1927. /*
  1928. * It looks like Windows 7 supplicant tries to use
  1929. * Secure bit in msg 2/4 after having reported Michael
  1930. * MIC failure and it then rejects the 4-way handshake
  1931. * if msg 3/4 does not set Secure bit. Work around this
  1932. * by setting the Secure bit here even in the case of
  1933. * WPA if the supplicant used it first.
  1934. */
  1935. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  1936. "STA used Secure bit in WPA msg 2/4 - "
  1937. "set Secure for 3/4 as workaround");
  1938. secure = 1;
  1939. }
  1940. }
  1941. kde_len = wpa_ie_len + ieee80211w_kde_len(sm);
  1942. if (gtk)
  1943. kde_len += 2 + RSN_SELECTOR_LEN + 2 + gtk_len;
  1944. #ifdef CONFIG_IEEE80211R
  1945. if (wpa_key_mgmt_ft(sm->wpa_key_mgmt)) {
  1946. kde_len += 2 + PMKID_LEN; /* PMKR1Name into RSN IE */
  1947. kde_len += 300; /* FTIE + 2 * TIE */
  1948. }
  1949. #endif /* CONFIG_IEEE80211R */
  1950. #ifdef CONFIG_P2P
  1951. if (WPA_GET_BE32(sm->ip_addr) > 0)
  1952. kde_len += 2 + RSN_SELECTOR_LEN + 3 * 4;
  1953. #endif /* CONFIG_P2P */
  1954. kde = os_malloc(kde_len);
  1955. if (kde == NULL)
  1956. return;
  1957. pos = kde;
  1958. os_memcpy(pos, wpa_ie, wpa_ie_len);
  1959. pos += wpa_ie_len;
  1960. #ifdef CONFIG_IEEE80211R
  1961. if (wpa_key_mgmt_ft(sm->wpa_key_mgmt)) {
  1962. int res = wpa_insert_pmkid(kde, pos - kde, sm->pmk_r1_name);
  1963. if (res < 0) {
  1964. wpa_printf(MSG_ERROR, "FT: Failed to insert "
  1965. "PMKR1Name into RSN IE in EAPOL-Key data");
  1966. os_free(kde);
  1967. return;
  1968. }
  1969. pos += res;
  1970. }
  1971. #endif /* CONFIG_IEEE80211R */
  1972. if (gtk) {
  1973. u8 hdr[2];
  1974. hdr[0] = keyidx & 0x03;
  1975. hdr[1] = 0;
  1976. pos = wpa_add_kde(pos, RSN_KEY_DATA_GROUPKEY, hdr, 2,
  1977. gtk, gtk_len);
  1978. }
  1979. pos = ieee80211w_kde_add(sm, pos);
  1980. #ifdef CONFIG_IEEE80211R
  1981. if (wpa_key_mgmt_ft(sm->wpa_key_mgmt)) {
  1982. int res;
  1983. struct wpa_auth_config *conf;
  1984. conf = &sm->wpa_auth->conf;
  1985. res = wpa_write_ftie(conf, conf->r0_key_holder,
  1986. conf->r0_key_holder_len,
  1987. NULL, NULL, pos, kde + kde_len - pos,
  1988. NULL, 0);
  1989. if (res < 0) {
  1990. wpa_printf(MSG_ERROR, "FT: Failed to insert FTIE "
  1991. "into EAPOL-Key Key Data");
  1992. os_free(kde);
  1993. return;
  1994. }
  1995. pos += res;
  1996. /* TIE[ReassociationDeadline] (TU) */
  1997. *pos++ = WLAN_EID_TIMEOUT_INTERVAL;
  1998. *pos++ = 5;
  1999. *pos++ = WLAN_TIMEOUT_REASSOC_DEADLINE;
  2000. WPA_PUT_LE32(pos, conf->reassociation_deadline);
  2001. pos += 4;
  2002. /* TIE[KeyLifetime] (seconds) */
  2003. *pos++ = WLAN_EID_TIMEOUT_INTERVAL;
  2004. *pos++ = 5;
  2005. *pos++ = WLAN_TIMEOUT_KEY_LIFETIME;
  2006. WPA_PUT_LE32(pos, conf->r0_key_lifetime * 60);
  2007. pos += 4;
  2008. }
  2009. #endif /* CONFIG_IEEE80211R */
  2010. #ifdef CONFIG_P2P
  2011. if (WPA_GET_BE32(sm->ip_addr) > 0) {
  2012. u8 addr[3 * 4];
  2013. os_memcpy(addr, sm->ip_addr, 4);
  2014. os_memcpy(addr + 4, sm->wpa_auth->conf.ip_addr_mask, 4);
  2015. os_memcpy(addr + 8, sm->wpa_auth->conf.ip_addr_go, 4);
  2016. pos = wpa_add_kde(pos, WFA_KEY_DATA_IP_ADDR_ALLOC,
  2017. addr, sizeof(addr), NULL, 0);
  2018. }
  2019. #endif /* CONFIG_P2P */
  2020. wpa_send_eapol(sm->wpa_auth, sm,
  2021. (secure ? WPA_KEY_INFO_SECURE : 0) | WPA_KEY_INFO_MIC |
  2022. WPA_KEY_INFO_ACK | WPA_KEY_INFO_INSTALL |
  2023. WPA_KEY_INFO_KEY_TYPE,
  2024. _rsc, sm->ANonce, kde, pos - kde, keyidx, encr);
  2025. os_free(kde);
  2026. }
  2027. SM_STATE(WPA_PTK, PTKINITDONE)
  2028. {
  2029. SM_ENTRY_MA(WPA_PTK, PTKINITDONE, wpa_ptk);
  2030. sm->EAPOLKeyReceived = FALSE;
  2031. if (sm->Pair) {
  2032. enum wpa_alg alg = wpa_cipher_to_alg(sm->pairwise);
  2033. int klen = wpa_cipher_key_len(sm->pairwise);
  2034. if (wpa_auth_set_key(sm->wpa_auth, 0, alg, sm->addr, 0,
  2035. sm->PTK.tk, klen)) {
  2036. wpa_sta_disconnect(sm->wpa_auth, sm->addr);
  2037. return;
  2038. }
  2039. /* FIX: MLME-SetProtection.Request(TA, Tx_Rx) */
  2040. sm->pairwise_set = TRUE;
  2041. if (sm->wpa_auth->conf.wpa_ptk_rekey) {
  2042. eloop_cancel_timeout(wpa_rekey_ptk, sm->wpa_auth, sm);
  2043. eloop_register_timeout(sm->wpa_auth->conf.
  2044. wpa_ptk_rekey, 0, wpa_rekey_ptk,
  2045. sm->wpa_auth, sm);
  2046. }
  2047. if (wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt)) {
  2048. wpa_auth_set_eapol(sm->wpa_auth, sm->addr,
  2049. WPA_EAPOL_authorized, 1);
  2050. }
  2051. }
  2052. if (0 /* IBSS == TRUE */) {
  2053. sm->keycount++;
  2054. if (sm->keycount == 2) {
  2055. wpa_auth_set_eapol(sm->wpa_auth, sm->addr,
  2056. WPA_EAPOL_portValid, 1);
  2057. }
  2058. } else {
  2059. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_portValid,
  2060. 1);
  2061. }
  2062. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_keyAvailable, 0);
  2063. wpa_auth_set_eapol(sm->wpa_auth, sm->addr, WPA_EAPOL_keyDone, 1);
  2064. if (sm->wpa == WPA_VERSION_WPA)
  2065. sm->PInitAKeys = TRUE;
  2066. else
  2067. sm->has_GTK = TRUE;
  2068. wpa_auth_vlogger(sm->wpa_auth, sm->addr, LOGGER_INFO,
  2069. "pairwise key handshake completed (%s)",
  2070. sm->wpa == WPA_VERSION_WPA ? "WPA" : "RSN");
  2071. #ifdef CONFIG_IEEE80211R
  2072. wpa_ft_push_pmk_r1(sm->wpa_auth, sm->addr);
  2073. #endif /* CONFIG_IEEE80211R */
  2074. }
  2075. SM_STEP(WPA_PTK)
  2076. {
  2077. struct wpa_authenticator *wpa_auth = sm->wpa_auth;
  2078. if (sm->Init)
  2079. SM_ENTER(WPA_PTK, INITIALIZE);
  2080. else if (sm->Disconnect
  2081. /* || FIX: dot11RSNAConfigSALifetime timeout */) {
  2082. wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG,
  2083. "WPA_PTK: sm->Disconnect");
  2084. SM_ENTER(WPA_PTK, DISCONNECT);
  2085. }
  2086. else if (sm->DeauthenticationRequest)
  2087. SM_ENTER(WPA_PTK, DISCONNECTED);
  2088. else if (sm->AuthenticationRequest)
  2089. SM_ENTER(WPA_PTK, AUTHENTICATION);
  2090. else if (sm->ReAuthenticationRequest)
  2091. SM_ENTER(WPA_PTK, AUTHENTICATION2);
  2092. else if (sm->PTKRequest)
  2093. SM_ENTER(WPA_PTK, PTKSTART);
  2094. else switch (sm->wpa_ptk_state) {
  2095. case WPA_PTK_INITIALIZE:
  2096. break;
  2097. case WPA_PTK_DISCONNECT:
  2098. SM_ENTER(WPA_PTK, DISCONNECTED);
  2099. break;
  2100. case WPA_PTK_DISCONNECTED:
  2101. SM_ENTER(WPA_PTK, INITIALIZE);
  2102. break;
  2103. case WPA_PTK_AUTHENTICATION:
  2104. SM_ENTER(WPA_PTK, AUTHENTICATION2);
  2105. break;
  2106. case WPA_PTK_AUTHENTICATION2:
  2107. if (wpa_key_mgmt_wpa_ieee8021x(sm->wpa_key_mgmt) &&
  2108. wpa_auth_get_eapol(sm->wpa_auth, sm->addr,
  2109. WPA_EAPOL_keyRun) > 0)
  2110. SM_ENTER(WPA_PTK, INITPMK);
  2111. else if (wpa_key_mgmt_wpa_psk(sm->wpa_key_mgmt)
  2112. /* FIX: && 802.1X::keyRun */)
  2113. SM_ENTER(WPA_PTK, INITPSK);
  2114. break;
  2115. case WPA_PTK_INITPMK:
  2116. if (wpa_auth_get_eapol(sm->wpa_auth, sm->addr,
  2117. WPA_EAPOL_keyAvailable) > 0)
  2118. SM_ENTER(WPA_PTK, PTKSTART);
  2119. else {
  2120. wpa_auth->dot11RSNA4WayHandshakeFailures++;
  2121. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_INFO,
  2122. "INITPMK - keyAvailable = false");
  2123. SM_ENTER(WPA_PTK, DISCONNECT);
  2124. }
  2125. break;
  2126. case WPA_PTK_INITPSK:
  2127. if (wpa_auth_get_psk(sm->wpa_auth, sm->addr, sm->p2p_dev_addr,
  2128. NULL))
  2129. SM_ENTER(WPA_PTK, PTKSTART);
  2130. else {
  2131. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_INFO,
  2132. "no PSK configured for the STA");
  2133. wpa_auth->dot11RSNA4WayHandshakeFailures++;
  2134. SM_ENTER(WPA_PTK, DISCONNECT);
  2135. }
  2136. break;
  2137. case WPA_PTK_PTKSTART:
  2138. if (sm->EAPOLKeyReceived && !sm->EAPOLKeyRequest &&
  2139. sm->EAPOLKeyPairwise)
  2140. SM_ENTER(WPA_PTK, PTKCALCNEGOTIATING);
  2141. else if (sm->TimeoutCtr >
  2142. (int) dot11RSNAConfigPairwiseUpdateCount) {
  2143. wpa_auth->dot11RSNA4WayHandshakeFailures++;
  2144. wpa_auth_vlogger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  2145. "PTKSTART: Retry limit %d reached",
  2146. dot11RSNAConfigPairwiseUpdateCount);
  2147. SM_ENTER(WPA_PTK, DISCONNECT);
  2148. } else if (sm->TimeoutEvt)
  2149. SM_ENTER(WPA_PTK, PTKSTART);
  2150. break;
  2151. case WPA_PTK_PTKCALCNEGOTIATING:
  2152. if (sm->MICVerified)
  2153. SM_ENTER(WPA_PTK, PTKCALCNEGOTIATING2);
  2154. else if (sm->EAPOLKeyReceived && !sm->EAPOLKeyRequest &&
  2155. sm->EAPOLKeyPairwise)
  2156. SM_ENTER(WPA_PTK, PTKCALCNEGOTIATING);
  2157. else if (sm->TimeoutEvt)
  2158. SM_ENTER(WPA_PTK, PTKSTART);
  2159. break;
  2160. case WPA_PTK_PTKCALCNEGOTIATING2:
  2161. SM_ENTER(WPA_PTK, PTKINITNEGOTIATING);
  2162. break;
  2163. case WPA_PTK_PTKINITNEGOTIATING:
  2164. if (sm->update_snonce)
  2165. SM_ENTER(WPA_PTK, PTKCALCNEGOTIATING);
  2166. else if (sm->EAPOLKeyReceived && !sm->EAPOLKeyRequest &&
  2167. sm->EAPOLKeyPairwise && sm->MICVerified)
  2168. SM_ENTER(WPA_PTK, PTKINITDONE);
  2169. else if (sm->TimeoutCtr >
  2170. (int) dot11RSNAConfigPairwiseUpdateCount) {
  2171. wpa_auth->dot11RSNA4WayHandshakeFailures++;
  2172. wpa_auth_vlogger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  2173. "PTKINITNEGOTIATING: Retry limit %d "
  2174. "reached",
  2175. dot11RSNAConfigPairwiseUpdateCount);
  2176. SM_ENTER(WPA_PTK, DISCONNECT);
  2177. } else if (sm->TimeoutEvt)
  2178. SM_ENTER(WPA_PTK, PTKINITNEGOTIATING);
  2179. break;
  2180. case WPA_PTK_PTKINITDONE:
  2181. break;
  2182. }
  2183. }
  2184. SM_STATE(WPA_PTK_GROUP, IDLE)
  2185. {
  2186. SM_ENTRY_MA(WPA_PTK_GROUP, IDLE, wpa_ptk_group);
  2187. if (sm->Init) {
  2188. /* Init flag is not cleared here, so avoid busy
  2189. * loop by claiming nothing changed. */
  2190. sm->changed = FALSE;
  2191. }
  2192. sm->GTimeoutCtr = 0;
  2193. }
  2194. SM_STATE(WPA_PTK_GROUP, REKEYNEGOTIATING)
  2195. {
  2196. u8 rsc[WPA_KEY_RSC_LEN];
  2197. struct wpa_group *gsm = sm->group;
  2198. const u8 *kde;
  2199. u8 *kde_buf = NULL, *pos, hdr[2];
  2200. size_t kde_len;
  2201. u8 *gtk, dummy_gtk[32];
  2202. SM_ENTRY_MA(WPA_PTK_GROUP, REKEYNEGOTIATING, wpa_ptk_group);
  2203. sm->GTimeoutCtr++;
  2204. if (sm->GTimeoutCtr > (int) dot11RSNAConfigGroupUpdateCount) {
  2205. /* No point in sending the EAPOL-Key - we will disconnect
  2206. * immediately following this. */
  2207. return;
  2208. }
  2209. if (sm->wpa == WPA_VERSION_WPA)
  2210. sm->PInitAKeys = FALSE;
  2211. sm->TimeoutEvt = FALSE;
  2212. /* Send EAPOL(1, 1, 1, !Pair, G, RSC, GNonce, MIC(PTK), GTK[GN]) */
  2213. os_memset(rsc, 0, WPA_KEY_RSC_LEN);
  2214. if (gsm->wpa_group_state == WPA_GROUP_SETKEYSDONE)
  2215. wpa_auth_get_seqnum(sm->wpa_auth, NULL, gsm->GN, rsc);
  2216. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  2217. "sending 1/2 msg of Group Key Handshake");
  2218. gtk = gsm->GTK[gsm->GN - 1];
  2219. if (sm->wpa_auth->conf.disable_gtk) {
  2220. /*
  2221. * Provide unique random GTK to each STA to prevent use
  2222. * of GTK in the BSS.
  2223. */
  2224. if (random_get_bytes(dummy_gtk, gsm->GTK_len) < 0)
  2225. return;
  2226. gtk = dummy_gtk;
  2227. }
  2228. if (sm->wpa == WPA_VERSION_WPA2) {
  2229. kde_len = 2 + RSN_SELECTOR_LEN + 2 + gsm->GTK_len +
  2230. ieee80211w_kde_len(sm);
  2231. kde_buf = os_malloc(kde_len);
  2232. if (kde_buf == NULL)
  2233. return;
  2234. kde = pos = kde_buf;
  2235. hdr[0] = gsm->GN & 0x03;
  2236. hdr[1] = 0;
  2237. pos = wpa_add_kde(pos, RSN_KEY_DATA_GROUPKEY, hdr, 2,
  2238. gtk, gsm->GTK_len);
  2239. pos = ieee80211w_kde_add(sm, pos);
  2240. kde_len = pos - kde;
  2241. } else {
  2242. kde = gtk;
  2243. kde_len = gsm->GTK_len;
  2244. }
  2245. wpa_send_eapol(sm->wpa_auth, sm,
  2246. WPA_KEY_INFO_SECURE | WPA_KEY_INFO_MIC |
  2247. WPA_KEY_INFO_ACK |
  2248. (!sm->Pair ? WPA_KEY_INFO_INSTALL : 0),
  2249. rsc, gsm->GNonce, kde, kde_len, gsm->GN, 1);
  2250. os_free(kde_buf);
  2251. }
  2252. SM_STATE(WPA_PTK_GROUP, REKEYESTABLISHED)
  2253. {
  2254. SM_ENTRY_MA(WPA_PTK_GROUP, REKEYESTABLISHED, wpa_ptk_group);
  2255. sm->EAPOLKeyReceived = FALSE;
  2256. if (sm->GUpdateStationKeys)
  2257. sm->group->GKeyDoneStations--;
  2258. sm->GUpdateStationKeys = FALSE;
  2259. sm->GTimeoutCtr = 0;
  2260. /* FIX: MLME.SetProtection.Request(TA, Tx_Rx) */
  2261. wpa_auth_vlogger(sm->wpa_auth, sm->addr, LOGGER_INFO,
  2262. "group key handshake completed (%s)",
  2263. sm->wpa == WPA_VERSION_WPA ? "WPA" : "RSN");
  2264. sm->has_GTK = TRUE;
  2265. }
  2266. SM_STATE(WPA_PTK_GROUP, KEYERROR)
  2267. {
  2268. SM_ENTRY_MA(WPA_PTK_GROUP, KEYERROR, wpa_ptk_group);
  2269. if (sm->GUpdateStationKeys)
  2270. sm->group->GKeyDoneStations--;
  2271. sm->GUpdateStationKeys = FALSE;
  2272. sm->Disconnect = TRUE;
  2273. }
  2274. SM_STEP(WPA_PTK_GROUP)
  2275. {
  2276. if (sm->Init || sm->PtkGroupInit) {
  2277. SM_ENTER(WPA_PTK_GROUP, IDLE);
  2278. sm->PtkGroupInit = FALSE;
  2279. } else switch (sm->wpa_ptk_group_state) {
  2280. case WPA_PTK_GROUP_IDLE:
  2281. if (sm->GUpdateStationKeys ||
  2282. (sm->wpa == WPA_VERSION_WPA && sm->PInitAKeys))
  2283. SM_ENTER(WPA_PTK_GROUP, REKEYNEGOTIATING);
  2284. break;
  2285. case WPA_PTK_GROUP_REKEYNEGOTIATING:
  2286. if (sm->EAPOLKeyReceived && !sm->EAPOLKeyRequest &&
  2287. !sm->EAPOLKeyPairwise && sm->MICVerified)
  2288. SM_ENTER(WPA_PTK_GROUP, REKEYESTABLISHED);
  2289. else if (sm->GTimeoutCtr >
  2290. (int) dot11RSNAConfigGroupUpdateCount)
  2291. SM_ENTER(WPA_PTK_GROUP, KEYERROR);
  2292. else if (sm->TimeoutEvt)
  2293. SM_ENTER(WPA_PTK_GROUP, REKEYNEGOTIATING);
  2294. break;
  2295. case WPA_PTK_GROUP_KEYERROR:
  2296. SM_ENTER(WPA_PTK_GROUP, IDLE);
  2297. break;
  2298. case WPA_PTK_GROUP_REKEYESTABLISHED:
  2299. SM_ENTER(WPA_PTK_GROUP, IDLE);
  2300. break;
  2301. }
  2302. }
  2303. static int wpa_gtk_update(struct wpa_authenticator *wpa_auth,
  2304. struct wpa_group *group)
  2305. {
  2306. int ret = 0;
  2307. os_memcpy(group->GNonce, group->Counter, WPA_NONCE_LEN);
  2308. inc_byte_array(group->Counter, WPA_NONCE_LEN);
  2309. if (wpa_gmk_to_gtk(group->GMK, "Group key expansion",
  2310. wpa_auth->addr, group->GNonce,
  2311. group->GTK[group->GN - 1], group->GTK_len) < 0)
  2312. ret = -1;
  2313. wpa_hexdump_key(MSG_DEBUG, "GTK",
  2314. group->GTK[group->GN - 1], group->GTK_len);
  2315. #ifdef CONFIG_IEEE80211W
  2316. if (wpa_auth->conf.ieee80211w != NO_MGMT_FRAME_PROTECTION) {
  2317. size_t len;
  2318. len = wpa_cipher_key_len(wpa_auth->conf.group_mgmt_cipher);
  2319. os_memcpy(group->GNonce, group->Counter, WPA_NONCE_LEN);
  2320. inc_byte_array(group->Counter, WPA_NONCE_LEN);
  2321. if (wpa_gmk_to_gtk(group->GMK, "IGTK key expansion",
  2322. wpa_auth->addr, group->GNonce,
  2323. group->IGTK[group->GN_igtk - 4], len) < 0)
  2324. ret = -1;
  2325. wpa_hexdump_key(MSG_DEBUG, "IGTK",
  2326. group->IGTK[group->GN_igtk - 4], len);
  2327. }
  2328. #endif /* CONFIG_IEEE80211W */
  2329. return ret;
  2330. }
  2331. static void wpa_group_gtk_init(struct wpa_authenticator *wpa_auth,
  2332. struct wpa_group *group)
  2333. {
  2334. wpa_printf(MSG_DEBUG, "WPA: group state machine entering state "
  2335. "GTK_INIT (VLAN-ID %d)", group->vlan_id);
  2336. group->changed = FALSE; /* GInit is not cleared here; avoid loop */
  2337. group->wpa_group_state = WPA_GROUP_GTK_INIT;
  2338. /* GTK[0..N] = 0 */
  2339. os_memset(group->GTK, 0, sizeof(group->GTK));
  2340. group->GN = 1;
  2341. group->GM = 2;
  2342. #ifdef CONFIG_IEEE80211W
  2343. group->GN_igtk = 4;
  2344. group->GM_igtk = 5;
  2345. #endif /* CONFIG_IEEE80211W */
  2346. /* GTK[GN] = CalcGTK() */
  2347. wpa_gtk_update(wpa_auth, group);
  2348. }
  2349. static int wpa_group_update_sta(struct wpa_state_machine *sm, void *ctx)
  2350. {
  2351. if (ctx != NULL && ctx != sm->group)
  2352. return 0;
  2353. if (sm->wpa_ptk_state != WPA_PTK_PTKINITDONE) {
  2354. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  2355. "Not in PTKINITDONE; skip Group Key update");
  2356. sm->GUpdateStationKeys = FALSE;
  2357. return 0;
  2358. }
  2359. if (sm->GUpdateStationKeys) {
  2360. /*
  2361. * This should not really happen, so add a debug log entry.
  2362. * Since we clear the GKeyDoneStations before the loop, the
  2363. * station needs to be counted here anyway.
  2364. */
  2365. wpa_auth_logger(sm->wpa_auth, sm->addr, LOGGER_DEBUG,
  2366. "GUpdateStationKeys was already set when "
  2367. "marking station for GTK rekeying");
  2368. }
  2369. /* Do not rekey GTK/IGTK when STA is in WNM-Sleep Mode */
  2370. if (sm->is_wnmsleep)
  2371. return 0;
  2372. sm->group->GKeyDoneStations++;
  2373. sm->GUpdateStationKeys = TRUE;
  2374. wpa_sm_step(sm);
  2375. return 0;
  2376. }
  2377. #ifdef CONFIG_WNM
  2378. /* update GTK when exiting WNM-Sleep Mode */
  2379. void wpa_wnmsleep_rekey_gtk(struct wpa_state_machine *sm)
  2380. {
  2381. if (sm == NULL || sm->is_wnmsleep)
  2382. return;
  2383. wpa_group_update_sta(sm, NULL);
  2384. }
  2385. void wpa_set_wnmsleep(struct wpa_state_machine *sm, int flag)
  2386. {
  2387. if (sm)
  2388. sm->is_wnmsleep = !!flag;
  2389. }
  2390. int wpa_wnmsleep_gtk_subelem(struct wpa_state_machine *sm, u8 *pos)
  2391. {
  2392. struct wpa_group *gsm = sm->group;
  2393. u8 *start = pos;
  2394. /*
  2395. * GTK subelement:
  2396. * Sub-elem ID[1] | Length[1] | Key Info[2] | Key Length[1] | RSC[8] |
  2397. * Key[5..32]
  2398. */
  2399. *pos++ = WNM_SLEEP_SUBELEM_GTK;
  2400. *pos++ = 11 + gsm->GTK_len;
  2401. /* Key ID in B0-B1 of Key Info */
  2402. WPA_PUT_LE16(pos, gsm->GN & 0x03);
  2403. pos += 2;
  2404. *pos++ = gsm->GTK_len;
  2405. if (wpa_auth_get_seqnum(sm->wpa_auth, NULL, gsm->GN, pos) != 0)
  2406. return 0;
  2407. pos += 8;
  2408. os_memcpy(pos, gsm->GTK[gsm->GN - 1], gsm->GTK_len);
  2409. pos += gsm->GTK_len;
  2410. wpa_printf(MSG_DEBUG, "WNM: GTK Key ID %u in WNM-Sleep Mode exit",
  2411. gsm->GN);
  2412. wpa_hexdump_key(MSG_DEBUG, "WNM: GTK in WNM-Sleep Mode exit",
  2413. gsm->GTK[gsm->GN - 1], gsm->GTK_len);
  2414. return pos - start;
  2415. }
  2416. #ifdef CONFIG_IEEE80211W
  2417. int wpa_wnmsleep_igtk_subelem(struct wpa_state_machine *sm, u8 *pos)
  2418. {
  2419. struct wpa_group *gsm = sm->group;
  2420. u8 *start = pos;
  2421. size_t len = wpa_cipher_key_len(sm->wpa_auth->conf.group_mgmt_cipher);
  2422. /*
  2423. * IGTK subelement:
  2424. * Sub-elem ID[1] | Length[1] | KeyID[2] | PN[6] | Key[16]
  2425. */
  2426. *pos++ = WNM_SLEEP_SUBELEM_IGTK;
  2427. *pos++ = 2 + 6 + len;
  2428. WPA_PUT_LE16(pos, gsm->GN_igtk);
  2429. pos += 2;
  2430. if (wpa_auth_get_seqnum(sm->wpa_auth, NULL, gsm->GN_igtk, pos) != 0)
  2431. return 0;
  2432. pos += 6;
  2433. os_memcpy(pos, gsm->IGTK[gsm->GN_igtk - 4], len);
  2434. pos += len;
  2435. wpa_printf(MSG_DEBUG, "WNM: IGTK Key ID %u in WNM-Sleep Mode exit",
  2436. gsm->GN_igtk);
  2437. wpa_hexdump_key(MSG_DEBUG, "WNM: IGTK in WNM-Sleep Mode exit",
  2438. gsm->IGTK[gsm->GN_igtk - 4], len);
  2439. return pos - start;
  2440. }
  2441. #endif /* CONFIG_IEEE80211W */
  2442. #endif /* CONFIG_WNM */
  2443. static void wpa_group_setkeys(struct wpa_authenticator *wpa_auth,
  2444. struct wpa_group *group)
  2445. {
  2446. int tmp;
  2447. wpa_printf(MSG_DEBUG, "WPA: group state machine entering state "
  2448. "SETKEYS (VLAN-ID %d)", group->vlan_id);
  2449. group->changed = TRUE;
  2450. group->wpa_group_state = WPA_GROUP_SETKEYS;
  2451. group->GTKReKey = FALSE;
  2452. tmp = group->GM;
  2453. group->GM = group->GN;
  2454. group->GN = tmp;
  2455. #ifdef CONFIG_IEEE80211W
  2456. tmp = group->GM_igtk;
  2457. group->GM_igtk = group->GN_igtk;
  2458. group->GN_igtk = tmp;
  2459. #endif /* CONFIG_IEEE80211W */
  2460. /* "GKeyDoneStations = GNoStations" is done in more robust way by
  2461. * counting the STAs that are marked with GUpdateStationKeys instead of
  2462. * including all STAs that could be in not-yet-completed state. */
  2463. wpa_gtk_update(wpa_auth, group);
  2464. if (group->GKeyDoneStations) {
  2465. wpa_printf(MSG_DEBUG, "wpa_group_setkeys: Unexpected "
  2466. "GKeyDoneStations=%d when starting new GTK rekey",
  2467. group->GKeyDoneStations);
  2468. group->GKeyDoneStations = 0;
  2469. }
  2470. wpa_auth_for_each_sta(wpa_auth, wpa_group_update_sta, group);
  2471. wpa_printf(MSG_DEBUG, "wpa_group_setkeys: GKeyDoneStations=%d",
  2472. group->GKeyDoneStations);
  2473. }
  2474. static int wpa_group_config_group_keys(struct wpa_authenticator *wpa_auth,
  2475. struct wpa_group *group)
  2476. {
  2477. int ret = 0;
  2478. if (wpa_auth_set_key(wpa_auth, group->vlan_id,
  2479. wpa_cipher_to_alg(wpa_auth->conf.wpa_group),
  2480. broadcast_ether_addr, group->GN,
  2481. group->GTK[group->GN - 1], group->GTK_len) < 0)
  2482. ret = -1;
  2483. #ifdef CONFIG_IEEE80211W
  2484. if (wpa_auth->conf.ieee80211w != NO_MGMT_FRAME_PROTECTION) {
  2485. enum wpa_alg alg;
  2486. size_t len;
  2487. alg = wpa_cipher_to_alg(wpa_auth->conf.group_mgmt_cipher);
  2488. len = wpa_cipher_key_len(wpa_auth->conf.group_mgmt_cipher);
  2489. if (ret == 0 &&
  2490. wpa_auth_set_key(wpa_auth, group->vlan_id, alg,
  2491. broadcast_ether_addr, group->GN_igtk,
  2492. group->IGTK[group->GN_igtk - 4], len) < 0)
  2493. ret = -1;
  2494. }
  2495. #endif /* CONFIG_IEEE80211W */
  2496. return ret;
  2497. }
  2498. static int wpa_group_disconnect_cb(struct wpa_state_machine *sm, void *ctx)
  2499. {
  2500. if (sm->group == ctx) {
  2501. wpa_printf(MSG_DEBUG, "WPA: Mark STA " MACSTR
  2502. " for discconnection due to fatal failure",
  2503. MAC2STR(sm->addr));
  2504. sm->Disconnect = TRUE;
  2505. }
  2506. return 0;
  2507. }
  2508. static void wpa_group_fatal_failure(struct wpa_authenticator *wpa_auth,
  2509. struct wpa_group *group)
  2510. {
  2511. wpa_printf(MSG_DEBUG, "WPA: group state machine entering state FATAL_FAILURE");
  2512. group->changed = TRUE;
  2513. group->wpa_group_state = WPA_GROUP_FATAL_FAILURE;
  2514. wpa_auth_for_each_sta(wpa_auth, wpa_group_disconnect_cb, group);
  2515. }
  2516. static int wpa_group_setkeysdone(struct wpa_authenticator *wpa_auth,
  2517. struct wpa_group *group)
  2518. {
  2519. wpa_printf(MSG_DEBUG, "WPA: group state machine entering state "
  2520. "SETKEYSDONE (VLAN-ID %d)", group->vlan_id);
  2521. group->changed = TRUE;
  2522. group->wpa_group_state = WPA_GROUP_SETKEYSDONE;
  2523. if (wpa_group_config_group_keys(wpa_auth, group) < 0) {
  2524. wpa_group_fatal_failure(wpa_auth, group);
  2525. return -1;
  2526. }
  2527. return 0;
  2528. }
  2529. static void wpa_group_sm_step(struct wpa_authenticator *wpa_auth,
  2530. struct wpa_group *group)
  2531. {
  2532. if (group->GInit) {
  2533. wpa_group_gtk_init(wpa_auth, group);
  2534. } else if (group->wpa_group_state == WPA_GROUP_FATAL_FAILURE) {
  2535. /* Do not allow group operations */
  2536. } else if (group->wpa_group_state == WPA_GROUP_GTK_INIT &&
  2537. group->GTKAuthenticator) {
  2538. wpa_group_setkeysdone(wpa_auth, group);
  2539. } else if (group->wpa_group_state == WPA_GROUP_SETKEYSDONE &&
  2540. group->GTKReKey) {
  2541. wpa_group_setkeys(wpa_auth, group);
  2542. } else if (group->wpa_group_state == WPA_GROUP_SETKEYS) {
  2543. if (group->GKeyDoneStations == 0)
  2544. wpa_group_setkeysdone(wpa_auth, group);
  2545. else if (group->GTKReKey)
  2546. wpa_group_setkeys(wpa_auth, group);
  2547. }
  2548. }
  2549. static int wpa_sm_step(struct wpa_state_machine *sm)
  2550. {
  2551. if (sm == NULL)
  2552. return 0;
  2553. if (sm->in_step_loop) {
  2554. /* This should not happen, but if it does, make sure we do not
  2555. * end up freeing the state machine too early by exiting the
  2556. * recursive call. */
  2557. wpa_printf(MSG_ERROR, "WPA: wpa_sm_step() called recursively");
  2558. return 0;
  2559. }
  2560. sm->in_step_loop = 1;
  2561. do {
  2562. if (sm->pending_deinit)
  2563. break;
  2564. sm->changed = FALSE;
  2565. sm->wpa_auth->group->changed = FALSE;
  2566. SM_STEP_RUN(WPA_PTK);
  2567. if (sm->pending_deinit)
  2568. break;
  2569. SM_STEP_RUN(WPA_PTK_GROUP);
  2570. if (sm->pending_deinit)
  2571. break;
  2572. wpa_group_sm_step(sm->wpa_auth, sm->group);
  2573. } while (sm->changed || sm->wpa_auth->group->changed);
  2574. sm->in_step_loop = 0;
  2575. if (sm->pending_deinit) {
  2576. wpa_printf(MSG_DEBUG, "WPA: Completing pending STA state "
  2577. "machine deinit for " MACSTR, MAC2STR(sm->addr));
  2578. wpa_free_sta_sm(sm);
  2579. return 1;
  2580. }
  2581. return 0;
  2582. }
  2583. static void wpa_sm_call_step(void *eloop_ctx, void *timeout_ctx)
  2584. {
  2585. struct wpa_state_machine *sm = eloop_ctx;
  2586. wpa_sm_step(sm);
  2587. }
  2588. void wpa_auth_sm_notify(struct wpa_state_machine *sm)
  2589. {
  2590. if (sm == NULL)
  2591. return;
  2592. eloop_register_timeout(0, 0, wpa_sm_call_step, sm, NULL);
  2593. }
  2594. void wpa_gtk_rekey(struct wpa_authenticator *wpa_auth)
  2595. {
  2596. int tmp, i;
  2597. struct wpa_group *group;
  2598. if (wpa_auth == NULL)
  2599. return;
  2600. group = wpa_auth->group;
  2601. for (i = 0; i < 2; i++) {
  2602. tmp = group->GM;
  2603. group->GM = group->GN;
  2604. group->GN = tmp;
  2605. #ifdef CONFIG_IEEE80211W
  2606. tmp = group->GM_igtk;
  2607. group->GM_igtk = group->GN_igtk;
  2608. group->GN_igtk = tmp;
  2609. #endif /* CONFIG_IEEE80211W */
  2610. wpa_gtk_update(wpa_auth, group);
  2611. wpa_group_config_group_keys(wpa_auth, group);
  2612. }
  2613. }
  2614. static const char * wpa_bool_txt(int val)
  2615. {
  2616. return val ? "TRUE" : "FALSE";
  2617. }
  2618. #define RSN_SUITE "%02x-%02x-%02x-%d"
  2619. #define RSN_SUITE_ARG(s) \
  2620. ((s) >> 24) & 0xff, ((s) >> 16) & 0xff, ((s) >> 8) & 0xff, (s) & 0xff
  2621. int wpa_get_mib(struct wpa_authenticator *wpa_auth, char *buf, size_t buflen)
  2622. {
  2623. int len = 0, ret;
  2624. char pmkid_txt[PMKID_LEN * 2 + 1];
  2625. #ifdef CONFIG_RSN_PREAUTH
  2626. const int preauth = 1;
  2627. #else /* CONFIG_RSN_PREAUTH */
  2628. const int preauth = 0;
  2629. #endif /* CONFIG_RSN_PREAUTH */
  2630. if (wpa_auth == NULL)
  2631. return len;
  2632. ret = os_snprintf(buf + len, buflen - len,
  2633. "dot11RSNAOptionImplemented=TRUE\n"
  2634. "dot11RSNAPreauthenticationImplemented=%s\n"
  2635. "dot11RSNAEnabled=%s\n"
  2636. "dot11RSNAPreauthenticationEnabled=%s\n",
  2637. wpa_bool_txt(preauth),
  2638. wpa_bool_txt(wpa_auth->conf.wpa & WPA_PROTO_RSN),
  2639. wpa_bool_txt(wpa_auth->conf.rsn_preauth));
  2640. if (os_snprintf_error(buflen - len, ret))
  2641. return len;
  2642. len += ret;
  2643. wpa_snprintf_hex(pmkid_txt, sizeof(pmkid_txt),
  2644. wpa_auth->dot11RSNAPMKIDUsed, PMKID_LEN);
  2645. ret = os_snprintf(
  2646. buf + len, buflen - len,
  2647. "dot11RSNAConfigVersion=%u\n"
  2648. "dot11RSNAConfigPairwiseKeysSupported=9999\n"
  2649. /* FIX: dot11RSNAConfigGroupCipher */
  2650. /* FIX: dot11RSNAConfigGroupRekeyMethod */
  2651. /* FIX: dot11RSNAConfigGroupRekeyTime */
  2652. /* FIX: dot11RSNAConfigGroupRekeyPackets */
  2653. "dot11RSNAConfigGroupRekeyStrict=%u\n"
  2654. "dot11RSNAConfigGroupUpdateCount=%u\n"
  2655. "dot11RSNAConfigPairwiseUpdateCount=%u\n"
  2656. "dot11RSNAConfigGroupCipherSize=%u\n"
  2657. "dot11RSNAConfigPMKLifetime=%u\n"
  2658. "dot11RSNAConfigPMKReauthThreshold=%u\n"
  2659. "dot11RSNAConfigNumberOfPTKSAReplayCounters=0\n"
  2660. "dot11RSNAConfigSATimeout=%u\n"
  2661. "dot11RSNAAuthenticationSuiteSelected=" RSN_SUITE "\n"
  2662. "dot11RSNAPairwiseCipherSelected=" RSN_SUITE "\n"
  2663. "dot11RSNAGroupCipherSelected=" RSN_SUITE "\n"
  2664. "dot11RSNAPMKIDUsed=%s\n"
  2665. "dot11RSNAAuthenticationSuiteRequested=" RSN_SUITE "\n"
  2666. "dot11RSNAPairwiseCipherRequested=" RSN_SUITE "\n"
  2667. "dot11RSNAGroupCipherRequested=" RSN_SUITE "\n"
  2668. "dot11RSNATKIPCounterMeasuresInvoked=%u\n"
  2669. "dot11RSNA4WayHandshakeFailures=%u\n"
  2670. "dot11RSNAConfigNumberOfGTKSAReplayCounters=0\n",
  2671. RSN_VERSION,
  2672. !!wpa_auth->conf.wpa_strict_rekey,
  2673. dot11RSNAConfigGroupUpdateCount,
  2674. dot11RSNAConfigPairwiseUpdateCount,
  2675. wpa_cipher_key_len(wpa_auth->conf.wpa_group) * 8,
  2676. dot11RSNAConfigPMKLifetime,
  2677. dot11RSNAConfigPMKReauthThreshold,
  2678. dot11RSNAConfigSATimeout,
  2679. RSN_SUITE_ARG(wpa_auth->dot11RSNAAuthenticationSuiteSelected),
  2680. RSN_SUITE_ARG(wpa_auth->dot11RSNAPairwiseCipherSelected),
  2681. RSN_SUITE_ARG(wpa_auth->dot11RSNAGroupCipherSelected),
  2682. pmkid_txt,
  2683. RSN_SUITE_ARG(wpa_auth->dot11RSNAAuthenticationSuiteRequested),
  2684. RSN_SUITE_ARG(wpa_auth->dot11RSNAPairwiseCipherRequested),
  2685. RSN_SUITE_ARG(wpa_auth->dot11RSNAGroupCipherRequested),
  2686. wpa_auth->dot11RSNATKIPCounterMeasuresInvoked,
  2687. wpa_auth->dot11RSNA4WayHandshakeFailures);
  2688. if (os_snprintf_error(buflen - len, ret))
  2689. return len;
  2690. len += ret;
  2691. /* TODO: dot11RSNAConfigPairwiseCiphersTable */
  2692. /* TODO: dot11RSNAConfigAuthenticationSuitesTable */
  2693. /* Private MIB */
  2694. ret = os_snprintf(buf + len, buflen - len, "hostapdWPAGroupState=%d\n",
  2695. wpa_auth->group->wpa_group_state);
  2696. if (os_snprintf_error(buflen - len, ret))
  2697. return len;
  2698. len += ret;
  2699. return len;
  2700. }
  2701. int wpa_get_mib_sta(struct wpa_state_machine *sm, char *buf, size_t buflen)
  2702. {
  2703. int len = 0, ret;
  2704. u32 pairwise = 0;
  2705. if (sm == NULL)
  2706. return 0;
  2707. /* TODO: FF-FF-FF-FF-FF-FF entry for broadcast/multicast stats */
  2708. /* dot11RSNAStatsEntry */
  2709. pairwise = wpa_cipher_to_suite(sm->wpa == WPA_VERSION_WPA2 ?
  2710. WPA_PROTO_RSN : WPA_PROTO_WPA,
  2711. sm->pairwise);
  2712. if (pairwise == 0)
  2713. return 0;
  2714. ret = os_snprintf(
  2715. buf + len, buflen - len,
  2716. /* TODO: dot11RSNAStatsIndex */
  2717. "dot11RSNAStatsSTAAddress=" MACSTR "\n"
  2718. "dot11RSNAStatsVersion=1\n"
  2719. "dot11RSNAStatsSelectedPairwiseCipher=" RSN_SUITE "\n"
  2720. /* TODO: dot11RSNAStatsTKIPICVErrors */
  2721. "dot11RSNAStatsTKIPLocalMICFailures=%u\n"
  2722. "dot11RSNAStatsTKIPRemoteMICFailures=%u\n"
  2723. /* TODO: dot11RSNAStatsCCMPReplays */
  2724. /* TODO: dot11RSNAStatsCCMPDecryptErrors */
  2725. /* TODO: dot11RSNAStatsTKIPReplays */,
  2726. MAC2STR(sm->addr),
  2727. RSN_SUITE_ARG(pairwise),
  2728. sm->dot11RSNAStatsTKIPLocalMICFailures,
  2729. sm->dot11RSNAStatsTKIPRemoteMICFailures);
  2730. if (os_snprintf_error(buflen - len, ret))
  2731. return len;
  2732. len += ret;
  2733. /* Private MIB */
  2734. ret = os_snprintf(buf + len, buflen - len,
  2735. "hostapdWPAPTKState=%d\n"
  2736. "hostapdWPAPTKGroupState=%d\n",
  2737. sm->wpa_ptk_state,
  2738. sm->wpa_ptk_group_state);
  2739. if (os_snprintf_error(buflen - len, ret))
  2740. return len;
  2741. len += ret;
  2742. return len;
  2743. }
  2744. void wpa_auth_countermeasures_start(struct wpa_authenticator *wpa_auth)
  2745. {
  2746. if (wpa_auth)
  2747. wpa_auth->dot11RSNATKIPCounterMeasuresInvoked++;
  2748. }
  2749. int wpa_auth_pairwise_set(struct wpa_state_machine *sm)
  2750. {
  2751. return sm && sm->pairwise_set;
  2752. }
  2753. int wpa_auth_get_pairwise(struct wpa_state_machine *sm)
  2754. {
  2755. return sm->pairwise;
  2756. }
  2757. int wpa_auth_sta_key_mgmt(struct wpa_state_machine *sm)
  2758. {
  2759. if (sm == NULL)
  2760. return -1;
  2761. return sm->wpa_key_mgmt;
  2762. }
  2763. int wpa_auth_sta_wpa_version(struct wpa_state_machine *sm)
  2764. {
  2765. if (sm == NULL)
  2766. return 0;
  2767. return sm->wpa;
  2768. }
  2769. int wpa_auth_sta_clear_pmksa(struct wpa_state_machine *sm,
  2770. struct rsn_pmksa_cache_entry *entry)
  2771. {
  2772. if (sm == NULL || sm->pmksa != entry)
  2773. return -1;
  2774. sm->pmksa = NULL;
  2775. return 0;
  2776. }
  2777. struct rsn_pmksa_cache_entry *
  2778. wpa_auth_sta_get_pmksa(struct wpa_state_machine *sm)
  2779. {
  2780. return sm ? sm->pmksa : NULL;
  2781. }
  2782. void wpa_auth_sta_local_mic_failure_report(struct wpa_state_machine *sm)
  2783. {
  2784. if (sm)
  2785. sm->dot11RSNAStatsTKIPLocalMICFailures++;
  2786. }
  2787. const u8 * wpa_auth_get_wpa_ie(struct wpa_authenticator *wpa_auth, size_t *len)
  2788. {
  2789. if (wpa_auth == NULL)
  2790. return NULL;
  2791. *len = wpa_auth->wpa_ie_len;
  2792. return wpa_auth->wpa_ie;
  2793. }
  2794. int wpa_auth_pmksa_add(struct wpa_state_machine *sm, const u8 *pmk,
  2795. int session_timeout, struct eapol_state_machine *eapol)
  2796. {
  2797. if (sm == NULL || sm->wpa != WPA_VERSION_WPA2 ||
  2798. sm->wpa_auth->conf.disable_pmksa_caching)
  2799. return -1;
  2800. if (pmksa_cache_auth_add(sm->wpa_auth->pmksa, pmk, PMK_LEN,
  2801. sm->PTK.kck, sm->PTK.kck_len,
  2802. sm->wpa_auth->addr, sm->addr, session_timeout,
  2803. eapol, sm->wpa_key_mgmt))
  2804. return 0;
  2805. return -1;
  2806. }
  2807. int wpa_auth_pmksa_add_preauth(struct wpa_authenticator *wpa_auth,
  2808. const u8 *pmk, size_t len, const u8 *sta_addr,
  2809. int session_timeout,
  2810. struct eapol_state_machine *eapol)
  2811. {
  2812. if (wpa_auth == NULL)
  2813. return -1;
  2814. if (pmksa_cache_auth_add(wpa_auth->pmksa, pmk, len,
  2815. NULL, 0,
  2816. wpa_auth->addr,
  2817. sta_addr, session_timeout, eapol,
  2818. WPA_KEY_MGMT_IEEE8021X))
  2819. return 0;
  2820. return -1;
  2821. }
  2822. int wpa_auth_pmksa_add_sae(struct wpa_authenticator *wpa_auth, const u8 *addr,
  2823. const u8 *pmk)
  2824. {
  2825. if (wpa_auth->conf.disable_pmksa_caching)
  2826. return -1;
  2827. if (pmksa_cache_auth_add(wpa_auth->pmksa, pmk, PMK_LEN,
  2828. NULL, 0,
  2829. wpa_auth->addr, addr, 0, NULL,
  2830. WPA_KEY_MGMT_SAE))
  2831. return 0;
  2832. return -1;
  2833. }
  2834. void wpa_auth_pmksa_remove(struct wpa_authenticator *wpa_auth,
  2835. const u8 *sta_addr)
  2836. {
  2837. struct rsn_pmksa_cache_entry *pmksa;
  2838. if (wpa_auth == NULL || wpa_auth->pmksa == NULL)
  2839. return;
  2840. pmksa = pmksa_cache_auth_get(wpa_auth->pmksa, sta_addr, NULL);
  2841. if (pmksa) {
  2842. wpa_printf(MSG_DEBUG, "WPA: Remove PMKSA cache entry for "
  2843. MACSTR " based on request", MAC2STR(sta_addr));
  2844. pmksa_cache_free_entry(wpa_auth->pmksa, pmksa);
  2845. }
  2846. }
  2847. /*
  2848. * Remove and free the group from wpa_authenticator. This is triggered by a
  2849. * callback to make sure nobody is currently iterating the group list while it
  2850. * gets modified.
  2851. */
  2852. static void wpa_group_free(struct wpa_authenticator *wpa_auth,
  2853. struct wpa_group *group)
  2854. {
  2855. struct wpa_group *prev = wpa_auth->group;
  2856. wpa_printf(MSG_DEBUG, "WPA: Remove group state machine for VLAN-ID %d",
  2857. group->vlan_id);
  2858. while (prev) {
  2859. if (prev->next == group) {
  2860. /* This never frees the special first group as needed */
  2861. prev->next = group->next;
  2862. os_free(group);
  2863. break;
  2864. }
  2865. prev = prev->next;
  2866. }
  2867. }
  2868. /* Increase the reference counter for group */
  2869. static void wpa_group_get(struct wpa_authenticator *wpa_auth,
  2870. struct wpa_group *group)
  2871. {
  2872. /* Skip the special first group */
  2873. if (wpa_auth->group == group)
  2874. return;
  2875. group->references++;
  2876. }
  2877. /* Decrease the reference counter and maybe free the group */
  2878. static void wpa_group_put(struct wpa_authenticator *wpa_auth,
  2879. struct wpa_group *group)
  2880. {
  2881. /* Skip the special first group */
  2882. if (wpa_auth->group == group)
  2883. return;
  2884. group->references--;
  2885. if (group->references)
  2886. return;
  2887. wpa_group_free(wpa_auth, group);
  2888. }
  2889. /*
  2890. * Add a group that has its references counter set to zero. Caller needs to
  2891. * call wpa_group_get() on the return value to mark the entry in use.
  2892. */
  2893. static struct wpa_group *
  2894. wpa_auth_add_group(struct wpa_authenticator *wpa_auth, int vlan_id)
  2895. {
  2896. struct wpa_group *group;
  2897. if (wpa_auth == NULL || wpa_auth->group == NULL)
  2898. return NULL;
  2899. wpa_printf(MSG_DEBUG, "WPA: Add group state machine for VLAN-ID %d",
  2900. vlan_id);
  2901. group = wpa_group_init(wpa_auth, vlan_id, 0);
  2902. if (group == NULL)
  2903. return NULL;
  2904. group->next = wpa_auth->group->next;
  2905. wpa_auth->group->next = group;
  2906. return group;
  2907. }
  2908. int wpa_auth_sta_set_vlan(struct wpa_state_machine *sm, int vlan_id)
  2909. {
  2910. struct wpa_group *group;
  2911. if (sm == NULL || sm->wpa_auth == NULL)
  2912. return 0;
  2913. group = sm->wpa_auth->group;
  2914. while (group) {
  2915. if (group->vlan_id == vlan_id)
  2916. break;
  2917. group = group->next;
  2918. }
  2919. if (group == NULL) {
  2920. group = wpa_auth_add_group(sm->wpa_auth, vlan_id);
  2921. if (group == NULL)
  2922. return -1;
  2923. }
  2924. if (sm->group == group)
  2925. return 0;
  2926. if (group->wpa_group_state == WPA_GROUP_FATAL_FAILURE)
  2927. return -1;
  2928. wpa_printf(MSG_DEBUG, "WPA: Moving STA " MACSTR " to use group state "
  2929. "machine for VLAN ID %d", MAC2STR(sm->addr), vlan_id);
  2930. wpa_group_get(sm->wpa_auth, group);
  2931. wpa_group_put(sm->wpa_auth, sm->group);
  2932. sm->group = group;
  2933. return 0;
  2934. }
  2935. void wpa_auth_eapol_key_tx_status(struct wpa_authenticator *wpa_auth,
  2936. struct wpa_state_machine *sm, int ack)
  2937. {
  2938. if (wpa_auth == NULL || sm == NULL)
  2939. return;
  2940. wpa_printf(MSG_DEBUG, "WPA: EAPOL-Key TX status for STA " MACSTR
  2941. " ack=%d", MAC2STR(sm->addr), ack);
  2942. if (sm->pending_1_of_4_timeout && ack) {
  2943. /*
  2944. * Some deployed supplicant implementations update their SNonce
  2945. * for each EAPOL-Key 2/4 message even within the same 4-way
  2946. * handshake and then fail to use the first SNonce when
  2947. * deriving the PTK. This results in unsuccessful 4-way
  2948. * handshake whenever the relatively short initial timeout is
  2949. * reached and EAPOL-Key 1/4 is retransmitted. Try to work
  2950. * around this by increasing the timeout now that we know that
  2951. * the station has received the frame.
  2952. */
  2953. int timeout_ms = eapol_key_timeout_subseq;
  2954. wpa_printf(MSG_DEBUG, "WPA: Increase initial EAPOL-Key 1/4 "
  2955. "timeout by %u ms because of acknowledged frame",
  2956. timeout_ms);
  2957. eloop_cancel_timeout(wpa_send_eapol_timeout, wpa_auth, sm);
  2958. eloop_register_timeout(timeout_ms / 1000,
  2959. (timeout_ms % 1000) * 1000,
  2960. wpa_send_eapol_timeout, wpa_auth, sm);
  2961. }
  2962. }
  2963. int wpa_auth_uses_sae(struct wpa_state_machine *sm)
  2964. {
  2965. if (sm == NULL)
  2966. return 0;
  2967. return wpa_key_mgmt_sae(sm->wpa_key_mgmt);
  2968. }
  2969. int wpa_auth_uses_ft_sae(struct wpa_state_machine *sm)
  2970. {
  2971. if (sm == NULL)
  2972. return 0;
  2973. return sm->wpa_key_mgmt == WPA_KEY_MGMT_FT_SAE;
  2974. }
  2975. #ifdef CONFIG_P2P
  2976. int wpa_auth_get_ip_addr(struct wpa_state_machine *sm, u8 *addr)
  2977. {
  2978. if (sm == NULL || WPA_GET_BE32(sm->ip_addr) == 0)
  2979. return -1;
  2980. os_memcpy(addr, sm->ip_addr, 4);
  2981. return 0;
  2982. }
  2983. #endif /* CONFIG_P2P */
  2984. int wpa_auth_radius_das_disconnect_pmksa(struct wpa_authenticator *wpa_auth,
  2985. struct radius_das_attrs *attr)
  2986. {
  2987. return pmksa_cache_auth_radius_das_disconnect(wpa_auth->pmksa, attr);
  2988. }
  2989. void wpa_auth_reconfig_group_keys(struct wpa_authenticator *wpa_auth)
  2990. {
  2991. struct wpa_group *group;
  2992. if (!wpa_auth)
  2993. return;
  2994. for (group = wpa_auth->group; group; group = group->next)
  2995. wpa_group_config_group_keys(wpa_auth, group);
  2996. }