wpa.c 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969
  1. /*
  2. * WPA Supplicant - WPA state machine and EAPOL-Key processing
  3. * Copyright (c) 2003-2017, Jouni Malinen <j@w1.fi>
  4. * Copyright(c) 2015 Intel Deutschland GmbH
  5. *
  6. * This software may be distributed under the terms of the BSD license.
  7. * See README for more details.
  8. */
  9. #include "includes.h"
  10. #include "common.h"
  11. #include "crypto/aes.h"
  12. #include "crypto/aes_wrap.h"
  13. #include "crypto/crypto.h"
  14. #include "crypto/random.h"
  15. #include "crypto/aes_siv.h"
  16. #include "crypto/sha256.h"
  17. #include "common/ieee802_11_defs.h"
  18. #include "common/ieee802_11_common.h"
  19. #include "eap_common/eap_defs.h"
  20. #include "eapol_supp/eapol_supp_sm.h"
  21. #include "wpa.h"
  22. #include "eloop.h"
  23. #include "preauth.h"
  24. #include "pmksa_cache.h"
  25. #include "wpa_i.h"
  26. #include "wpa_ie.h"
  27. #include "peerkey.h"
  28. static const u8 null_rsc[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
  29. /**
  30. * wpa_eapol_key_send - Send WPA/RSN EAPOL-Key message
  31. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  32. * @ptk: PTK for Key Confirmation/Encryption Key
  33. * @ver: Version field from Key Info
  34. * @dest: Destination address for the frame
  35. * @proto: Ethertype (usually ETH_P_EAPOL)
  36. * @msg: EAPOL-Key message
  37. * @msg_len: Length of message
  38. * @key_mic: Pointer to the buffer to which the EAPOL-Key MIC is written
  39. * Returns: >= 0 on success, < 0 on failure
  40. */
  41. int wpa_eapol_key_send(struct wpa_sm *sm, struct wpa_ptk *ptk,
  42. int ver, const u8 *dest, u16 proto,
  43. u8 *msg, size_t msg_len, u8 *key_mic)
  44. {
  45. int ret = -1;
  46. size_t mic_len = wpa_mic_len(sm->key_mgmt);
  47. wpa_printf(MSG_DEBUG, "WPA: Send EAPOL-Key frame to " MACSTR
  48. " ver=%d mic_len=%d key_mgmt=0x%x",
  49. MAC2STR(dest), ver, (int) mic_len, sm->key_mgmt);
  50. if (is_zero_ether_addr(dest) && is_zero_ether_addr(sm->bssid)) {
  51. /*
  52. * Association event was not yet received; try to fetch
  53. * BSSID from the driver.
  54. */
  55. if (wpa_sm_get_bssid(sm, sm->bssid) < 0) {
  56. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  57. "WPA: Failed to read BSSID for "
  58. "EAPOL-Key destination address");
  59. } else {
  60. dest = sm->bssid;
  61. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  62. "WPA: Use BSSID (" MACSTR
  63. ") as the destination for EAPOL-Key",
  64. MAC2STR(dest));
  65. }
  66. }
  67. if (mic_len) {
  68. if (key_mic && (!ptk || !ptk->kck_len))
  69. goto out;
  70. if (key_mic &&
  71. wpa_eapol_key_mic(ptk->kck, ptk->kck_len, sm->key_mgmt, ver,
  72. msg, msg_len, key_mic)) {
  73. wpa_msg(sm->ctx->msg_ctx, MSG_ERROR,
  74. "WPA: Failed to generate EAPOL-Key version %d key_mgmt 0x%x MIC",
  75. ver, sm->key_mgmt);
  76. goto out;
  77. }
  78. if (ptk)
  79. wpa_hexdump_key(MSG_DEBUG, "WPA: KCK",
  80. ptk->kck, ptk->kck_len);
  81. wpa_hexdump(MSG_DEBUG, "WPA: Derived Key MIC",
  82. key_mic, mic_len);
  83. } else {
  84. #ifdef CONFIG_FILS
  85. /* AEAD cipher - Key MIC field not used */
  86. struct ieee802_1x_hdr *s_hdr, *hdr;
  87. struct wpa_eapol_key *s_key, *key;
  88. u8 *buf, *s_key_data, *key_data;
  89. size_t buf_len = msg_len + AES_BLOCK_SIZE;
  90. size_t key_data_len;
  91. u16 eapol_len;
  92. const u8 *aad[1];
  93. size_t aad_len[1];
  94. if (!ptk || !ptk->kek_len)
  95. goto out;
  96. key_data_len = msg_len - sizeof(struct ieee802_1x_hdr) -
  97. sizeof(struct wpa_eapol_key) - 2;
  98. buf = os_malloc(buf_len);
  99. if (!buf)
  100. goto out;
  101. os_memcpy(buf, msg, msg_len);
  102. hdr = (struct ieee802_1x_hdr *) buf;
  103. key = (struct wpa_eapol_key *) (hdr + 1);
  104. key_data = ((u8 *) (key + 1)) + 2;
  105. /* Update EAPOL header to include AES-SIV overhead */
  106. eapol_len = be_to_host16(hdr->length);
  107. eapol_len += AES_BLOCK_SIZE;
  108. hdr->length = host_to_be16(eapol_len);
  109. /* Update Key Data Length field to include AES-SIV overhead */
  110. WPA_PUT_BE16((u8 *) (key + 1), AES_BLOCK_SIZE + key_data_len);
  111. s_hdr = (struct ieee802_1x_hdr *) msg;
  112. s_key = (struct wpa_eapol_key *) (s_hdr + 1);
  113. s_key_data = ((u8 *) (s_key + 1)) + 2;
  114. wpa_hexdump_key(MSG_DEBUG, "WPA: Plaintext Key Data",
  115. s_key_data, key_data_len);
  116. wpa_hexdump_key(MSG_DEBUG, "WPA: KEK", ptk->kek, ptk->kek_len);
  117. /* AES-SIV AAD from EAPOL protocol version field (inclusive) to
  118. * to Key Data (exclusive). */
  119. aad[0] = buf;
  120. aad_len[0] = key_data - buf;
  121. if (aes_siv_encrypt(ptk->kek, ptk->kek_len,
  122. s_key_data, key_data_len,
  123. 1, aad, aad_len, key_data) < 0) {
  124. os_free(buf);
  125. goto out;
  126. }
  127. wpa_hexdump(MSG_DEBUG, "WPA: Encrypted Key Data from SIV",
  128. key_data, AES_BLOCK_SIZE + key_data_len);
  129. os_free(msg);
  130. msg = buf;
  131. msg_len = buf_len;
  132. #else /* CONFIG_FILS */
  133. goto out;
  134. #endif /* CONFIG_FILS */
  135. }
  136. wpa_hexdump(MSG_MSGDUMP, "WPA: TX EAPOL-Key", msg, msg_len);
  137. ret = wpa_sm_ether_send(sm, dest, proto, msg, msg_len);
  138. eapol_sm_notify_tx_eapol_key(sm->eapol);
  139. out:
  140. os_free(msg);
  141. return ret;
  142. }
  143. /**
  144. * wpa_sm_key_request - Send EAPOL-Key Request
  145. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  146. * @error: Indicate whether this is an Michael MIC error report
  147. * @pairwise: 1 = error report for pairwise packet, 0 = for group packet
  148. *
  149. * Send an EAPOL-Key Request to the current authenticator. This function is
  150. * used to request rekeying and it is usually called when a local Michael MIC
  151. * failure is detected.
  152. */
  153. void wpa_sm_key_request(struct wpa_sm *sm, int error, int pairwise)
  154. {
  155. size_t mic_len, hdrlen, rlen;
  156. struct wpa_eapol_key *reply;
  157. int key_info, ver;
  158. u8 bssid[ETH_ALEN], *rbuf, *key_mic, *mic;
  159. if (sm->key_mgmt == WPA_KEY_MGMT_OSEN ||
  160. wpa_key_mgmt_suite_b(sm->key_mgmt))
  161. ver = WPA_KEY_INFO_TYPE_AKM_DEFINED;
  162. else if (wpa_key_mgmt_ft(sm->key_mgmt) ||
  163. wpa_key_mgmt_sha256(sm->key_mgmt))
  164. ver = WPA_KEY_INFO_TYPE_AES_128_CMAC;
  165. else if (sm->pairwise_cipher != WPA_CIPHER_TKIP)
  166. ver = WPA_KEY_INFO_TYPE_HMAC_SHA1_AES;
  167. else
  168. ver = WPA_KEY_INFO_TYPE_HMAC_MD5_RC4;
  169. if (wpa_sm_get_bssid(sm, bssid) < 0) {
  170. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  171. "Failed to read BSSID for EAPOL-Key request");
  172. return;
  173. }
  174. mic_len = wpa_mic_len(sm->key_mgmt);
  175. hdrlen = sizeof(*reply) + mic_len + 2;
  176. rbuf = wpa_sm_alloc_eapol(sm, IEEE802_1X_TYPE_EAPOL_KEY, NULL,
  177. hdrlen, &rlen, (void *) &reply);
  178. if (rbuf == NULL)
  179. return;
  180. reply->type = (sm->proto == WPA_PROTO_RSN ||
  181. sm->proto == WPA_PROTO_OSEN) ?
  182. EAPOL_KEY_TYPE_RSN : EAPOL_KEY_TYPE_WPA;
  183. key_info = WPA_KEY_INFO_REQUEST | ver;
  184. if (sm->ptk_set)
  185. key_info |= WPA_KEY_INFO_SECURE;
  186. if (sm->ptk_set && mic_len)
  187. key_info |= WPA_KEY_INFO_MIC;
  188. if (error)
  189. key_info |= WPA_KEY_INFO_ERROR;
  190. if (pairwise)
  191. key_info |= WPA_KEY_INFO_KEY_TYPE;
  192. WPA_PUT_BE16(reply->key_info, key_info);
  193. WPA_PUT_BE16(reply->key_length, 0);
  194. os_memcpy(reply->replay_counter, sm->request_counter,
  195. WPA_REPLAY_COUNTER_LEN);
  196. inc_byte_array(sm->request_counter, WPA_REPLAY_COUNTER_LEN);
  197. mic = (u8 *) (reply + 1);
  198. WPA_PUT_BE16(mic + mic_len, 0);
  199. if (!(key_info & WPA_KEY_INFO_MIC))
  200. key_mic = NULL;
  201. else
  202. key_mic = mic;
  203. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  204. "WPA: Sending EAPOL-Key Request (error=%d "
  205. "pairwise=%d ptk_set=%d len=%lu)",
  206. error, pairwise, sm->ptk_set, (unsigned long) rlen);
  207. wpa_eapol_key_send(sm, &sm->ptk, ver, bssid, ETH_P_EAPOL, rbuf, rlen,
  208. key_mic);
  209. }
  210. static void wpa_supplicant_key_mgmt_set_pmk(struct wpa_sm *sm)
  211. {
  212. #ifdef CONFIG_IEEE80211R
  213. if (sm->key_mgmt == WPA_KEY_MGMT_FT_IEEE8021X) {
  214. if (wpa_sm_key_mgmt_set_pmk(sm, sm->xxkey, sm->xxkey_len))
  215. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  216. "RSN: Cannot set low order 256 bits of MSK for key management offload");
  217. } else {
  218. #endif /* CONFIG_IEEE80211R */
  219. if (wpa_sm_key_mgmt_set_pmk(sm, sm->pmk, sm->pmk_len))
  220. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  221. "RSN: Cannot set PMK for key management offload");
  222. #ifdef CONFIG_IEEE80211R
  223. }
  224. #endif /* CONFIG_IEEE80211R */
  225. }
  226. static int wpa_supplicant_get_pmk(struct wpa_sm *sm,
  227. const unsigned char *src_addr,
  228. const u8 *pmkid)
  229. {
  230. int abort_cached = 0;
  231. if (pmkid && !sm->cur_pmksa) {
  232. /* When using drivers that generate RSN IE, wpa_supplicant may
  233. * not have enough time to get the association information
  234. * event before receiving this 1/4 message, so try to find a
  235. * matching PMKSA cache entry here. */
  236. sm->cur_pmksa = pmksa_cache_get(sm->pmksa, src_addr, pmkid,
  237. NULL);
  238. if (sm->cur_pmksa) {
  239. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  240. "RSN: found matching PMKID from PMKSA cache");
  241. } else {
  242. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  243. "RSN: no matching PMKID found");
  244. abort_cached = 1;
  245. }
  246. }
  247. if (pmkid && sm->cur_pmksa &&
  248. os_memcmp_const(pmkid, sm->cur_pmksa->pmkid, PMKID_LEN) == 0) {
  249. wpa_hexdump(MSG_DEBUG, "RSN: matched PMKID", pmkid, PMKID_LEN);
  250. wpa_sm_set_pmk_from_pmksa(sm);
  251. wpa_hexdump_key(MSG_DEBUG, "RSN: PMK from PMKSA cache",
  252. sm->pmk, sm->pmk_len);
  253. eapol_sm_notify_cached(sm->eapol);
  254. #ifdef CONFIG_IEEE80211R
  255. sm->xxkey_len = 0;
  256. #endif /* CONFIG_IEEE80211R */
  257. } else if (wpa_key_mgmt_wpa_ieee8021x(sm->key_mgmt) && sm->eapol) {
  258. int res, pmk_len;
  259. if (wpa_key_mgmt_sha384(sm->key_mgmt))
  260. pmk_len = PMK_LEN_SUITE_B_192;
  261. else
  262. pmk_len = PMK_LEN;
  263. res = eapol_sm_get_key(sm->eapol, sm->pmk, pmk_len);
  264. if (res) {
  265. if (pmk_len == PMK_LEN) {
  266. /*
  267. * EAP-LEAP is an exception from other EAP
  268. * methods: it uses only 16-byte PMK.
  269. */
  270. res = eapol_sm_get_key(sm->eapol, sm->pmk, 16);
  271. pmk_len = 16;
  272. }
  273. } else {
  274. #ifdef CONFIG_IEEE80211R
  275. u8 buf[2 * PMK_LEN];
  276. if (eapol_sm_get_key(sm->eapol, buf, 2 * PMK_LEN) == 0)
  277. {
  278. os_memcpy(sm->xxkey, buf + PMK_LEN, PMK_LEN);
  279. sm->xxkey_len = PMK_LEN;
  280. os_memset(buf, 0, sizeof(buf));
  281. }
  282. #endif /* CONFIG_IEEE80211R */
  283. }
  284. if (res == 0) {
  285. struct rsn_pmksa_cache_entry *sa = NULL;
  286. const u8 *fils_cache_id = NULL;
  287. #ifdef CONFIG_FILS
  288. if (sm->fils_cache_id_set)
  289. fils_cache_id = sm->fils_cache_id;
  290. #endif /* CONFIG_FILS */
  291. wpa_hexdump_key(MSG_DEBUG, "WPA: PMK from EAPOL state "
  292. "machines", sm->pmk, pmk_len);
  293. sm->pmk_len = pmk_len;
  294. wpa_supplicant_key_mgmt_set_pmk(sm);
  295. if (sm->proto == WPA_PROTO_RSN &&
  296. !wpa_key_mgmt_suite_b(sm->key_mgmt) &&
  297. !wpa_key_mgmt_ft(sm->key_mgmt)) {
  298. sa = pmksa_cache_add(sm->pmksa,
  299. sm->pmk, pmk_len, NULL,
  300. NULL, 0,
  301. src_addr, sm->own_addr,
  302. sm->network_ctx,
  303. sm->key_mgmt,
  304. fils_cache_id);
  305. }
  306. if (!sm->cur_pmksa && pmkid &&
  307. pmksa_cache_get(sm->pmksa, src_addr, pmkid, NULL))
  308. {
  309. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  310. "RSN: the new PMK matches with the "
  311. "PMKID");
  312. abort_cached = 0;
  313. } else if (sa && !sm->cur_pmksa && pmkid) {
  314. /*
  315. * It looks like the authentication server
  316. * derived mismatching MSK. This should not
  317. * really happen, but bugs happen.. There is not
  318. * much we can do here without knowing what
  319. * exactly caused the server to misbehave.
  320. */
  321. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  322. "RSN: PMKID mismatch - authentication server may have derived different MSK?!");
  323. return -1;
  324. }
  325. if (!sm->cur_pmksa)
  326. sm->cur_pmksa = sa;
  327. } else {
  328. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  329. "WPA: Failed to get master session key from "
  330. "EAPOL state machines - key handshake "
  331. "aborted");
  332. if (sm->cur_pmksa) {
  333. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  334. "RSN: Cancelled PMKSA caching "
  335. "attempt");
  336. sm->cur_pmksa = NULL;
  337. abort_cached = 1;
  338. } else if (!abort_cached) {
  339. return -1;
  340. }
  341. }
  342. }
  343. if (abort_cached && wpa_key_mgmt_wpa_ieee8021x(sm->key_mgmt) &&
  344. !wpa_key_mgmt_suite_b(sm->key_mgmt) &&
  345. !wpa_key_mgmt_ft(sm->key_mgmt) && sm->key_mgmt != WPA_KEY_MGMT_OSEN)
  346. {
  347. /* Send EAPOL-Start to trigger full EAP authentication. */
  348. u8 *buf;
  349. size_t buflen;
  350. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  351. "RSN: no PMKSA entry found - trigger "
  352. "full EAP authentication");
  353. buf = wpa_sm_alloc_eapol(sm, IEEE802_1X_TYPE_EAPOL_START,
  354. NULL, 0, &buflen, NULL);
  355. if (buf) {
  356. wpa_sm_ether_send(sm, sm->bssid, ETH_P_EAPOL,
  357. buf, buflen);
  358. os_free(buf);
  359. return -2;
  360. }
  361. return -1;
  362. }
  363. return 0;
  364. }
  365. /**
  366. * wpa_supplicant_send_2_of_4 - Send message 2 of WPA/RSN 4-Way Handshake
  367. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  368. * @dst: Destination address for the frame
  369. * @key: Pointer to the EAPOL-Key frame header
  370. * @ver: Version bits from EAPOL-Key Key Info
  371. * @nonce: Nonce value for the EAPOL-Key frame
  372. * @wpa_ie: WPA/RSN IE
  373. * @wpa_ie_len: Length of the WPA/RSN IE
  374. * @ptk: PTK to use for keyed hash and encryption
  375. * Returns: >= 0 on success, < 0 on failure
  376. */
  377. int wpa_supplicant_send_2_of_4(struct wpa_sm *sm, const unsigned char *dst,
  378. const struct wpa_eapol_key *key,
  379. int ver, const u8 *nonce,
  380. const u8 *wpa_ie, size_t wpa_ie_len,
  381. struct wpa_ptk *ptk)
  382. {
  383. size_t mic_len, hdrlen, rlen;
  384. struct wpa_eapol_key *reply;
  385. u8 *rbuf, *key_mic;
  386. u8 *rsn_ie_buf = NULL;
  387. u16 key_info;
  388. if (wpa_ie == NULL) {
  389. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING, "WPA: No wpa_ie set - "
  390. "cannot generate msg 2/4");
  391. return -1;
  392. }
  393. #ifdef CONFIG_IEEE80211R
  394. if (wpa_key_mgmt_ft(sm->key_mgmt)) {
  395. int res;
  396. /*
  397. * Add PMKR1Name into RSN IE (PMKID-List) and add MDIE and
  398. * FTIE from (Re)Association Response.
  399. */
  400. rsn_ie_buf = os_malloc(wpa_ie_len + 2 + 2 + PMKID_LEN +
  401. sm->assoc_resp_ies_len);
  402. if (rsn_ie_buf == NULL)
  403. return -1;
  404. os_memcpy(rsn_ie_buf, wpa_ie, wpa_ie_len);
  405. res = wpa_insert_pmkid(rsn_ie_buf, &wpa_ie_len,
  406. sm->pmk_r1_name);
  407. if (res < 0) {
  408. os_free(rsn_ie_buf);
  409. return -1;
  410. }
  411. if (sm->assoc_resp_ies) {
  412. os_memcpy(rsn_ie_buf + wpa_ie_len, sm->assoc_resp_ies,
  413. sm->assoc_resp_ies_len);
  414. wpa_ie_len += sm->assoc_resp_ies_len;
  415. }
  416. wpa_ie = rsn_ie_buf;
  417. }
  418. #endif /* CONFIG_IEEE80211R */
  419. wpa_hexdump(MSG_DEBUG, "WPA: WPA IE for msg 2/4", wpa_ie, wpa_ie_len);
  420. mic_len = wpa_mic_len(sm->key_mgmt);
  421. hdrlen = sizeof(*reply) + mic_len + 2;
  422. rbuf = wpa_sm_alloc_eapol(sm, IEEE802_1X_TYPE_EAPOL_KEY,
  423. NULL, hdrlen + wpa_ie_len,
  424. &rlen, (void *) &reply);
  425. if (rbuf == NULL) {
  426. os_free(rsn_ie_buf);
  427. return -1;
  428. }
  429. reply->type = (sm->proto == WPA_PROTO_RSN ||
  430. sm->proto == WPA_PROTO_OSEN) ?
  431. EAPOL_KEY_TYPE_RSN : EAPOL_KEY_TYPE_WPA;
  432. key_info = ver | WPA_KEY_INFO_KEY_TYPE;
  433. if (mic_len)
  434. key_info |= WPA_KEY_INFO_MIC;
  435. else
  436. key_info |= WPA_KEY_INFO_ENCR_KEY_DATA;
  437. WPA_PUT_BE16(reply->key_info, key_info);
  438. if (sm->proto == WPA_PROTO_RSN || sm->proto == WPA_PROTO_OSEN)
  439. WPA_PUT_BE16(reply->key_length, 0);
  440. else
  441. os_memcpy(reply->key_length, key->key_length, 2);
  442. os_memcpy(reply->replay_counter, key->replay_counter,
  443. WPA_REPLAY_COUNTER_LEN);
  444. wpa_hexdump(MSG_DEBUG, "WPA: Replay Counter", reply->replay_counter,
  445. WPA_REPLAY_COUNTER_LEN);
  446. key_mic = (u8 *) (reply + 1);
  447. WPA_PUT_BE16(key_mic + mic_len, wpa_ie_len); /* Key Data Length */
  448. os_memcpy(key_mic + mic_len + 2, wpa_ie, wpa_ie_len); /* Key Data */
  449. os_free(rsn_ie_buf);
  450. os_memcpy(reply->key_nonce, nonce, WPA_NONCE_LEN);
  451. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "WPA: Sending EAPOL-Key 2/4");
  452. return wpa_eapol_key_send(sm, ptk, ver, dst, ETH_P_EAPOL, rbuf, rlen,
  453. key_mic);
  454. }
  455. static int wpa_derive_ptk(struct wpa_sm *sm, const unsigned char *src_addr,
  456. const struct wpa_eapol_key *key, struct wpa_ptk *ptk)
  457. {
  458. #ifdef CONFIG_IEEE80211R
  459. if (wpa_key_mgmt_ft(sm->key_mgmt))
  460. return wpa_derive_ptk_ft(sm, src_addr, key, ptk);
  461. #endif /* CONFIG_IEEE80211R */
  462. return wpa_pmk_to_ptk(sm->pmk, sm->pmk_len, "Pairwise key expansion",
  463. sm->own_addr, sm->bssid, sm->snonce,
  464. key->key_nonce, ptk, sm->key_mgmt,
  465. sm->pairwise_cipher);
  466. }
  467. static void wpa_supplicant_process_1_of_4(struct wpa_sm *sm,
  468. const unsigned char *src_addr,
  469. const struct wpa_eapol_key *key,
  470. u16 ver, const u8 *key_data,
  471. size_t key_data_len)
  472. {
  473. struct wpa_eapol_ie_parse ie;
  474. struct wpa_ptk *ptk;
  475. int res;
  476. u8 *kde, *kde_buf = NULL;
  477. size_t kde_len;
  478. if (wpa_sm_get_network_ctx(sm) == NULL) {
  479. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING, "WPA: No SSID info "
  480. "found (msg 1 of 4)");
  481. return;
  482. }
  483. wpa_sm_set_state(sm, WPA_4WAY_HANDSHAKE);
  484. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "WPA: RX message 1 of 4-Way "
  485. "Handshake from " MACSTR " (ver=%d)", MAC2STR(src_addr), ver);
  486. os_memset(&ie, 0, sizeof(ie));
  487. if (sm->proto == WPA_PROTO_RSN || sm->proto == WPA_PROTO_OSEN) {
  488. /* RSN: msg 1/4 should contain PMKID for the selected PMK */
  489. wpa_hexdump(MSG_DEBUG, "RSN: msg 1/4 key data",
  490. key_data, key_data_len);
  491. if (wpa_supplicant_parse_ies(key_data, key_data_len, &ie) < 0)
  492. goto failed;
  493. if (ie.pmkid) {
  494. wpa_hexdump(MSG_DEBUG, "RSN: PMKID from "
  495. "Authenticator", ie.pmkid, PMKID_LEN);
  496. }
  497. }
  498. res = wpa_supplicant_get_pmk(sm, src_addr, ie.pmkid);
  499. if (res == -2) {
  500. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "RSN: Do not reply to "
  501. "msg 1/4 - requesting full EAP authentication");
  502. return;
  503. }
  504. if (res)
  505. goto failed;
  506. if (sm->renew_snonce) {
  507. if (random_get_bytes(sm->snonce, WPA_NONCE_LEN)) {
  508. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  509. "WPA: Failed to get random data for SNonce");
  510. goto failed;
  511. }
  512. sm->renew_snonce = 0;
  513. wpa_hexdump(MSG_DEBUG, "WPA: Renewed SNonce",
  514. sm->snonce, WPA_NONCE_LEN);
  515. }
  516. /* Calculate PTK which will be stored as a temporary PTK until it has
  517. * been verified when processing message 3/4. */
  518. ptk = &sm->tptk;
  519. wpa_derive_ptk(sm, src_addr, key, ptk);
  520. if (sm->pairwise_cipher == WPA_CIPHER_TKIP) {
  521. u8 buf[8];
  522. /* Supplicant: swap tx/rx Mic keys */
  523. os_memcpy(buf, &ptk->tk[16], 8);
  524. os_memcpy(&ptk->tk[16], &ptk->tk[24], 8);
  525. os_memcpy(&ptk->tk[24], buf, 8);
  526. os_memset(buf, 0, sizeof(buf));
  527. }
  528. sm->tptk_set = 1;
  529. sm->tk_to_set = 1;
  530. kde = sm->assoc_wpa_ie;
  531. kde_len = sm->assoc_wpa_ie_len;
  532. #ifdef CONFIG_P2P
  533. if (sm->p2p) {
  534. kde_buf = os_malloc(kde_len + 2 + RSN_SELECTOR_LEN + 1);
  535. if (kde_buf) {
  536. u8 *pos;
  537. wpa_printf(MSG_DEBUG, "P2P: Add IP Address Request KDE "
  538. "into EAPOL-Key 2/4");
  539. os_memcpy(kde_buf, kde, kde_len);
  540. kde = kde_buf;
  541. pos = kde + kde_len;
  542. *pos++ = WLAN_EID_VENDOR_SPECIFIC;
  543. *pos++ = RSN_SELECTOR_LEN + 1;
  544. RSN_SELECTOR_PUT(pos, WFA_KEY_DATA_IP_ADDR_REQ);
  545. pos += RSN_SELECTOR_LEN;
  546. *pos++ = 0x01;
  547. kde_len = pos - kde;
  548. }
  549. }
  550. #endif /* CONFIG_P2P */
  551. if (wpa_supplicant_send_2_of_4(sm, sm->bssid, key, ver, sm->snonce,
  552. kde, kde_len, ptk) < 0)
  553. goto failed;
  554. os_free(kde_buf);
  555. os_memcpy(sm->anonce, key->key_nonce, WPA_NONCE_LEN);
  556. return;
  557. failed:
  558. os_free(kde_buf);
  559. wpa_sm_deauthenticate(sm, WLAN_REASON_UNSPECIFIED);
  560. }
  561. static void wpa_sm_start_preauth(void *eloop_ctx, void *timeout_ctx)
  562. {
  563. struct wpa_sm *sm = eloop_ctx;
  564. rsn_preauth_candidate_process(sm);
  565. }
  566. static void wpa_supplicant_key_neg_complete(struct wpa_sm *sm,
  567. const u8 *addr, int secure)
  568. {
  569. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  570. "WPA: Key negotiation completed with "
  571. MACSTR " [PTK=%s GTK=%s]", MAC2STR(addr),
  572. wpa_cipher_txt(sm->pairwise_cipher),
  573. wpa_cipher_txt(sm->group_cipher));
  574. wpa_sm_cancel_auth_timeout(sm);
  575. wpa_sm_set_state(sm, WPA_COMPLETED);
  576. if (secure) {
  577. wpa_sm_mlme_setprotection(
  578. sm, addr, MLME_SETPROTECTION_PROTECT_TYPE_RX_TX,
  579. MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
  580. eapol_sm_notify_portValid(sm->eapol, TRUE);
  581. if (wpa_key_mgmt_wpa_psk(sm->key_mgmt) ||
  582. sm->key_mgmt == WPA_KEY_MGMT_OWE)
  583. eapol_sm_notify_eap_success(sm->eapol, TRUE);
  584. /*
  585. * Start preauthentication after a short wait to avoid a
  586. * possible race condition between the data receive and key
  587. * configuration after the 4-Way Handshake. This increases the
  588. * likelihood of the first preauth EAPOL-Start frame getting to
  589. * the target AP.
  590. */
  591. eloop_register_timeout(1, 0, wpa_sm_start_preauth, sm, NULL);
  592. }
  593. if (sm->cur_pmksa && sm->cur_pmksa->opportunistic) {
  594. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  595. "RSN: Authenticator accepted "
  596. "opportunistic PMKSA entry - marking it valid");
  597. sm->cur_pmksa->opportunistic = 0;
  598. }
  599. #ifdef CONFIG_IEEE80211R
  600. if (wpa_key_mgmt_ft(sm->key_mgmt)) {
  601. /* Prepare for the next transition */
  602. wpa_ft_prepare_auth_request(sm, NULL);
  603. }
  604. #endif /* CONFIG_IEEE80211R */
  605. }
  606. static void wpa_sm_rekey_ptk(void *eloop_ctx, void *timeout_ctx)
  607. {
  608. struct wpa_sm *sm = eloop_ctx;
  609. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "WPA: Request PTK rekeying");
  610. wpa_sm_key_request(sm, 0, 1);
  611. }
  612. static int wpa_supplicant_install_ptk(struct wpa_sm *sm,
  613. const struct wpa_eapol_key *key)
  614. {
  615. int keylen, rsclen;
  616. enum wpa_alg alg;
  617. const u8 *key_rsc;
  618. if (!sm->tk_to_set) {
  619. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  620. "WPA: Do not re-install same PTK to the driver");
  621. return 0;
  622. }
  623. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  624. "WPA: Installing PTK to the driver");
  625. if (sm->pairwise_cipher == WPA_CIPHER_NONE) {
  626. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "WPA: Pairwise Cipher "
  627. "Suite: NONE - do not use pairwise keys");
  628. return 0;
  629. }
  630. if (!wpa_cipher_valid_pairwise(sm->pairwise_cipher)) {
  631. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  632. "WPA: Unsupported pairwise cipher %d",
  633. sm->pairwise_cipher);
  634. return -1;
  635. }
  636. alg = wpa_cipher_to_alg(sm->pairwise_cipher);
  637. keylen = wpa_cipher_key_len(sm->pairwise_cipher);
  638. rsclen = wpa_cipher_rsc_len(sm->pairwise_cipher);
  639. if (sm->proto == WPA_PROTO_RSN || sm->proto == WPA_PROTO_OSEN) {
  640. key_rsc = null_rsc;
  641. } else {
  642. key_rsc = key->key_rsc;
  643. wpa_hexdump(MSG_DEBUG, "WPA: RSC", key_rsc, rsclen);
  644. }
  645. if (wpa_sm_set_key(sm, alg, sm->bssid, 0, 1, key_rsc, rsclen,
  646. sm->ptk.tk, keylen) < 0) {
  647. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  648. "WPA: Failed to set PTK to the "
  649. "driver (alg=%d keylen=%d bssid=" MACSTR ")",
  650. alg, keylen, MAC2STR(sm->bssid));
  651. return -1;
  652. }
  653. /* TK is not needed anymore in supplicant */
  654. os_memset(sm->ptk.tk, 0, WPA_TK_MAX_LEN);
  655. sm->tk_to_set = 0;
  656. if (sm->wpa_ptk_rekey) {
  657. eloop_cancel_timeout(wpa_sm_rekey_ptk, sm, NULL);
  658. eloop_register_timeout(sm->wpa_ptk_rekey, 0, wpa_sm_rekey_ptk,
  659. sm, NULL);
  660. }
  661. return 0;
  662. }
  663. static int wpa_supplicant_check_group_cipher(struct wpa_sm *sm,
  664. int group_cipher,
  665. int keylen, int maxkeylen,
  666. int *key_rsc_len,
  667. enum wpa_alg *alg)
  668. {
  669. int klen;
  670. *alg = wpa_cipher_to_alg(group_cipher);
  671. if (*alg == WPA_ALG_NONE) {
  672. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  673. "WPA: Unsupported Group Cipher %d",
  674. group_cipher);
  675. return -1;
  676. }
  677. *key_rsc_len = wpa_cipher_rsc_len(group_cipher);
  678. klen = wpa_cipher_key_len(group_cipher);
  679. if (keylen != klen || maxkeylen < klen) {
  680. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  681. "WPA: Unsupported %s Group Cipher key length %d (%d)",
  682. wpa_cipher_txt(group_cipher), keylen, maxkeylen);
  683. return -1;
  684. }
  685. return 0;
  686. }
  687. struct wpa_gtk_data {
  688. enum wpa_alg alg;
  689. int tx, key_rsc_len, keyidx;
  690. u8 gtk[32];
  691. int gtk_len;
  692. };
  693. static int wpa_supplicant_install_gtk(struct wpa_sm *sm,
  694. const struct wpa_gtk_data *gd,
  695. const u8 *key_rsc)
  696. {
  697. const u8 *_gtk = gd->gtk;
  698. u8 gtk_buf[32];
  699. wpa_hexdump_key(MSG_DEBUG, "WPA: Group Key", gd->gtk, gd->gtk_len);
  700. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  701. "WPA: Installing GTK to the driver (keyidx=%d tx=%d len=%d)",
  702. gd->keyidx, gd->tx, gd->gtk_len);
  703. wpa_hexdump(MSG_DEBUG, "WPA: RSC", key_rsc, gd->key_rsc_len);
  704. if (sm->group_cipher == WPA_CIPHER_TKIP) {
  705. /* Swap Tx/Rx keys for Michael MIC */
  706. os_memcpy(gtk_buf, gd->gtk, 16);
  707. os_memcpy(gtk_buf + 16, gd->gtk + 24, 8);
  708. os_memcpy(gtk_buf + 24, gd->gtk + 16, 8);
  709. _gtk = gtk_buf;
  710. }
  711. if (sm->pairwise_cipher == WPA_CIPHER_NONE) {
  712. if (wpa_sm_set_key(sm, gd->alg, NULL,
  713. gd->keyidx, 1, key_rsc, gd->key_rsc_len,
  714. _gtk, gd->gtk_len) < 0) {
  715. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  716. "WPA: Failed to set GTK to the driver "
  717. "(Group only)");
  718. os_memset(gtk_buf, 0, sizeof(gtk_buf));
  719. return -1;
  720. }
  721. } else if (wpa_sm_set_key(sm, gd->alg, broadcast_ether_addr,
  722. gd->keyidx, gd->tx, key_rsc, gd->key_rsc_len,
  723. _gtk, gd->gtk_len) < 0) {
  724. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  725. "WPA: Failed to set GTK to "
  726. "the driver (alg=%d keylen=%d keyidx=%d)",
  727. gd->alg, gd->gtk_len, gd->keyidx);
  728. os_memset(gtk_buf, 0, sizeof(gtk_buf));
  729. return -1;
  730. }
  731. os_memset(gtk_buf, 0, sizeof(gtk_buf));
  732. return 0;
  733. }
  734. static int wpa_supplicant_gtk_tx_bit_workaround(const struct wpa_sm *sm,
  735. int tx)
  736. {
  737. if (tx && sm->pairwise_cipher != WPA_CIPHER_NONE) {
  738. /* Ignore Tx bit for GTK if a pairwise key is used. One AP
  739. * seemed to set this bit (incorrectly, since Tx is only when
  740. * doing Group Key only APs) and without this workaround, the
  741. * data connection does not work because wpa_supplicant
  742. * configured non-zero keyidx to be used for unicast. */
  743. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  744. "WPA: Tx bit set for GTK, but pairwise "
  745. "keys are used - ignore Tx bit");
  746. return 0;
  747. }
  748. return tx;
  749. }
  750. static int wpa_supplicant_rsc_relaxation(const struct wpa_sm *sm,
  751. const u8 *rsc)
  752. {
  753. int rsclen;
  754. if (!sm->wpa_rsc_relaxation)
  755. return 0;
  756. rsclen = wpa_cipher_rsc_len(sm->group_cipher);
  757. /*
  758. * Try to detect RSC (endian) corruption issue where the AP sends
  759. * the RSC bytes in EAPOL-Key message in the wrong order, both if
  760. * it's actually a 6-byte field (as it should be) and if it treats
  761. * it as an 8-byte field.
  762. * An AP model known to have this bug is the Sapido RB-1632.
  763. */
  764. if (rsclen == 6 && ((rsc[5] && !rsc[0]) || rsc[6] || rsc[7])) {
  765. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  766. "RSC %02x%02x%02x%02x%02x%02x%02x%02x is likely bogus, using 0",
  767. rsc[0], rsc[1], rsc[2], rsc[3],
  768. rsc[4], rsc[5], rsc[6], rsc[7]);
  769. return 1;
  770. }
  771. return 0;
  772. }
  773. static int wpa_supplicant_pairwise_gtk(struct wpa_sm *sm,
  774. const struct wpa_eapol_key *key,
  775. const u8 *gtk, size_t gtk_len,
  776. int key_info)
  777. {
  778. struct wpa_gtk_data gd;
  779. const u8 *key_rsc;
  780. /*
  781. * IEEE Std 802.11i-2004 - 8.5.2 EAPOL-Key frames - Figure 43x
  782. * GTK KDE format:
  783. * KeyID[bits 0-1], Tx [bit 2], Reserved [bits 3-7]
  784. * Reserved [bits 0-7]
  785. * GTK
  786. */
  787. os_memset(&gd, 0, sizeof(gd));
  788. wpa_hexdump_key(MSG_DEBUG, "RSN: received GTK in pairwise handshake",
  789. gtk, gtk_len);
  790. if (gtk_len < 2 || gtk_len - 2 > sizeof(gd.gtk))
  791. return -1;
  792. gd.keyidx = gtk[0] & 0x3;
  793. gd.tx = wpa_supplicant_gtk_tx_bit_workaround(sm,
  794. !!(gtk[0] & BIT(2)));
  795. gtk += 2;
  796. gtk_len -= 2;
  797. os_memcpy(gd.gtk, gtk, gtk_len);
  798. gd.gtk_len = gtk_len;
  799. key_rsc = key->key_rsc;
  800. if (wpa_supplicant_rsc_relaxation(sm, key->key_rsc))
  801. key_rsc = null_rsc;
  802. if (sm->group_cipher != WPA_CIPHER_GTK_NOT_USED &&
  803. (wpa_supplicant_check_group_cipher(sm, sm->group_cipher,
  804. gtk_len, gtk_len,
  805. &gd.key_rsc_len, &gd.alg) ||
  806. wpa_supplicant_install_gtk(sm, &gd, key_rsc))) {
  807. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  808. "RSN: Failed to install GTK");
  809. os_memset(&gd, 0, sizeof(gd));
  810. return -1;
  811. }
  812. os_memset(&gd, 0, sizeof(gd));
  813. wpa_supplicant_key_neg_complete(sm, sm->bssid,
  814. key_info & WPA_KEY_INFO_SECURE);
  815. return 0;
  816. }
  817. static int ieee80211w_set_keys(struct wpa_sm *sm,
  818. struct wpa_eapol_ie_parse *ie)
  819. {
  820. #ifdef CONFIG_IEEE80211W
  821. if (!wpa_cipher_valid_mgmt_group(sm->mgmt_group_cipher))
  822. return 0;
  823. if (ie->igtk) {
  824. size_t len;
  825. const struct wpa_igtk_kde *igtk;
  826. u16 keyidx;
  827. len = wpa_cipher_key_len(sm->mgmt_group_cipher);
  828. if (ie->igtk_len != WPA_IGTK_KDE_PREFIX_LEN + len)
  829. return -1;
  830. igtk = (const struct wpa_igtk_kde *) ie->igtk;
  831. keyidx = WPA_GET_LE16(igtk->keyid);
  832. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "WPA: IGTK keyid %d "
  833. "pn %02x%02x%02x%02x%02x%02x",
  834. keyidx, MAC2STR(igtk->pn));
  835. wpa_hexdump_key(MSG_DEBUG, "WPA: IGTK",
  836. igtk->igtk, len);
  837. if (keyidx > 4095) {
  838. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  839. "WPA: Invalid IGTK KeyID %d", keyidx);
  840. return -1;
  841. }
  842. if (wpa_sm_set_key(sm, wpa_cipher_to_alg(sm->mgmt_group_cipher),
  843. broadcast_ether_addr,
  844. keyidx, 0, igtk->pn, sizeof(igtk->pn),
  845. igtk->igtk, len) < 0) {
  846. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  847. "WPA: Failed to configure IGTK to the driver");
  848. return -1;
  849. }
  850. }
  851. return 0;
  852. #else /* CONFIG_IEEE80211W */
  853. return 0;
  854. #endif /* CONFIG_IEEE80211W */
  855. }
  856. static void wpa_report_ie_mismatch(struct wpa_sm *sm,
  857. const char *reason, const u8 *src_addr,
  858. const u8 *wpa_ie, size_t wpa_ie_len,
  859. const u8 *rsn_ie, size_t rsn_ie_len)
  860. {
  861. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING, "WPA: %s (src=" MACSTR ")",
  862. reason, MAC2STR(src_addr));
  863. if (sm->ap_wpa_ie) {
  864. wpa_hexdump(MSG_INFO, "WPA: WPA IE in Beacon/ProbeResp",
  865. sm->ap_wpa_ie, sm->ap_wpa_ie_len);
  866. }
  867. if (wpa_ie) {
  868. if (!sm->ap_wpa_ie) {
  869. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  870. "WPA: No WPA IE in Beacon/ProbeResp");
  871. }
  872. wpa_hexdump(MSG_INFO, "WPA: WPA IE in 3/4 msg",
  873. wpa_ie, wpa_ie_len);
  874. }
  875. if (sm->ap_rsn_ie) {
  876. wpa_hexdump(MSG_INFO, "WPA: RSN IE in Beacon/ProbeResp",
  877. sm->ap_rsn_ie, sm->ap_rsn_ie_len);
  878. }
  879. if (rsn_ie) {
  880. if (!sm->ap_rsn_ie) {
  881. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  882. "WPA: No RSN IE in Beacon/ProbeResp");
  883. }
  884. wpa_hexdump(MSG_INFO, "WPA: RSN IE in 3/4 msg",
  885. rsn_ie, rsn_ie_len);
  886. }
  887. wpa_sm_deauthenticate(sm, WLAN_REASON_IE_IN_4WAY_DIFFERS);
  888. }
  889. #ifdef CONFIG_IEEE80211R
  890. static int ft_validate_mdie(struct wpa_sm *sm,
  891. const unsigned char *src_addr,
  892. struct wpa_eapol_ie_parse *ie,
  893. const u8 *assoc_resp_mdie)
  894. {
  895. struct rsn_mdie *mdie;
  896. mdie = (struct rsn_mdie *) (ie->mdie + 2);
  897. if (ie->mdie == NULL || ie->mdie_len < 2 + sizeof(*mdie) ||
  898. os_memcmp(mdie->mobility_domain, sm->mobility_domain,
  899. MOBILITY_DOMAIN_ID_LEN) != 0) {
  900. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "FT: MDIE in msg 3/4 did "
  901. "not match with the current mobility domain");
  902. return -1;
  903. }
  904. if (assoc_resp_mdie &&
  905. (assoc_resp_mdie[1] != ie->mdie[1] ||
  906. os_memcmp(assoc_resp_mdie, ie->mdie, 2 + ie->mdie[1]) != 0)) {
  907. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "FT: MDIE mismatch");
  908. wpa_hexdump(MSG_DEBUG, "FT: MDIE in EAPOL-Key msg 3/4",
  909. ie->mdie, 2 + ie->mdie[1]);
  910. wpa_hexdump(MSG_DEBUG, "FT: MDIE in (Re)Association Response",
  911. assoc_resp_mdie, 2 + assoc_resp_mdie[1]);
  912. return -1;
  913. }
  914. return 0;
  915. }
  916. static int ft_validate_ftie(struct wpa_sm *sm,
  917. const unsigned char *src_addr,
  918. struct wpa_eapol_ie_parse *ie,
  919. const u8 *assoc_resp_ftie)
  920. {
  921. if (ie->ftie == NULL) {
  922. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  923. "FT: No FTIE in EAPOL-Key msg 3/4");
  924. return -1;
  925. }
  926. if (assoc_resp_ftie == NULL)
  927. return 0;
  928. if (assoc_resp_ftie[1] != ie->ftie[1] ||
  929. os_memcmp(assoc_resp_ftie, ie->ftie, 2 + ie->ftie[1]) != 0) {
  930. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "FT: FTIE mismatch");
  931. wpa_hexdump(MSG_DEBUG, "FT: FTIE in EAPOL-Key msg 3/4",
  932. ie->ftie, 2 + ie->ftie[1]);
  933. wpa_hexdump(MSG_DEBUG, "FT: FTIE in (Re)Association Response",
  934. assoc_resp_ftie, 2 + assoc_resp_ftie[1]);
  935. return -1;
  936. }
  937. return 0;
  938. }
  939. static int ft_validate_rsnie(struct wpa_sm *sm,
  940. const unsigned char *src_addr,
  941. struct wpa_eapol_ie_parse *ie)
  942. {
  943. struct wpa_ie_data rsn;
  944. if (!ie->rsn_ie)
  945. return 0;
  946. /*
  947. * Verify that PMKR1Name from EAPOL-Key message 3/4
  948. * matches with the value we derived.
  949. */
  950. if (wpa_parse_wpa_ie_rsn(ie->rsn_ie, ie->rsn_ie_len, &rsn) < 0 ||
  951. rsn.num_pmkid != 1 || rsn.pmkid == NULL) {
  952. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "FT: No PMKR1Name in "
  953. "FT 4-way handshake message 3/4");
  954. return -1;
  955. }
  956. if (os_memcmp_const(rsn.pmkid, sm->pmk_r1_name, WPA_PMK_NAME_LEN) != 0)
  957. {
  958. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  959. "FT: PMKR1Name mismatch in "
  960. "FT 4-way handshake message 3/4");
  961. wpa_hexdump(MSG_DEBUG, "FT: PMKR1Name from Authenticator",
  962. rsn.pmkid, WPA_PMK_NAME_LEN);
  963. wpa_hexdump(MSG_DEBUG, "FT: Derived PMKR1Name",
  964. sm->pmk_r1_name, WPA_PMK_NAME_LEN);
  965. return -1;
  966. }
  967. return 0;
  968. }
  969. static int wpa_supplicant_validate_ie_ft(struct wpa_sm *sm,
  970. const unsigned char *src_addr,
  971. struct wpa_eapol_ie_parse *ie)
  972. {
  973. const u8 *pos, *end, *mdie = NULL, *ftie = NULL;
  974. if (sm->assoc_resp_ies) {
  975. pos = sm->assoc_resp_ies;
  976. end = pos + sm->assoc_resp_ies_len;
  977. while (end - pos > 2) {
  978. if (2 + pos[1] > end - pos)
  979. break;
  980. switch (*pos) {
  981. case WLAN_EID_MOBILITY_DOMAIN:
  982. mdie = pos;
  983. break;
  984. case WLAN_EID_FAST_BSS_TRANSITION:
  985. ftie = pos;
  986. break;
  987. }
  988. pos += 2 + pos[1];
  989. }
  990. }
  991. if (ft_validate_mdie(sm, src_addr, ie, mdie) < 0 ||
  992. ft_validate_ftie(sm, src_addr, ie, ftie) < 0 ||
  993. ft_validate_rsnie(sm, src_addr, ie) < 0)
  994. return -1;
  995. return 0;
  996. }
  997. #endif /* CONFIG_IEEE80211R */
  998. static int wpa_supplicant_validate_ie(struct wpa_sm *sm,
  999. const unsigned char *src_addr,
  1000. struct wpa_eapol_ie_parse *ie)
  1001. {
  1002. if (sm->ap_wpa_ie == NULL && sm->ap_rsn_ie == NULL) {
  1003. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  1004. "WPA: No WPA/RSN IE for this AP known. "
  1005. "Trying to get from scan results");
  1006. if (wpa_sm_get_beacon_ie(sm) < 0) {
  1007. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1008. "WPA: Could not find AP from "
  1009. "the scan results");
  1010. } else {
  1011. wpa_msg(sm->ctx->msg_ctx, MSG_DEBUG,
  1012. "WPA: Found the current AP from "
  1013. "updated scan results");
  1014. }
  1015. }
  1016. if (ie->wpa_ie == NULL && ie->rsn_ie == NULL &&
  1017. (sm->ap_wpa_ie || sm->ap_rsn_ie)) {
  1018. wpa_report_ie_mismatch(sm, "IE in 3/4 msg does not match "
  1019. "with IE in Beacon/ProbeResp (no IE?)",
  1020. src_addr, ie->wpa_ie, ie->wpa_ie_len,
  1021. ie->rsn_ie, ie->rsn_ie_len);
  1022. return -1;
  1023. }
  1024. if ((ie->wpa_ie && sm->ap_wpa_ie &&
  1025. (ie->wpa_ie_len != sm->ap_wpa_ie_len ||
  1026. os_memcmp(ie->wpa_ie, sm->ap_wpa_ie, ie->wpa_ie_len) != 0)) ||
  1027. (ie->rsn_ie && sm->ap_rsn_ie &&
  1028. wpa_compare_rsn_ie(wpa_key_mgmt_ft(sm->key_mgmt),
  1029. sm->ap_rsn_ie, sm->ap_rsn_ie_len,
  1030. ie->rsn_ie, ie->rsn_ie_len))) {
  1031. wpa_report_ie_mismatch(sm, "IE in 3/4 msg does not match "
  1032. "with IE in Beacon/ProbeResp",
  1033. src_addr, ie->wpa_ie, ie->wpa_ie_len,
  1034. ie->rsn_ie, ie->rsn_ie_len);
  1035. return -1;
  1036. }
  1037. if (sm->proto == WPA_PROTO_WPA &&
  1038. ie->rsn_ie && sm->ap_rsn_ie == NULL && sm->rsn_enabled) {
  1039. wpa_report_ie_mismatch(sm, "Possible downgrade attack "
  1040. "detected - RSN was enabled and RSN IE "
  1041. "was in msg 3/4, but not in "
  1042. "Beacon/ProbeResp",
  1043. src_addr, ie->wpa_ie, ie->wpa_ie_len,
  1044. ie->rsn_ie, ie->rsn_ie_len);
  1045. return -1;
  1046. }
  1047. #ifdef CONFIG_IEEE80211R
  1048. if (wpa_key_mgmt_ft(sm->key_mgmt) &&
  1049. wpa_supplicant_validate_ie_ft(sm, src_addr, ie) < 0)
  1050. return -1;
  1051. #endif /* CONFIG_IEEE80211R */
  1052. return 0;
  1053. }
  1054. /**
  1055. * wpa_supplicant_send_4_of_4 - Send message 4 of WPA/RSN 4-Way Handshake
  1056. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1057. * @dst: Destination address for the frame
  1058. * @key: Pointer to the EAPOL-Key frame header
  1059. * @ver: Version bits from EAPOL-Key Key Info
  1060. * @key_info: Key Info
  1061. * @ptk: PTK to use for keyed hash and encryption
  1062. * Returns: >= 0 on success, < 0 on failure
  1063. */
  1064. int wpa_supplicant_send_4_of_4(struct wpa_sm *sm, const unsigned char *dst,
  1065. const struct wpa_eapol_key *key,
  1066. u16 ver, u16 key_info,
  1067. struct wpa_ptk *ptk)
  1068. {
  1069. size_t mic_len, hdrlen, rlen;
  1070. struct wpa_eapol_key *reply;
  1071. u8 *rbuf, *key_mic;
  1072. mic_len = wpa_mic_len(sm->key_mgmt);
  1073. hdrlen = sizeof(*reply) + mic_len + 2;
  1074. rbuf = wpa_sm_alloc_eapol(sm, IEEE802_1X_TYPE_EAPOL_KEY, NULL,
  1075. hdrlen, &rlen, (void *) &reply);
  1076. if (rbuf == NULL)
  1077. return -1;
  1078. reply->type = (sm->proto == WPA_PROTO_RSN ||
  1079. sm->proto == WPA_PROTO_OSEN) ?
  1080. EAPOL_KEY_TYPE_RSN : EAPOL_KEY_TYPE_WPA;
  1081. key_info &= WPA_KEY_INFO_SECURE;
  1082. key_info |= ver | WPA_KEY_INFO_KEY_TYPE;
  1083. if (mic_len)
  1084. key_info |= WPA_KEY_INFO_MIC;
  1085. else
  1086. key_info |= WPA_KEY_INFO_ENCR_KEY_DATA;
  1087. WPA_PUT_BE16(reply->key_info, key_info);
  1088. if (sm->proto == WPA_PROTO_RSN || sm->proto == WPA_PROTO_OSEN)
  1089. WPA_PUT_BE16(reply->key_length, 0);
  1090. else
  1091. os_memcpy(reply->key_length, key->key_length, 2);
  1092. os_memcpy(reply->replay_counter, key->replay_counter,
  1093. WPA_REPLAY_COUNTER_LEN);
  1094. key_mic = (u8 *) (reply + 1);
  1095. WPA_PUT_BE16(key_mic + mic_len, 0);
  1096. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "WPA: Sending EAPOL-Key 4/4");
  1097. return wpa_eapol_key_send(sm, ptk, ver, dst, ETH_P_EAPOL, rbuf, rlen,
  1098. key_mic);
  1099. }
  1100. static void wpa_supplicant_process_3_of_4(struct wpa_sm *sm,
  1101. const struct wpa_eapol_key *key,
  1102. u16 ver, const u8 *key_data,
  1103. size_t key_data_len)
  1104. {
  1105. u16 key_info, keylen;
  1106. struct wpa_eapol_ie_parse ie;
  1107. wpa_sm_set_state(sm, WPA_4WAY_HANDSHAKE);
  1108. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "WPA: RX message 3 of 4-Way "
  1109. "Handshake from " MACSTR " (ver=%d)", MAC2STR(sm->bssid), ver);
  1110. key_info = WPA_GET_BE16(key->key_info);
  1111. wpa_hexdump(MSG_DEBUG, "WPA: IE KeyData", key_data, key_data_len);
  1112. if (wpa_supplicant_parse_ies(key_data, key_data_len, &ie) < 0)
  1113. goto failed;
  1114. if (ie.gtk && !(key_info & WPA_KEY_INFO_ENCR_KEY_DATA)) {
  1115. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1116. "WPA: GTK IE in unencrypted key data");
  1117. goto failed;
  1118. }
  1119. #ifdef CONFIG_IEEE80211W
  1120. if (ie.igtk && !(key_info & WPA_KEY_INFO_ENCR_KEY_DATA)) {
  1121. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1122. "WPA: IGTK KDE in unencrypted key data");
  1123. goto failed;
  1124. }
  1125. if (ie.igtk &&
  1126. wpa_cipher_valid_mgmt_group(sm->mgmt_group_cipher) &&
  1127. ie.igtk_len != WPA_IGTK_KDE_PREFIX_LEN +
  1128. (unsigned int) wpa_cipher_key_len(sm->mgmt_group_cipher)) {
  1129. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1130. "WPA: Invalid IGTK KDE length %lu",
  1131. (unsigned long) ie.igtk_len);
  1132. goto failed;
  1133. }
  1134. #endif /* CONFIG_IEEE80211W */
  1135. if (wpa_supplicant_validate_ie(sm, sm->bssid, &ie) < 0)
  1136. goto failed;
  1137. if (os_memcmp(sm->anonce, key->key_nonce, WPA_NONCE_LEN) != 0) {
  1138. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1139. "WPA: ANonce from message 1 of 4-Way Handshake "
  1140. "differs from 3 of 4-Way Handshake - drop packet (src="
  1141. MACSTR ")", MAC2STR(sm->bssid));
  1142. goto failed;
  1143. }
  1144. keylen = WPA_GET_BE16(key->key_length);
  1145. if (keylen != wpa_cipher_key_len(sm->pairwise_cipher)) {
  1146. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1147. "WPA: Invalid %s key length %d (src=" MACSTR
  1148. ")", wpa_cipher_txt(sm->pairwise_cipher), keylen,
  1149. MAC2STR(sm->bssid));
  1150. goto failed;
  1151. }
  1152. #ifdef CONFIG_P2P
  1153. if (ie.ip_addr_alloc) {
  1154. os_memcpy(sm->p2p_ip_addr, ie.ip_addr_alloc, 3 * 4);
  1155. wpa_hexdump(MSG_DEBUG, "P2P: IP address info",
  1156. sm->p2p_ip_addr, sizeof(sm->p2p_ip_addr));
  1157. }
  1158. #endif /* CONFIG_P2P */
  1159. if (wpa_supplicant_send_4_of_4(sm, sm->bssid, key, ver, key_info,
  1160. &sm->ptk) < 0) {
  1161. goto failed;
  1162. }
  1163. /* SNonce was successfully used in msg 3/4, so mark it to be renewed
  1164. * for the next 4-Way Handshake. If msg 3 is received again, the old
  1165. * SNonce will still be used to avoid changing PTK. */
  1166. sm->renew_snonce = 1;
  1167. if (key_info & WPA_KEY_INFO_INSTALL) {
  1168. if (wpa_supplicant_install_ptk(sm, key))
  1169. goto failed;
  1170. }
  1171. if (key_info & WPA_KEY_INFO_SECURE) {
  1172. wpa_sm_mlme_setprotection(
  1173. sm, sm->bssid, MLME_SETPROTECTION_PROTECT_TYPE_RX,
  1174. MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
  1175. eapol_sm_notify_portValid(sm->eapol, TRUE);
  1176. }
  1177. wpa_sm_set_state(sm, WPA_GROUP_HANDSHAKE);
  1178. if (sm->group_cipher == WPA_CIPHER_GTK_NOT_USED) {
  1179. wpa_supplicant_key_neg_complete(sm, sm->bssid,
  1180. key_info & WPA_KEY_INFO_SECURE);
  1181. } else if (ie.gtk &&
  1182. wpa_supplicant_pairwise_gtk(sm, key,
  1183. ie.gtk, ie.gtk_len, key_info) < 0) {
  1184. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1185. "RSN: Failed to configure GTK");
  1186. goto failed;
  1187. }
  1188. if (ieee80211w_set_keys(sm, &ie) < 0) {
  1189. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1190. "RSN: Failed to configure IGTK");
  1191. goto failed;
  1192. }
  1193. if (ie.gtk)
  1194. wpa_sm_set_rekey_offload(sm);
  1195. if (sm->proto == WPA_PROTO_RSN && wpa_key_mgmt_suite_b(sm->key_mgmt)) {
  1196. struct rsn_pmksa_cache_entry *sa;
  1197. sa = pmksa_cache_add(sm->pmksa, sm->pmk, sm->pmk_len, NULL,
  1198. sm->ptk.kck, sm->ptk.kck_len,
  1199. sm->bssid, sm->own_addr,
  1200. sm->network_ctx, sm->key_mgmt, NULL);
  1201. if (!sm->cur_pmksa)
  1202. sm->cur_pmksa = sa;
  1203. }
  1204. sm->msg_3_of_4_ok = 1;
  1205. return;
  1206. failed:
  1207. wpa_sm_deauthenticate(sm, WLAN_REASON_UNSPECIFIED);
  1208. }
  1209. static int wpa_supplicant_process_1_of_2_rsn(struct wpa_sm *sm,
  1210. const u8 *keydata,
  1211. size_t keydatalen,
  1212. u16 key_info,
  1213. struct wpa_gtk_data *gd)
  1214. {
  1215. int maxkeylen;
  1216. struct wpa_eapol_ie_parse ie;
  1217. wpa_hexdump_key(MSG_DEBUG, "RSN: msg 1/2 key data",
  1218. keydata, keydatalen);
  1219. if (wpa_supplicant_parse_ies(keydata, keydatalen, &ie) < 0)
  1220. return -1;
  1221. if (ie.gtk && !(key_info & WPA_KEY_INFO_ENCR_KEY_DATA)) {
  1222. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1223. "WPA: GTK IE in unencrypted key data");
  1224. return -1;
  1225. }
  1226. if (ie.gtk == NULL) {
  1227. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1228. "WPA: No GTK IE in Group Key msg 1/2");
  1229. return -1;
  1230. }
  1231. maxkeylen = gd->gtk_len = ie.gtk_len - 2;
  1232. if (wpa_supplicant_check_group_cipher(sm, sm->group_cipher,
  1233. gd->gtk_len, maxkeylen,
  1234. &gd->key_rsc_len, &gd->alg))
  1235. return -1;
  1236. wpa_hexdump_key(MSG_DEBUG, "RSN: received GTK in group key handshake",
  1237. ie.gtk, ie.gtk_len);
  1238. gd->keyidx = ie.gtk[0] & 0x3;
  1239. gd->tx = wpa_supplicant_gtk_tx_bit_workaround(sm,
  1240. !!(ie.gtk[0] & BIT(2)));
  1241. if (ie.gtk_len - 2 > sizeof(gd->gtk)) {
  1242. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1243. "RSN: Too long GTK in GTK IE (len=%lu)",
  1244. (unsigned long) ie.gtk_len - 2);
  1245. return -1;
  1246. }
  1247. os_memcpy(gd->gtk, ie.gtk + 2, ie.gtk_len - 2);
  1248. if (ieee80211w_set_keys(sm, &ie) < 0)
  1249. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1250. "RSN: Failed to configure IGTK");
  1251. return 0;
  1252. }
  1253. static int wpa_supplicant_process_1_of_2_wpa(struct wpa_sm *sm,
  1254. const struct wpa_eapol_key *key,
  1255. const u8 *key_data,
  1256. size_t key_data_len, u16 key_info,
  1257. u16 ver, struct wpa_gtk_data *gd)
  1258. {
  1259. size_t maxkeylen;
  1260. u16 gtk_len;
  1261. gtk_len = WPA_GET_BE16(key->key_length);
  1262. maxkeylen = key_data_len;
  1263. if (ver == WPA_KEY_INFO_TYPE_HMAC_SHA1_AES) {
  1264. if (maxkeylen < 8) {
  1265. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1266. "WPA: Too short maxkeylen (%lu)",
  1267. (unsigned long) maxkeylen);
  1268. return -1;
  1269. }
  1270. maxkeylen -= 8;
  1271. }
  1272. if (gtk_len > maxkeylen ||
  1273. wpa_supplicant_check_group_cipher(sm, sm->group_cipher,
  1274. gtk_len, maxkeylen,
  1275. &gd->key_rsc_len, &gd->alg))
  1276. return -1;
  1277. gd->gtk_len = gtk_len;
  1278. gd->keyidx = (key_info & WPA_KEY_INFO_KEY_INDEX_MASK) >>
  1279. WPA_KEY_INFO_KEY_INDEX_SHIFT;
  1280. if (ver == WPA_KEY_INFO_TYPE_HMAC_MD5_RC4 && sm->ptk.kek_len == 16) {
  1281. #ifdef CONFIG_NO_RC4
  1282. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1283. "WPA: RC4 not supported in the build");
  1284. return -1;
  1285. #else /* CONFIG_NO_RC4 */
  1286. u8 ek[32];
  1287. if (key_data_len > sizeof(gd->gtk)) {
  1288. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1289. "WPA: RC4 key data too long (%lu)",
  1290. (unsigned long) key_data_len);
  1291. return -1;
  1292. }
  1293. os_memcpy(ek, key->key_iv, 16);
  1294. os_memcpy(ek + 16, sm->ptk.kek, sm->ptk.kek_len);
  1295. os_memcpy(gd->gtk, key_data, key_data_len);
  1296. if (rc4_skip(ek, 32, 256, gd->gtk, key_data_len)) {
  1297. os_memset(ek, 0, sizeof(ek));
  1298. wpa_msg(sm->ctx->msg_ctx, MSG_ERROR,
  1299. "WPA: RC4 failed");
  1300. return -1;
  1301. }
  1302. os_memset(ek, 0, sizeof(ek));
  1303. #endif /* CONFIG_NO_RC4 */
  1304. } else if (ver == WPA_KEY_INFO_TYPE_HMAC_SHA1_AES) {
  1305. if (maxkeylen % 8) {
  1306. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1307. "WPA: Unsupported AES-WRAP len %lu",
  1308. (unsigned long) maxkeylen);
  1309. return -1;
  1310. }
  1311. if (maxkeylen > sizeof(gd->gtk)) {
  1312. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1313. "WPA: AES-WRAP key data "
  1314. "too long (keydatalen=%lu maxkeylen=%lu)",
  1315. (unsigned long) key_data_len,
  1316. (unsigned long) maxkeylen);
  1317. return -1;
  1318. }
  1319. if (aes_unwrap(sm->ptk.kek, sm->ptk.kek_len, maxkeylen / 8,
  1320. key_data, gd->gtk)) {
  1321. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1322. "WPA: AES unwrap failed - could not decrypt "
  1323. "GTK");
  1324. return -1;
  1325. }
  1326. } else {
  1327. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1328. "WPA: Unsupported key_info type %d", ver);
  1329. return -1;
  1330. }
  1331. gd->tx = wpa_supplicant_gtk_tx_bit_workaround(
  1332. sm, !!(key_info & WPA_KEY_INFO_TXRX));
  1333. return 0;
  1334. }
  1335. static int wpa_supplicant_send_2_of_2(struct wpa_sm *sm,
  1336. const struct wpa_eapol_key *key,
  1337. int ver, u16 key_info)
  1338. {
  1339. size_t mic_len, hdrlen, rlen;
  1340. struct wpa_eapol_key *reply;
  1341. u8 *rbuf, *key_mic;
  1342. mic_len = wpa_mic_len(sm->key_mgmt);
  1343. hdrlen = sizeof(*reply) + mic_len + 2;
  1344. rbuf = wpa_sm_alloc_eapol(sm, IEEE802_1X_TYPE_EAPOL_KEY, NULL,
  1345. hdrlen, &rlen, (void *) &reply);
  1346. if (rbuf == NULL)
  1347. return -1;
  1348. reply->type = (sm->proto == WPA_PROTO_RSN ||
  1349. sm->proto == WPA_PROTO_OSEN) ?
  1350. EAPOL_KEY_TYPE_RSN : EAPOL_KEY_TYPE_WPA;
  1351. key_info &= WPA_KEY_INFO_KEY_INDEX_MASK;
  1352. key_info |= ver | WPA_KEY_INFO_SECURE;
  1353. if (mic_len)
  1354. key_info |= WPA_KEY_INFO_MIC;
  1355. WPA_PUT_BE16(reply->key_info, key_info);
  1356. if (sm->proto == WPA_PROTO_RSN || sm->proto == WPA_PROTO_OSEN)
  1357. WPA_PUT_BE16(reply->key_length, 0);
  1358. else
  1359. os_memcpy(reply->key_length, key->key_length, 2);
  1360. os_memcpy(reply->replay_counter, key->replay_counter,
  1361. WPA_REPLAY_COUNTER_LEN);
  1362. key_mic = (u8 *) (reply + 1);
  1363. WPA_PUT_BE16(key_mic + mic_len, 0);
  1364. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "WPA: Sending EAPOL-Key 2/2");
  1365. return wpa_eapol_key_send(sm, &sm->ptk, ver, sm->bssid, ETH_P_EAPOL,
  1366. rbuf, rlen, key_mic);
  1367. }
  1368. static void wpa_supplicant_process_1_of_2(struct wpa_sm *sm,
  1369. const unsigned char *src_addr,
  1370. const struct wpa_eapol_key *key,
  1371. const u8 *key_data,
  1372. size_t key_data_len, u16 ver)
  1373. {
  1374. u16 key_info;
  1375. int rekey, ret;
  1376. struct wpa_gtk_data gd;
  1377. const u8 *key_rsc;
  1378. if (!sm->msg_3_of_4_ok) {
  1379. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1380. "WPA: Group Key Handshake started prior to completion of 4-way handshake");
  1381. goto failed;
  1382. }
  1383. os_memset(&gd, 0, sizeof(gd));
  1384. rekey = wpa_sm_get_state(sm) == WPA_COMPLETED;
  1385. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "WPA: RX message 1 of Group Key "
  1386. "Handshake from " MACSTR " (ver=%d)", MAC2STR(src_addr), ver);
  1387. key_info = WPA_GET_BE16(key->key_info);
  1388. if (sm->proto == WPA_PROTO_RSN || sm->proto == WPA_PROTO_OSEN) {
  1389. ret = wpa_supplicant_process_1_of_2_rsn(sm, key_data,
  1390. key_data_len, key_info,
  1391. &gd);
  1392. } else {
  1393. ret = wpa_supplicant_process_1_of_2_wpa(sm, key, key_data,
  1394. key_data_len,
  1395. key_info, ver, &gd);
  1396. }
  1397. wpa_sm_set_state(sm, WPA_GROUP_HANDSHAKE);
  1398. if (ret)
  1399. goto failed;
  1400. key_rsc = key->key_rsc;
  1401. if (wpa_supplicant_rsc_relaxation(sm, key->key_rsc))
  1402. key_rsc = null_rsc;
  1403. if (wpa_supplicant_install_gtk(sm, &gd, key_rsc) ||
  1404. wpa_supplicant_send_2_of_2(sm, key, ver, key_info) < 0)
  1405. goto failed;
  1406. os_memset(&gd, 0, sizeof(gd));
  1407. if (rekey) {
  1408. wpa_msg(sm->ctx->msg_ctx, MSG_INFO, "WPA: Group rekeying "
  1409. "completed with " MACSTR " [GTK=%s]",
  1410. MAC2STR(sm->bssid), wpa_cipher_txt(sm->group_cipher));
  1411. wpa_sm_cancel_auth_timeout(sm);
  1412. wpa_sm_set_state(sm, WPA_COMPLETED);
  1413. } else {
  1414. wpa_supplicant_key_neg_complete(sm, sm->bssid,
  1415. key_info &
  1416. WPA_KEY_INFO_SECURE);
  1417. }
  1418. wpa_sm_set_rekey_offload(sm);
  1419. return;
  1420. failed:
  1421. os_memset(&gd, 0, sizeof(gd));
  1422. wpa_sm_deauthenticate(sm, WLAN_REASON_UNSPECIFIED);
  1423. }
  1424. static int wpa_supplicant_verify_eapol_key_mic(struct wpa_sm *sm,
  1425. struct wpa_eapol_key *key,
  1426. u16 ver,
  1427. const u8 *buf, size_t len)
  1428. {
  1429. u8 mic[WPA_EAPOL_KEY_MIC_MAX_LEN];
  1430. int ok = 0;
  1431. size_t mic_len = wpa_mic_len(sm->key_mgmt);
  1432. os_memcpy(mic, key + 1, mic_len);
  1433. if (sm->tptk_set) {
  1434. os_memset(key + 1, 0, mic_len);
  1435. wpa_eapol_key_mic(sm->tptk.kck, sm->tptk.kck_len, sm->key_mgmt,
  1436. ver, buf, len, (u8 *) (key + 1));
  1437. if (os_memcmp_const(mic, key + 1, mic_len) != 0) {
  1438. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1439. "WPA: Invalid EAPOL-Key MIC "
  1440. "when using TPTK - ignoring TPTK");
  1441. } else {
  1442. ok = 1;
  1443. sm->tptk_set = 0;
  1444. sm->ptk_set = 1;
  1445. os_memcpy(&sm->ptk, &sm->tptk, sizeof(sm->ptk));
  1446. os_memset(&sm->tptk, 0, sizeof(sm->tptk));
  1447. }
  1448. }
  1449. if (!ok && sm->ptk_set) {
  1450. os_memset(key + 1, 0, mic_len);
  1451. wpa_eapol_key_mic(sm->ptk.kck, sm->ptk.kck_len, sm->key_mgmt,
  1452. ver, buf, len, (u8 *) (key + 1));
  1453. if (os_memcmp_const(mic, key + 1, mic_len) != 0) {
  1454. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1455. "WPA: Invalid EAPOL-Key MIC - "
  1456. "dropping packet");
  1457. return -1;
  1458. }
  1459. ok = 1;
  1460. }
  1461. if (!ok) {
  1462. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1463. "WPA: Could not verify EAPOL-Key MIC - "
  1464. "dropping packet");
  1465. return -1;
  1466. }
  1467. os_memcpy(sm->rx_replay_counter, key->replay_counter,
  1468. WPA_REPLAY_COUNTER_LEN);
  1469. sm->rx_replay_counter_set = 1;
  1470. return 0;
  1471. }
  1472. /* Decrypt RSN EAPOL-Key key data (RC4 or AES-WRAP) */
  1473. static int wpa_supplicant_decrypt_key_data(struct wpa_sm *sm,
  1474. struct wpa_eapol_key *key,
  1475. size_t mic_len, u16 ver,
  1476. u8 *key_data, size_t *key_data_len)
  1477. {
  1478. wpa_hexdump(MSG_DEBUG, "RSN: encrypted key data",
  1479. key_data, *key_data_len);
  1480. if (!sm->ptk_set) {
  1481. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1482. "WPA: PTK not available, cannot decrypt EAPOL-Key Key "
  1483. "Data");
  1484. return -1;
  1485. }
  1486. /* Decrypt key data here so that this operation does not need
  1487. * to be implemented separately for each message type. */
  1488. if (ver == WPA_KEY_INFO_TYPE_HMAC_MD5_RC4 && sm->ptk.kek_len == 16) {
  1489. #ifdef CONFIG_NO_RC4
  1490. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1491. "WPA: RC4 not supported in the build");
  1492. return -1;
  1493. #else /* CONFIG_NO_RC4 */
  1494. u8 ek[32];
  1495. wpa_printf(MSG_DEBUG, "WPA: Decrypt Key Data using RC4");
  1496. os_memcpy(ek, key->key_iv, 16);
  1497. os_memcpy(ek + 16, sm->ptk.kek, sm->ptk.kek_len);
  1498. if (rc4_skip(ek, 32, 256, key_data, *key_data_len)) {
  1499. os_memset(ek, 0, sizeof(ek));
  1500. wpa_msg(sm->ctx->msg_ctx, MSG_ERROR,
  1501. "WPA: RC4 failed");
  1502. return -1;
  1503. }
  1504. os_memset(ek, 0, sizeof(ek));
  1505. #endif /* CONFIG_NO_RC4 */
  1506. } else if (ver == WPA_KEY_INFO_TYPE_HMAC_SHA1_AES ||
  1507. ver == WPA_KEY_INFO_TYPE_AES_128_CMAC ||
  1508. sm->key_mgmt == WPA_KEY_MGMT_OWE ||
  1509. sm->key_mgmt == WPA_KEY_MGMT_OSEN ||
  1510. wpa_key_mgmt_suite_b(sm->key_mgmt)) {
  1511. u8 *buf;
  1512. wpa_printf(MSG_DEBUG,
  1513. "WPA: Decrypt Key Data using AES-UNWRAP (KEK length %u)",
  1514. (unsigned int) sm->ptk.kek_len);
  1515. if (*key_data_len < 8 || *key_data_len % 8) {
  1516. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1517. "WPA: Unsupported AES-WRAP len %u",
  1518. (unsigned int) *key_data_len);
  1519. return -1;
  1520. }
  1521. *key_data_len -= 8; /* AES-WRAP adds 8 bytes */
  1522. buf = os_malloc(*key_data_len);
  1523. if (buf == NULL) {
  1524. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1525. "WPA: No memory for AES-UNWRAP buffer");
  1526. return -1;
  1527. }
  1528. if (aes_unwrap(sm->ptk.kek, sm->ptk.kek_len, *key_data_len / 8,
  1529. key_data, buf)) {
  1530. bin_clear_free(buf, *key_data_len);
  1531. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1532. "WPA: AES unwrap failed - "
  1533. "could not decrypt EAPOL-Key key data");
  1534. return -1;
  1535. }
  1536. os_memcpy(key_data, buf, *key_data_len);
  1537. bin_clear_free(buf, *key_data_len);
  1538. WPA_PUT_BE16(((u8 *) (key + 1)) + mic_len, *key_data_len);
  1539. } else {
  1540. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1541. "WPA: Unsupported key_info type %d", ver);
  1542. return -1;
  1543. }
  1544. wpa_hexdump_key(MSG_DEBUG, "WPA: decrypted EAPOL-Key key data",
  1545. key_data, *key_data_len);
  1546. return 0;
  1547. }
  1548. /**
  1549. * wpa_sm_aborted_cached - Notify WPA that PMKSA caching was aborted
  1550. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1551. */
  1552. void wpa_sm_aborted_cached(struct wpa_sm *sm)
  1553. {
  1554. if (sm && sm->cur_pmksa) {
  1555. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  1556. "RSN: Cancelling PMKSA caching attempt");
  1557. sm->cur_pmksa = NULL;
  1558. }
  1559. }
  1560. static void wpa_eapol_key_dump(struct wpa_sm *sm,
  1561. const struct wpa_eapol_key *key,
  1562. unsigned int key_data_len,
  1563. const u8 *mic, unsigned int mic_len)
  1564. {
  1565. #ifndef CONFIG_NO_STDOUT_DEBUG
  1566. u16 key_info = WPA_GET_BE16(key->key_info);
  1567. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, " EAPOL-Key type=%d", key->type);
  1568. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  1569. " key_info 0x%x (ver=%d keyidx=%d rsvd=%d %s%s%s%s%s%s%s%s)",
  1570. key_info, key_info & WPA_KEY_INFO_TYPE_MASK,
  1571. (key_info & WPA_KEY_INFO_KEY_INDEX_MASK) >>
  1572. WPA_KEY_INFO_KEY_INDEX_SHIFT,
  1573. (key_info & (BIT(13) | BIT(14) | BIT(15))) >> 13,
  1574. key_info & WPA_KEY_INFO_KEY_TYPE ? "Pairwise" : "Group",
  1575. key_info & WPA_KEY_INFO_INSTALL ? " Install" : "",
  1576. key_info & WPA_KEY_INFO_ACK ? " Ack" : "",
  1577. key_info & WPA_KEY_INFO_MIC ? " MIC" : "",
  1578. key_info & WPA_KEY_INFO_SECURE ? " Secure" : "",
  1579. key_info & WPA_KEY_INFO_ERROR ? " Error" : "",
  1580. key_info & WPA_KEY_INFO_REQUEST ? " Request" : "",
  1581. key_info & WPA_KEY_INFO_ENCR_KEY_DATA ? " Encr" : "");
  1582. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  1583. " key_length=%u key_data_length=%u",
  1584. WPA_GET_BE16(key->key_length), key_data_len);
  1585. wpa_hexdump(MSG_DEBUG, " replay_counter",
  1586. key->replay_counter, WPA_REPLAY_COUNTER_LEN);
  1587. wpa_hexdump(MSG_DEBUG, " key_nonce", key->key_nonce, WPA_NONCE_LEN);
  1588. wpa_hexdump(MSG_DEBUG, " key_iv", key->key_iv, 16);
  1589. wpa_hexdump(MSG_DEBUG, " key_rsc", key->key_rsc, 8);
  1590. wpa_hexdump(MSG_DEBUG, " key_id (reserved)", key->key_id, 8);
  1591. wpa_hexdump(MSG_DEBUG, " key_mic", mic, mic_len);
  1592. #endif /* CONFIG_NO_STDOUT_DEBUG */
  1593. }
  1594. #ifdef CONFIG_FILS
  1595. static int wpa_supp_aead_decrypt(struct wpa_sm *sm, u8 *buf, size_t buf_len,
  1596. size_t *key_data_len)
  1597. {
  1598. struct wpa_ptk *ptk;
  1599. struct ieee802_1x_hdr *hdr;
  1600. struct wpa_eapol_key *key;
  1601. u8 *pos, *tmp;
  1602. const u8 *aad[1];
  1603. size_t aad_len[1];
  1604. if (*key_data_len < AES_BLOCK_SIZE) {
  1605. wpa_printf(MSG_INFO, "No room for AES-SIV data in the frame");
  1606. return -1;
  1607. }
  1608. if (sm->tptk_set)
  1609. ptk = &sm->tptk;
  1610. else if (sm->ptk_set)
  1611. ptk = &sm->ptk;
  1612. else
  1613. return -1;
  1614. hdr = (struct ieee802_1x_hdr *) buf;
  1615. key = (struct wpa_eapol_key *) (hdr + 1);
  1616. pos = (u8 *) (key + 1);
  1617. pos += 2; /* Pointing at the Encrypted Key Data field */
  1618. tmp = os_malloc(*key_data_len);
  1619. if (!tmp)
  1620. return -1;
  1621. /* AES-SIV AAD from EAPOL protocol version field (inclusive) to
  1622. * to Key Data (exclusive). */
  1623. aad[0] = buf;
  1624. aad_len[0] = pos - buf;
  1625. if (aes_siv_decrypt(ptk->kek, ptk->kek_len, pos, *key_data_len,
  1626. 1, aad, aad_len, tmp) < 0) {
  1627. wpa_printf(MSG_INFO, "Invalid AES-SIV data in the frame");
  1628. bin_clear_free(tmp, *key_data_len);
  1629. return -1;
  1630. }
  1631. /* AEAD decryption and validation completed successfully */
  1632. (*key_data_len) -= AES_BLOCK_SIZE;
  1633. wpa_hexdump_key(MSG_DEBUG, "WPA: Decrypted Key Data",
  1634. tmp, *key_data_len);
  1635. /* Replace Key Data field with the decrypted version */
  1636. os_memcpy(pos, tmp, *key_data_len);
  1637. pos -= 2; /* Key Data Length field */
  1638. WPA_PUT_BE16(pos, *key_data_len);
  1639. bin_clear_free(tmp, *key_data_len);
  1640. if (sm->tptk_set) {
  1641. sm->tptk_set = 0;
  1642. sm->ptk_set = 1;
  1643. os_memcpy(&sm->ptk, &sm->tptk, sizeof(sm->ptk));
  1644. os_memset(&sm->tptk, 0, sizeof(sm->tptk));
  1645. }
  1646. os_memcpy(sm->rx_replay_counter, key->replay_counter,
  1647. WPA_REPLAY_COUNTER_LEN);
  1648. sm->rx_replay_counter_set = 1;
  1649. return 0;
  1650. }
  1651. #endif /* CONFIG_FILS */
  1652. /**
  1653. * wpa_sm_rx_eapol - Process received WPA EAPOL frames
  1654. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  1655. * @src_addr: Source MAC address of the EAPOL packet
  1656. * @buf: Pointer to the beginning of the EAPOL data (EAPOL header)
  1657. * @len: Length of the EAPOL frame
  1658. * Returns: 1 = WPA EAPOL-Key processed, 0 = not a WPA EAPOL-Key, -1 failure
  1659. *
  1660. * This function is called for each received EAPOL frame. Other than EAPOL-Key
  1661. * frames can be skipped if filtering is done elsewhere. wpa_sm_rx_eapol() is
  1662. * only processing WPA and WPA2 EAPOL-Key frames.
  1663. *
  1664. * The received EAPOL-Key packets are validated and valid packets are replied
  1665. * to. In addition, key material (PTK, GTK) is configured at the end of a
  1666. * successful key handshake.
  1667. */
  1668. int wpa_sm_rx_eapol(struct wpa_sm *sm, const u8 *src_addr,
  1669. const u8 *buf, size_t len)
  1670. {
  1671. size_t plen, data_len, key_data_len;
  1672. const struct ieee802_1x_hdr *hdr;
  1673. struct wpa_eapol_key *key;
  1674. u16 key_info, ver;
  1675. u8 *tmp = NULL;
  1676. int ret = -1;
  1677. struct wpa_peerkey *peerkey = NULL;
  1678. u8 *mic, *key_data;
  1679. size_t mic_len, keyhdrlen;
  1680. #ifdef CONFIG_IEEE80211R
  1681. sm->ft_completed = 0;
  1682. #endif /* CONFIG_IEEE80211R */
  1683. mic_len = wpa_mic_len(sm->key_mgmt);
  1684. keyhdrlen = sizeof(*key) + mic_len + 2;
  1685. if (len < sizeof(*hdr) + keyhdrlen) {
  1686. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  1687. "WPA: EAPOL frame too short to be a WPA "
  1688. "EAPOL-Key (len %lu, expecting at least %lu)",
  1689. (unsigned long) len,
  1690. (unsigned long) sizeof(*hdr) + keyhdrlen);
  1691. return 0;
  1692. }
  1693. hdr = (const struct ieee802_1x_hdr *) buf;
  1694. plen = be_to_host16(hdr->length);
  1695. data_len = plen + sizeof(*hdr);
  1696. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  1697. "IEEE 802.1X RX: version=%d type=%d length=%lu",
  1698. hdr->version, hdr->type, (unsigned long) plen);
  1699. if (hdr->version < EAPOL_VERSION) {
  1700. /* TODO: backwards compatibility */
  1701. }
  1702. if (hdr->type != IEEE802_1X_TYPE_EAPOL_KEY) {
  1703. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  1704. "WPA: EAPOL frame (type %u) discarded, "
  1705. "not a Key frame", hdr->type);
  1706. ret = 0;
  1707. goto out;
  1708. }
  1709. wpa_hexdump(MSG_MSGDUMP, "WPA: RX EAPOL-Key", buf, len);
  1710. if (plen > len - sizeof(*hdr) || plen < keyhdrlen) {
  1711. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  1712. "WPA: EAPOL frame payload size %lu "
  1713. "invalid (frame size %lu)",
  1714. (unsigned long) plen, (unsigned long) len);
  1715. ret = 0;
  1716. goto out;
  1717. }
  1718. if (data_len < len) {
  1719. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  1720. "WPA: ignoring %lu bytes after the IEEE 802.1X data",
  1721. (unsigned long) len - data_len);
  1722. }
  1723. /*
  1724. * Make a copy of the frame since we need to modify the buffer during
  1725. * MAC validation and Key Data decryption.
  1726. */
  1727. tmp = os_memdup(buf, data_len);
  1728. if (tmp == NULL)
  1729. goto out;
  1730. key = (struct wpa_eapol_key *) (tmp + sizeof(struct ieee802_1x_hdr));
  1731. mic = (u8 *) (key + 1);
  1732. key_data = mic + mic_len + 2;
  1733. if (key->type != EAPOL_KEY_TYPE_WPA && key->type != EAPOL_KEY_TYPE_RSN)
  1734. {
  1735. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  1736. "WPA: EAPOL-Key type (%d) unknown, discarded",
  1737. key->type);
  1738. ret = 0;
  1739. goto out;
  1740. }
  1741. key_data_len = WPA_GET_BE16(mic + mic_len);
  1742. wpa_eapol_key_dump(sm, key, key_data_len, mic, mic_len);
  1743. if (key_data_len > plen - keyhdrlen) {
  1744. wpa_msg(sm->ctx->msg_ctx, MSG_INFO, "WPA: Invalid EAPOL-Key "
  1745. "frame - key_data overflow (%u > %u)",
  1746. (unsigned int) key_data_len,
  1747. (unsigned int) (plen - keyhdrlen));
  1748. goto out;
  1749. }
  1750. eapol_sm_notify_lower_layer_success(sm->eapol, 0);
  1751. key_info = WPA_GET_BE16(key->key_info);
  1752. ver = key_info & WPA_KEY_INFO_TYPE_MASK;
  1753. if (ver != WPA_KEY_INFO_TYPE_HMAC_MD5_RC4 &&
  1754. #if defined(CONFIG_IEEE80211R) || defined(CONFIG_IEEE80211W)
  1755. ver != WPA_KEY_INFO_TYPE_AES_128_CMAC &&
  1756. #endif /* CONFIG_IEEE80211R || CONFIG_IEEE80211W */
  1757. ver != WPA_KEY_INFO_TYPE_HMAC_SHA1_AES &&
  1758. !wpa_key_mgmt_suite_b(sm->key_mgmt) &&
  1759. !wpa_key_mgmt_fils(sm->key_mgmt) &&
  1760. sm->key_mgmt != WPA_KEY_MGMT_OWE &&
  1761. sm->key_mgmt != WPA_KEY_MGMT_OSEN) {
  1762. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1763. "WPA: Unsupported EAPOL-Key descriptor version %d",
  1764. ver);
  1765. goto out;
  1766. }
  1767. if (sm->key_mgmt == WPA_KEY_MGMT_OSEN &&
  1768. ver != WPA_KEY_INFO_TYPE_AKM_DEFINED) {
  1769. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1770. "OSEN: Unsupported EAPOL-Key descriptor version %d",
  1771. ver);
  1772. goto out;
  1773. }
  1774. if ((wpa_key_mgmt_suite_b(sm->key_mgmt) ||
  1775. wpa_key_mgmt_fils(sm->key_mgmt) ||
  1776. sm->key_mgmt == WPA_KEY_MGMT_OWE) &&
  1777. ver != WPA_KEY_INFO_TYPE_AKM_DEFINED) {
  1778. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1779. "RSN: Unsupported EAPOL-Key descriptor version %d (expected AKM defined = 0)",
  1780. ver);
  1781. goto out;
  1782. }
  1783. #ifdef CONFIG_IEEE80211R
  1784. if (wpa_key_mgmt_ft(sm->key_mgmt)) {
  1785. /* IEEE 802.11r uses a new key_info type (AES-128-CMAC). */
  1786. if (ver != WPA_KEY_INFO_TYPE_AES_128_CMAC) {
  1787. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1788. "FT: AP did not use AES-128-CMAC");
  1789. goto out;
  1790. }
  1791. } else
  1792. #endif /* CONFIG_IEEE80211R */
  1793. #ifdef CONFIG_IEEE80211W
  1794. if (wpa_key_mgmt_sha256(sm->key_mgmt)) {
  1795. if (ver != WPA_KEY_INFO_TYPE_AES_128_CMAC &&
  1796. sm->key_mgmt != WPA_KEY_MGMT_OSEN &&
  1797. !wpa_key_mgmt_fils(sm->key_mgmt) &&
  1798. !wpa_key_mgmt_suite_b(sm->key_mgmt)) {
  1799. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1800. "WPA: AP did not use the "
  1801. "negotiated AES-128-CMAC");
  1802. goto out;
  1803. }
  1804. } else
  1805. #endif /* CONFIG_IEEE80211W */
  1806. if (sm->pairwise_cipher == WPA_CIPHER_CCMP &&
  1807. !wpa_key_mgmt_suite_b(sm->key_mgmt) &&
  1808. !wpa_key_mgmt_fils(sm->key_mgmt) &&
  1809. sm->key_mgmt != WPA_KEY_MGMT_OWE &&
  1810. ver != WPA_KEY_INFO_TYPE_HMAC_SHA1_AES) {
  1811. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1812. "WPA: CCMP is used, but EAPOL-Key "
  1813. "descriptor version (%d) is not 2", ver);
  1814. if (sm->group_cipher != WPA_CIPHER_CCMP &&
  1815. !(key_info & WPA_KEY_INFO_KEY_TYPE)) {
  1816. /* Earlier versions of IEEE 802.11i did not explicitly
  1817. * require version 2 descriptor for all EAPOL-Key
  1818. * packets, so allow group keys to use version 1 if
  1819. * CCMP is not used for them. */
  1820. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1821. "WPA: Backwards compatibility: allow invalid "
  1822. "version for non-CCMP group keys");
  1823. } else if (ver == WPA_KEY_INFO_TYPE_AES_128_CMAC) {
  1824. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1825. "WPA: Interoperability workaround: allow incorrect (should have been HMAC-SHA1), but stronger (is AES-128-CMAC), descriptor version to be used");
  1826. } else
  1827. goto out;
  1828. } else if (sm->pairwise_cipher == WPA_CIPHER_GCMP &&
  1829. !wpa_key_mgmt_suite_b(sm->key_mgmt) &&
  1830. ver != WPA_KEY_INFO_TYPE_HMAC_SHA1_AES) {
  1831. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1832. "WPA: GCMP is used, but EAPOL-Key "
  1833. "descriptor version (%d) is not 2", ver);
  1834. goto out;
  1835. }
  1836. #ifdef CONFIG_PEERKEY
  1837. for (peerkey = sm->peerkey; peerkey; peerkey = peerkey->next) {
  1838. if (os_memcmp(peerkey->addr, src_addr, ETH_ALEN) == 0)
  1839. break;
  1840. }
  1841. if (!(key_info & WPA_KEY_INFO_SMK_MESSAGE) && peerkey) {
  1842. if (!peerkey->initiator && peerkey->replay_counter_set &&
  1843. os_memcmp(key->replay_counter, peerkey->replay_counter,
  1844. WPA_REPLAY_COUNTER_LEN) <= 0) {
  1845. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1846. "RSN: EAPOL-Key Replay Counter did not "
  1847. "increase (STK) - dropping packet");
  1848. goto out;
  1849. } else if (peerkey->initiator) {
  1850. u8 _tmp[WPA_REPLAY_COUNTER_LEN];
  1851. os_memcpy(_tmp, key->replay_counter,
  1852. WPA_REPLAY_COUNTER_LEN);
  1853. inc_byte_array(_tmp, WPA_REPLAY_COUNTER_LEN);
  1854. if (os_memcmp(_tmp, peerkey->replay_counter,
  1855. WPA_REPLAY_COUNTER_LEN) != 0) {
  1856. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  1857. "RSN: EAPOL-Key Replay "
  1858. "Counter did not match (STK) - "
  1859. "dropping packet");
  1860. goto out;
  1861. }
  1862. }
  1863. }
  1864. if (peerkey && peerkey->initiator && (key_info & WPA_KEY_INFO_ACK)) {
  1865. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1866. "RSN: Ack bit in key_info from STK peer");
  1867. goto out;
  1868. }
  1869. #endif /* CONFIG_PEERKEY */
  1870. if (!peerkey && sm->rx_replay_counter_set &&
  1871. os_memcmp(key->replay_counter, sm->rx_replay_counter,
  1872. WPA_REPLAY_COUNTER_LEN) <= 0) {
  1873. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1874. "WPA: EAPOL-Key Replay Counter did not increase - "
  1875. "dropping packet");
  1876. goto out;
  1877. }
  1878. if (!(key_info & (WPA_KEY_INFO_ACK | WPA_KEY_INFO_SMK_MESSAGE))
  1879. #ifdef CONFIG_PEERKEY
  1880. && (peerkey == NULL || !peerkey->initiator)
  1881. #endif /* CONFIG_PEERKEY */
  1882. ) {
  1883. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1884. "WPA: No Ack bit in key_info");
  1885. goto out;
  1886. }
  1887. if (key_info & WPA_KEY_INFO_REQUEST) {
  1888. wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
  1889. "WPA: EAPOL-Key with Request bit - dropped");
  1890. goto out;
  1891. }
  1892. if ((key_info & WPA_KEY_INFO_MIC) && !peerkey &&
  1893. wpa_supplicant_verify_eapol_key_mic(sm, key, ver, tmp, data_len))
  1894. goto out;
  1895. #ifdef CONFIG_PEERKEY
  1896. if ((key_info & WPA_KEY_INFO_MIC) && peerkey &&
  1897. peerkey_verify_eapol_key_mic(sm, peerkey, key, ver, tmp,
  1898. data_len))
  1899. goto out;
  1900. #endif /* CONFIG_PEERKEY */
  1901. #ifdef CONFIG_FILS
  1902. if (!mic_len && (key_info & WPA_KEY_INFO_ENCR_KEY_DATA)) {
  1903. if (wpa_supp_aead_decrypt(sm, tmp, data_len, &key_data_len))
  1904. goto out;
  1905. }
  1906. #endif /* CONFIG_FILS */
  1907. if ((sm->proto == WPA_PROTO_RSN || sm->proto == WPA_PROTO_OSEN) &&
  1908. (key_info & WPA_KEY_INFO_ENCR_KEY_DATA) && mic_len) {
  1909. if (wpa_supplicant_decrypt_key_data(sm, key, mic_len,
  1910. ver, key_data,
  1911. &key_data_len))
  1912. goto out;
  1913. }
  1914. if (key_info & WPA_KEY_INFO_KEY_TYPE) {
  1915. if (key_info & WPA_KEY_INFO_KEY_INDEX_MASK) {
  1916. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1917. "WPA: Ignored EAPOL-Key (Pairwise) with "
  1918. "non-zero key index");
  1919. goto out;
  1920. }
  1921. if (peerkey) {
  1922. /* PeerKey 4-Way Handshake */
  1923. peerkey_rx_eapol_4way(sm, peerkey, key, key_info, ver,
  1924. key_data, key_data_len);
  1925. } else if (key_info & (WPA_KEY_INFO_MIC |
  1926. WPA_KEY_INFO_ENCR_KEY_DATA)) {
  1927. /* 3/4 4-Way Handshake */
  1928. wpa_supplicant_process_3_of_4(sm, key, ver, key_data,
  1929. key_data_len);
  1930. } else {
  1931. /* 1/4 4-Way Handshake */
  1932. wpa_supplicant_process_1_of_4(sm, src_addr, key,
  1933. ver, key_data,
  1934. key_data_len);
  1935. }
  1936. } else if (key_info & WPA_KEY_INFO_SMK_MESSAGE) {
  1937. /* PeerKey SMK Handshake */
  1938. peerkey_rx_eapol_smk(sm, src_addr, key, key_data, key_data_len,
  1939. key_info, ver);
  1940. } else {
  1941. if ((mic_len && (key_info & WPA_KEY_INFO_MIC)) ||
  1942. (!mic_len && (key_info & WPA_KEY_INFO_ENCR_KEY_DATA))) {
  1943. /* 1/2 Group Key Handshake */
  1944. wpa_supplicant_process_1_of_2(sm, src_addr, key,
  1945. key_data, key_data_len,
  1946. ver);
  1947. } else {
  1948. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  1949. "WPA: EAPOL-Key (Group) without Mic/Encr bit - "
  1950. "dropped");
  1951. }
  1952. }
  1953. ret = 1;
  1954. out:
  1955. bin_clear_free(tmp, data_len);
  1956. return ret;
  1957. }
  1958. #ifdef CONFIG_CTRL_IFACE
  1959. static u32 wpa_key_mgmt_suite(struct wpa_sm *sm)
  1960. {
  1961. switch (sm->key_mgmt) {
  1962. case WPA_KEY_MGMT_IEEE8021X:
  1963. return ((sm->proto == WPA_PROTO_RSN ||
  1964. sm->proto == WPA_PROTO_OSEN) ?
  1965. RSN_AUTH_KEY_MGMT_UNSPEC_802_1X :
  1966. WPA_AUTH_KEY_MGMT_UNSPEC_802_1X);
  1967. case WPA_KEY_MGMT_PSK:
  1968. return (sm->proto == WPA_PROTO_RSN ?
  1969. RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X :
  1970. WPA_AUTH_KEY_MGMT_PSK_OVER_802_1X);
  1971. #ifdef CONFIG_IEEE80211R
  1972. case WPA_KEY_MGMT_FT_IEEE8021X:
  1973. return RSN_AUTH_KEY_MGMT_FT_802_1X;
  1974. case WPA_KEY_MGMT_FT_PSK:
  1975. return RSN_AUTH_KEY_MGMT_FT_PSK;
  1976. #endif /* CONFIG_IEEE80211R */
  1977. #ifdef CONFIG_IEEE80211W
  1978. case WPA_KEY_MGMT_IEEE8021X_SHA256:
  1979. return RSN_AUTH_KEY_MGMT_802_1X_SHA256;
  1980. case WPA_KEY_MGMT_PSK_SHA256:
  1981. return RSN_AUTH_KEY_MGMT_PSK_SHA256;
  1982. #endif /* CONFIG_IEEE80211W */
  1983. case WPA_KEY_MGMT_CCKM:
  1984. return (sm->proto == WPA_PROTO_RSN ?
  1985. RSN_AUTH_KEY_MGMT_CCKM:
  1986. WPA_AUTH_KEY_MGMT_CCKM);
  1987. case WPA_KEY_MGMT_WPA_NONE:
  1988. return WPA_AUTH_KEY_MGMT_NONE;
  1989. case WPA_KEY_MGMT_IEEE8021X_SUITE_B:
  1990. return RSN_AUTH_KEY_MGMT_802_1X_SUITE_B;
  1991. case WPA_KEY_MGMT_IEEE8021X_SUITE_B_192:
  1992. return RSN_AUTH_KEY_MGMT_802_1X_SUITE_B_192;
  1993. default:
  1994. return 0;
  1995. }
  1996. }
  1997. #define RSN_SUITE "%02x-%02x-%02x-%d"
  1998. #define RSN_SUITE_ARG(s) \
  1999. ((s) >> 24) & 0xff, ((s) >> 16) & 0xff, ((s) >> 8) & 0xff, (s) & 0xff
  2000. /**
  2001. * wpa_sm_get_mib - Dump text list of MIB entries
  2002. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2003. * @buf: Buffer for the list
  2004. * @buflen: Length of the buffer
  2005. * Returns: Number of bytes written to buffer
  2006. *
  2007. * This function is used fetch dot11 MIB variables.
  2008. */
  2009. int wpa_sm_get_mib(struct wpa_sm *sm, char *buf, size_t buflen)
  2010. {
  2011. char pmkid_txt[PMKID_LEN * 2 + 1];
  2012. int rsna, ret;
  2013. size_t len;
  2014. if (sm->cur_pmksa) {
  2015. wpa_snprintf_hex(pmkid_txt, sizeof(pmkid_txt),
  2016. sm->cur_pmksa->pmkid, PMKID_LEN);
  2017. } else
  2018. pmkid_txt[0] = '\0';
  2019. if ((wpa_key_mgmt_wpa_psk(sm->key_mgmt) ||
  2020. wpa_key_mgmt_wpa_ieee8021x(sm->key_mgmt)) &&
  2021. sm->proto == WPA_PROTO_RSN)
  2022. rsna = 1;
  2023. else
  2024. rsna = 0;
  2025. ret = os_snprintf(buf, buflen,
  2026. "dot11RSNAOptionImplemented=TRUE\n"
  2027. "dot11RSNAPreauthenticationImplemented=TRUE\n"
  2028. "dot11RSNAEnabled=%s\n"
  2029. "dot11RSNAPreauthenticationEnabled=%s\n"
  2030. "dot11RSNAConfigVersion=%d\n"
  2031. "dot11RSNAConfigPairwiseKeysSupported=5\n"
  2032. "dot11RSNAConfigGroupCipherSize=%d\n"
  2033. "dot11RSNAConfigPMKLifetime=%d\n"
  2034. "dot11RSNAConfigPMKReauthThreshold=%d\n"
  2035. "dot11RSNAConfigNumberOfPTKSAReplayCounters=1\n"
  2036. "dot11RSNAConfigSATimeout=%d\n",
  2037. rsna ? "TRUE" : "FALSE",
  2038. rsna ? "TRUE" : "FALSE",
  2039. RSN_VERSION,
  2040. wpa_cipher_key_len(sm->group_cipher) * 8,
  2041. sm->dot11RSNAConfigPMKLifetime,
  2042. sm->dot11RSNAConfigPMKReauthThreshold,
  2043. sm->dot11RSNAConfigSATimeout);
  2044. if (os_snprintf_error(buflen, ret))
  2045. return 0;
  2046. len = ret;
  2047. ret = os_snprintf(
  2048. buf + len, buflen - len,
  2049. "dot11RSNAAuthenticationSuiteSelected=" RSN_SUITE "\n"
  2050. "dot11RSNAPairwiseCipherSelected=" RSN_SUITE "\n"
  2051. "dot11RSNAGroupCipherSelected=" RSN_SUITE "\n"
  2052. "dot11RSNAPMKIDUsed=%s\n"
  2053. "dot11RSNAAuthenticationSuiteRequested=" RSN_SUITE "\n"
  2054. "dot11RSNAPairwiseCipherRequested=" RSN_SUITE "\n"
  2055. "dot11RSNAGroupCipherRequested=" RSN_SUITE "\n"
  2056. "dot11RSNAConfigNumberOfGTKSAReplayCounters=0\n"
  2057. "dot11RSNA4WayHandshakeFailures=%u\n",
  2058. RSN_SUITE_ARG(wpa_key_mgmt_suite(sm)),
  2059. RSN_SUITE_ARG(wpa_cipher_to_suite(sm->proto,
  2060. sm->pairwise_cipher)),
  2061. RSN_SUITE_ARG(wpa_cipher_to_suite(sm->proto,
  2062. sm->group_cipher)),
  2063. pmkid_txt,
  2064. RSN_SUITE_ARG(wpa_key_mgmt_suite(sm)),
  2065. RSN_SUITE_ARG(wpa_cipher_to_suite(sm->proto,
  2066. sm->pairwise_cipher)),
  2067. RSN_SUITE_ARG(wpa_cipher_to_suite(sm->proto,
  2068. sm->group_cipher)),
  2069. sm->dot11RSNA4WayHandshakeFailures);
  2070. if (!os_snprintf_error(buflen - len, ret))
  2071. len += ret;
  2072. return (int) len;
  2073. }
  2074. #endif /* CONFIG_CTRL_IFACE */
  2075. static void wpa_sm_pmksa_free_cb(struct rsn_pmksa_cache_entry *entry,
  2076. void *ctx, enum pmksa_free_reason reason)
  2077. {
  2078. struct wpa_sm *sm = ctx;
  2079. int deauth = 0;
  2080. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "RSN: PMKSA cache entry free_cb: "
  2081. MACSTR " reason=%d", MAC2STR(entry->aa), reason);
  2082. if (sm->cur_pmksa == entry) {
  2083. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  2084. "RSN: %s current PMKSA entry",
  2085. reason == PMKSA_REPLACE ? "replaced" : "removed");
  2086. pmksa_cache_clear_current(sm);
  2087. /*
  2088. * If an entry is simply being replaced, there's no need to
  2089. * deauthenticate because it will be immediately re-added.
  2090. * This happens when EAP authentication is completed again
  2091. * (reauth or failed PMKSA caching attempt).
  2092. */
  2093. if (reason != PMKSA_REPLACE)
  2094. deauth = 1;
  2095. }
  2096. if (reason == PMKSA_EXPIRE &&
  2097. (sm->pmk_len == entry->pmk_len &&
  2098. os_memcmp(sm->pmk, entry->pmk, sm->pmk_len) == 0)) {
  2099. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  2100. "RSN: deauthenticating due to expired PMK");
  2101. pmksa_cache_clear_current(sm);
  2102. deauth = 1;
  2103. }
  2104. if (deauth) {
  2105. os_memset(sm->pmk, 0, sizeof(sm->pmk));
  2106. wpa_sm_deauthenticate(sm, WLAN_REASON_UNSPECIFIED);
  2107. }
  2108. }
  2109. /**
  2110. * wpa_sm_init - Initialize WPA state machine
  2111. * @ctx: Context pointer for callbacks; this needs to be an allocated buffer
  2112. * Returns: Pointer to the allocated WPA state machine data
  2113. *
  2114. * This function is used to allocate a new WPA state machine and the returned
  2115. * value is passed to all WPA state machine calls.
  2116. */
  2117. struct wpa_sm * wpa_sm_init(struct wpa_sm_ctx *ctx)
  2118. {
  2119. struct wpa_sm *sm;
  2120. sm = os_zalloc(sizeof(*sm));
  2121. if (sm == NULL)
  2122. return NULL;
  2123. dl_list_init(&sm->pmksa_candidates);
  2124. sm->renew_snonce = 1;
  2125. sm->ctx = ctx;
  2126. sm->dot11RSNAConfigPMKLifetime = 43200;
  2127. sm->dot11RSNAConfigPMKReauthThreshold = 70;
  2128. sm->dot11RSNAConfigSATimeout = 60;
  2129. sm->pmksa = pmksa_cache_init(wpa_sm_pmksa_free_cb, sm, sm);
  2130. if (sm->pmksa == NULL) {
  2131. wpa_msg(sm->ctx->msg_ctx, MSG_ERROR,
  2132. "RSN: PMKSA cache initialization failed");
  2133. os_free(sm);
  2134. return NULL;
  2135. }
  2136. return sm;
  2137. }
  2138. /**
  2139. * wpa_sm_deinit - Deinitialize WPA state machine
  2140. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2141. */
  2142. void wpa_sm_deinit(struct wpa_sm *sm)
  2143. {
  2144. if (sm == NULL)
  2145. return;
  2146. pmksa_cache_deinit(sm->pmksa);
  2147. eloop_cancel_timeout(wpa_sm_start_preauth, sm, NULL);
  2148. eloop_cancel_timeout(wpa_sm_rekey_ptk, sm, NULL);
  2149. os_free(sm->assoc_wpa_ie);
  2150. os_free(sm->ap_wpa_ie);
  2151. os_free(sm->ap_rsn_ie);
  2152. wpa_sm_drop_sa(sm);
  2153. os_free(sm->ctx);
  2154. peerkey_deinit(sm);
  2155. #ifdef CONFIG_IEEE80211R
  2156. os_free(sm->assoc_resp_ies);
  2157. #endif /* CONFIG_IEEE80211R */
  2158. #ifdef CONFIG_TESTING_OPTIONS
  2159. wpabuf_free(sm->test_assoc_ie);
  2160. #endif /* CONFIG_TESTING_OPTIONS */
  2161. #ifdef CONFIG_OWE
  2162. crypto_ecdh_deinit(sm->owe_ecdh);
  2163. #endif /* CONFIG_OWE */
  2164. os_free(sm);
  2165. }
  2166. /**
  2167. * wpa_sm_notify_assoc - Notify WPA state machine about association
  2168. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2169. * @bssid: The BSSID of the new association
  2170. *
  2171. * This function is called to let WPA state machine know that the connection
  2172. * was established.
  2173. */
  2174. void wpa_sm_notify_assoc(struct wpa_sm *sm, const u8 *bssid)
  2175. {
  2176. int clear_ptk = 1;
  2177. if (sm == NULL)
  2178. return;
  2179. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  2180. "WPA: Association event - clear replay counter");
  2181. os_memcpy(sm->bssid, bssid, ETH_ALEN);
  2182. os_memset(sm->rx_replay_counter, 0, WPA_REPLAY_COUNTER_LEN);
  2183. sm->rx_replay_counter_set = 0;
  2184. sm->renew_snonce = 1;
  2185. if (os_memcmp(sm->preauth_bssid, bssid, ETH_ALEN) == 0)
  2186. rsn_preauth_deinit(sm);
  2187. #ifdef CONFIG_IEEE80211R
  2188. if (wpa_ft_is_completed(sm)) {
  2189. /*
  2190. * Clear portValid to kick EAPOL state machine to re-enter
  2191. * AUTHENTICATED state to get the EAPOL port Authorized.
  2192. */
  2193. eapol_sm_notify_portValid(sm->eapol, FALSE);
  2194. wpa_supplicant_key_neg_complete(sm, sm->bssid, 1);
  2195. /* Prepare for the next transition */
  2196. wpa_ft_prepare_auth_request(sm, NULL);
  2197. clear_ptk = 0;
  2198. }
  2199. #endif /* CONFIG_IEEE80211R */
  2200. #ifdef CONFIG_FILS
  2201. if (sm->fils_completed) {
  2202. /*
  2203. * Clear portValid to kick EAPOL state machine to re-enter
  2204. * AUTHENTICATED state to get the EAPOL port Authorized.
  2205. */
  2206. wpa_supplicant_key_neg_complete(sm, sm->bssid, 1);
  2207. clear_ptk = 0;
  2208. }
  2209. #endif /* CONFIG_FILS */
  2210. if (clear_ptk) {
  2211. /*
  2212. * IEEE 802.11, 8.4.10: Delete PTK SA on (re)association if
  2213. * this is not part of a Fast BSS Transition.
  2214. */
  2215. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "WPA: Clear old PTK");
  2216. sm->ptk_set = 0;
  2217. os_memset(&sm->ptk, 0, sizeof(sm->ptk));
  2218. sm->tptk_set = 0;
  2219. os_memset(&sm->tptk, 0, sizeof(sm->tptk));
  2220. }
  2221. #ifdef CONFIG_TDLS
  2222. wpa_tdls_assoc(sm);
  2223. #endif /* CONFIG_TDLS */
  2224. #ifdef CONFIG_P2P
  2225. os_memset(sm->p2p_ip_addr, 0, sizeof(sm->p2p_ip_addr));
  2226. #endif /* CONFIG_P2P */
  2227. }
  2228. /**
  2229. * wpa_sm_notify_disassoc - Notify WPA state machine about disassociation
  2230. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2231. *
  2232. * This function is called to let WPA state machine know that the connection
  2233. * was lost. This will abort any existing pre-authentication session.
  2234. */
  2235. void wpa_sm_notify_disassoc(struct wpa_sm *sm)
  2236. {
  2237. eloop_cancel_timeout(wpa_sm_start_preauth, sm, NULL);
  2238. eloop_cancel_timeout(wpa_sm_rekey_ptk, sm, NULL);
  2239. peerkey_deinit(sm);
  2240. rsn_preauth_deinit(sm);
  2241. pmksa_cache_clear_current(sm);
  2242. if (wpa_sm_get_state(sm) == WPA_4WAY_HANDSHAKE)
  2243. sm->dot11RSNA4WayHandshakeFailures++;
  2244. #ifdef CONFIG_TDLS
  2245. wpa_tdls_disassoc(sm);
  2246. #endif /* CONFIG_TDLS */
  2247. #ifdef CONFIG_FILS
  2248. sm->fils_completed = 0;
  2249. #endif /* CONFIG_FILS */
  2250. /* Keys are not needed in the WPA state machine anymore */
  2251. wpa_sm_drop_sa(sm);
  2252. sm->msg_3_of_4_ok = 0;
  2253. }
  2254. /**
  2255. * wpa_sm_set_pmk - Set PMK
  2256. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2257. * @pmk: The new PMK
  2258. * @pmk_len: The length of the new PMK in bytes
  2259. * @pmkid: Calculated PMKID
  2260. * @bssid: AA to add into PMKSA cache or %NULL to not cache the PMK
  2261. *
  2262. * Configure the PMK for WPA state machine.
  2263. */
  2264. void wpa_sm_set_pmk(struct wpa_sm *sm, const u8 *pmk, size_t pmk_len,
  2265. const u8 *pmkid, const u8 *bssid)
  2266. {
  2267. if (sm == NULL)
  2268. return;
  2269. sm->pmk_len = pmk_len;
  2270. os_memcpy(sm->pmk, pmk, pmk_len);
  2271. #ifdef CONFIG_IEEE80211R
  2272. /* Set XXKey to be PSK for FT key derivation */
  2273. sm->xxkey_len = pmk_len;
  2274. os_memcpy(sm->xxkey, pmk, pmk_len);
  2275. #endif /* CONFIG_IEEE80211R */
  2276. if (bssid) {
  2277. pmksa_cache_add(sm->pmksa, pmk, pmk_len, pmkid, NULL, 0,
  2278. bssid, sm->own_addr,
  2279. sm->network_ctx, sm->key_mgmt, NULL);
  2280. }
  2281. }
  2282. /**
  2283. * wpa_sm_set_pmk_from_pmksa - Set PMK based on the current PMKSA
  2284. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2285. *
  2286. * Take the PMK from the current PMKSA into use. If no PMKSA is active, the PMK
  2287. * will be cleared.
  2288. */
  2289. void wpa_sm_set_pmk_from_pmksa(struct wpa_sm *sm)
  2290. {
  2291. if (sm == NULL)
  2292. return;
  2293. if (sm->cur_pmksa) {
  2294. sm->pmk_len = sm->cur_pmksa->pmk_len;
  2295. os_memcpy(sm->pmk, sm->cur_pmksa->pmk, sm->pmk_len);
  2296. } else {
  2297. sm->pmk_len = PMK_LEN;
  2298. os_memset(sm->pmk, 0, PMK_LEN);
  2299. }
  2300. }
  2301. /**
  2302. * wpa_sm_set_fast_reauth - Set fast reauthentication (EAP) enabled/disabled
  2303. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2304. * @fast_reauth: Whether fast reauthentication (EAP) is allowed
  2305. */
  2306. void wpa_sm_set_fast_reauth(struct wpa_sm *sm, int fast_reauth)
  2307. {
  2308. if (sm)
  2309. sm->fast_reauth = fast_reauth;
  2310. }
  2311. /**
  2312. * wpa_sm_set_scard_ctx - Set context pointer for smartcard callbacks
  2313. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2314. * @scard_ctx: Context pointer for smartcard related callback functions
  2315. */
  2316. void wpa_sm_set_scard_ctx(struct wpa_sm *sm, void *scard_ctx)
  2317. {
  2318. if (sm == NULL)
  2319. return;
  2320. sm->scard_ctx = scard_ctx;
  2321. if (sm->preauth_eapol)
  2322. eapol_sm_register_scard_ctx(sm->preauth_eapol, scard_ctx);
  2323. }
  2324. /**
  2325. * wpa_sm_set_config - Notification of current configration change
  2326. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2327. * @config: Pointer to current network configuration
  2328. *
  2329. * Notify WPA state machine that configuration has changed. config will be
  2330. * stored as a backpointer to network configuration. This can be %NULL to clear
  2331. * the stored pointed.
  2332. */
  2333. void wpa_sm_set_config(struct wpa_sm *sm, struct rsn_supp_config *config)
  2334. {
  2335. if (!sm)
  2336. return;
  2337. if (config) {
  2338. sm->network_ctx = config->network_ctx;
  2339. sm->peerkey_enabled = config->peerkey_enabled;
  2340. sm->allowed_pairwise_cipher = config->allowed_pairwise_cipher;
  2341. sm->proactive_key_caching = config->proactive_key_caching;
  2342. sm->eap_workaround = config->eap_workaround;
  2343. sm->eap_conf_ctx = config->eap_conf_ctx;
  2344. if (config->ssid) {
  2345. os_memcpy(sm->ssid, config->ssid, config->ssid_len);
  2346. sm->ssid_len = config->ssid_len;
  2347. } else
  2348. sm->ssid_len = 0;
  2349. sm->wpa_ptk_rekey = config->wpa_ptk_rekey;
  2350. sm->p2p = config->p2p;
  2351. sm->wpa_rsc_relaxation = config->wpa_rsc_relaxation;
  2352. #ifdef CONFIG_FILS
  2353. if (config->fils_cache_id) {
  2354. sm->fils_cache_id_set = 1;
  2355. os_memcpy(sm->fils_cache_id, config->fils_cache_id,
  2356. FILS_CACHE_ID_LEN);
  2357. } else {
  2358. sm->fils_cache_id_set = 0;
  2359. }
  2360. #endif /* CONFIG_FILS */
  2361. } else {
  2362. sm->network_ctx = NULL;
  2363. sm->peerkey_enabled = 0;
  2364. sm->allowed_pairwise_cipher = 0;
  2365. sm->proactive_key_caching = 0;
  2366. sm->eap_workaround = 0;
  2367. sm->eap_conf_ctx = NULL;
  2368. sm->ssid_len = 0;
  2369. sm->wpa_ptk_rekey = 0;
  2370. sm->p2p = 0;
  2371. sm->wpa_rsc_relaxation = 0;
  2372. }
  2373. }
  2374. /**
  2375. * wpa_sm_set_own_addr - Set own MAC address
  2376. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2377. * @addr: Own MAC address
  2378. */
  2379. void wpa_sm_set_own_addr(struct wpa_sm *sm, const u8 *addr)
  2380. {
  2381. if (sm)
  2382. os_memcpy(sm->own_addr, addr, ETH_ALEN);
  2383. }
  2384. /**
  2385. * wpa_sm_set_ifname - Set network interface name
  2386. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2387. * @ifname: Interface name
  2388. * @bridge_ifname: Optional bridge interface name (for pre-auth)
  2389. */
  2390. void wpa_sm_set_ifname(struct wpa_sm *sm, const char *ifname,
  2391. const char *bridge_ifname)
  2392. {
  2393. if (sm) {
  2394. sm->ifname = ifname;
  2395. sm->bridge_ifname = bridge_ifname;
  2396. }
  2397. }
  2398. /**
  2399. * wpa_sm_set_eapol - Set EAPOL state machine pointer
  2400. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2401. * @eapol: Pointer to EAPOL state machine allocated with eapol_sm_init()
  2402. */
  2403. void wpa_sm_set_eapol(struct wpa_sm *sm, struct eapol_sm *eapol)
  2404. {
  2405. if (sm)
  2406. sm->eapol = eapol;
  2407. }
  2408. /**
  2409. * wpa_sm_set_param - Set WPA state machine parameters
  2410. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2411. * @param: Parameter field
  2412. * @value: Parameter value
  2413. * Returns: 0 on success, -1 on failure
  2414. */
  2415. int wpa_sm_set_param(struct wpa_sm *sm, enum wpa_sm_conf_params param,
  2416. unsigned int value)
  2417. {
  2418. int ret = 0;
  2419. if (sm == NULL)
  2420. return -1;
  2421. switch (param) {
  2422. case RSNA_PMK_LIFETIME:
  2423. if (value > 0)
  2424. sm->dot11RSNAConfigPMKLifetime = value;
  2425. else
  2426. ret = -1;
  2427. break;
  2428. case RSNA_PMK_REAUTH_THRESHOLD:
  2429. if (value > 0 && value <= 100)
  2430. sm->dot11RSNAConfigPMKReauthThreshold = value;
  2431. else
  2432. ret = -1;
  2433. break;
  2434. case RSNA_SA_TIMEOUT:
  2435. if (value > 0)
  2436. sm->dot11RSNAConfigSATimeout = value;
  2437. else
  2438. ret = -1;
  2439. break;
  2440. case WPA_PARAM_PROTO:
  2441. sm->proto = value;
  2442. break;
  2443. case WPA_PARAM_PAIRWISE:
  2444. sm->pairwise_cipher = value;
  2445. break;
  2446. case WPA_PARAM_GROUP:
  2447. sm->group_cipher = value;
  2448. break;
  2449. case WPA_PARAM_KEY_MGMT:
  2450. sm->key_mgmt = value;
  2451. break;
  2452. #ifdef CONFIG_IEEE80211W
  2453. case WPA_PARAM_MGMT_GROUP:
  2454. sm->mgmt_group_cipher = value;
  2455. break;
  2456. #endif /* CONFIG_IEEE80211W */
  2457. case WPA_PARAM_RSN_ENABLED:
  2458. sm->rsn_enabled = value;
  2459. break;
  2460. case WPA_PARAM_MFP:
  2461. sm->mfp = value;
  2462. break;
  2463. default:
  2464. break;
  2465. }
  2466. return ret;
  2467. }
  2468. /**
  2469. * wpa_sm_get_status - Get WPA state machine
  2470. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2471. * @buf: Buffer for status information
  2472. * @buflen: Maximum buffer length
  2473. * @verbose: Whether to include verbose status information
  2474. * Returns: Number of bytes written to buf.
  2475. *
  2476. * Query WPA state machine for status information. This function fills in
  2477. * a text area with current status information. If the buffer (buf) is not
  2478. * large enough, status information will be truncated to fit the buffer.
  2479. */
  2480. int wpa_sm_get_status(struct wpa_sm *sm, char *buf, size_t buflen,
  2481. int verbose)
  2482. {
  2483. char *pos = buf, *end = buf + buflen;
  2484. int ret;
  2485. ret = os_snprintf(pos, end - pos,
  2486. "pairwise_cipher=%s\n"
  2487. "group_cipher=%s\n"
  2488. "key_mgmt=%s\n",
  2489. wpa_cipher_txt(sm->pairwise_cipher),
  2490. wpa_cipher_txt(sm->group_cipher),
  2491. wpa_key_mgmt_txt(sm->key_mgmt, sm->proto));
  2492. if (os_snprintf_error(end - pos, ret))
  2493. return pos - buf;
  2494. pos += ret;
  2495. if (sm->mfp != NO_MGMT_FRAME_PROTECTION && sm->ap_rsn_ie) {
  2496. struct wpa_ie_data rsn;
  2497. if (wpa_parse_wpa_ie_rsn(sm->ap_rsn_ie, sm->ap_rsn_ie_len, &rsn)
  2498. >= 0 &&
  2499. rsn.capabilities & (WPA_CAPABILITY_MFPR |
  2500. WPA_CAPABILITY_MFPC)) {
  2501. ret = os_snprintf(pos, end - pos, "pmf=%d\n",
  2502. (rsn.capabilities &
  2503. WPA_CAPABILITY_MFPR) ? 2 : 1);
  2504. if (os_snprintf_error(end - pos, ret))
  2505. return pos - buf;
  2506. pos += ret;
  2507. }
  2508. }
  2509. return pos - buf;
  2510. }
  2511. int wpa_sm_pmf_enabled(struct wpa_sm *sm)
  2512. {
  2513. struct wpa_ie_data rsn;
  2514. if (sm->mfp == NO_MGMT_FRAME_PROTECTION || !sm->ap_rsn_ie)
  2515. return 0;
  2516. if (wpa_parse_wpa_ie_rsn(sm->ap_rsn_ie, sm->ap_rsn_ie_len, &rsn) >= 0 &&
  2517. rsn.capabilities & (WPA_CAPABILITY_MFPR | WPA_CAPABILITY_MFPC))
  2518. return 1;
  2519. return 0;
  2520. }
  2521. /**
  2522. * wpa_sm_set_assoc_wpa_ie_default - Generate own WPA/RSN IE from configuration
  2523. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2524. * @wpa_ie: Pointer to buffer for WPA/RSN IE
  2525. * @wpa_ie_len: Pointer to the length of the wpa_ie buffer
  2526. * Returns: 0 on success, -1 on failure
  2527. */
  2528. int wpa_sm_set_assoc_wpa_ie_default(struct wpa_sm *sm, u8 *wpa_ie,
  2529. size_t *wpa_ie_len)
  2530. {
  2531. int res;
  2532. if (sm == NULL)
  2533. return -1;
  2534. #ifdef CONFIG_TESTING_OPTIONS
  2535. if (sm->test_assoc_ie) {
  2536. wpa_printf(MSG_DEBUG,
  2537. "TESTING: Replace association WPA/RSN IE");
  2538. if (*wpa_ie_len < wpabuf_len(sm->test_assoc_ie))
  2539. return -1;
  2540. os_memcpy(wpa_ie, wpabuf_head(sm->test_assoc_ie),
  2541. wpabuf_len(sm->test_assoc_ie));
  2542. res = wpabuf_len(sm->test_assoc_ie);
  2543. } else
  2544. #endif /* CONFIG_TESTING_OPTIONS */
  2545. res = wpa_gen_wpa_ie(sm, wpa_ie, *wpa_ie_len);
  2546. if (res < 0)
  2547. return -1;
  2548. *wpa_ie_len = res;
  2549. wpa_hexdump(MSG_DEBUG, "WPA: Set own WPA IE default",
  2550. wpa_ie, *wpa_ie_len);
  2551. if (sm->assoc_wpa_ie == NULL) {
  2552. /*
  2553. * Make a copy of the WPA/RSN IE so that 4-Way Handshake gets
  2554. * the correct version of the IE even if PMKSA caching is
  2555. * aborted (which would remove PMKID from IE generation).
  2556. */
  2557. sm->assoc_wpa_ie = os_memdup(wpa_ie, *wpa_ie_len);
  2558. if (sm->assoc_wpa_ie == NULL)
  2559. return -1;
  2560. sm->assoc_wpa_ie_len = *wpa_ie_len;
  2561. } else {
  2562. wpa_hexdump(MSG_DEBUG,
  2563. "WPA: Leave previously set WPA IE default",
  2564. sm->assoc_wpa_ie, sm->assoc_wpa_ie_len);
  2565. }
  2566. return 0;
  2567. }
  2568. /**
  2569. * wpa_sm_set_assoc_wpa_ie - Set own WPA/RSN IE from (Re)AssocReq
  2570. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2571. * @ie: Pointer to IE data (starting from id)
  2572. * @len: IE length
  2573. * Returns: 0 on success, -1 on failure
  2574. *
  2575. * Inform WPA state machine about the WPA/RSN IE used in (Re)Association
  2576. * Request frame. The IE will be used to override the default value generated
  2577. * with wpa_sm_set_assoc_wpa_ie_default().
  2578. */
  2579. int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len)
  2580. {
  2581. if (sm == NULL)
  2582. return -1;
  2583. os_free(sm->assoc_wpa_ie);
  2584. if (ie == NULL || len == 0) {
  2585. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  2586. "WPA: clearing own WPA/RSN IE");
  2587. sm->assoc_wpa_ie = NULL;
  2588. sm->assoc_wpa_ie_len = 0;
  2589. } else {
  2590. wpa_hexdump(MSG_DEBUG, "WPA: set own WPA/RSN IE", ie, len);
  2591. sm->assoc_wpa_ie = os_memdup(ie, len);
  2592. if (sm->assoc_wpa_ie == NULL)
  2593. return -1;
  2594. sm->assoc_wpa_ie_len = len;
  2595. }
  2596. return 0;
  2597. }
  2598. /**
  2599. * wpa_sm_set_ap_wpa_ie - Set AP WPA IE from Beacon/ProbeResp
  2600. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2601. * @ie: Pointer to IE data (starting from id)
  2602. * @len: IE length
  2603. * Returns: 0 on success, -1 on failure
  2604. *
  2605. * Inform WPA state machine about the WPA IE used in Beacon / Probe Response
  2606. * frame.
  2607. */
  2608. int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len)
  2609. {
  2610. if (sm == NULL)
  2611. return -1;
  2612. os_free(sm->ap_wpa_ie);
  2613. if (ie == NULL || len == 0) {
  2614. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  2615. "WPA: clearing AP WPA IE");
  2616. sm->ap_wpa_ie = NULL;
  2617. sm->ap_wpa_ie_len = 0;
  2618. } else {
  2619. wpa_hexdump(MSG_DEBUG, "WPA: set AP WPA IE", ie, len);
  2620. sm->ap_wpa_ie = os_memdup(ie, len);
  2621. if (sm->ap_wpa_ie == NULL)
  2622. return -1;
  2623. sm->ap_wpa_ie_len = len;
  2624. }
  2625. return 0;
  2626. }
  2627. /**
  2628. * wpa_sm_set_ap_rsn_ie - Set AP RSN IE from Beacon/ProbeResp
  2629. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2630. * @ie: Pointer to IE data (starting from id)
  2631. * @len: IE length
  2632. * Returns: 0 on success, -1 on failure
  2633. *
  2634. * Inform WPA state machine about the RSN IE used in Beacon / Probe Response
  2635. * frame.
  2636. */
  2637. int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie, size_t len)
  2638. {
  2639. if (sm == NULL)
  2640. return -1;
  2641. os_free(sm->ap_rsn_ie);
  2642. if (ie == NULL || len == 0) {
  2643. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  2644. "WPA: clearing AP RSN IE");
  2645. sm->ap_rsn_ie = NULL;
  2646. sm->ap_rsn_ie_len = 0;
  2647. } else {
  2648. wpa_hexdump(MSG_DEBUG, "WPA: set AP RSN IE", ie, len);
  2649. sm->ap_rsn_ie = os_memdup(ie, len);
  2650. if (sm->ap_rsn_ie == NULL)
  2651. return -1;
  2652. sm->ap_rsn_ie_len = len;
  2653. }
  2654. return 0;
  2655. }
  2656. /**
  2657. * wpa_sm_parse_own_wpa_ie - Parse own WPA/RSN IE
  2658. * @sm: Pointer to WPA state machine data from wpa_sm_init()
  2659. * @data: Pointer to data area for parsing results
  2660. * Returns: 0 on success, -1 if IE is not known, or -2 on parsing failure
  2661. *
  2662. * Parse the contents of the own WPA or RSN IE from (Re)AssocReq and write the
  2663. * parsed data into data.
  2664. */
  2665. int wpa_sm_parse_own_wpa_ie(struct wpa_sm *sm, struct wpa_ie_data *data)
  2666. {
  2667. if (sm == NULL)
  2668. return -1;
  2669. if (sm->assoc_wpa_ie == NULL) {
  2670. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
  2671. "WPA: No WPA/RSN IE available from association info");
  2672. return -1;
  2673. }
  2674. if (wpa_parse_wpa_ie(sm->assoc_wpa_ie, sm->assoc_wpa_ie_len, data))
  2675. return -2;
  2676. return 0;
  2677. }
  2678. int wpa_sm_pmksa_cache_list(struct wpa_sm *sm, char *buf, size_t len)
  2679. {
  2680. return pmksa_cache_list(sm->pmksa, buf, len);
  2681. }
  2682. struct rsn_pmksa_cache_entry * wpa_sm_pmksa_cache_head(struct wpa_sm *sm)
  2683. {
  2684. return pmksa_cache_head(sm->pmksa);
  2685. }
  2686. struct rsn_pmksa_cache_entry *
  2687. wpa_sm_pmksa_cache_add_entry(struct wpa_sm *sm,
  2688. struct rsn_pmksa_cache_entry * entry)
  2689. {
  2690. return pmksa_cache_add_entry(sm->pmksa, entry);
  2691. }
  2692. void wpa_sm_drop_sa(struct wpa_sm *sm)
  2693. {
  2694. wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, "WPA: Clear old PMK and PTK");
  2695. sm->ptk_set = 0;
  2696. sm->tptk_set = 0;
  2697. os_memset(sm->pmk, 0, sizeof(sm->pmk));
  2698. os_memset(&sm->ptk, 0, sizeof(sm->ptk));
  2699. os_memset(&sm->tptk, 0, sizeof(sm->tptk));
  2700. #ifdef CONFIG_IEEE80211R
  2701. os_memset(sm->xxkey, 0, sizeof(sm->xxkey));
  2702. os_memset(sm->pmk_r0, 0, sizeof(sm->pmk_r0));
  2703. os_memset(sm->pmk_r1, 0, sizeof(sm->pmk_r1));
  2704. #endif /* CONFIG_IEEE80211R */
  2705. }
  2706. int wpa_sm_has_ptk(struct wpa_sm *sm)
  2707. {
  2708. if (sm == NULL)
  2709. return 0;
  2710. return sm->ptk_set;
  2711. }
  2712. void wpa_sm_update_replay_ctr(struct wpa_sm *sm, const u8 *replay_ctr)
  2713. {
  2714. os_memcpy(sm->rx_replay_counter, replay_ctr, WPA_REPLAY_COUNTER_LEN);
  2715. }
  2716. void wpa_sm_pmksa_cache_flush(struct wpa_sm *sm, void *network_ctx)
  2717. {
  2718. pmksa_cache_flush(sm->pmksa, network_ctx, NULL, 0);
  2719. }
  2720. #ifdef CONFIG_WNM
  2721. int wpa_wnmsleep_install_key(struct wpa_sm *sm, u8 subelem_id, u8 *buf)
  2722. {
  2723. u16 keyinfo;
  2724. u8 keylen; /* plaintext key len */
  2725. u8 *key_rsc;
  2726. if (subelem_id == WNM_SLEEP_SUBELEM_GTK) {
  2727. struct wpa_gtk_data gd;
  2728. os_memset(&gd, 0, sizeof(gd));
  2729. keylen = wpa_cipher_key_len(sm->group_cipher);
  2730. gd.key_rsc_len = wpa_cipher_rsc_len(sm->group_cipher);
  2731. gd.alg = wpa_cipher_to_alg(sm->group_cipher);
  2732. if (gd.alg == WPA_ALG_NONE) {
  2733. wpa_printf(MSG_DEBUG, "Unsupported group cipher suite");
  2734. return -1;
  2735. }
  2736. key_rsc = buf + 5;
  2737. keyinfo = WPA_GET_LE16(buf + 2);
  2738. gd.gtk_len = keylen;
  2739. if (gd.gtk_len != buf[4]) {
  2740. wpa_printf(MSG_DEBUG, "GTK len mismatch len %d vs %d",
  2741. gd.gtk_len, buf[4]);
  2742. return -1;
  2743. }
  2744. gd.keyidx = keyinfo & 0x03; /* B0 - B1 */
  2745. gd.tx = wpa_supplicant_gtk_tx_bit_workaround(
  2746. sm, !!(keyinfo & WPA_KEY_INFO_TXRX));
  2747. os_memcpy(gd.gtk, buf + 13, gd.gtk_len);
  2748. wpa_hexdump_key(MSG_DEBUG, "Install GTK (WNM SLEEP)",
  2749. gd.gtk, gd.gtk_len);
  2750. if (wpa_supplicant_install_gtk(sm, &gd, key_rsc)) {
  2751. os_memset(&gd, 0, sizeof(gd));
  2752. wpa_printf(MSG_DEBUG, "Failed to install the GTK in "
  2753. "WNM mode");
  2754. return -1;
  2755. }
  2756. os_memset(&gd, 0, sizeof(gd));
  2757. #ifdef CONFIG_IEEE80211W
  2758. } else if (subelem_id == WNM_SLEEP_SUBELEM_IGTK) {
  2759. struct wpa_igtk_kde igd;
  2760. u16 keyidx;
  2761. os_memset(&igd, 0, sizeof(igd));
  2762. keylen = wpa_cipher_key_len(sm->mgmt_group_cipher);
  2763. os_memcpy(igd.keyid, buf + 2, 2);
  2764. os_memcpy(igd.pn, buf + 4, 6);
  2765. keyidx = WPA_GET_LE16(igd.keyid);
  2766. os_memcpy(igd.igtk, buf + 10, keylen);
  2767. wpa_hexdump_key(MSG_DEBUG, "Install IGTK (WNM SLEEP)",
  2768. igd.igtk, keylen);
  2769. if (wpa_sm_set_key(sm, wpa_cipher_to_alg(sm->mgmt_group_cipher),
  2770. broadcast_ether_addr,
  2771. keyidx, 0, igd.pn, sizeof(igd.pn),
  2772. igd.igtk, keylen) < 0) {
  2773. wpa_printf(MSG_DEBUG, "Failed to install the IGTK in "
  2774. "WNM mode");
  2775. os_memset(&igd, 0, sizeof(igd));
  2776. return -1;
  2777. }
  2778. os_memset(&igd, 0, sizeof(igd));
  2779. #endif /* CONFIG_IEEE80211W */
  2780. } else {
  2781. wpa_printf(MSG_DEBUG, "Unknown element id");
  2782. return -1;
  2783. }
  2784. return 0;
  2785. }
  2786. #endif /* CONFIG_WNM */
  2787. #ifdef CONFIG_PEERKEY
  2788. int wpa_sm_rx_eapol_peerkey(struct wpa_sm *sm, const u8 *src_addr,
  2789. const u8 *buf, size_t len)
  2790. {
  2791. struct wpa_peerkey *peerkey;
  2792. for (peerkey = sm->peerkey; peerkey; peerkey = peerkey->next) {
  2793. if (os_memcmp(peerkey->addr, src_addr, ETH_ALEN) == 0)
  2794. break;
  2795. }
  2796. if (!peerkey)
  2797. return 0;
  2798. wpa_sm_rx_eapol(sm, src_addr, buf, len);
  2799. return 1;
  2800. }
  2801. #endif /* CONFIG_PEERKEY */
  2802. #ifdef CONFIG_P2P
  2803. int wpa_sm_get_p2p_ip_addr(struct wpa_sm *sm, u8 *buf)
  2804. {
  2805. if (sm == NULL || WPA_GET_BE32(sm->p2p_ip_addr) == 0)
  2806. return -1;
  2807. os_memcpy(buf, sm->p2p_ip_addr, 3 * 4);
  2808. return 0;
  2809. }
  2810. #endif /* CONFIG_P2P */
  2811. void wpa_sm_set_rx_replay_ctr(struct wpa_sm *sm, const u8 *rx_replay_counter)
  2812. {
  2813. if (rx_replay_counter == NULL)
  2814. return;
  2815. os_memcpy(sm->rx_replay_counter, rx_replay_counter,
  2816. WPA_REPLAY_COUNTER_LEN);
  2817. sm->rx_replay_counter_set = 1;
  2818. wpa_printf(MSG_DEBUG, "Updated key replay counter");
  2819. }
  2820. void wpa_sm_set_ptk_kck_kek(struct wpa_sm *sm,
  2821. const u8 *ptk_kck, size_t ptk_kck_len,
  2822. const u8 *ptk_kek, size_t ptk_kek_len)
  2823. {
  2824. if (ptk_kck && ptk_kck_len <= WPA_KCK_MAX_LEN) {
  2825. os_memcpy(sm->ptk.kck, ptk_kck, ptk_kck_len);
  2826. sm->ptk.kck_len = ptk_kck_len;
  2827. wpa_printf(MSG_DEBUG, "Updated PTK KCK");
  2828. }
  2829. if (ptk_kek && ptk_kek_len <= WPA_KEK_MAX_LEN) {
  2830. os_memcpy(sm->ptk.kek, ptk_kek, ptk_kek_len);
  2831. sm->ptk.kek_len = ptk_kek_len;
  2832. wpa_printf(MSG_DEBUG, "Updated PTK KEK");
  2833. }
  2834. sm->ptk_set = 1;
  2835. }
  2836. #ifdef CONFIG_TESTING_OPTIONS
  2837. void wpa_sm_set_test_assoc_ie(struct wpa_sm *sm, struct wpabuf *buf)
  2838. {
  2839. wpabuf_free(sm->test_assoc_ie);
  2840. sm->test_assoc_ie = buf;
  2841. }
  2842. #endif /* CONFIG_TESTING_OPTIONS */
  2843. #ifdef CONFIG_FILS
  2844. struct wpabuf * fils_build_auth(struct wpa_sm *sm)
  2845. {
  2846. struct wpabuf *buf = NULL;
  2847. struct wpabuf *erp_msg;
  2848. erp_msg = eapol_sm_build_erp_reauth_start(sm->eapol);
  2849. if (!erp_msg && !sm->cur_pmksa) {
  2850. wpa_printf(MSG_DEBUG,
  2851. "FILS: Neither ERP EAP-Initiate/Re-auth nor PMKSA cache entry is available - skip FILS");
  2852. goto fail;
  2853. }
  2854. wpa_printf(MSG_DEBUG, "FILS: Try to use FILS (erp=%d pmksa_cache=%d)",
  2855. erp_msg != NULL, sm->cur_pmksa != NULL);
  2856. sm->fils_completed = 0;
  2857. if (!sm->assoc_wpa_ie) {
  2858. wpa_printf(MSG_INFO, "FILS: No own RSN IE set for FILS");
  2859. goto fail;
  2860. }
  2861. if (random_get_bytes(sm->fils_nonce, FILS_NONCE_LEN) < 0 ||
  2862. random_get_bytes(sm->fils_session, FILS_SESSION_LEN) < 0)
  2863. goto fail;
  2864. wpa_hexdump(MSG_DEBUG, "FILS: Generated FILS Nonce",
  2865. sm->fils_nonce, FILS_NONCE_LEN);
  2866. wpa_hexdump(MSG_DEBUG, "FILS: Generated FILS Session",
  2867. sm->fils_session, FILS_SESSION_LEN);
  2868. buf = wpabuf_alloc(1000 + sm->assoc_wpa_ie_len);
  2869. if (!buf)
  2870. goto fail;
  2871. /* Fields following the Authentication algorithm number field */
  2872. /* Authentication Transaction seq# */
  2873. wpabuf_put_le16(buf, 1);
  2874. /* Status Code */
  2875. wpabuf_put_le16(buf, WLAN_STATUS_SUCCESS);
  2876. /* TODO: Finite Cyclic Group when using PK or PFS */
  2877. /* TODO: Element when using PK or PFS */
  2878. /* RSNE */
  2879. wpa_hexdump(MSG_DEBUG, "FILS: RSNE in FILS Authentication frame",
  2880. sm->assoc_wpa_ie, sm->assoc_wpa_ie_len);
  2881. wpabuf_put_data(buf, sm->assoc_wpa_ie, sm->assoc_wpa_ie_len);
  2882. /* TODO: MDE when using FILS for FT initial association */
  2883. /* TODO: FTE when using FILS for FT initial association */
  2884. /* FILS Nonce */
  2885. wpabuf_put_u8(buf, WLAN_EID_EXTENSION); /* Element ID */
  2886. wpabuf_put_u8(buf, 1 + FILS_NONCE_LEN); /* Length */
  2887. /* Element ID Extension */
  2888. wpabuf_put_u8(buf, WLAN_EID_EXT_FILS_NONCE);
  2889. wpabuf_put_data(buf, sm->fils_nonce, FILS_NONCE_LEN);
  2890. /* FILS Session */
  2891. wpabuf_put_u8(buf, WLAN_EID_EXTENSION); /* Element ID */
  2892. wpabuf_put_u8(buf, 1 + FILS_SESSION_LEN); /* Length */
  2893. /* Element ID Extension */
  2894. wpabuf_put_u8(buf, WLAN_EID_EXT_FILS_SESSION);
  2895. wpabuf_put_data(buf, sm->fils_session, FILS_SESSION_LEN);
  2896. /* FILS Wrapped Data */
  2897. sm->fils_erp_pmkid_set = 0;
  2898. if (erp_msg) {
  2899. wpabuf_put_u8(buf, WLAN_EID_EXTENSION); /* Element ID */
  2900. wpabuf_put_u8(buf, 1 + wpabuf_len(erp_msg)); /* Length */
  2901. /* Element ID Extension */
  2902. wpabuf_put_u8(buf, WLAN_EID_EXT_FILS_WRAPPED_DATA);
  2903. wpabuf_put_buf(buf, erp_msg);
  2904. /* Calculate pending PMKID here so that we do not need to
  2905. * maintain a copy of the EAP-Initiate/Reauth message. */
  2906. if (fils_pmkid_erp(sm->key_mgmt, wpabuf_head(erp_msg),
  2907. wpabuf_len(erp_msg),
  2908. sm->fils_erp_pmkid) == 0)
  2909. sm->fils_erp_pmkid_set = 1;
  2910. }
  2911. wpa_hexdump_buf(MSG_DEBUG, "RSN: FILS fields for Authentication frame",
  2912. buf);
  2913. fail:
  2914. wpabuf_free(erp_msg);
  2915. return buf;
  2916. }
  2917. int fils_process_auth(struct wpa_sm *sm, const u8 *bssid, const u8 *data,
  2918. size_t len)
  2919. {
  2920. const u8 *pos, *end;
  2921. struct ieee802_11_elems elems;
  2922. struct wpa_ie_data rsn;
  2923. int pmkid_match = 0;
  2924. u8 ick[FILS_ICK_MAX_LEN];
  2925. size_t ick_len;
  2926. int res;
  2927. os_memcpy(sm->bssid, bssid, ETH_ALEN);
  2928. wpa_hexdump(MSG_DEBUG, "FILS: Authentication frame fields",
  2929. data, len);
  2930. pos = data;
  2931. end = data + len;
  2932. /* TODO: Finite Cyclic Group when using PK or PFS */
  2933. /* TODO: Element when using PK or PFS */
  2934. wpa_hexdump(MSG_DEBUG, "FILS: Remaining IEs", pos, end - pos);
  2935. if (ieee802_11_parse_elems(pos, end - pos, &elems, 1) == ParseFailed) {
  2936. wpa_printf(MSG_DEBUG, "FILS: Could not parse elements");
  2937. return -1;
  2938. }
  2939. /* RSNE */
  2940. wpa_hexdump(MSG_DEBUG, "FILS: RSN element", elems.rsn_ie,
  2941. elems.rsn_ie_len);
  2942. if (!elems.rsn_ie ||
  2943. wpa_parse_wpa_ie_rsn(elems.rsn_ie - 2, elems.rsn_ie_len + 2,
  2944. &rsn) < 0) {
  2945. wpa_printf(MSG_DEBUG, "FILS: No RSN element");
  2946. return -1;
  2947. }
  2948. if (!elems.fils_nonce) {
  2949. wpa_printf(MSG_DEBUG, "FILS: No FILS Nonce field");
  2950. return -1;
  2951. }
  2952. os_memcpy(sm->fils_anonce, elems.fils_nonce, FILS_NONCE_LEN);
  2953. wpa_hexdump(MSG_DEBUG, "FILS: ANonce", sm->fils_anonce, FILS_NONCE_LEN);
  2954. /* TODO: MDE when using FILS+FT */
  2955. /* TODO: FTE when using FILS+FT */
  2956. /* PMKID List */
  2957. if (rsn.pmkid && rsn.num_pmkid > 0) {
  2958. wpa_hexdump(MSG_DEBUG, "FILS: PMKID List",
  2959. rsn.pmkid, rsn.num_pmkid * PMKID_LEN);
  2960. if (rsn.num_pmkid != 1) {
  2961. wpa_printf(MSG_DEBUG, "FILS: Invalid PMKID selection");
  2962. return -1;
  2963. }
  2964. wpa_hexdump(MSG_DEBUG, "FILS: PMKID", rsn.pmkid, PMKID_LEN);
  2965. if (os_memcmp(sm->cur_pmksa->pmkid, rsn.pmkid, PMKID_LEN) != 0)
  2966. {
  2967. wpa_printf(MSG_DEBUG, "FILS: PMKID mismatch");
  2968. wpa_hexdump(MSG_DEBUG, "FILS: Expected PMKID",
  2969. sm->cur_pmksa->pmkid, PMKID_LEN);
  2970. return -1;
  2971. }
  2972. wpa_printf(MSG_DEBUG,
  2973. "FILS: Matching PMKID - continue using PMKSA caching");
  2974. pmkid_match = 1;
  2975. }
  2976. if (!pmkid_match && sm->cur_pmksa) {
  2977. wpa_printf(MSG_DEBUG,
  2978. "FILS: No PMKID match - cannot use cached PMKSA entry");
  2979. sm->cur_pmksa = NULL;
  2980. }
  2981. /* FILS Session */
  2982. if (!elems.fils_session) {
  2983. wpa_printf(MSG_DEBUG, "FILS: No FILS Session element");
  2984. return -1;
  2985. }
  2986. wpa_hexdump(MSG_DEBUG, "FILS: FILS Session", elems.fils_session,
  2987. FILS_SESSION_LEN);
  2988. if (os_memcmp(sm->fils_session, elems.fils_session, FILS_SESSION_LEN)
  2989. != 0) {
  2990. wpa_printf(MSG_DEBUG, "FILS: Session mismatch");
  2991. wpa_hexdump(MSG_DEBUG, "FILS: Expected FILS Session",
  2992. sm->fils_session, FILS_SESSION_LEN);
  2993. return -1;
  2994. }
  2995. /* FILS Wrapped Data */
  2996. if (!sm->cur_pmksa && elems.fils_wrapped_data) {
  2997. u8 rmsk[ERP_MAX_KEY_LEN];
  2998. size_t rmsk_len;
  2999. wpa_hexdump(MSG_DEBUG, "FILS: Wrapped Data",
  3000. elems.fils_wrapped_data,
  3001. elems.fils_wrapped_data_len);
  3002. eapol_sm_process_erp_finish(sm->eapol, elems.fils_wrapped_data,
  3003. elems.fils_wrapped_data_len);
  3004. if (eapol_sm_failed(sm->eapol))
  3005. return -1;
  3006. rmsk_len = ERP_MAX_KEY_LEN;
  3007. res = eapol_sm_get_key(sm->eapol, rmsk, rmsk_len);
  3008. if (res == PMK_LEN) {
  3009. rmsk_len = PMK_LEN;
  3010. res = eapol_sm_get_key(sm->eapol, rmsk, rmsk_len);
  3011. }
  3012. if (res)
  3013. return -1;
  3014. res = fils_rmsk_to_pmk(sm->key_mgmt, rmsk, rmsk_len,
  3015. sm->fils_nonce, sm->fils_anonce, NULL, 0,
  3016. sm->pmk, &sm->pmk_len);
  3017. os_memset(rmsk, 0, sizeof(rmsk));
  3018. if (res)
  3019. return -1;
  3020. if (!sm->fils_erp_pmkid_set) {
  3021. wpa_printf(MSG_DEBUG, "FILS: PMKID not available");
  3022. return -1;
  3023. }
  3024. wpa_hexdump(MSG_DEBUG, "FILS: PMKID", sm->fils_erp_pmkid,
  3025. PMKID_LEN);
  3026. wpa_printf(MSG_DEBUG, "FILS: ERP processing succeeded - add PMKSA cache entry for the result");
  3027. sm->cur_pmksa = pmksa_cache_add(sm->pmksa, sm->pmk, sm->pmk_len,
  3028. sm->fils_erp_pmkid, NULL, 0,
  3029. sm->bssid, sm->own_addr,
  3030. sm->network_ctx, sm->key_mgmt,
  3031. NULL);
  3032. }
  3033. if (!sm->cur_pmksa) {
  3034. wpa_printf(MSG_DEBUG,
  3035. "FILS: No remaining options to continue FILS authentication");
  3036. return -1;
  3037. }
  3038. if (fils_pmk_to_ptk(sm->pmk, sm->pmk_len, sm->own_addr, sm->bssid,
  3039. sm->fils_nonce, sm->fils_anonce, &sm->ptk,
  3040. ick, &ick_len, sm->key_mgmt, sm->pairwise_cipher) <
  3041. 0) {
  3042. wpa_printf(MSG_DEBUG, "FILS: Failed to derive PTK");
  3043. return -1;
  3044. }
  3045. sm->ptk_set = 1;
  3046. sm->tptk_set = 0;
  3047. os_memset(&sm->tptk, 0, sizeof(sm->tptk));
  3048. res = fils_key_auth_sk(ick, ick_len, sm->fils_nonce,
  3049. sm->fils_anonce, sm->own_addr, sm->bssid,
  3050. NULL, 0, NULL, 0, /* TODO: SK+PFS */
  3051. sm->key_mgmt, sm->fils_key_auth_sta,
  3052. sm->fils_key_auth_ap,
  3053. &sm->fils_key_auth_len);
  3054. os_memset(ick, 0, sizeof(ick));
  3055. return res;
  3056. }
  3057. struct wpabuf * fils_build_assoc_req(struct wpa_sm *sm, const u8 **kek,
  3058. size_t *kek_len, const u8 **snonce,
  3059. const u8 **anonce,
  3060. const struct wpabuf **hlp,
  3061. unsigned int num_hlp)
  3062. {
  3063. struct wpabuf *buf;
  3064. size_t len;
  3065. unsigned int i;
  3066. len = 1000;
  3067. for (i = 0; hlp && i < num_hlp; i++)
  3068. len += 10 + wpabuf_len(hlp[i]);
  3069. buf = wpabuf_alloc(len);
  3070. if (!buf)
  3071. return NULL;
  3072. /* FILS Session */
  3073. wpabuf_put_u8(buf, WLAN_EID_EXTENSION); /* Element ID */
  3074. wpabuf_put_u8(buf, 1 + FILS_SESSION_LEN); /* Length */
  3075. /* Element ID Extension */
  3076. wpabuf_put_u8(buf, WLAN_EID_EXT_FILS_SESSION);
  3077. wpabuf_put_data(buf, sm->fils_session, FILS_SESSION_LEN);
  3078. /* Everything after FILS Session element gets encrypted in the driver
  3079. * with KEK. The buffer returned from here is the plaintext version. */
  3080. /* TODO: FILS Public Key */
  3081. /* FILS Key Confirm */
  3082. wpabuf_put_u8(buf, WLAN_EID_EXTENSION); /* Element ID */
  3083. wpabuf_put_u8(buf, 1 + sm->fils_key_auth_len); /* Length */
  3084. /* Element ID Extension */
  3085. wpabuf_put_u8(buf, WLAN_EID_EXT_FILS_KEY_CONFIRM);
  3086. wpabuf_put_data(buf, sm->fils_key_auth_sta, sm->fils_key_auth_len);
  3087. /* FILS HLP Container */
  3088. for (i = 0; hlp && i < num_hlp; i++) {
  3089. const u8 *pos = wpabuf_head(hlp[i]);
  3090. size_t left = wpabuf_len(hlp[i]);
  3091. wpabuf_put_u8(buf, WLAN_EID_EXTENSION); /* Element ID */
  3092. if (left <= 254)
  3093. len = 1 + left;
  3094. else
  3095. len = 255;
  3096. wpabuf_put_u8(buf, len); /* Length */
  3097. /* Element ID Extension */
  3098. wpabuf_put_u8(buf, WLAN_EID_EXT_FILS_HLP_CONTAINER);
  3099. /* Destination MAC Address, Source MAC Address, HLP Packet.
  3100. * HLP Packet is in MSDU format (i.e., included the LLC/SNAP
  3101. * header when LPD is used). */
  3102. wpabuf_put_data(buf, pos, len - 1);
  3103. pos += len - 1;
  3104. left -= len - 1;
  3105. while (left) {
  3106. wpabuf_put_u8(buf, WLAN_EID_FRAGMENT);
  3107. len = left > 255 ? 255 : left;
  3108. wpabuf_put_u8(buf, len);
  3109. wpabuf_put_data(buf, pos, len);
  3110. pos += len;
  3111. left -= len;
  3112. }
  3113. }
  3114. /* TODO: FILS IP Address Assignment */
  3115. wpa_hexdump_buf(MSG_DEBUG, "FILS: Association Request plaintext", buf);
  3116. *kek = sm->ptk.kek;
  3117. *kek_len = sm->ptk.kek_len;
  3118. wpa_hexdump_key(MSG_DEBUG, "FILS: KEK for AEAD", *kek, *kek_len);
  3119. *snonce = sm->fils_nonce;
  3120. wpa_hexdump(MSG_DEBUG, "FILS: SNonce for AEAD AAD",
  3121. *snonce, FILS_NONCE_LEN);
  3122. *anonce = sm->fils_anonce;
  3123. wpa_hexdump(MSG_DEBUG, "FILS: ANonce for AEAD AAD",
  3124. *anonce, FILS_NONCE_LEN);
  3125. return buf;
  3126. }
  3127. static void fils_process_hlp_resp(struct wpa_sm *sm, const u8 *resp, size_t len)
  3128. {
  3129. const u8 *pos, *end;
  3130. wpa_hexdump(MSG_MSGDUMP, "FILS: HLP response", resp, len);
  3131. if (len < 2 * ETH_ALEN)
  3132. return;
  3133. pos = resp + 2 * ETH_ALEN;
  3134. end = resp + len;
  3135. if (end - pos >= 6 &&
  3136. os_memcmp(pos, "\xaa\xaa\x03\x00\x00\x00", 6) == 0)
  3137. pos += 6; /* Remove SNAP/LLC header */
  3138. wpa_sm_fils_hlp_rx(sm, resp, resp + ETH_ALEN, pos, end - pos);
  3139. }
  3140. static void fils_process_hlp_container(struct wpa_sm *sm, const u8 *pos,
  3141. size_t len)
  3142. {
  3143. const u8 *end = pos + len;
  3144. u8 *tmp, *tmp_pos;
  3145. /* Check if there are any FILS HLP Container elements */
  3146. while (end - pos >= 2) {
  3147. if (2 + pos[1] > end - pos)
  3148. return;
  3149. if (pos[0] == WLAN_EID_EXTENSION &&
  3150. pos[1] >= 1 + 2 * ETH_ALEN &&
  3151. pos[2] == WLAN_EID_EXT_FILS_HLP_CONTAINER)
  3152. break;
  3153. pos += 2 + pos[1];
  3154. }
  3155. if (end - pos < 2)
  3156. return; /* No FILS HLP Container elements */
  3157. tmp = os_malloc(end - pos);
  3158. if (!tmp)
  3159. return;
  3160. while (end - pos >= 2) {
  3161. if (2 + pos[1] > end - pos ||
  3162. pos[0] != WLAN_EID_EXTENSION ||
  3163. pos[1] < 1 + 2 * ETH_ALEN ||
  3164. pos[2] != WLAN_EID_EXT_FILS_HLP_CONTAINER)
  3165. break;
  3166. tmp_pos = tmp;
  3167. os_memcpy(tmp_pos, pos + 3, pos[1] - 1);
  3168. tmp_pos += pos[1] - 1;
  3169. pos += 2 + pos[1];
  3170. /* Add possible fragments */
  3171. while (end - pos >= 2 && pos[0] == WLAN_EID_FRAGMENT &&
  3172. 2 + pos[1] <= end - pos) {
  3173. os_memcpy(tmp_pos, pos + 2, pos[1]);
  3174. tmp_pos += pos[1];
  3175. pos += 2 + pos[1];
  3176. }
  3177. fils_process_hlp_resp(sm, tmp, tmp_pos - tmp);
  3178. }
  3179. os_free(tmp);
  3180. }
  3181. int fils_process_assoc_resp(struct wpa_sm *sm, const u8 *resp, size_t len)
  3182. {
  3183. const struct ieee80211_mgmt *mgmt;
  3184. const u8 *end, *ie_start;
  3185. struct ieee802_11_elems elems;
  3186. int keylen, rsclen;
  3187. enum wpa_alg alg;
  3188. struct wpa_gtk_data gd;
  3189. int maxkeylen;
  3190. struct wpa_eapol_ie_parse kde;
  3191. if (!sm || !sm->ptk_set) {
  3192. wpa_printf(MSG_DEBUG, "FILS: No KEK available");
  3193. return -1;
  3194. }
  3195. if (!wpa_key_mgmt_fils(sm->key_mgmt)) {
  3196. wpa_printf(MSG_DEBUG, "FILS: Not a FILS AKM");
  3197. return -1;
  3198. }
  3199. wpa_hexdump(MSG_DEBUG, "FILS: (Re)Association Response frame",
  3200. resp, len);
  3201. mgmt = (const struct ieee80211_mgmt *) resp;
  3202. if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.assoc_resp))
  3203. return -1;
  3204. end = resp + len;
  3205. /* Same offset for Association Response and Reassociation Response */
  3206. ie_start = mgmt->u.assoc_resp.variable;
  3207. if (ieee802_11_parse_elems(ie_start, end - ie_start, &elems, 1) ==
  3208. ParseFailed) {
  3209. wpa_printf(MSG_DEBUG,
  3210. "FILS: Failed to parse decrypted elements");
  3211. goto fail;
  3212. }
  3213. if (!elems.fils_session) {
  3214. wpa_printf(MSG_DEBUG, "FILS: No FILS Session element");
  3215. return -1;
  3216. }
  3217. if (os_memcmp(elems.fils_session, sm->fils_session,
  3218. FILS_SESSION_LEN) != 0) {
  3219. wpa_printf(MSG_DEBUG, "FILS: FILS Session mismatch");
  3220. wpa_hexdump(MSG_DEBUG, "FILS: Received FILS Session",
  3221. elems.fils_session, FILS_SESSION_LEN);
  3222. wpa_hexdump(MSG_DEBUG, "FILS: Expected FILS Session",
  3223. sm->fils_session, FILS_SESSION_LEN);
  3224. }
  3225. /* TODO: FILS Public Key */
  3226. if (!elems.fils_key_confirm) {
  3227. wpa_printf(MSG_DEBUG, "FILS: No FILS Key Confirm element");
  3228. goto fail;
  3229. }
  3230. if (elems.fils_key_confirm_len != sm->fils_key_auth_len) {
  3231. wpa_printf(MSG_DEBUG,
  3232. "FILS: Unexpected Key-Auth length %d (expected %d)",
  3233. elems.fils_key_confirm_len,
  3234. (int) sm->fils_key_auth_len);
  3235. goto fail;
  3236. }
  3237. if (os_memcmp(elems.fils_key_confirm, sm->fils_key_auth_ap,
  3238. sm->fils_key_auth_len) != 0) {
  3239. wpa_printf(MSG_DEBUG, "FILS: Key-Auth mismatch");
  3240. wpa_hexdump(MSG_DEBUG, "FILS: Received Key-Auth",
  3241. elems.fils_key_confirm,
  3242. elems.fils_key_confirm_len);
  3243. wpa_hexdump(MSG_DEBUG, "FILS: Expected Key-Auth",
  3244. sm->fils_key_auth_ap, sm->fils_key_auth_len);
  3245. goto fail;
  3246. }
  3247. /* Key Delivery */
  3248. if (!elems.key_delivery) {
  3249. wpa_printf(MSG_DEBUG, "FILS: No Key Delivery element");
  3250. goto fail;
  3251. }
  3252. /* Parse GTK and set the key to the driver */
  3253. os_memset(&gd, 0, sizeof(gd));
  3254. if (wpa_supplicant_parse_ies(elems.key_delivery + WPA_KEY_RSC_LEN,
  3255. elems.key_delivery_len - WPA_KEY_RSC_LEN,
  3256. &kde) < 0) {
  3257. wpa_printf(MSG_DEBUG, "FILS: Failed to parse KDEs");
  3258. goto fail;
  3259. }
  3260. if (!kde.gtk) {
  3261. wpa_printf(MSG_DEBUG, "FILS: No GTK KDE");
  3262. goto fail;
  3263. }
  3264. maxkeylen = gd.gtk_len = kde.gtk_len - 2;
  3265. if (wpa_supplicant_check_group_cipher(sm, sm->group_cipher,
  3266. gd.gtk_len, maxkeylen,
  3267. &gd.key_rsc_len, &gd.alg))
  3268. goto fail;
  3269. wpa_hexdump_key(MSG_DEBUG, "FILS: Received GTK", kde.gtk, kde.gtk_len);
  3270. gd.keyidx = kde.gtk[0] & 0x3;
  3271. gd.tx = wpa_supplicant_gtk_tx_bit_workaround(sm,
  3272. !!(kde.gtk[0] & BIT(2)));
  3273. if (kde.gtk_len - 2 > sizeof(gd.gtk)) {
  3274. wpa_printf(MSG_DEBUG, "FILS: Too long GTK in GTK KDE (len=%lu)",
  3275. (unsigned long) kde.gtk_len - 2);
  3276. goto fail;
  3277. }
  3278. os_memcpy(gd.gtk, kde.gtk + 2, kde.gtk_len - 2);
  3279. wpa_printf(MSG_DEBUG, "FILS: Set GTK to driver");
  3280. if (wpa_supplicant_install_gtk(sm, &gd, elems.key_delivery) < 0) {
  3281. wpa_printf(MSG_DEBUG, "FILS: Failed to set GTK");
  3282. goto fail;
  3283. }
  3284. if (ieee80211w_set_keys(sm, &kde) < 0) {
  3285. wpa_printf(MSG_DEBUG, "FILS: Failed to set IGTK");
  3286. goto fail;
  3287. }
  3288. alg = wpa_cipher_to_alg(sm->pairwise_cipher);
  3289. keylen = wpa_cipher_key_len(sm->pairwise_cipher);
  3290. rsclen = wpa_cipher_rsc_len(sm->pairwise_cipher);
  3291. wpa_hexdump_key(MSG_DEBUG, "FILS: Set TK to driver",
  3292. sm->ptk.tk, keylen);
  3293. if (wpa_sm_set_key(sm, alg, sm->bssid, 0, 1, null_rsc, rsclen,
  3294. sm->ptk.tk, keylen) < 0) {
  3295. wpa_msg(sm->ctx->msg_ctx, MSG_WARNING,
  3296. "FILS: Failed to set PTK to the driver (alg=%d keylen=%d bssid="
  3297. MACSTR ")",
  3298. alg, keylen, MAC2STR(sm->bssid));
  3299. goto fail;
  3300. }
  3301. /* TODO: TK could be cleared after auth frame exchange now that driver
  3302. * takes care of association frame encryption/decryption. */
  3303. /* TK is not needed anymore in supplicant */
  3304. os_memset(sm->ptk.tk, 0, WPA_TK_MAX_LEN);
  3305. /* FILS HLP Container */
  3306. fils_process_hlp_container(sm, ie_start, end - ie_start);
  3307. /* TODO: FILS IP Address Assignment */
  3308. wpa_printf(MSG_DEBUG, "FILS: Auth+Assoc completed successfully");
  3309. sm->fils_completed = 1;
  3310. return 0;
  3311. fail:
  3312. return -1;
  3313. }
  3314. #endif /* CONFIG_FILS */
  3315. int wpa_fils_is_completed(struct wpa_sm *sm)
  3316. {
  3317. #ifdef CONFIG_FILS
  3318. return sm && sm->fils_completed;
  3319. #else /* CONFIG_FILS */
  3320. return 0;
  3321. #endif /* CONFIG_FILS */
  3322. }
  3323. #ifdef CONFIG_OWE
  3324. struct wpabuf * owe_build_assoc_req(struct wpa_sm *sm)
  3325. {
  3326. struct wpabuf *ie = NULL, *pub = NULL;
  3327. crypto_ecdh_deinit(sm->owe_ecdh);
  3328. sm->owe_ecdh = crypto_ecdh_init(OWE_DH_GROUP);
  3329. if (!sm->owe_ecdh)
  3330. goto fail;
  3331. pub = crypto_ecdh_get_pubkey(sm->owe_ecdh, 0);
  3332. if (!pub)
  3333. goto fail;
  3334. ie = wpabuf_alloc(5 + wpabuf_len(pub));
  3335. if (!ie)
  3336. goto fail;
  3337. wpabuf_put_u8(ie, WLAN_EID_EXTENSION);
  3338. wpabuf_put_u8(ie, 1 + 2 + wpabuf_len(pub));
  3339. wpabuf_put_u8(ie, WLAN_EID_EXT_OWE_DH_PARAM);
  3340. wpabuf_put_le16(ie, OWE_DH_GROUP);
  3341. wpabuf_put_buf(ie, pub);
  3342. wpabuf_free(pub);
  3343. wpa_hexdump_buf(MSG_DEBUG, "OWE: Diffie-Hellman Parameter element",
  3344. ie);
  3345. return ie;
  3346. fail:
  3347. wpabuf_free(pub);
  3348. crypto_ecdh_deinit(sm->owe_ecdh);
  3349. sm->owe_ecdh = NULL;
  3350. return NULL;
  3351. }
  3352. int owe_process_assoc_resp(struct wpa_sm *sm, const u8 *resp_ies,
  3353. size_t resp_ies_len)
  3354. {
  3355. struct ieee802_11_elems elems;
  3356. u16 group;
  3357. struct wpabuf *secret, *pub, *hkey;
  3358. int res;
  3359. u8 prk[SHA256_MAC_LEN], pmkid[SHA256_MAC_LEN];
  3360. const char *info = "OWE Key Generation";
  3361. const u8 *addr[2];
  3362. size_t len[2];
  3363. if (!resp_ies ||
  3364. ieee802_11_parse_elems(resp_ies, resp_ies_len, &elems, 1) ==
  3365. ParseFailed ||
  3366. !elems.owe_dh) {
  3367. wpa_printf(MSG_INFO,
  3368. "OWE: No Diffie-Hellman Parameter element found in Association Response frame");
  3369. return -1;
  3370. }
  3371. group = WPA_GET_LE16(elems.owe_dh);
  3372. if (group != OWE_DH_GROUP) {
  3373. wpa_printf(MSG_INFO,
  3374. "OWE: Unexpected Diffie-Hellman group in response: %u",
  3375. group);
  3376. return -1;
  3377. }
  3378. if (!sm->owe_ecdh) {
  3379. wpa_printf(MSG_INFO, "OWE: No ECDH state available");
  3380. return -1;
  3381. }
  3382. secret = crypto_ecdh_set_peerkey(sm->owe_ecdh, 0,
  3383. elems.owe_dh + 2,
  3384. elems.owe_dh_len - 2);
  3385. if (!secret) {
  3386. wpa_printf(MSG_DEBUG, "OWE: Invalid peer DH public key");
  3387. return -1;
  3388. }
  3389. wpa_hexdump_buf_key(MSG_DEBUG, "OWE: DH shared secret", secret);
  3390. /* prk = HKDF-extract(C | A | group, z) */
  3391. pub = crypto_ecdh_get_pubkey(sm->owe_ecdh, 0);
  3392. if (!pub) {
  3393. wpabuf_clear_free(secret);
  3394. return -1;
  3395. }
  3396. /* PMKID = Truncate-128(Hash(C | A)) */
  3397. addr[0] = wpabuf_head(pub);
  3398. len[0] = wpabuf_len(pub);
  3399. addr[1] = elems.owe_dh + 2;
  3400. len[1] = elems.owe_dh_len - 2;
  3401. res = sha256_vector(2, addr, len, pmkid);
  3402. if (res < 0) {
  3403. wpabuf_free(pub);
  3404. wpabuf_clear_free(secret);
  3405. return -1;
  3406. }
  3407. hkey = wpabuf_alloc(wpabuf_len(pub) + elems.owe_dh_len - 2 + 2);
  3408. if (!hkey) {
  3409. wpabuf_free(pub);
  3410. wpabuf_clear_free(secret);
  3411. return -1;
  3412. }
  3413. wpabuf_put_buf(hkey, pub); /* C */
  3414. wpabuf_free(pub);
  3415. wpabuf_put_data(hkey, elems.owe_dh + 2, elems.owe_dh_len - 2); /* A */
  3416. wpabuf_put_le16(hkey, OWE_DH_GROUP); /* group */
  3417. res = hmac_sha256(wpabuf_head(hkey), wpabuf_len(hkey),
  3418. wpabuf_head(secret), wpabuf_len(secret), prk);
  3419. wpabuf_clear_free(hkey);
  3420. wpabuf_clear_free(secret);
  3421. if (res < 0)
  3422. return -1;
  3423. wpa_hexdump_key(MSG_DEBUG, "OWE: prk", prk, SHA256_MAC_LEN);
  3424. /* PMK = HKDF-expand(prk, "OWE Key Generation", n) */
  3425. res = hmac_sha256_kdf(prk, SHA256_MAC_LEN, NULL, (const u8 *) info,
  3426. os_strlen(info), sm->pmk, PMK_LEN);
  3427. os_memset(prk, 0, SHA256_MAC_LEN);
  3428. if (res < 0)
  3429. return -1;
  3430. wpa_hexdump_key(MSG_DEBUG, "OWE: PMK", sm->pmk, PMK_LEN);
  3431. wpa_hexdump(MSG_DEBUG, "OWE: PMKID", pmkid, PMKID_LEN);
  3432. /* TODO: Add PMKSA cache entry */
  3433. return 0;
  3434. }
  3435. #endif /* CONFIG_OWE */