wpa_supplicant.c 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857
  1. /*
  2. * WPA Supplicant
  3. * Copyright (c) 2003-2014, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. *
  8. * This file implements functions for registering and unregistering
  9. * %wpa_supplicant interfaces. In addition, this file contains number of
  10. * functions for managing network connections.
  11. */
  12. #include "includes.h"
  13. #include "common.h"
  14. #include "crypto/random.h"
  15. #include "crypto/sha1.h"
  16. #include "eapol_supp/eapol_supp_sm.h"
  17. #include "eap_peer/eap.h"
  18. #include "eap_peer/eap_proxy.h"
  19. #include "eap_server/eap_methods.h"
  20. #include "rsn_supp/wpa.h"
  21. #include "eloop.h"
  22. #include "config.h"
  23. #include "utils/ext_password.h"
  24. #include "l2_packet/l2_packet.h"
  25. #include "wpa_supplicant_i.h"
  26. #include "driver_i.h"
  27. #include "ctrl_iface.h"
  28. #include "pcsc_funcs.h"
  29. #include "common/version.h"
  30. #include "rsn_supp/preauth.h"
  31. #include "rsn_supp/pmksa_cache.h"
  32. #include "common/wpa_ctrl.h"
  33. #include "common/ieee802_11_defs.h"
  34. #include "p2p/p2p.h"
  35. #include "blacklist.h"
  36. #include "wpas_glue.h"
  37. #include "wps_supplicant.h"
  38. #include "ibss_rsn.h"
  39. #include "sme.h"
  40. #include "gas_query.h"
  41. #include "ap.h"
  42. #include "p2p_supplicant.h"
  43. #include "wifi_display.h"
  44. #include "notify.h"
  45. #include "bgscan.h"
  46. #include "autoscan.h"
  47. #include "bss.h"
  48. #include "scan.h"
  49. #include "offchannel.h"
  50. #include "hs20_supplicant.h"
  51. #include "wnm_sta.h"
  52. #include "wpas_kay.h"
  53. const char *wpa_supplicant_version =
  54. "wpa_supplicant v" VERSION_STR "\n"
  55. "Copyright (c) 2003-2014, Jouni Malinen <j@w1.fi> and contributors";
  56. const char *wpa_supplicant_license =
  57. "This software may be distributed under the terms of the BSD license.\n"
  58. "See README for more details.\n"
  59. #ifdef EAP_TLS_OPENSSL
  60. "\nThis product includes software developed by the OpenSSL Project\n"
  61. "for use in the OpenSSL Toolkit (http://www.openssl.org/)\n"
  62. #endif /* EAP_TLS_OPENSSL */
  63. ;
  64. #ifndef CONFIG_NO_STDOUT_DEBUG
  65. /* Long text divided into parts in order to fit in C89 strings size limits. */
  66. const char *wpa_supplicant_full_license1 =
  67. "";
  68. const char *wpa_supplicant_full_license2 =
  69. "This software may be distributed under the terms of the BSD license.\n"
  70. "\n"
  71. "Redistribution and use in source and binary forms, with or without\n"
  72. "modification, are permitted provided that the following conditions are\n"
  73. "met:\n"
  74. "\n";
  75. const char *wpa_supplicant_full_license3 =
  76. "1. Redistributions of source code must retain the above copyright\n"
  77. " notice, this list of conditions and the following disclaimer.\n"
  78. "\n"
  79. "2. Redistributions in binary form must reproduce the above copyright\n"
  80. " notice, this list of conditions and the following disclaimer in the\n"
  81. " documentation and/or other materials provided with the distribution.\n"
  82. "\n";
  83. const char *wpa_supplicant_full_license4 =
  84. "3. Neither the name(s) of the above-listed copyright holder(s) nor the\n"
  85. " names of its contributors may be used to endorse or promote products\n"
  86. " derived from this software without specific prior written permission.\n"
  87. "\n"
  88. "THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n"
  89. "\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n"
  90. "LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n"
  91. "A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n";
  92. const char *wpa_supplicant_full_license5 =
  93. "OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n"
  94. "SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n"
  95. "LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n"
  96. "DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n"
  97. "THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n"
  98. "(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n"
  99. "OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  100. "\n";
  101. #endif /* CONFIG_NO_STDOUT_DEBUG */
  102. /* Configure default/group WEP keys for static WEP */
  103. int wpa_set_wep_keys(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid)
  104. {
  105. int i, set = 0;
  106. for (i = 0; i < NUM_WEP_KEYS; i++) {
  107. if (ssid->wep_key_len[i] == 0)
  108. continue;
  109. set = 1;
  110. wpa_drv_set_key(wpa_s, WPA_ALG_WEP, NULL,
  111. i, i == ssid->wep_tx_keyidx, NULL, 0,
  112. ssid->wep_key[i], ssid->wep_key_len[i]);
  113. }
  114. return set;
  115. }
  116. int wpa_supplicant_set_wpa_none_key(struct wpa_supplicant *wpa_s,
  117. struct wpa_ssid *ssid)
  118. {
  119. u8 key[32];
  120. size_t keylen;
  121. enum wpa_alg alg;
  122. u8 seq[6] = { 0 };
  123. /* IBSS/WPA-None uses only one key (Group) for both receiving and
  124. * sending unicast and multicast packets. */
  125. if (ssid->mode != WPAS_MODE_IBSS) {
  126. wpa_msg(wpa_s, MSG_INFO, "WPA: Invalid mode %d (not "
  127. "IBSS/ad-hoc) for WPA-None", ssid->mode);
  128. return -1;
  129. }
  130. if (!ssid->psk_set) {
  131. wpa_msg(wpa_s, MSG_INFO, "WPA: No PSK configured for "
  132. "WPA-None");
  133. return -1;
  134. }
  135. switch (wpa_s->group_cipher) {
  136. case WPA_CIPHER_CCMP:
  137. os_memcpy(key, ssid->psk, 16);
  138. keylen = 16;
  139. alg = WPA_ALG_CCMP;
  140. break;
  141. case WPA_CIPHER_GCMP:
  142. os_memcpy(key, ssid->psk, 16);
  143. keylen = 16;
  144. alg = WPA_ALG_GCMP;
  145. break;
  146. case WPA_CIPHER_TKIP:
  147. /* WPA-None uses the same Michael MIC key for both TX and RX */
  148. os_memcpy(key, ssid->psk, 16 + 8);
  149. os_memcpy(key + 16 + 8, ssid->psk + 16, 8);
  150. keylen = 32;
  151. alg = WPA_ALG_TKIP;
  152. break;
  153. default:
  154. wpa_msg(wpa_s, MSG_INFO, "WPA: Invalid group cipher %d for "
  155. "WPA-None", wpa_s->group_cipher);
  156. return -1;
  157. }
  158. /* TODO: should actually remember the previously used seq#, both for TX
  159. * and RX from each STA.. */
  160. return wpa_drv_set_key(wpa_s, alg, NULL, 0, 1, seq, 6, key, keylen);
  161. }
  162. static void wpa_supplicant_timeout(void *eloop_ctx, void *timeout_ctx)
  163. {
  164. struct wpa_supplicant *wpa_s = eloop_ctx;
  165. const u8 *bssid = wpa_s->bssid;
  166. if (is_zero_ether_addr(bssid))
  167. bssid = wpa_s->pending_bssid;
  168. wpa_msg(wpa_s, MSG_INFO, "Authentication with " MACSTR " timed out.",
  169. MAC2STR(bssid));
  170. wpa_blacklist_add(wpa_s, bssid);
  171. wpa_sm_notify_disassoc(wpa_s->wpa);
  172. wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  173. wpa_s->reassociate = 1;
  174. /*
  175. * If we timed out, the AP or the local radio may be busy.
  176. * So, wait a second until scanning again.
  177. */
  178. wpa_supplicant_req_scan(wpa_s, 1, 0);
  179. }
  180. /**
  181. * wpa_supplicant_req_auth_timeout - Schedule a timeout for authentication
  182. * @wpa_s: Pointer to wpa_supplicant data
  183. * @sec: Number of seconds after which to time out authentication
  184. * @usec: Number of microseconds after which to time out authentication
  185. *
  186. * This function is used to schedule a timeout for the current authentication
  187. * attempt.
  188. */
  189. void wpa_supplicant_req_auth_timeout(struct wpa_supplicant *wpa_s,
  190. int sec, int usec)
  191. {
  192. if (wpa_s->conf->ap_scan == 0 &&
  193. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED))
  194. return;
  195. wpa_dbg(wpa_s, MSG_DEBUG, "Setting authentication timeout: %d sec "
  196. "%d usec", sec, usec);
  197. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
  198. eloop_register_timeout(sec, usec, wpa_supplicant_timeout, wpa_s, NULL);
  199. }
  200. /**
  201. * wpa_supplicant_cancel_auth_timeout - Cancel authentication timeout
  202. * @wpa_s: Pointer to wpa_supplicant data
  203. *
  204. * This function is used to cancel authentication timeout scheduled with
  205. * wpa_supplicant_req_auth_timeout() and it is called when authentication has
  206. * been completed.
  207. */
  208. void wpa_supplicant_cancel_auth_timeout(struct wpa_supplicant *wpa_s)
  209. {
  210. wpa_dbg(wpa_s, MSG_DEBUG, "Cancelling authentication timeout");
  211. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
  212. wpa_blacklist_del(wpa_s, wpa_s->bssid);
  213. }
  214. /**
  215. * wpa_supplicant_initiate_eapol - Configure EAPOL state machine
  216. * @wpa_s: Pointer to wpa_supplicant data
  217. *
  218. * This function is used to configure EAPOL state machine based on the selected
  219. * authentication mode.
  220. */
  221. void wpa_supplicant_initiate_eapol(struct wpa_supplicant *wpa_s)
  222. {
  223. #ifdef IEEE8021X_EAPOL
  224. struct eapol_config eapol_conf;
  225. struct wpa_ssid *ssid = wpa_s->current_ssid;
  226. #ifdef CONFIG_IBSS_RSN
  227. if (ssid->mode == WPAS_MODE_IBSS &&
  228. wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
  229. wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE) {
  230. /*
  231. * RSN IBSS authentication is per-STA and we can disable the
  232. * per-BSSID EAPOL authentication.
  233. */
  234. eapol_sm_notify_portControl(wpa_s->eapol, ForceAuthorized);
  235. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  236. eapol_sm_notify_eap_fail(wpa_s->eapol, FALSE);
  237. return;
  238. }
  239. #endif /* CONFIG_IBSS_RSN */
  240. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  241. eapol_sm_notify_eap_fail(wpa_s->eapol, FALSE);
  242. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  243. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE)
  244. eapol_sm_notify_portControl(wpa_s->eapol, ForceAuthorized);
  245. else
  246. eapol_sm_notify_portControl(wpa_s->eapol, Auto);
  247. os_memset(&eapol_conf, 0, sizeof(eapol_conf));
  248. if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  249. eapol_conf.accept_802_1x_keys = 1;
  250. eapol_conf.required_keys = 0;
  251. if (ssid->eapol_flags & EAPOL_FLAG_REQUIRE_KEY_UNICAST) {
  252. eapol_conf.required_keys |= EAPOL_REQUIRE_KEY_UNICAST;
  253. }
  254. if (ssid->eapol_flags & EAPOL_FLAG_REQUIRE_KEY_BROADCAST) {
  255. eapol_conf.required_keys |=
  256. EAPOL_REQUIRE_KEY_BROADCAST;
  257. }
  258. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED)
  259. eapol_conf.required_keys = 0;
  260. }
  261. eapol_conf.fast_reauth = wpa_s->conf->fast_reauth;
  262. eapol_conf.workaround = ssid->eap_workaround;
  263. eapol_conf.eap_disabled =
  264. !wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) &&
  265. wpa_s->key_mgmt != WPA_KEY_MGMT_IEEE8021X_NO_WPA &&
  266. wpa_s->key_mgmt != WPA_KEY_MGMT_WPS;
  267. eapol_conf.external_sim = wpa_s->conf->external_sim;
  268. #ifdef CONFIG_WPS
  269. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS) {
  270. eapol_conf.wps |= EAPOL_LOCAL_WPS_IN_USE;
  271. if (wpa_s->current_bss) {
  272. struct wpabuf *ie;
  273. ie = wpa_bss_get_vendor_ie_multi(wpa_s->current_bss,
  274. WPS_IE_VENDOR_TYPE);
  275. if (ie) {
  276. if (wps_is_20(ie))
  277. eapol_conf.wps |=
  278. EAPOL_PEER_IS_WPS20_AP;
  279. wpabuf_free(ie);
  280. }
  281. }
  282. }
  283. #endif /* CONFIG_WPS */
  284. eapol_sm_notify_config(wpa_s->eapol, &ssid->eap, &eapol_conf);
  285. ieee802_1x_alloc_kay_sm(wpa_s, ssid);
  286. #endif /* IEEE8021X_EAPOL */
  287. }
  288. /**
  289. * wpa_supplicant_set_non_wpa_policy - Set WPA parameters to non-WPA mode
  290. * @wpa_s: Pointer to wpa_supplicant data
  291. * @ssid: Configuration data for the network
  292. *
  293. * This function is used to configure WPA state machine and related parameters
  294. * to a mode where WPA is not enabled. This is called as part of the
  295. * authentication configuration when the selected network does not use WPA.
  296. */
  297. void wpa_supplicant_set_non_wpa_policy(struct wpa_supplicant *wpa_s,
  298. struct wpa_ssid *ssid)
  299. {
  300. int i;
  301. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS)
  302. wpa_s->key_mgmt = WPA_KEY_MGMT_WPS;
  303. else if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)
  304. wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X_NO_WPA;
  305. else
  306. wpa_s->key_mgmt = WPA_KEY_MGMT_NONE;
  307. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, NULL, 0);
  308. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, NULL, 0);
  309. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  310. wpa_s->pairwise_cipher = WPA_CIPHER_NONE;
  311. wpa_s->group_cipher = WPA_CIPHER_NONE;
  312. wpa_s->mgmt_group_cipher = 0;
  313. for (i = 0; i < NUM_WEP_KEYS; i++) {
  314. if (ssid->wep_key_len[i] > 5) {
  315. wpa_s->pairwise_cipher = WPA_CIPHER_WEP104;
  316. wpa_s->group_cipher = WPA_CIPHER_WEP104;
  317. break;
  318. } else if (ssid->wep_key_len[i] > 0) {
  319. wpa_s->pairwise_cipher = WPA_CIPHER_WEP40;
  320. wpa_s->group_cipher = WPA_CIPHER_WEP40;
  321. break;
  322. }
  323. }
  324. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_RSN_ENABLED, 0);
  325. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_KEY_MGMT, wpa_s->key_mgmt);
  326. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_PAIRWISE,
  327. wpa_s->pairwise_cipher);
  328. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_GROUP, wpa_s->group_cipher);
  329. #ifdef CONFIG_IEEE80211W
  330. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_MGMT_GROUP,
  331. wpa_s->mgmt_group_cipher);
  332. #endif /* CONFIG_IEEE80211W */
  333. pmksa_cache_clear_current(wpa_s->wpa);
  334. }
  335. void free_hw_features(struct wpa_supplicant *wpa_s)
  336. {
  337. int i;
  338. if (wpa_s->hw.modes == NULL)
  339. return;
  340. for (i = 0; i < wpa_s->hw.num_modes; i++) {
  341. os_free(wpa_s->hw.modes[i].channels);
  342. os_free(wpa_s->hw.modes[i].rates);
  343. }
  344. os_free(wpa_s->hw.modes);
  345. wpa_s->hw.modes = NULL;
  346. }
  347. static void wpa_supplicant_cleanup(struct wpa_supplicant *wpa_s)
  348. {
  349. int i;
  350. bgscan_deinit(wpa_s);
  351. autoscan_deinit(wpa_s);
  352. scard_deinit(wpa_s->scard);
  353. wpa_s->scard = NULL;
  354. wpa_sm_set_scard_ctx(wpa_s->wpa, NULL);
  355. eapol_sm_register_scard_ctx(wpa_s->eapol, NULL);
  356. l2_packet_deinit(wpa_s->l2);
  357. wpa_s->l2 = NULL;
  358. if (wpa_s->l2_br) {
  359. l2_packet_deinit(wpa_s->l2_br);
  360. wpa_s->l2_br = NULL;
  361. }
  362. #ifdef CONFIG_TESTING_OPTIONS
  363. l2_packet_deinit(wpa_s->l2_test);
  364. wpa_s->l2_test = NULL;
  365. #endif /* CONFIG_TESTING_OPTIONS */
  366. if (wpa_s->conf != NULL) {
  367. struct wpa_ssid *ssid;
  368. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
  369. wpas_notify_network_removed(wpa_s, ssid);
  370. }
  371. os_free(wpa_s->confname);
  372. wpa_s->confname = NULL;
  373. os_free(wpa_s->confanother);
  374. wpa_s->confanother = NULL;
  375. wpa_sm_set_eapol(wpa_s->wpa, NULL);
  376. eapol_sm_deinit(wpa_s->eapol);
  377. wpa_s->eapol = NULL;
  378. rsn_preauth_deinit(wpa_s->wpa);
  379. #ifdef CONFIG_TDLS
  380. wpa_tdls_deinit(wpa_s->wpa);
  381. #endif /* CONFIG_TDLS */
  382. pmksa_candidate_free(wpa_s->wpa);
  383. wpa_sm_deinit(wpa_s->wpa);
  384. wpa_s->wpa = NULL;
  385. wpa_blacklist_clear(wpa_s);
  386. wpa_bss_deinit(wpa_s);
  387. wpa_supplicant_cancel_delayed_sched_scan(wpa_s);
  388. wpa_supplicant_cancel_scan(wpa_s);
  389. wpa_supplicant_cancel_auth_timeout(wpa_s);
  390. eloop_cancel_timeout(wpa_supplicant_stop_countermeasures, wpa_s, NULL);
  391. #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
  392. eloop_cancel_timeout(wpa_supplicant_delayed_mic_error_report,
  393. wpa_s, NULL);
  394. #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  395. wpas_wps_deinit(wpa_s);
  396. wpabuf_free(wpa_s->pending_eapol_rx);
  397. wpa_s->pending_eapol_rx = NULL;
  398. #ifdef CONFIG_IBSS_RSN
  399. ibss_rsn_deinit(wpa_s->ibss_rsn);
  400. wpa_s->ibss_rsn = NULL;
  401. #endif /* CONFIG_IBSS_RSN */
  402. sme_deinit(wpa_s);
  403. #ifdef CONFIG_AP
  404. wpa_supplicant_ap_deinit(wpa_s);
  405. #endif /* CONFIG_AP */
  406. wpas_p2p_deinit(wpa_s);
  407. #ifdef CONFIG_OFFCHANNEL
  408. offchannel_deinit(wpa_s);
  409. #endif /* CONFIG_OFFCHANNEL */
  410. wpa_supplicant_cancel_sched_scan(wpa_s);
  411. os_free(wpa_s->next_scan_freqs);
  412. wpa_s->next_scan_freqs = NULL;
  413. os_free(wpa_s->manual_scan_freqs);
  414. wpa_s->manual_scan_freqs = NULL;
  415. os_free(wpa_s->manual_sched_scan_freqs);
  416. wpa_s->manual_sched_scan_freqs = NULL;
  417. gas_query_deinit(wpa_s->gas);
  418. wpa_s->gas = NULL;
  419. free_hw_features(wpa_s);
  420. ieee802_1x_dealloc_kay_sm(wpa_s);
  421. os_free(wpa_s->bssid_filter);
  422. wpa_s->bssid_filter = NULL;
  423. os_free(wpa_s->disallow_aps_bssid);
  424. wpa_s->disallow_aps_bssid = NULL;
  425. os_free(wpa_s->disallow_aps_ssid);
  426. wpa_s->disallow_aps_ssid = NULL;
  427. wnm_bss_keep_alive_deinit(wpa_s);
  428. #ifdef CONFIG_WNM
  429. wnm_deallocate_memory(wpa_s);
  430. #endif /* CONFIG_WNM */
  431. ext_password_deinit(wpa_s->ext_pw);
  432. wpa_s->ext_pw = NULL;
  433. wpabuf_free(wpa_s->last_gas_resp);
  434. wpa_s->last_gas_resp = NULL;
  435. wpabuf_free(wpa_s->prev_gas_resp);
  436. wpa_s->prev_gas_resp = NULL;
  437. os_free(wpa_s->last_scan_res);
  438. wpa_s->last_scan_res = NULL;
  439. #ifdef CONFIG_HS20
  440. hs20_deinit(wpa_s);
  441. #endif /* CONFIG_HS20 */
  442. for (i = 0; i < NUM_VENDOR_ELEM_FRAMES; i++) {
  443. wpabuf_free(wpa_s->vendor_elem[i]);
  444. wpa_s->vendor_elem[i] = NULL;
  445. }
  446. }
  447. /**
  448. * wpa_clear_keys - Clear keys configured for the driver
  449. * @wpa_s: Pointer to wpa_supplicant data
  450. * @addr: Previously used BSSID or %NULL if not available
  451. *
  452. * This function clears the encryption keys that has been previously configured
  453. * for the driver.
  454. */
  455. void wpa_clear_keys(struct wpa_supplicant *wpa_s, const u8 *addr)
  456. {
  457. int i, max;
  458. #ifdef CONFIG_IEEE80211W
  459. max = 6;
  460. #else /* CONFIG_IEEE80211W */
  461. max = 4;
  462. #endif /* CONFIG_IEEE80211W */
  463. /* MLME-DELETEKEYS.request */
  464. for (i = 0; i < max; i++) {
  465. if (wpa_s->keys_cleared & BIT(i))
  466. continue;
  467. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, i, 0, NULL, 0,
  468. NULL, 0);
  469. }
  470. if (!(wpa_s->keys_cleared & BIT(0)) && addr &&
  471. !is_zero_ether_addr(addr)) {
  472. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, addr, 0, 0, NULL, 0, NULL,
  473. 0);
  474. /* MLME-SETPROTECTION.request(None) */
  475. wpa_drv_mlme_setprotection(
  476. wpa_s, addr,
  477. MLME_SETPROTECTION_PROTECT_TYPE_NONE,
  478. MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
  479. }
  480. wpa_s->keys_cleared = (u32) -1;
  481. }
  482. /**
  483. * wpa_supplicant_state_txt - Get the connection state name as a text string
  484. * @state: State (wpa_state; WPA_*)
  485. * Returns: The state name as a printable text string
  486. */
  487. const char * wpa_supplicant_state_txt(enum wpa_states state)
  488. {
  489. switch (state) {
  490. case WPA_DISCONNECTED:
  491. return "DISCONNECTED";
  492. case WPA_INACTIVE:
  493. return "INACTIVE";
  494. case WPA_INTERFACE_DISABLED:
  495. return "INTERFACE_DISABLED";
  496. case WPA_SCANNING:
  497. return "SCANNING";
  498. case WPA_AUTHENTICATING:
  499. return "AUTHENTICATING";
  500. case WPA_ASSOCIATING:
  501. return "ASSOCIATING";
  502. case WPA_ASSOCIATED:
  503. return "ASSOCIATED";
  504. case WPA_4WAY_HANDSHAKE:
  505. return "4WAY_HANDSHAKE";
  506. case WPA_GROUP_HANDSHAKE:
  507. return "GROUP_HANDSHAKE";
  508. case WPA_COMPLETED:
  509. return "COMPLETED";
  510. default:
  511. return "UNKNOWN";
  512. }
  513. }
  514. #ifdef CONFIG_BGSCAN
  515. static void wpa_supplicant_start_bgscan(struct wpa_supplicant *wpa_s)
  516. {
  517. const char *name;
  518. if (wpa_s->current_ssid && wpa_s->current_ssid->bgscan)
  519. name = wpa_s->current_ssid->bgscan;
  520. else
  521. name = wpa_s->conf->bgscan;
  522. if (name == NULL || name[0] == '\0')
  523. return;
  524. if (wpas_driver_bss_selection(wpa_s))
  525. return;
  526. if (wpa_s->current_ssid == wpa_s->bgscan_ssid)
  527. return;
  528. #ifdef CONFIG_P2P
  529. if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE)
  530. return;
  531. #endif /* CONFIG_P2P */
  532. bgscan_deinit(wpa_s);
  533. if (wpa_s->current_ssid) {
  534. if (bgscan_init(wpa_s, wpa_s->current_ssid, name)) {
  535. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to initialize "
  536. "bgscan");
  537. /*
  538. * Live without bgscan; it is only used as a roaming
  539. * optimization, so the initial connection is not
  540. * affected.
  541. */
  542. } else {
  543. struct wpa_scan_results *scan_res;
  544. wpa_s->bgscan_ssid = wpa_s->current_ssid;
  545. scan_res = wpa_supplicant_get_scan_results(wpa_s, NULL,
  546. 0);
  547. if (scan_res) {
  548. bgscan_notify_scan(wpa_s, scan_res);
  549. wpa_scan_results_free(scan_res);
  550. }
  551. }
  552. } else
  553. wpa_s->bgscan_ssid = NULL;
  554. }
  555. static void wpa_supplicant_stop_bgscan(struct wpa_supplicant *wpa_s)
  556. {
  557. if (wpa_s->bgscan_ssid != NULL) {
  558. bgscan_deinit(wpa_s);
  559. wpa_s->bgscan_ssid = NULL;
  560. }
  561. }
  562. #endif /* CONFIG_BGSCAN */
  563. static void wpa_supplicant_start_autoscan(struct wpa_supplicant *wpa_s)
  564. {
  565. if (autoscan_init(wpa_s, 0))
  566. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to initialize autoscan");
  567. }
  568. static void wpa_supplicant_stop_autoscan(struct wpa_supplicant *wpa_s)
  569. {
  570. autoscan_deinit(wpa_s);
  571. }
  572. void wpa_supplicant_reinit_autoscan(struct wpa_supplicant *wpa_s)
  573. {
  574. if (wpa_s->wpa_state == WPA_DISCONNECTED ||
  575. wpa_s->wpa_state == WPA_SCANNING) {
  576. autoscan_deinit(wpa_s);
  577. wpa_supplicant_start_autoscan(wpa_s);
  578. }
  579. }
  580. /**
  581. * wpa_supplicant_set_state - Set current connection state
  582. * @wpa_s: Pointer to wpa_supplicant data
  583. * @state: The new connection state
  584. *
  585. * This function is called whenever the connection state changes, e.g.,
  586. * association is completed for WPA/WPA2 4-Way Handshake is started.
  587. */
  588. void wpa_supplicant_set_state(struct wpa_supplicant *wpa_s,
  589. enum wpa_states state)
  590. {
  591. enum wpa_states old_state = wpa_s->wpa_state;
  592. wpa_dbg(wpa_s, MSG_DEBUG, "State: %s -> %s",
  593. wpa_supplicant_state_txt(wpa_s->wpa_state),
  594. wpa_supplicant_state_txt(state));
  595. if (state == WPA_INTERFACE_DISABLED) {
  596. /* Assure normal scan when interface is restored */
  597. wpa_s->normal_scans = 0;
  598. }
  599. if (state == WPA_COMPLETED) {
  600. wpas_connect_work_done(wpa_s);
  601. /* Reinitialize normal_scan counter */
  602. wpa_s->normal_scans = 0;
  603. }
  604. if (state != WPA_SCANNING)
  605. wpa_supplicant_notify_scanning(wpa_s, 0);
  606. if (state == WPA_COMPLETED && wpa_s->new_connection) {
  607. struct wpa_ssid *ssid = wpa_s->current_ssid;
  608. #if defined(CONFIG_CTRL_IFACE) || !defined(CONFIG_NO_STDOUT_DEBUG)
  609. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_CONNECTED "- Connection to "
  610. MACSTR " completed [id=%d id_str=%s]",
  611. MAC2STR(wpa_s->bssid),
  612. ssid ? ssid->id : -1,
  613. ssid && ssid->id_str ? ssid->id_str : "");
  614. #endif /* CONFIG_CTRL_IFACE || !CONFIG_NO_STDOUT_DEBUG */
  615. wpas_clear_temp_disabled(wpa_s, ssid, 1);
  616. wpa_s->extra_blacklist_count = 0;
  617. wpa_s->new_connection = 0;
  618. wpa_drv_set_operstate(wpa_s, 1);
  619. #ifndef IEEE8021X_EAPOL
  620. wpa_drv_set_supp_port(wpa_s, 1);
  621. #endif /* IEEE8021X_EAPOL */
  622. wpa_s->after_wps = 0;
  623. wpa_s->known_wps_freq = 0;
  624. wpas_p2p_completed(wpa_s);
  625. sme_sched_obss_scan(wpa_s, 1);
  626. } else if (state == WPA_DISCONNECTED || state == WPA_ASSOCIATING ||
  627. state == WPA_ASSOCIATED) {
  628. wpa_s->new_connection = 1;
  629. wpa_drv_set_operstate(wpa_s, 0);
  630. #ifndef IEEE8021X_EAPOL
  631. wpa_drv_set_supp_port(wpa_s, 0);
  632. #endif /* IEEE8021X_EAPOL */
  633. sme_sched_obss_scan(wpa_s, 0);
  634. }
  635. wpa_s->wpa_state = state;
  636. #ifdef CONFIG_BGSCAN
  637. if (state == WPA_COMPLETED)
  638. wpa_supplicant_start_bgscan(wpa_s);
  639. else if (state < WPA_ASSOCIATED)
  640. wpa_supplicant_stop_bgscan(wpa_s);
  641. #endif /* CONFIG_BGSCAN */
  642. if (state == WPA_AUTHENTICATING)
  643. wpa_supplicant_stop_autoscan(wpa_s);
  644. if (state == WPA_DISCONNECTED || state == WPA_INACTIVE)
  645. wpa_supplicant_start_autoscan(wpa_s);
  646. if (wpa_s->wpa_state != old_state) {
  647. wpas_notify_state_changed(wpa_s, wpa_s->wpa_state, old_state);
  648. /*
  649. * Notify the P2P Device interface about a state change in one
  650. * of the interfaces.
  651. */
  652. wpas_p2p_indicate_state_change(wpa_s);
  653. if (wpa_s->wpa_state == WPA_COMPLETED ||
  654. old_state == WPA_COMPLETED)
  655. wpas_notify_auth_changed(wpa_s);
  656. }
  657. }
  658. void wpa_supplicant_terminate_proc(struct wpa_global *global)
  659. {
  660. int pending = 0;
  661. #ifdef CONFIG_WPS
  662. struct wpa_supplicant *wpa_s = global->ifaces;
  663. while (wpa_s) {
  664. struct wpa_supplicant *next = wpa_s->next;
  665. if (wpas_wps_terminate_pending(wpa_s) == 1)
  666. pending = 1;
  667. #ifdef CONFIG_P2P
  668. if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE ||
  669. (wpa_s->current_ssid && wpa_s->current_ssid->p2p_group))
  670. wpas_p2p_disconnect(wpa_s);
  671. #endif /* CONFIG_P2P */
  672. wpa_s = next;
  673. }
  674. #endif /* CONFIG_WPS */
  675. if (pending)
  676. return;
  677. eloop_terminate();
  678. }
  679. static void wpa_supplicant_terminate(int sig, void *signal_ctx)
  680. {
  681. struct wpa_global *global = signal_ctx;
  682. wpa_supplicant_terminate_proc(global);
  683. }
  684. void wpa_supplicant_clear_status(struct wpa_supplicant *wpa_s)
  685. {
  686. enum wpa_states old_state = wpa_s->wpa_state;
  687. wpa_s->pairwise_cipher = 0;
  688. wpa_s->group_cipher = 0;
  689. wpa_s->mgmt_group_cipher = 0;
  690. wpa_s->key_mgmt = 0;
  691. if (wpa_s->wpa_state != WPA_INTERFACE_DISABLED)
  692. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  693. if (wpa_s->wpa_state != old_state)
  694. wpas_notify_state_changed(wpa_s, wpa_s->wpa_state, old_state);
  695. }
  696. /**
  697. * wpa_supplicant_reload_configuration - Reload configuration data
  698. * @wpa_s: Pointer to wpa_supplicant data
  699. * Returns: 0 on success or -1 if configuration parsing failed
  700. *
  701. * This function can be used to request that the configuration data is reloaded
  702. * (e.g., after configuration file change). This function is reloading
  703. * configuration only for one interface, so this may need to be called multiple
  704. * times if %wpa_supplicant is controlling multiple interfaces and all
  705. * interfaces need reconfiguration.
  706. */
  707. int wpa_supplicant_reload_configuration(struct wpa_supplicant *wpa_s)
  708. {
  709. struct wpa_config *conf;
  710. int reconf_ctrl;
  711. int old_ap_scan;
  712. if (wpa_s->confname == NULL)
  713. return -1;
  714. conf = wpa_config_read(wpa_s->confname, NULL);
  715. if (conf == NULL) {
  716. wpa_msg(wpa_s, MSG_ERROR, "Failed to parse the configuration "
  717. "file '%s' - exiting", wpa_s->confname);
  718. return -1;
  719. }
  720. wpa_config_read(wpa_s->confanother, conf);
  721. conf->changed_parameters = (unsigned int) -1;
  722. reconf_ctrl = !!conf->ctrl_interface != !!wpa_s->conf->ctrl_interface
  723. || (conf->ctrl_interface && wpa_s->conf->ctrl_interface &&
  724. os_strcmp(conf->ctrl_interface,
  725. wpa_s->conf->ctrl_interface) != 0);
  726. if (reconf_ctrl && wpa_s->ctrl_iface) {
  727. wpa_supplicant_ctrl_iface_deinit(wpa_s->ctrl_iface);
  728. wpa_s->ctrl_iface = NULL;
  729. }
  730. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  731. if (wpa_s->current_ssid) {
  732. wpa_supplicant_deauthenticate(wpa_s,
  733. WLAN_REASON_DEAUTH_LEAVING);
  734. }
  735. /*
  736. * TODO: should notify EAPOL SM about changes in opensc_engine_path,
  737. * pkcs11_engine_path, pkcs11_module_path, openssl_ciphers.
  738. */
  739. if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt)) {
  740. /*
  741. * Clear forced success to clear EAP state for next
  742. * authentication.
  743. */
  744. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  745. }
  746. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  747. wpa_sm_set_config(wpa_s->wpa, NULL);
  748. wpa_sm_pmksa_cache_flush(wpa_s->wpa, NULL);
  749. wpa_sm_set_fast_reauth(wpa_s->wpa, wpa_s->conf->fast_reauth);
  750. rsn_preauth_deinit(wpa_s->wpa);
  751. old_ap_scan = wpa_s->conf->ap_scan;
  752. wpa_config_free(wpa_s->conf);
  753. wpa_s->conf = conf;
  754. if (old_ap_scan != wpa_s->conf->ap_scan)
  755. wpas_notify_ap_scan_changed(wpa_s);
  756. if (reconf_ctrl)
  757. wpa_s->ctrl_iface = wpa_supplicant_ctrl_iface_init(wpa_s);
  758. wpa_supplicant_update_config(wpa_s);
  759. wpa_supplicant_clear_status(wpa_s);
  760. if (wpa_supplicant_enabled_networks(wpa_s)) {
  761. wpa_s->reassociate = 1;
  762. wpa_supplicant_req_scan(wpa_s, 0, 0);
  763. }
  764. wpa_dbg(wpa_s, MSG_DEBUG, "Reconfiguration completed");
  765. return 0;
  766. }
  767. static void wpa_supplicant_reconfig(int sig, void *signal_ctx)
  768. {
  769. struct wpa_global *global = signal_ctx;
  770. struct wpa_supplicant *wpa_s;
  771. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  772. wpa_dbg(wpa_s, MSG_DEBUG, "Signal %d received - reconfiguring",
  773. sig);
  774. if (wpa_supplicant_reload_configuration(wpa_s) < 0) {
  775. wpa_supplicant_terminate_proc(global);
  776. }
  777. }
  778. }
  779. static int wpa_supplicant_suites_from_ai(struct wpa_supplicant *wpa_s,
  780. struct wpa_ssid *ssid,
  781. struct wpa_ie_data *ie)
  782. {
  783. int ret = wpa_sm_parse_own_wpa_ie(wpa_s->wpa, ie);
  784. if (ret) {
  785. if (ret == -2) {
  786. wpa_msg(wpa_s, MSG_INFO, "WPA: Failed to parse WPA IE "
  787. "from association info");
  788. }
  789. return -1;
  790. }
  791. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Using WPA IE from AssocReq to set "
  792. "cipher suites");
  793. if (!(ie->group_cipher & ssid->group_cipher)) {
  794. wpa_msg(wpa_s, MSG_INFO, "WPA: Driver used disabled group "
  795. "cipher 0x%x (mask 0x%x) - reject",
  796. ie->group_cipher, ssid->group_cipher);
  797. return -1;
  798. }
  799. if (!(ie->pairwise_cipher & ssid->pairwise_cipher)) {
  800. wpa_msg(wpa_s, MSG_INFO, "WPA: Driver used disabled pairwise "
  801. "cipher 0x%x (mask 0x%x) - reject",
  802. ie->pairwise_cipher, ssid->pairwise_cipher);
  803. return -1;
  804. }
  805. if (!(ie->key_mgmt & ssid->key_mgmt)) {
  806. wpa_msg(wpa_s, MSG_INFO, "WPA: Driver used disabled key "
  807. "management 0x%x (mask 0x%x) - reject",
  808. ie->key_mgmt, ssid->key_mgmt);
  809. return -1;
  810. }
  811. #ifdef CONFIG_IEEE80211W
  812. if (!(ie->capabilities & WPA_CAPABILITY_MFPC) &&
  813. (ssid->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT ?
  814. wpa_s->conf->pmf : ssid->ieee80211w) ==
  815. MGMT_FRAME_PROTECTION_REQUIRED) {
  816. wpa_msg(wpa_s, MSG_INFO, "WPA: Driver associated with an AP "
  817. "that does not support management frame protection - "
  818. "reject");
  819. return -1;
  820. }
  821. #endif /* CONFIG_IEEE80211W */
  822. return 0;
  823. }
  824. /**
  825. * wpa_supplicant_set_suites - Set authentication and encryption parameters
  826. * @wpa_s: Pointer to wpa_supplicant data
  827. * @bss: Scan results for the selected BSS, or %NULL if not available
  828. * @ssid: Configuration data for the selected network
  829. * @wpa_ie: Buffer for the WPA/RSN IE
  830. * @wpa_ie_len: Maximum wpa_ie buffer size on input. This is changed to be the
  831. * used buffer length in case the functions returns success.
  832. * Returns: 0 on success or -1 on failure
  833. *
  834. * This function is used to configure authentication and encryption parameters
  835. * based on the network configuration and scan result for the selected BSS (if
  836. * available).
  837. */
  838. int wpa_supplicant_set_suites(struct wpa_supplicant *wpa_s,
  839. struct wpa_bss *bss, struct wpa_ssid *ssid,
  840. u8 *wpa_ie, size_t *wpa_ie_len)
  841. {
  842. struct wpa_ie_data ie;
  843. int sel, proto;
  844. const u8 *bss_wpa, *bss_rsn, *bss_osen;
  845. if (bss) {
  846. bss_wpa = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  847. bss_rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  848. bss_osen = wpa_bss_get_vendor_ie(bss, OSEN_IE_VENDOR_TYPE);
  849. } else
  850. bss_wpa = bss_rsn = bss_osen = NULL;
  851. if (bss_rsn && (ssid->proto & WPA_PROTO_RSN) &&
  852. wpa_parse_wpa_ie(bss_rsn, 2 + bss_rsn[1], &ie) == 0 &&
  853. (ie.group_cipher & ssid->group_cipher) &&
  854. (ie.pairwise_cipher & ssid->pairwise_cipher) &&
  855. (ie.key_mgmt & ssid->key_mgmt)) {
  856. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: using IEEE 802.11i/D9.0");
  857. proto = WPA_PROTO_RSN;
  858. } else if (bss_wpa && (ssid->proto & WPA_PROTO_WPA) &&
  859. wpa_parse_wpa_ie(bss_wpa, 2 +bss_wpa[1], &ie) == 0 &&
  860. (ie.group_cipher & ssid->group_cipher) &&
  861. (ie.pairwise_cipher & ssid->pairwise_cipher) &&
  862. (ie.key_mgmt & ssid->key_mgmt)) {
  863. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using IEEE 802.11i/D3.0");
  864. proto = WPA_PROTO_WPA;
  865. #ifdef CONFIG_HS20
  866. } else if (bss_osen && (ssid->proto & WPA_PROTO_OSEN)) {
  867. wpa_dbg(wpa_s, MSG_DEBUG, "HS 2.0: using OSEN");
  868. /* TODO: parse OSEN element */
  869. os_memset(&ie, 0, sizeof(ie));
  870. ie.group_cipher = WPA_CIPHER_CCMP;
  871. ie.pairwise_cipher = WPA_CIPHER_CCMP;
  872. ie.key_mgmt = WPA_KEY_MGMT_OSEN;
  873. proto = WPA_PROTO_OSEN;
  874. #endif /* CONFIG_HS20 */
  875. } else if (bss) {
  876. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select WPA/RSN");
  877. return -1;
  878. } else {
  879. if (ssid->proto & WPA_PROTO_OSEN)
  880. proto = WPA_PROTO_OSEN;
  881. else if (ssid->proto & WPA_PROTO_RSN)
  882. proto = WPA_PROTO_RSN;
  883. else
  884. proto = WPA_PROTO_WPA;
  885. if (wpa_supplicant_suites_from_ai(wpa_s, ssid, &ie) < 0) {
  886. os_memset(&ie, 0, sizeof(ie));
  887. ie.group_cipher = ssid->group_cipher;
  888. ie.pairwise_cipher = ssid->pairwise_cipher;
  889. ie.key_mgmt = ssid->key_mgmt;
  890. #ifdef CONFIG_IEEE80211W
  891. ie.mgmt_group_cipher =
  892. ssid->ieee80211w != NO_MGMT_FRAME_PROTECTION ?
  893. WPA_CIPHER_AES_128_CMAC : 0;
  894. #endif /* CONFIG_IEEE80211W */
  895. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Set cipher suites "
  896. "based on configuration");
  897. } else
  898. proto = ie.proto;
  899. }
  900. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Selected cipher suites: group %d "
  901. "pairwise %d key_mgmt %d proto %d",
  902. ie.group_cipher, ie.pairwise_cipher, ie.key_mgmt, proto);
  903. #ifdef CONFIG_IEEE80211W
  904. if (ssid->ieee80211w) {
  905. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Selected mgmt group cipher %d",
  906. ie.mgmt_group_cipher);
  907. }
  908. #endif /* CONFIG_IEEE80211W */
  909. wpa_s->wpa_proto = proto;
  910. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_PROTO, proto);
  911. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_RSN_ENABLED,
  912. !!(ssid->proto & (WPA_PROTO_RSN | WPA_PROTO_OSEN)));
  913. if (bss || !wpa_s->ap_ies_from_associnfo) {
  914. if (wpa_sm_set_ap_wpa_ie(wpa_s->wpa, bss_wpa,
  915. bss_wpa ? 2 + bss_wpa[1] : 0) ||
  916. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, bss_rsn,
  917. bss_rsn ? 2 + bss_rsn[1] : 0))
  918. return -1;
  919. }
  920. sel = ie.group_cipher & ssid->group_cipher;
  921. wpa_s->group_cipher = wpa_pick_group_cipher(sel);
  922. if (wpa_s->group_cipher < 0) {
  923. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select group "
  924. "cipher");
  925. return -1;
  926. }
  927. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using GTK %s",
  928. wpa_cipher_txt(wpa_s->group_cipher));
  929. sel = ie.pairwise_cipher & ssid->pairwise_cipher;
  930. wpa_s->pairwise_cipher = wpa_pick_pairwise_cipher(sel, 1);
  931. if (wpa_s->pairwise_cipher < 0) {
  932. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select pairwise "
  933. "cipher");
  934. return -1;
  935. }
  936. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using PTK %s",
  937. wpa_cipher_txt(wpa_s->pairwise_cipher));
  938. sel = ie.key_mgmt & ssid->key_mgmt;
  939. #ifdef CONFIG_SAE
  940. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SAE))
  941. sel &= ~(WPA_KEY_MGMT_SAE | WPA_KEY_MGMT_FT_SAE);
  942. #endif /* CONFIG_SAE */
  943. if (0) {
  944. #ifdef CONFIG_IEEE80211R
  945. } else if (sel & WPA_KEY_MGMT_FT_IEEE8021X) {
  946. wpa_s->key_mgmt = WPA_KEY_MGMT_FT_IEEE8021X;
  947. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FT/802.1X");
  948. } else if (sel & WPA_KEY_MGMT_FT_PSK) {
  949. wpa_s->key_mgmt = WPA_KEY_MGMT_FT_PSK;
  950. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FT/PSK");
  951. #endif /* CONFIG_IEEE80211R */
  952. #ifdef CONFIG_SAE
  953. } else if (sel & WPA_KEY_MGMT_SAE) {
  954. wpa_s->key_mgmt = WPA_KEY_MGMT_SAE;
  955. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: using KEY_MGMT SAE");
  956. } else if (sel & WPA_KEY_MGMT_FT_SAE) {
  957. wpa_s->key_mgmt = WPA_KEY_MGMT_FT_SAE;
  958. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: using KEY_MGMT FT/SAE");
  959. #endif /* CONFIG_SAE */
  960. #ifdef CONFIG_IEEE80211W
  961. } else if (sel & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  962. wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X_SHA256;
  963. wpa_dbg(wpa_s, MSG_DEBUG,
  964. "WPA: using KEY_MGMT 802.1X with SHA256");
  965. } else if (sel & WPA_KEY_MGMT_PSK_SHA256) {
  966. wpa_s->key_mgmt = WPA_KEY_MGMT_PSK_SHA256;
  967. wpa_dbg(wpa_s, MSG_DEBUG,
  968. "WPA: using KEY_MGMT PSK with SHA256");
  969. #endif /* CONFIG_IEEE80211W */
  970. } else if (sel & WPA_KEY_MGMT_IEEE8021X) {
  971. wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X;
  972. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT 802.1X");
  973. } else if (sel & WPA_KEY_MGMT_PSK) {
  974. wpa_s->key_mgmt = WPA_KEY_MGMT_PSK;
  975. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT WPA-PSK");
  976. } else if (sel & WPA_KEY_MGMT_WPA_NONE) {
  977. wpa_s->key_mgmt = WPA_KEY_MGMT_WPA_NONE;
  978. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT WPA-NONE");
  979. #ifdef CONFIG_HS20
  980. } else if (sel & WPA_KEY_MGMT_OSEN) {
  981. wpa_s->key_mgmt = WPA_KEY_MGMT_OSEN;
  982. wpa_dbg(wpa_s, MSG_DEBUG, "HS 2.0: using KEY_MGMT OSEN");
  983. #endif /* CONFIG_HS20 */
  984. } else {
  985. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select "
  986. "authenticated key management type");
  987. return -1;
  988. }
  989. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_KEY_MGMT, wpa_s->key_mgmt);
  990. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_PAIRWISE,
  991. wpa_s->pairwise_cipher);
  992. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_GROUP, wpa_s->group_cipher);
  993. #ifdef CONFIG_IEEE80211W
  994. sel = ie.mgmt_group_cipher;
  995. if ((ssid->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT ?
  996. wpa_s->conf->pmf : ssid->ieee80211w) == NO_MGMT_FRAME_PROTECTION ||
  997. !(ie.capabilities & WPA_CAPABILITY_MFPC))
  998. sel = 0;
  999. if (sel & WPA_CIPHER_AES_128_CMAC) {
  1000. wpa_s->mgmt_group_cipher = WPA_CIPHER_AES_128_CMAC;
  1001. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using MGMT group cipher "
  1002. "AES-128-CMAC");
  1003. } else if (sel & WPA_CIPHER_BIP_GMAC_128) {
  1004. wpa_s->mgmt_group_cipher = WPA_CIPHER_BIP_GMAC_128;
  1005. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using MGMT group cipher "
  1006. "BIP-GMAC-128");
  1007. } else if (sel & WPA_CIPHER_BIP_GMAC_256) {
  1008. wpa_s->mgmt_group_cipher = WPA_CIPHER_BIP_GMAC_256;
  1009. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using MGMT group cipher "
  1010. "BIP-GMAC-256");
  1011. } else if (sel & WPA_CIPHER_BIP_CMAC_256) {
  1012. wpa_s->mgmt_group_cipher = WPA_CIPHER_BIP_CMAC_256;
  1013. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using MGMT group cipher "
  1014. "BIP-CMAC-256");
  1015. } else {
  1016. wpa_s->mgmt_group_cipher = 0;
  1017. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: not using MGMT group cipher");
  1018. }
  1019. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_MGMT_GROUP,
  1020. wpa_s->mgmt_group_cipher);
  1021. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_MFP,
  1022. (ssid->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT ?
  1023. wpa_s->conf->pmf : ssid->ieee80211w));
  1024. #endif /* CONFIG_IEEE80211W */
  1025. if (wpa_sm_set_assoc_wpa_ie_default(wpa_s->wpa, wpa_ie, wpa_ie_len)) {
  1026. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to generate WPA IE");
  1027. return -1;
  1028. }
  1029. if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt)) {
  1030. wpa_sm_set_pmk(wpa_s->wpa, ssid->psk, PMK_LEN, NULL);
  1031. #ifndef CONFIG_NO_PBKDF2
  1032. if (bss && ssid->bssid_set && ssid->ssid_len == 0 &&
  1033. ssid->passphrase) {
  1034. u8 psk[PMK_LEN];
  1035. pbkdf2_sha1(ssid->passphrase, bss->ssid, bss->ssid_len,
  1036. 4096, psk, PMK_LEN);
  1037. wpa_hexdump_key(MSG_MSGDUMP, "PSK (from passphrase)",
  1038. psk, PMK_LEN);
  1039. wpa_sm_set_pmk(wpa_s->wpa, psk, PMK_LEN, NULL);
  1040. }
  1041. #endif /* CONFIG_NO_PBKDF2 */
  1042. #ifdef CONFIG_EXT_PASSWORD
  1043. if (ssid->ext_psk) {
  1044. struct wpabuf *pw = ext_password_get(wpa_s->ext_pw,
  1045. ssid->ext_psk);
  1046. char pw_str[64 + 1];
  1047. u8 psk[PMK_LEN];
  1048. if (pw == NULL) {
  1049. wpa_msg(wpa_s, MSG_INFO, "EXT PW: No PSK "
  1050. "found from external storage");
  1051. return -1;
  1052. }
  1053. if (wpabuf_len(pw) < 8 || wpabuf_len(pw) > 64) {
  1054. wpa_msg(wpa_s, MSG_INFO, "EXT PW: Unexpected "
  1055. "PSK length %d in external storage",
  1056. (int) wpabuf_len(pw));
  1057. ext_password_free(pw);
  1058. return -1;
  1059. }
  1060. os_memcpy(pw_str, wpabuf_head(pw), wpabuf_len(pw));
  1061. pw_str[wpabuf_len(pw)] = '\0';
  1062. #ifndef CONFIG_NO_PBKDF2
  1063. if (wpabuf_len(pw) >= 8 && wpabuf_len(pw) < 64 && bss)
  1064. {
  1065. pbkdf2_sha1(pw_str, bss->ssid, bss->ssid_len,
  1066. 4096, psk, PMK_LEN);
  1067. os_memset(pw_str, 0, sizeof(pw_str));
  1068. wpa_hexdump_key(MSG_MSGDUMP, "PSK (from "
  1069. "external passphrase)",
  1070. psk, PMK_LEN);
  1071. wpa_sm_set_pmk(wpa_s->wpa, psk, PMK_LEN, NULL);
  1072. } else
  1073. #endif /* CONFIG_NO_PBKDF2 */
  1074. if (wpabuf_len(pw) == 2 * PMK_LEN) {
  1075. if (hexstr2bin(pw_str, psk, PMK_LEN) < 0) {
  1076. wpa_msg(wpa_s, MSG_INFO, "EXT PW: "
  1077. "Invalid PSK hex string");
  1078. os_memset(pw_str, 0, sizeof(pw_str));
  1079. ext_password_free(pw);
  1080. return -1;
  1081. }
  1082. wpa_sm_set_pmk(wpa_s->wpa, psk, PMK_LEN, NULL);
  1083. } else {
  1084. wpa_msg(wpa_s, MSG_INFO, "EXT PW: No suitable "
  1085. "PSK available");
  1086. os_memset(pw_str, 0, sizeof(pw_str));
  1087. ext_password_free(pw);
  1088. return -1;
  1089. }
  1090. os_memset(pw_str, 0, sizeof(pw_str));
  1091. ext_password_free(pw);
  1092. }
  1093. #endif /* CONFIG_EXT_PASSWORD */
  1094. } else
  1095. wpa_sm_set_pmk_from_pmksa(wpa_s->wpa);
  1096. return 0;
  1097. }
  1098. static void wpas_ext_capab_byte(struct wpa_supplicant *wpa_s, u8 *pos, int idx)
  1099. {
  1100. *pos = 0x00;
  1101. switch (idx) {
  1102. case 0: /* Bits 0-7 */
  1103. break;
  1104. case 1: /* Bits 8-15 */
  1105. break;
  1106. case 2: /* Bits 16-23 */
  1107. #ifdef CONFIG_WNM
  1108. *pos |= 0x02; /* Bit 17 - WNM-Sleep Mode */
  1109. *pos |= 0x08; /* Bit 19 - BSS Transition */
  1110. #endif /* CONFIG_WNM */
  1111. break;
  1112. case 3: /* Bits 24-31 */
  1113. #ifdef CONFIG_WNM
  1114. *pos |= 0x02; /* Bit 25 - SSID List */
  1115. #endif /* CONFIG_WNM */
  1116. #ifdef CONFIG_INTERWORKING
  1117. if (wpa_s->conf->interworking)
  1118. *pos |= 0x80; /* Bit 31 - Interworking */
  1119. #endif /* CONFIG_INTERWORKING */
  1120. break;
  1121. case 4: /* Bits 32-39 */
  1122. #ifdef CONFIG_INTERWORKING
  1123. if (wpa_s->drv_flags / WPA_DRIVER_FLAGS_QOS_MAPPING)
  1124. *pos |= 0x01; /* Bit 32 - QoS Map */
  1125. #endif /* CONFIG_INTERWORKING */
  1126. break;
  1127. case 5: /* Bits 40-47 */
  1128. #ifdef CONFIG_HS20
  1129. if (wpa_s->conf->hs20)
  1130. *pos |= 0x40; /* Bit 46 - WNM-Notification */
  1131. #endif /* CONFIG_HS20 */
  1132. break;
  1133. case 6: /* Bits 48-55 */
  1134. break;
  1135. }
  1136. }
  1137. int wpas_build_ext_capab(struct wpa_supplicant *wpa_s, u8 *buf, size_t buflen)
  1138. {
  1139. u8 *pos = buf;
  1140. u8 len = 6, i;
  1141. if (len < wpa_s->extended_capa_len)
  1142. len = wpa_s->extended_capa_len;
  1143. if (buflen < (size_t) len + 2) {
  1144. wpa_printf(MSG_INFO,
  1145. "Not enough room for building extended capabilities element");
  1146. return -1;
  1147. }
  1148. *pos++ = WLAN_EID_EXT_CAPAB;
  1149. *pos++ = len;
  1150. for (i = 0; i < len; i++, pos++) {
  1151. wpas_ext_capab_byte(wpa_s, pos, i);
  1152. if (i < wpa_s->extended_capa_len) {
  1153. *pos &= ~wpa_s->extended_capa_mask[i];
  1154. *pos |= wpa_s->extended_capa[i];
  1155. }
  1156. }
  1157. while (len > 0 && buf[1 + len] == 0) {
  1158. len--;
  1159. buf[1] = len;
  1160. }
  1161. if (len == 0)
  1162. return 0;
  1163. return 2 + len;
  1164. }
  1165. static int wpas_valid_bss(struct wpa_supplicant *wpa_s,
  1166. struct wpa_bss *test_bss)
  1167. {
  1168. struct wpa_bss *bss;
  1169. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  1170. if (bss == test_bss)
  1171. return 1;
  1172. }
  1173. return 0;
  1174. }
  1175. static int wpas_valid_ssid(struct wpa_supplicant *wpa_s,
  1176. struct wpa_ssid *test_ssid)
  1177. {
  1178. struct wpa_ssid *ssid;
  1179. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  1180. if (ssid == test_ssid)
  1181. return 1;
  1182. }
  1183. return 0;
  1184. }
  1185. int wpas_valid_bss_ssid(struct wpa_supplicant *wpa_s, struct wpa_bss *test_bss,
  1186. struct wpa_ssid *test_ssid)
  1187. {
  1188. if (test_bss && !wpas_valid_bss(wpa_s, test_bss))
  1189. return 0;
  1190. return test_ssid == NULL || wpas_valid_ssid(wpa_s, test_ssid);
  1191. }
  1192. void wpas_connect_work_free(struct wpa_connect_work *cwork)
  1193. {
  1194. if (cwork == NULL)
  1195. return;
  1196. os_free(cwork);
  1197. }
  1198. void wpas_connect_work_done(struct wpa_supplicant *wpa_s)
  1199. {
  1200. struct wpa_connect_work *cwork;
  1201. struct wpa_radio_work *work = wpa_s->connect_work;
  1202. if (!work)
  1203. return;
  1204. wpa_s->connect_work = NULL;
  1205. cwork = work->ctx;
  1206. work->ctx = NULL;
  1207. wpas_connect_work_free(cwork);
  1208. radio_work_done(work);
  1209. }
  1210. int wpas_update_random_addr(struct wpa_supplicant *wpa_s, int style)
  1211. {
  1212. struct os_reltime now;
  1213. u8 addr[ETH_ALEN];
  1214. os_get_reltime(&now);
  1215. if (wpa_s->last_mac_addr_style == style &&
  1216. wpa_s->last_mac_addr_change.sec != 0 &&
  1217. !os_reltime_expired(&now, &wpa_s->last_mac_addr_change,
  1218. wpa_s->conf->rand_addr_lifetime)) {
  1219. wpa_msg(wpa_s, MSG_DEBUG,
  1220. "Previously selected random MAC address has not yet expired");
  1221. return 0;
  1222. }
  1223. switch (style) {
  1224. case 1:
  1225. if (random_mac_addr(addr) < 0)
  1226. return -1;
  1227. break;
  1228. case 2:
  1229. os_memcpy(addr, wpa_s->perm_addr, ETH_ALEN);
  1230. if (random_mac_addr_keep_oui(addr) < 0)
  1231. return -1;
  1232. break;
  1233. default:
  1234. return -1;
  1235. }
  1236. if (wpa_drv_set_mac_addr(wpa_s, addr) < 0) {
  1237. wpa_msg(wpa_s, MSG_INFO,
  1238. "Failed to set random MAC address");
  1239. return -1;
  1240. }
  1241. os_get_reltime(&wpa_s->last_mac_addr_change);
  1242. wpa_s->mac_addr_changed = 1;
  1243. wpa_s->last_mac_addr_style = style;
  1244. if (wpa_supplicant_update_mac_addr(wpa_s) < 0) {
  1245. wpa_msg(wpa_s, MSG_INFO,
  1246. "Could not update MAC address information");
  1247. return -1;
  1248. }
  1249. wpa_msg(wpa_s, MSG_DEBUG, "Using random MAC address " MACSTR,
  1250. MAC2STR(addr));
  1251. return 0;
  1252. }
  1253. int wpas_update_random_addr_disassoc(struct wpa_supplicant *wpa_s)
  1254. {
  1255. if (wpa_s->wpa_state >= WPA_AUTHENTICATING ||
  1256. !wpa_s->conf->preassoc_mac_addr)
  1257. return 0;
  1258. return wpas_update_random_addr(wpa_s, wpa_s->conf->preassoc_mac_addr);
  1259. }
  1260. static void wpas_start_assoc_cb(struct wpa_radio_work *work, int deinit);
  1261. /**
  1262. * wpa_supplicant_associate - Request association
  1263. * @wpa_s: Pointer to wpa_supplicant data
  1264. * @bss: Scan results for the selected BSS, or %NULL if not available
  1265. * @ssid: Configuration data for the selected network
  1266. *
  1267. * This function is used to request %wpa_supplicant to associate with a BSS.
  1268. */
  1269. void wpa_supplicant_associate(struct wpa_supplicant *wpa_s,
  1270. struct wpa_bss *bss, struct wpa_ssid *ssid)
  1271. {
  1272. struct wpa_connect_work *cwork;
  1273. int rand_style;
  1274. if (ssid->mac_addr == -1)
  1275. rand_style = wpa_s->conf->mac_addr;
  1276. else
  1277. rand_style = ssid->mac_addr;
  1278. if (wpa_s->last_ssid == ssid) {
  1279. wpa_dbg(wpa_s, MSG_DEBUG, "Re-association to the same ESS");
  1280. } else if (rand_style > 0) {
  1281. if (wpas_update_random_addr(wpa_s, rand_style) < 0)
  1282. return;
  1283. wpa_sm_pmksa_cache_flush(wpa_s->wpa, ssid);
  1284. } else if (wpa_s->mac_addr_changed) {
  1285. if (wpa_drv_set_mac_addr(wpa_s, NULL) < 0) {
  1286. wpa_msg(wpa_s, MSG_INFO,
  1287. "Could not restore permanent MAC address");
  1288. return;
  1289. }
  1290. wpa_s->mac_addr_changed = 0;
  1291. if (wpa_supplicant_update_mac_addr(wpa_s) < 0) {
  1292. wpa_msg(wpa_s, MSG_INFO,
  1293. "Could not update MAC address information");
  1294. return;
  1295. }
  1296. wpa_msg(wpa_s, MSG_DEBUG, "Using permanent MAC address");
  1297. }
  1298. wpa_s->last_ssid = ssid;
  1299. #ifdef CONFIG_IBSS_RSN
  1300. ibss_rsn_deinit(wpa_s->ibss_rsn);
  1301. wpa_s->ibss_rsn = NULL;
  1302. #endif /* CONFIG_IBSS_RSN */
  1303. if (ssid->mode == WPAS_MODE_AP || ssid->mode == WPAS_MODE_P2P_GO ||
  1304. ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  1305. #ifdef CONFIG_AP
  1306. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_AP)) {
  1307. wpa_msg(wpa_s, MSG_INFO, "Driver does not support AP "
  1308. "mode");
  1309. return;
  1310. }
  1311. if (wpa_supplicant_create_ap(wpa_s, ssid) < 0) {
  1312. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  1313. if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)
  1314. wpas_p2p_ap_setup_failed(wpa_s);
  1315. return;
  1316. }
  1317. wpa_s->current_bss = bss;
  1318. #else /* CONFIG_AP */
  1319. wpa_msg(wpa_s, MSG_ERROR, "AP mode support not included in "
  1320. "the build");
  1321. #endif /* CONFIG_AP */
  1322. return;
  1323. }
  1324. #ifdef CONFIG_TDLS
  1325. if (bss)
  1326. wpa_tdls_ap_ies(wpa_s->wpa, (const u8 *) (bss + 1),
  1327. bss->ie_len);
  1328. #endif /* CONFIG_TDLS */
  1329. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) &&
  1330. ssid->mode == IEEE80211_MODE_INFRA) {
  1331. sme_authenticate(wpa_s, bss, ssid);
  1332. return;
  1333. }
  1334. if (wpa_s->connect_work) {
  1335. wpa_dbg(wpa_s, MSG_DEBUG, "Reject wpa_supplicant_associate() call since connect_work exist");
  1336. return;
  1337. }
  1338. if (radio_work_pending(wpa_s, "connect")) {
  1339. wpa_dbg(wpa_s, MSG_DEBUG, "Reject wpa_supplicant_associate() call since pending work exist");
  1340. return;
  1341. }
  1342. cwork = os_zalloc(sizeof(*cwork));
  1343. if (cwork == NULL)
  1344. return;
  1345. cwork->bss = bss;
  1346. cwork->ssid = ssid;
  1347. if (radio_add_work(wpa_s, bss ? bss->freq : 0, "connect", 1,
  1348. wpas_start_assoc_cb, cwork) < 0) {
  1349. os_free(cwork);
  1350. }
  1351. }
  1352. static void wpas_start_assoc_cb(struct wpa_radio_work *work, int deinit)
  1353. {
  1354. struct wpa_connect_work *cwork = work->ctx;
  1355. struct wpa_bss *bss = cwork->bss;
  1356. struct wpa_ssid *ssid = cwork->ssid;
  1357. struct wpa_supplicant *wpa_s = work->wpa_s;
  1358. u8 wpa_ie[200];
  1359. size_t wpa_ie_len;
  1360. int use_crypt, ret, i, bssid_changed;
  1361. int algs = WPA_AUTH_ALG_OPEN;
  1362. unsigned int cipher_pairwise, cipher_group;
  1363. struct wpa_driver_associate_params params;
  1364. int wep_keys_set = 0;
  1365. int assoc_failed = 0;
  1366. struct wpa_ssid *old_ssid;
  1367. #ifdef CONFIG_HT_OVERRIDES
  1368. struct ieee80211_ht_capabilities htcaps;
  1369. struct ieee80211_ht_capabilities htcaps_mask;
  1370. #endif /* CONFIG_HT_OVERRIDES */
  1371. #ifdef CONFIG_VHT_OVERRIDES
  1372. struct ieee80211_vht_capabilities vhtcaps;
  1373. struct ieee80211_vht_capabilities vhtcaps_mask;
  1374. #endif /* CONFIG_VHT_OVERRIDES */
  1375. if (deinit) {
  1376. if (work->started) {
  1377. wpa_s->connect_work = NULL;
  1378. /* cancel possible auth. timeout */
  1379. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s,
  1380. NULL);
  1381. }
  1382. wpas_connect_work_free(cwork);
  1383. return;
  1384. }
  1385. wpa_s->connect_work = work;
  1386. if (!wpas_valid_bss_ssid(wpa_s, bss, ssid)) {
  1387. wpa_dbg(wpa_s, MSG_DEBUG, "BSS/SSID entry for association not valid anymore - drop connection attempt");
  1388. wpas_connect_work_done(wpa_s);
  1389. return;
  1390. }
  1391. os_memset(&params, 0, sizeof(params));
  1392. wpa_s->reassociate = 0;
  1393. wpa_s->eap_expected_failure = 0;
  1394. if (bss && !wpas_driver_bss_selection(wpa_s)) {
  1395. #ifdef CONFIG_IEEE80211R
  1396. const u8 *ie, *md = NULL;
  1397. #endif /* CONFIG_IEEE80211R */
  1398. wpa_msg(wpa_s, MSG_INFO, "Trying to associate with " MACSTR
  1399. " (SSID='%s' freq=%d MHz)", MAC2STR(bss->bssid),
  1400. wpa_ssid_txt(bss->ssid, bss->ssid_len), bss->freq);
  1401. bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
  1402. os_memset(wpa_s->bssid, 0, ETH_ALEN);
  1403. os_memcpy(wpa_s->pending_bssid, bss->bssid, ETH_ALEN);
  1404. if (bssid_changed)
  1405. wpas_notify_bssid_changed(wpa_s);
  1406. #ifdef CONFIG_IEEE80211R
  1407. ie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
  1408. if (ie && ie[1] >= MOBILITY_DOMAIN_ID_LEN)
  1409. md = ie + 2;
  1410. wpa_sm_set_ft_params(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0);
  1411. if (md) {
  1412. /* Prepare for the next transition */
  1413. wpa_ft_prepare_auth_request(wpa_s->wpa, ie);
  1414. }
  1415. #endif /* CONFIG_IEEE80211R */
  1416. #ifdef CONFIG_WPS
  1417. } else if ((ssid->ssid == NULL || ssid->ssid_len == 0) &&
  1418. wpa_s->conf->ap_scan == 2 &&
  1419. (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
  1420. /* Use ap_scan==1 style network selection to find the network
  1421. */
  1422. wpa_s->scan_req = MANUAL_SCAN_REQ;
  1423. wpa_s->reassociate = 1;
  1424. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1425. return;
  1426. #endif /* CONFIG_WPS */
  1427. } else {
  1428. wpa_msg(wpa_s, MSG_INFO, "Trying to associate with SSID '%s'",
  1429. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  1430. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  1431. }
  1432. wpa_supplicant_cancel_sched_scan(wpa_s);
  1433. wpa_supplicant_cancel_scan(wpa_s);
  1434. /* Starting new association, so clear the possibly used WPA IE from the
  1435. * previous association. */
  1436. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  1437. #ifdef IEEE8021X_EAPOL
  1438. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  1439. if (ssid->leap) {
  1440. if (ssid->non_leap == 0)
  1441. algs = WPA_AUTH_ALG_LEAP;
  1442. else
  1443. algs |= WPA_AUTH_ALG_LEAP;
  1444. }
  1445. }
  1446. #endif /* IEEE8021X_EAPOL */
  1447. wpa_dbg(wpa_s, MSG_DEBUG, "Automatic auth_alg selection: 0x%x", algs);
  1448. if (ssid->auth_alg) {
  1449. algs = ssid->auth_alg;
  1450. wpa_dbg(wpa_s, MSG_DEBUG, "Overriding auth_alg selection: "
  1451. "0x%x", algs);
  1452. }
  1453. if (bss && (wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE) ||
  1454. wpa_bss_get_ie(bss, WLAN_EID_RSN)) &&
  1455. wpa_key_mgmt_wpa(ssid->key_mgmt)) {
  1456. int try_opportunistic;
  1457. try_opportunistic = (ssid->proactive_key_caching < 0 ?
  1458. wpa_s->conf->okc :
  1459. ssid->proactive_key_caching) &&
  1460. (ssid->proto & WPA_PROTO_RSN);
  1461. if (pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid,
  1462. ssid, try_opportunistic) == 0)
  1463. eapol_sm_notify_pmkid_attempt(wpa_s->eapol, 1);
  1464. wpa_ie_len = sizeof(wpa_ie);
  1465. if (wpa_supplicant_set_suites(wpa_s, bss, ssid,
  1466. wpa_ie, &wpa_ie_len)) {
  1467. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to set WPA "
  1468. "key management and encryption suites");
  1469. return;
  1470. }
  1471. } else if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) && bss &&
  1472. wpa_key_mgmt_wpa_ieee8021x(ssid->key_mgmt)) {
  1473. /*
  1474. * Both WPA and non-WPA IEEE 802.1X enabled in configuration -
  1475. * use non-WPA since the scan results did not indicate that the
  1476. * AP is using WPA or WPA2.
  1477. */
  1478. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  1479. wpa_ie_len = 0;
  1480. wpa_s->wpa_proto = 0;
  1481. } else if (wpa_key_mgmt_wpa_any(ssid->key_mgmt)) {
  1482. wpa_ie_len = sizeof(wpa_ie);
  1483. if (wpa_supplicant_set_suites(wpa_s, NULL, ssid,
  1484. wpa_ie, &wpa_ie_len)) {
  1485. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to set WPA "
  1486. "key management and encryption suites (no "
  1487. "scan results)");
  1488. return;
  1489. }
  1490. #ifdef CONFIG_WPS
  1491. } else if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
  1492. struct wpabuf *wps_ie;
  1493. wps_ie = wps_build_assoc_req_ie(wpas_wps_get_req_type(ssid));
  1494. if (wps_ie && wpabuf_len(wps_ie) <= sizeof(wpa_ie)) {
  1495. wpa_ie_len = wpabuf_len(wps_ie);
  1496. os_memcpy(wpa_ie, wpabuf_head(wps_ie), wpa_ie_len);
  1497. } else
  1498. wpa_ie_len = 0;
  1499. wpabuf_free(wps_ie);
  1500. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  1501. if (!bss || (bss->caps & IEEE80211_CAP_PRIVACY))
  1502. params.wps = WPS_MODE_PRIVACY;
  1503. else
  1504. params.wps = WPS_MODE_OPEN;
  1505. wpa_s->wpa_proto = 0;
  1506. #endif /* CONFIG_WPS */
  1507. } else {
  1508. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  1509. wpa_ie_len = 0;
  1510. wpa_s->wpa_proto = 0;
  1511. }
  1512. #ifdef CONFIG_P2P
  1513. if (wpa_s->global->p2p) {
  1514. u8 *pos;
  1515. size_t len;
  1516. int res;
  1517. pos = wpa_ie + wpa_ie_len;
  1518. len = sizeof(wpa_ie) - wpa_ie_len;
  1519. res = wpas_p2p_assoc_req_ie(wpa_s, bss, pos, len,
  1520. ssid->p2p_group);
  1521. if (res >= 0)
  1522. wpa_ie_len += res;
  1523. }
  1524. wpa_s->cross_connect_disallowed = 0;
  1525. if (bss) {
  1526. struct wpabuf *p2p;
  1527. p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  1528. if (p2p) {
  1529. wpa_s->cross_connect_disallowed =
  1530. p2p_get_cross_connect_disallowed(p2p);
  1531. wpabuf_free(p2p);
  1532. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: WLAN AP %s cross "
  1533. "connection",
  1534. wpa_s->cross_connect_disallowed ?
  1535. "disallows" : "allows");
  1536. }
  1537. }
  1538. os_memset(wpa_s->p2p_ip_addr_info, 0, sizeof(wpa_s->p2p_ip_addr_info));
  1539. #endif /* CONFIG_P2P */
  1540. #ifdef CONFIG_HS20
  1541. if (is_hs20_network(wpa_s, ssid, bss)) {
  1542. struct wpabuf *hs20;
  1543. hs20 = wpabuf_alloc(20);
  1544. if (hs20) {
  1545. int pps_mo_id = hs20_get_pps_mo_id(wpa_s, ssid);
  1546. size_t len;
  1547. wpas_hs20_add_indication(hs20, pps_mo_id);
  1548. len = sizeof(wpa_ie) - wpa_ie_len;
  1549. if (wpabuf_len(hs20) <= len) {
  1550. os_memcpy(wpa_ie + wpa_ie_len,
  1551. wpabuf_head(hs20), wpabuf_len(hs20));
  1552. wpa_ie_len += wpabuf_len(hs20);
  1553. }
  1554. wpabuf_free(hs20);
  1555. }
  1556. }
  1557. #endif /* CONFIG_HS20 */
  1558. /*
  1559. * Workaround: Add Extended Capabilities element only if the AP
  1560. * included this element in Beacon/Probe Response frames. Some older
  1561. * APs seem to have interoperability issues if this element is
  1562. * included, so while the standard may require us to include the
  1563. * element in all cases, it is justifiable to skip it to avoid
  1564. * interoperability issues.
  1565. */
  1566. if (!bss || wpa_bss_get_ie(bss, WLAN_EID_EXT_CAPAB)) {
  1567. u8 ext_capab[18];
  1568. int ext_capab_len;
  1569. ext_capab_len = wpas_build_ext_capab(wpa_s, ext_capab,
  1570. sizeof(ext_capab));
  1571. if (ext_capab_len > 0) {
  1572. u8 *pos = wpa_ie;
  1573. if (wpa_ie_len > 0 && pos[0] == WLAN_EID_RSN)
  1574. pos += 2 + pos[1];
  1575. os_memmove(pos + ext_capab_len, pos,
  1576. wpa_ie_len - (pos - wpa_ie));
  1577. wpa_ie_len += ext_capab_len;
  1578. os_memcpy(pos, ext_capab, ext_capab_len);
  1579. }
  1580. }
  1581. wpa_clear_keys(wpa_s, bss ? bss->bssid : NULL);
  1582. use_crypt = 1;
  1583. cipher_pairwise = wpa_s->pairwise_cipher;
  1584. cipher_group = wpa_s->group_cipher;
  1585. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  1586. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  1587. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE)
  1588. use_crypt = 0;
  1589. if (wpa_set_wep_keys(wpa_s, ssid)) {
  1590. use_crypt = 1;
  1591. wep_keys_set = 1;
  1592. }
  1593. }
  1594. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS)
  1595. use_crypt = 0;
  1596. #ifdef IEEE8021X_EAPOL
  1597. if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  1598. if ((ssid->eapol_flags &
  1599. (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
  1600. EAPOL_FLAG_REQUIRE_KEY_BROADCAST)) == 0 &&
  1601. !wep_keys_set) {
  1602. use_crypt = 0;
  1603. } else {
  1604. /* Assume that dynamic WEP-104 keys will be used and
  1605. * set cipher suites in order for drivers to expect
  1606. * encryption. */
  1607. cipher_pairwise = cipher_group = WPA_CIPHER_WEP104;
  1608. }
  1609. }
  1610. #endif /* IEEE8021X_EAPOL */
  1611. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  1612. /* Set the key before (and later after) association */
  1613. wpa_supplicant_set_wpa_none_key(wpa_s, ssid);
  1614. }
  1615. wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATING);
  1616. if (bss) {
  1617. params.ssid = bss->ssid;
  1618. params.ssid_len = bss->ssid_len;
  1619. if (!wpas_driver_bss_selection(wpa_s) || ssid->bssid_set) {
  1620. wpa_printf(MSG_DEBUG, "Limit connection to BSSID "
  1621. MACSTR " freq=%u MHz based on scan results "
  1622. "(bssid_set=%d)",
  1623. MAC2STR(bss->bssid), bss->freq,
  1624. ssid->bssid_set);
  1625. params.bssid = bss->bssid;
  1626. params.freq.freq = bss->freq;
  1627. }
  1628. params.bssid_hint = bss->bssid;
  1629. params.freq_hint = bss->freq;
  1630. } else {
  1631. params.ssid = ssid->ssid;
  1632. params.ssid_len = ssid->ssid_len;
  1633. }
  1634. if (ssid->mode == WPAS_MODE_IBSS && ssid->bssid_set &&
  1635. wpa_s->conf->ap_scan == 2) {
  1636. params.bssid = ssid->bssid;
  1637. params.fixed_bssid = 1;
  1638. }
  1639. if (ssid->mode == WPAS_MODE_IBSS && ssid->frequency > 0 &&
  1640. params.freq.freq == 0) {
  1641. enum hostapd_hw_mode hw_mode;
  1642. u8 channel;
  1643. params.freq.freq = ssid->frequency;
  1644. hw_mode = ieee80211_freq_to_chan(ssid->frequency, &channel);
  1645. for (i = 0; wpa_s->hw.modes && i < wpa_s->hw.num_modes; i++) {
  1646. if (wpa_s->hw.modes[i].mode == hw_mode) {
  1647. struct hostapd_hw_modes *mode;
  1648. mode = &wpa_s->hw.modes[i];
  1649. params.freq.ht_enabled = ht_supported(mode);
  1650. break;
  1651. }
  1652. }
  1653. }
  1654. if (ssid->mode == WPAS_MODE_IBSS) {
  1655. if (ssid->beacon_int)
  1656. params.beacon_int = ssid->beacon_int;
  1657. else
  1658. params.beacon_int = wpa_s->conf->beacon_int;
  1659. }
  1660. params.wpa_ie = wpa_ie;
  1661. params.wpa_ie_len = wpa_ie_len;
  1662. params.pairwise_suite = cipher_pairwise;
  1663. params.group_suite = cipher_group;
  1664. params.key_mgmt_suite = wpa_s->key_mgmt;
  1665. params.wpa_proto = wpa_s->wpa_proto;
  1666. params.auth_alg = algs;
  1667. params.mode = ssid->mode;
  1668. params.bg_scan_period = ssid->bg_scan_period;
  1669. for (i = 0; i < NUM_WEP_KEYS; i++) {
  1670. if (ssid->wep_key_len[i])
  1671. params.wep_key[i] = ssid->wep_key[i];
  1672. params.wep_key_len[i] = ssid->wep_key_len[i];
  1673. }
  1674. params.wep_tx_keyidx = ssid->wep_tx_keyidx;
  1675. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
  1676. (params.key_mgmt_suite == WPA_KEY_MGMT_PSK ||
  1677. params.key_mgmt_suite == WPA_KEY_MGMT_FT_PSK)) {
  1678. params.passphrase = ssid->passphrase;
  1679. if (ssid->psk_set)
  1680. params.psk = ssid->psk;
  1681. }
  1682. params.drop_unencrypted = use_crypt;
  1683. #ifdef CONFIG_IEEE80211W
  1684. params.mgmt_frame_protection =
  1685. ssid->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT ?
  1686. wpa_s->conf->pmf : ssid->ieee80211w;
  1687. if (params.mgmt_frame_protection != NO_MGMT_FRAME_PROTECTION && bss) {
  1688. const u8 *rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  1689. struct wpa_ie_data ie;
  1690. if (rsn && wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ie) == 0 &&
  1691. ie.capabilities &
  1692. (WPA_CAPABILITY_MFPC | WPA_CAPABILITY_MFPR)) {
  1693. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Selected AP supports "
  1694. "MFP: require MFP");
  1695. params.mgmt_frame_protection =
  1696. MGMT_FRAME_PROTECTION_REQUIRED;
  1697. }
  1698. }
  1699. #endif /* CONFIG_IEEE80211W */
  1700. params.p2p = ssid->p2p_group;
  1701. if (wpa_s->parent->set_sta_uapsd)
  1702. params.uapsd = wpa_s->parent->sta_uapsd;
  1703. else
  1704. params.uapsd = -1;
  1705. #ifdef CONFIG_HT_OVERRIDES
  1706. os_memset(&htcaps, 0, sizeof(htcaps));
  1707. os_memset(&htcaps_mask, 0, sizeof(htcaps_mask));
  1708. params.htcaps = (u8 *) &htcaps;
  1709. params.htcaps_mask = (u8 *) &htcaps_mask;
  1710. wpa_supplicant_apply_ht_overrides(wpa_s, ssid, &params);
  1711. #endif /* CONFIG_HT_OVERRIDES */
  1712. #ifdef CONFIG_VHT_OVERRIDES
  1713. os_memset(&vhtcaps, 0, sizeof(vhtcaps));
  1714. os_memset(&vhtcaps_mask, 0, sizeof(vhtcaps_mask));
  1715. params.vhtcaps = &vhtcaps;
  1716. params.vhtcaps_mask = &vhtcaps_mask;
  1717. wpa_supplicant_apply_vht_overrides(wpa_s, wpa_s->current_ssid, &params);
  1718. #endif /* CONFIG_VHT_OVERRIDES */
  1719. #ifdef CONFIG_P2P
  1720. /*
  1721. * If multi-channel concurrency is not supported, check for any
  1722. * frequency conflict. In case of any frequency conflict, remove the
  1723. * least prioritized connection.
  1724. */
  1725. if (wpa_s->num_multichan_concurrent < 2) {
  1726. int freq, num;
  1727. num = get_shared_radio_freqs(wpa_s, &freq, 1);
  1728. if (num > 0 && freq > 0 && freq != params.freq.freq) {
  1729. wpa_printf(MSG_DEBUG,
  1730. "Assoc conflicting freq found (%d != %d)",
  1731. freq, params.freq.freq);
  1732. if (wpas_p2p_handle_frequency_conflicts(
  1733. wpa_s, params.freq.freq, ssid) < 0)
  1734. return;
  1735. }
  1736. }
  1737. #endif /* CONFIG_P2P */
  1738. ret = wpa_drv_associate(wpa_s, &params);
  1739. if (ret < 0) {
  1740. wpa_msg(wpa_s, MSG_INFO, "Association request to the driver "
  1741. "failed");
  1742. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SANE_ERROR_CODES) {
  1743. /*
  1744. * The driver is known to mean what is saying, so we
  1745. * can stop right here; the association will not
  1746. * succeed.
  1747. */
  1748. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  1749. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  1750. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  1751. return;
  1752. }
  1753. /* try to continue anyway; new association will be tried again
  1754. * after timeout */
  1755. assoc_failed = 1;
  1756. }
  1757. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  1758. /* Set the key after the association just in case association
  1759. * cleared the previously configured key. */
  1760. wpa_supplicant_set_wpa_none_key(wpa_s, ssid);
  1761. /* No need to timeout authentication since there is no key
  1762. * management. */
  1763. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1764. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  1765. #ifdef CONFIG_IBSS_RSN
  1766. } else if (ssid->mode == WPAS_MODE_IBSS &&
  1767. wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
  1768. wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE) {
  1769. /*
  1770. * RSN IBSS authentication is per-STA and we can disable the
  1771. * per-BSSID authentication.
  1772. */
  1773. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1774. #endif /* CONFIG_IBSS_RSN */
  1775. } else {
  1776. /* Timeout for IEEE 802.11 authentication and association */
  1777. int timeout = 60;
  1778. if (assoc_failed) {
  1779. /* give IBSS a bit more time */
  1780. timeout = ssid->mode == WPAS_MODE_IBSS ? 10 : 5;
  1781. } else if (wpa_s->conf->ap_scan == 1) {
  1782. /* give IBSS a bit more time */
  1783. timeout = ssid->mode == WPAS_MODE_IBSS ? 20 : 10;
  1784. }
  1785. wpa_supplicant_req_auth_timeout(wpa_s, timeout, 0);
  1786. }
  1787. if (wep_keys_set &&
  1788. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC)) {
  1789. /* Set static WEP keys again */
  1790. wpa_set_wep_keys(wpa_s, ssid);
  1791. }
  1792. if (wpa_s->current_ssid && wpa_s->current_ssid != ssid) {
  1793. /*
  1794. * Do not allow EAP session resumption between different
  1795. * network configurations.
  1796. */
  1797. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  1798. }
  1799. old_ssid = wpa_s->current_ssid;
  1800. wpa_s->current_ssid = ssid;
  1801. wpa_s->current_bss = bss;
  1802. wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
  1803. wpa_supplicant_initiate_eapol(wpa_s);
  1804. if (old_ssid != wpa_s->current_ssid)
  1805. wpas_notify_network_changed(wpa_s);
  1806. }
  1807. static void wpa_supplicant_clear_connection(struct wpa_supplicant *wpa_s,
  1808. const u8 *addr)
  1809. {
  1810. struct wpa_ssid *old_ssid;
  1811. wpas_connect_work_done(wpa_s);
  1812. wpa_clear_keys(wpa_s, addr);
  1813. old_ssid = wpa_s->current_ssid;
  1814. wpa_supplicant_mark_disassoc(wpa_s);
  1815. wpa_sm_set_config(wpa_s->wpa, NULL);
  1816. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  1817. if (old_ssid != wpa_s->current_ssid)
  1818. wpas_notify_network_changed(wpa_s);
  1819. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
  1820. }
  1821. /**
  1822. * wpa_supplicant_deauthenticate - Deauthenticate the current connection
  1823. * @wpa_s: Pointer to wpa_supplicant data
  1824. * @reason_code: IEEE 802.11 reason code for the deauthenticate frame
  1825. *
  1826. * This function is used to request %wpa_supplicant to deauthenticate from the
  1827. * current AP.
  1828. */
  1829. void wpa_supplicant_deauthenticate(struct wpa_supplicant *wpa_s,
  1830. int reason_code)
  1831. {
  1832. u8 *addr = NULL;
  1833. union wpa_event_data event;
  1834. int zero_addr = 0;
  1835. wpa_dbg(wpa_s, MSG_DEBUG, "Request to deauthenticate - bssid=" MACSTR
  1836. " pending_bssid=" MACSTR " reason=%d state=%s",
  1837. MAC2STR(wpa_s->bssid), MAC2STR(wpa_s->pending_bssid),
  1838. reason_code, wpa_supplicant_state_txt(wpa_s->wpa_state));
  1839. if (!is_zero_ether_addr(wpa_s->bssid))
  1840. addr = wpa_s->bssid;
  1841. else if (!is_zero_ether_addr(wpa_s->pending_bssid) &&
  1842. (wpa_s->wpa_state == WPA_AUTHENTICATING ||
  1843. wpa_s->wpa_state == WPA_ASSOCIATING))
  1844. addr = wpa_s->pending_bssid;
  1845. else if (wpa_s->wpa_state == WPA_ASSOCIATING) {
  1846. /*
  1847. * When using driver-based BSS selection, we may not know the
  1848. * BSSID with which we are currently trying to associate. We
  1849. * need to notify the driver of this disconnection even in such
  1850. * a case, so use the all zeros address here.
  1851. */
  1852. addr = wpa_s->bssid;
  1853. zero_addr = 1;
  1854. }
  1855. #ifdef CONFIG_TDLS
  1856. wpa_tdls_teardown_peers(wpa_s->wpa);
  1857. #endif /* CONFIG_TDLS */
  1858. if (addr) {
  1859. wpa_drv_deauthenticate(wpa_s, addr, reason_code);
  1860. os_memset(&event, 0, sizeof(event));
  1861. event.deauth_info.reason_code = (u16) reason_code;
  1862. event.deauth_info.locally_generated = 1;
  1863. wpa_supplicant_event(wpa_s, EVENT_DEAUTH, &event);
  1864. if (zero_addr)
  1865. addr = NULL;
  1866. }
  1867. wpa_supplicant_clear_connection(wpa_s, addr);
  1868. }
  1869. static void wpa_supplicant_enable_one_network(struct wpa_supplicant *wpa_s,
  1870. struct wpa_ssid *ssid)
  1871. {
  1872. if (!ssid || !ssid->disabled || ssid->disabled == 2)
  1873. return;
  1874. ssid->disabled = 0;
  1875. wpas_clear_temp_disabled(wpa_s, ssid, 1);
  1876. wpas_notify_network_enabled_changed(wpa_s, ssid);
  1877. /*
  1878. * Try to reassociate since there is no current configuration and a new
  1879. * network was made available.
  1880. */
  1881. if (!wpa_s->current_ssid && !wpa_s->disconnected)
  1882. wpa_s->reassociate = 1;
  1883. }
  1884. /**
  1885. * wpa_supplicant_enable_network - Mark a configured network as enabled
  1886. * @wpa_s: wpa_supplicant structure for a network interface
  1887. * @ssid: wpa_ssid structure for a configured network or %NULL
  1888. *
  1889. * Enables the specified network or all networks if no network specified.
  1890. */
  1891. void wpa_supplicant_enable_network(struct wpa_supplicant *wpa_s,
  1892. struct wpa_ssid *ssid)
  1893. {
  1894. if (ssid == NULL) {
  1895. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
  1896. wpa_supplicant_enable_one_network(wpa_s, ssid);
  1897. } else
  1898. wpa_supplicant_enable_one_network(wpa_s, ssid);
  1899. if (wpa_s->reassociate && !wpa_s->disconnected) {
  1900. if (wpa_s->sched_scanning) {
  1901. wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to add "
  1902. "new network to scan filters");
  1903. wpa_supplicant_cancel_sched_scan(wpa_s);
  1904. }
  1905. if (wpa_supplicant_fast_associate(wpa_s) != 1)
  1906. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1907. }
  1908. }
  1909. /**
  1910. * wpa_supplicant_disable_network - Mark a configured network as disabled
  1911. * @wpa_s: wpa_supplicant structure for a network interface
  1912. * @ssid: wpa_ssid structure for a configured network or %NULL
  1913. *
  1914. * Disables the specified network or all networks if no network specified.
  1915. */
  1916. void wpa_supplicant_disable_network(struct wpa_supplicant *wpa_s,
  1917. struct wpa_ssid *ssid)
  1918. {
  1919. struct wpa_ssid *other_ssid;
  1920. int was_disabled;
  1921. if (ssid == NULL) {
  1922. if (wpa_s->sched_scanning)
  1923. wpa_supplicant_cancel_sched_scan(wpa_s);
  1924. for (other_ssid = wpa_s->conf->ssid; other_ssid;
  1925. other_ssid = other_ssid->next) {
  1926. was_disabled = other_ssid->disabled;
  1927. if (was_disabled == 2)
  1928. continue; /* do not change persistent P2P group
  1929. * data */
  1930. other_ssid->disabled = 1;
  1931. if (was_disabled != other_ssid->disabled)
  1932. wpas_notify_network_enabled_changed(
  1933. wpa_s, other_ssid);
  1934. }
  1935. if (wpa_s->current_ssid)
  1936. wpa_supplicant_deauthenticate(
  1937. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1938. } else if (ssid->disabled != 2) {
  1939. if (ssid == wpa_s->current_ssid)
  1940. wpa_supplicant_deauthenticate(
  1941. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1942. was_disabled = ssid->disabled;
  1943. ssid->disabled = 1;
  1944. if (was_disabled != ssid->disabled) {
  1945. wpas_notify_network_enabled_changed(wpa_s, ssid);
  1946. if (wpa_s->sched_scanning) {
  1947. wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan "
  1948. "to remove network from filters");
  1949. wpa_supplicant_cancel_sched_scan(wpa_s);
  1950. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1951. }
  1952. }
  1953. }
  1954. }
  1955. /**
  1956. * wpa_supplicant_select_network - Attempt association with a network
  1957. * @wpa_s: wpa_supplicant structure for a network interface
  1958. * @ssid: wpa_ssid structure for a configured network or %NULL for any network
  1959. */
  1960. void wpa_supplicant_select_network(struct wpa_supplicant *wpa_s,
  1961. struct wpa_ssid *ssid)
  1962. {
  1963. struct wpa_ssid *other_ssid;
  1964. int disconnected = 0;
  1965. if (ssid && ssid != wpa_s->current_ssid && wpa_s->current_ssid) {
  1966. wpa_supplicant_deauthenticate(
  1967. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1968. disconnected = 1;
  1969. }
  1970. if (ssid)
  1971. wpas_clear_temp_disabled(wpa_s, ssid, 1);
  1972. /*
  1973. * Mark all other networks disabled or mark all networks enabled if no
  1974. * network specified.
  1975. */
  1976. for (other_ssid = wpa_s->conf->ssid; other_ssid;
  1977. other_ssid = other_ssid->next) {
  1978. int was_disabled = other_ssid->disabled;
  1979. if (was_disabled == 2)
  1980. continue; /* do not change persistent P2P group data */
  1981. other_ssid->disabled = ssid ? (ssid->id != other_ssid->id) : 0;
  1982. if (was_disabled && !other_ssid->disabled)
  1983. wpas_clear_temp_disabled(wpa_s, other_ssid, 0);
  1984. if (was_disabled != other_ssid->disabled)
  1985. wpas_notify_network_enabled_changed(wpa_s, other_ssid);
  1986. }
  1987. if (ssid && ssid == wpa_s->current_ssid && wpa_s->current_ssid) {
  1988. /* We are already associated with the selected network */
  1989. wpa_printf(MSG_DEBUG, "Already associated with the "
  1990. "selected network - do nothing");
  1991. return;
  1992. }
  1993. if (ssid) {
  1994. wpa_s->current_ssid = ssid;
  1995. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  1996. }
  1997. wpa_s->connect_without_scan = NULL;
  1998. wpa_s->disconnected = 0;
  1999. wpa_s->reassociate = 1;
  2000. if (wpa_supplicant_fast_associate(wpa_s) != 1)
  2001. wpa_supplicant_req_scan(wpa_s, 0, disconnected ? 100000 : 0);
  2002. if (ssid)
  2003. wpas_notify_network_selected(wpa_s, ssid);
  2004. }
  2005. /**
  2006. * wpas_set_pkcs11_engine_and_module_path - Set PKCS #11 engine and module path
  2007. * @wpa_s: wpa_supplicant structure for a network interface
  2008. * @pkcs11_engine_path: PKCS #11 engine path or NULL
  2009. * @pkcs11_module_path: PKCS #11 module path or NULL
  2010. * Returns: 0 on success; -1 on failure
  2011. *
  2012. * Sets the PKCS #11 engine and module path. Both have to be NULL or a valid
  2013. * path. If resetting the EAPOL state machine with the new PKCS #11 engine and
  2014. * module path fails the paths will be reset to the default value (NULL).
  2015. */
  2016. int wpas_set_pkcs11_engine_and_module_path(struct wpa_supplicant *wpa_s,
  2017. const char *pkcs11_engine_path,
  2018. const char *pkcs11_module_path)
  2019. {
  2020. char *pkcs11_engine_path_copy = NULL;
  2021. char *pkcs11_module_path_copy = NULL;
  2022. if (pkcs11_engine_path != NULL) {
  2023. pkcs11_engine_path_copy = os_strdup(pkcs11_engine_path);
  2024. if (pkcs11_engine_path_copy == NULL)
  2025. return -1;
  2026. }
  2027. if (pkcs11_module_path != NULL) {
  2028. pkcs11_module_path_copy = os_strdup(pkcs11_module_path);
  2029. if (pkcs11_module_path_copy == NULL) {
  2030. os_free(pkcs11_engine_path_copy);
  2031. return -1;
  2032. }
  2033. }
  2034. os_free(wpa_s->conf->pkcs11_engine_path);
  2035. os_free(wpa_s->conf->pkcs11_module_path);
  2036. wpa_s->conf->pkcs11_engine_path = pkcs11_engine_path_copy;
  2037. wpa_s->conf->pkcs11_module_path = pkcs11_module_path_copy;
  2038. wpa_sm_set_eapol(wpa_s->wpa, NULL);
  2039. eapol_sm_deinit(wpa_s->eapol);
  2040. wpa_s->eapol = NULL;
  2041. if (wpa_supplicant_init_eapol(wpa_s)) {
  2042. /* Error -> Reset paths to the default value (NULL) once. */
  2043. if (pkcs11_engine_path != NULL && pkcs11_module_path != NULL)
  2044. wpas_set_pkcs11_engine_and_module_path(wpa_s, NULL,
  2045. NULL);
  2046. return -1;
  2047. }
  2048. wpa_sm_set_eapol(wpa_s->wpa, wpa_s->eapol);
  2049. return 0;
  2050. }
  2051. /**
  2052. * wpa_supplicant_set_ap_scan - Set AP scan mode for interface
  2053. * @wpa_s: wpa_supplicant structure for a network interface
  2054. * @ap_scan: AP scan mode
  2055. * Returns: 0 if succeed or -1 if ap_scan has an invalid value
  2056. *
  2057. */
  2058. int wpa_supplicant_set_ap_scan(struct wpa_supplicant *wpa_s, int ap_scan)
  2059. {
  2060. int old_ap_scan;
  2061. if (ap_scan < 0 || ap_scan > 2)
  2062. return -1;
  2063. #ifdef ANDROID
  2064. if (ap_scan == 2 && ap_scan != wpa_s->conf->ap_scan &&
  2065. wpa_s->wpa_state >= WPA_ASSOCIATING &&
  2066. wpa_s->wpa_state < WPA_COMPLETED) {
  2067. wpa_printf(MSG_ERROR, "ap_scan = %d (%d) rejected while "
  2068. "associating", wpa_s->conf->ap_scan, ap_scan);
  2069. return 0;
  2070. }
  2071. #endif /* ANDROID */
  2072. old_ap_scan = wpa_s->conf->ap_scan;
  2073. wpa_s->conf->ap_scan = ap_scan;
  2074. if (old_ap_scan != wpa_s->conf->ap_scan)
  2075. wpas_notify_ap_scan_changed(wpa_s);
  2076. return 0;
  2077. }
  2078. /**
  2079. * wpa_supplicant_set_bss_expiration_age - Set BSS entry expiration age
  2080. * @wpa_s: wpa_supplicant structure for a network interface
  2081. * @expire_age: Expiration age in seconds
  2082. * Returns: 0 if succeed or -1 if expire_age has an invalid value
  2083. *
  2084. */
  2085. int wpa_supplicant_set_bss_expiration_age(struct wpa_supplicant *wpa_s,
  2086. unsigned int bss_expire_age)
  2087. {
  2088. if (bss_expire_age < 10) {
  2089. wpa_msg(wpa_s, MSG_ERROR, "Invalid bss expiration age %u",
  2090. bss_expire_age);
  2091. return -1;
  2092. }
  2093. wpa_msg(wpa_s, MSG_DEBUG, "Setting bss expiration age: %d sec",
  2094. bss_expire_age);
  2095. wpa_s->conf->bss_expiration_age = bss_expire_age;
  2096. return 0;
  2097. }
  2098. /**
  2099. * wpa_supplicant_set_bss_expiration_count - Set BSS entry expiration scan count
  2100. * @wpa_s: wpa_supplicant structure for a network interface
  2101. * @expire_count: number of scans after which an unseen BSS is reclaimed
  2102. * Returns: 0 if succeed or -1 if expire_count has an invalid value
  2103. *
  2104. */
  2105. int wpa_supplicant_set_bss_expiration_count(struct wpa_supplicant *wpa_s,
  2106. unsigned int bss_expire_count)
  2107. {
  2108. if (bss_expire_count < 1) {
  2109. wpa_msg(wpa_s, MSG_ERROR, "Invalid bss expiration count %u",
  2110. bss_expire_count);
  2111. return -1;
  2112. }
  2113. wpa_msg(wpa_s, MSG_DEBUG, "Setting bss expiration scan count: %u",
  2114. bss_expire_count);
  2115. wpa_s->conf->bss_expiration_scan_count = bss_expire_count;
  2116. return 0;
  2117. }
  2118. /**
  2119. * wpa_supplicant_set_scan_interval - Set scan interval
  2120. * @wpa_s: wpa_supplicant structure for a network interface
  2121. * @scan_interval: scan interval in seconds
  2122. * Returns: 0 if succeed or -1 if scan_interval has an invalid value
  2123. *
  2124. */
  2125. int wpa_supplicant_set_scan_interval(struct wpa_supplicant *wpa_s,
  2126. int scan_interval)
  2127. {
  2128. if (scan_interval < 0) {
  2129. wpa_msg(wpa_s, MSG_ERROR, "Invalid scan interval %d",
  2130. scan_interval);
  2131. return -1;
  2132. }
  2133. wpa_msg(wpa_s, MSG_DEBUG, "Setting scan interval: %d sec",
  2134. scan_interval);
  2135. wpa_supplicant_update_scan_int(wpa_s, scan_interval);
  2136. return 0;
  2137. }
  2138. /**
  2139. * wpa_supplicant_set_debug_params - Set global debug params
  2140. * @global: wpa_global structure
  2141. * @debug_level: debug level
  2142. * @debug_timestamp: determines if show timestamp in debug data
  2143. * @debug_show_keys: determines if show keys in debug data
  2144. * Returns: 0 if succeed or -1 if debug_level has wrong value
  2145. */
  2146. int wpa_supplicant_set_debug_params(struct wpa_global *global, int debug_level,
  2147. int debug_timestamp, int debug_show_keys)
  2148. {
  2149. int old_level, old_timestamp, old_show_keys;
  2150. /* check for allowed debuglevels */
  2151. if (debug_level != MSG_EXCESSIVE &&
  2152. debug_level != MSG_MSGDUMP &&
  2153. debug_level != MSG_DEBUG &&
  2154. debug_level != MSG_INFO &&
  2155. debug_level != MSG_WARNING &&
  2156. debug_level != MSG_ERROR)
  2157. return -1;
  2158. old_level = wpa_debug_level;
  2159. old_timestamp = wpa_debug_timestamp;
  2160. old_show_keys = wpa_debug_show_keys;
  2161. wpa_debug_level = debug_level;
  2162. wpa_debug_timestamp = debug_timestamp ? 1 : 0;
  2163. wpa_debug_show_keys = debug_show_keys ? 1 : 0;
  2164. if (wpa_debug_level != old_level)
  2165. wpas_notify_debug_level_changed(global);
  2166. if (wpa_debug_timestamp != old_timestamp)
  2167. wpas_notify_debug_timestamp_changed(global);
  2168. if (wpa_debug_show_keys != old_show_keys)
  2169. wpas_notify_debug_show_keys_changed(global);
  2170. return 0;
  2171. }
  2172. /**
  2173. * wpa_supplicant_get_ssid - Get a pointer to the current network structure
  2174. * @wpa_s: Pointer to wpa_supplicant data
  2175. * Returns: A pointer to the current network structure or %NULL on failure
  2176. */
  2177. struct wpa_ssid * wpa_supplicant_get_ssid(struct wpa_supplicant *wpa_s)
  2178. {
  2179. struct wpa_ssid *entry;
  2180. u8 ssid[MAX_SSID_LEN];
  2181. int res;
  2182. size_t ssid_len;
  2183. u8 bssid[ETH_ALEN];
  2184. int wired;
  2185. res = wpa_drv_get_ssid(wpa_s, ssid);
  2186. if (res < 0) {
  2187. wpa_msg(wpa_s, MSG_WARNING, "Could not read SSID from "
  2188. "driver");
  2189. return NULL;
  2190. }
  2191. ssid_len = res;
  2192. if (wpa_drv_get_bssid(wpa_s, bssid) < 0) {
  2193. wpa_msg(wpa_s, MSG_WARNING, "Could not read BSSID from "
  2194. "driver");
  2195. return NULL;
  2196. }
  2197. wired = wpa_s->conf->ap_scan == 0 &&
  2198. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED);
  2199. entry = wpa_s->conf->ssid;
  2200. while (entry) {
  2201. if (!wpas_network_disabled(wpa_s, entry) &&
  2202. ((ssid_len == entry->ssid_len &&
  2203. os_memcmp(ssid, entry->ssid, ssid_len) == 0) || wired) &&
  2204. (!entry->bssid_set ||
  2205. os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0))
  2206. return entry;
  2207. #ifdef CONFIG_WPS
  2208. if (!wpas_network_disabled(wpa_s, entry) &&
  2209. (entry->key_mgmt & WPA_KEY_MGMT_WPS) &&
  2210. (entry->ssid == NULL || entry->ssid_len == 0) &&
  2211. (!entry->bssid_set ||
  2212. os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0))
  2213. return entry;
  2214. #endif /* CONFIG_WPS */
  2215. if (!wpas_network_disabled(wpa_s, entry) && entry->bssid_set &&
  2216. entry->ssid_len == 0 &&
  2217. os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0)
  2218. return entry;
  2219. entry = entry->next;
  2220. }
  2221. return NULL;
  2222. }
  2223. static int select_driver(struct wpa_supplicant *wpa_s, int i)
  2224. {
  2225. struct wpa_global *global = wpa_s->global;
  2226. if (wpa_drivers[i]->global_init && global->drv_priv[i] == NULL) {
  2227. global->drv_priv[i] = wpa_drivers[i]->global_init();
  2228. if (global->drv_priv[i] == NULL) {
  2229. wpa_printf(MSG_ERROR, "Failed to initialize driver "
  2230. "'%s'", wpa_drivers[i]->name);
  2231. return -1;
  2232. }
  2233. }
  2234. wpa_s->driver = wpa_drivers[i];
  2235. wpa_s->global_drv_priv = global->drv_priv[i];
  2236. return 0;
  2237. }
  2238. static int wpa_supplicant_set_driver(struct wpa_supplicant *wpa_s,
  2239. const char *name)
  2240. {
  2241. int i;
  2242. size_t len;
  2243. const char *pos, *driver = name;
  2244. if (wpa_s == NULL)
  2245. return -1;
  2246. if (wpa_drivers[0] == NULL) {
  2247. wpa_msg(wpa_s, MSG_ERROR, "No driver interfaces build into "
  2248. "wpa_supplicant");
  2249. return -1;
  2250. }
  2251. if (name == NULL) {
  2252. /* default to first driver in the list */
  2253. return select_driver(wpa_s, 0);
  2254. }
  2255. do {
  2256. pos = os_strchr(driver, ',');
  2257. if (pos)
  2258. len = pos - driver;
  2259. else
  2260. len = os_strlen(driver);
  2261. for (i = 0; wpa_drivers[i]; i++) {
  2262. if (os_strlen(wpa_drivers[i]->name) == len &&
  2263. os_strncmp(driver, wpa_drivers[i]->name, len) ==
  2264. 0) {
  2265. /* First driver that succeeds wins */
  2266. if (select_driver(wpa_s, i) == 0)
  2267. return 0;
  2268. }
  2269. }
  2270. driver = pos + 1;
  2271. } while (pos);
  2272. wpa_msg(wpa_s, MSG_ERROR, "Unsupported driver '%s'", name);
  2273. return -1;
  2274. }
  2275. /**
  2276. * wpa_supplicant_rx_eapol - Deliver a received EAPOL frame to wpa_supplicant
  2277. * @ctx: Context pointer (wpa_s); this is the ctx variable registered
  2278. * with struct wpa_driver_ops::init()
  2279. * @src_addr: Source address of the EAPOL frame
  2280. * @buf: EAPOL data starting from the EAPOL header (i.e., no Ethernet header)
  2281. * @len: Length of the EAPOL data
  2282. *
  2283. * This function is called for each received EAPOL frame. Most driver
  2284. * interfaces rely on more generic OS mechanism for receiving frames through
  2285. * l2_packet, but if such a mechanism is not available, the driver wrapper may
  2286. * take care of received EAPOL frames and deliver them to the core supplicant
  2287. * code by calling this function.
  2288. */
  2289. void wpa_supplicant_rx_eapol(void *ctx, const u8 *src_addr,
  2290. const u8 *buf, size_t len)
  2291. {
  2292. struct wpa_supplicant *wpa_s = ctx;
  2293. wpa_dbg(wpa_s, MSG_DEBUG, "RX EAPOL from " MACSTR, MAC2STR(src_addr));
  2294. wpa_hexdump(MSG_MSGDUMP, "RX EAPOL", buf, len);
  2295. #ifdef CONFIG_PEERKEY
  2296. if (wpa_s->wpa_state > WPA_ASSOCIATED && wpa_s->current_ssid &&
  2297. wpa_s->current_ssid->peerkey &&
  2298. !(wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
  2299. wpa_sm_rx_eapol_peerkey(wpa_s->wpa, src_addr, buf, len) == 1) {
  2300. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: Processed PeerKey EAPOL-Key");
  2301. return;
  2302. }
  2303. #endif /* CONFIG_PEERKEY */
  2304. if (wpa_s->wpa_state < WPA_ASSOCIATED ||
  2305. (wpa_s->last_eapol_matches_bssid &&
  2306. #ifdef CONFIG_AP
  2307. !wpa_s->ap_iface &&
  2308. #endif /* CONFIG_AP */
  2309. os_memcmp(src_addr, wpa_s->bssid, ETH_ALEN) != 0)) {
  2310. /*
  2311. * There is possible race condition between receiving the
  2312. * association event and the EAPOL frame since they are coming
  2313. * through different paths from the driver. In order to avoid
  2314. * issues in trying to process the EAPOL frame before receiving
  2315. * association information, lets queue it for processing until
  2316. * the association event is received. This may also be needed in
  2317. * driver-based roaming case, so also use src_addr != BSSID as a
  2318. * trigger if we have previously confirmed that the
  2319. * Authenticator uses BSSID as the src_addr (which is not the
  2320. * case with wired IEEE 802.1X).
  2321. */
  2322. wpa_dbg(wpa_s, MSG_DEBUG, "Not associated - Delay processing "
  2323. "of received EAPOL frame (state=%s bssid=" MACSTR ")",
  2324. wpa_supplicant_state_txt(wpa_s->wpa_state),
  2325. MAC2STR(wpa_s->bssid));
  2326. wpabuf_free(wpa_s->pending_eapol_rx);
  2327. wpa_s->pending_eapol_rx = wpabuf_alloc_copy(buf, len);
  2328. if (wpa_s->pending_eapol_rx) {
  2329. os_get_reltime(&wpa_s->pending_eapol_rx_time);
  2330. os_memcpy(wpa_s->pending_eapol_rx_src, src_addr,
  2331. ETH_ALEN);
  2332. }
  2333. return;
  2334. }
  2335. wpa_s->last_eapol_matches_bssid =
  2336. os_memcmp(src_addr, wpa_s->bssid, ETH_ALEN) == 0;
  2337. #ifdef CONFIG_AP
  2338. if (wpa_s->ap_iface) {
  2339. wpa_supplicant_ap_rx_eapol(wpa_s, src_addr, buf, len);
  2340. return;
  2341. }
  2342. #endif /* CONFIG_AP */
  2343. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE) {
  2344. wpa_dbg(wpa_s, MSG_DEBUG, "Ignored received EAPOL frame since "
  2345. "no key management is configured");
  2346. return;
  2347. }
  2348. if (wpa_s->eapol_received == 0 &&
  2349. (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) ||
  2350. !wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) ||
  2351. wpa_s->wpa_state != WPA_COMPLETED) &&
  2352. (wpa_s->current_ssid == NULL ||
  2353. wpa_s->current_ssid->mode != IEEE80211_MODE_IBSS)) {
  2354. /* Timeout for completing IEEE 802.1X and WPA authentication */
  2355. wpa_supplicant_req_auth_timeout(
  2356. wpa_s,
  2357. (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
  2358. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA ||
  2359. wpa_s->key_mgmt == WPA_KEY_MGMT_WPS) ?
  2360. 70 : 10, 0);
  2361. }
  2362. wpa_s->eapol_received++;
  2363. if (wpa_s->countermeasures) {
  2364. wpa_msg(wpa_s, MSG_INFO, "WPA: Countermeasures - dropped "
  2365. "EAPOL packet");
  2366. return;
  2367. }
  2368. #ifdef CONFIG_IBSS_RSN
  2369. if (wpa_s->current_ssid &&
  2370. wpa_s->current_ssid->mode == WPAS_MODE_IBSS) {
  2371. ibss_rsn_rx_eapol(wpa_s->ibss_rsn, src_addr, buf, len);
  2372. return;
  2373. }
  2374. #endif /* CONFIG_IBSS_RSN */
  2375. /* Source address of the incoming EAPOL frame could be compared to the
  2376. * current BSSID. However, it is possible that a centralized
  2377. * Authenticator could be using another MAC address than the BSSID of
  2378. * an AP, so just allow any address to be used for now. The replies are
  2379. * still sent to the current BSSID (if available), though. */
  2380. os_memcpy(wpa_s->last_eapol_src, src_addr, ETH_ALEN);
  2381. if (!wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) &&
  2382. eapol_sm_rx_eapol(wpa_s->eapol, src_addr, buf, len) > 0)
  2383. return;
  2384. wpa_drv_poll(wpa_s);
  2385. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE))
  2386. wpa_sm_rx_eapol(wpa_s->wpa, src_addr, buf, len);
  2387. else if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
  2388. /*
  2389. * Set portValid = TRUE here since we are going to skip 4-way
  2390. * handshake processing which would normally set portValid. We
  2391. * need this to allow the EAPOL state machines to be completed
  2392. * without going through EAPOL-Key handshake.
  2393. */
  2394. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  2395. }
  2396. }
  2397. int wpa_supplicant_update_mac_addr(struct wpa_supplicant *wpa_s)
  2398. {
  2399. if (wpa_s->driver->send_eapol) {
  2400. const u8 *addr = wpa_drv_get_mac_addr(wpa_s);
  2401. if (addr)
  2402. os_memcpy(wpa_s->own_addr, addr, ETH_ALEN);
  2403. } else if ((!wpa_s->p2p_mgmt ||
  2404. !(wpa_s->drv_flags &
  2405. WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE)) &&
  2406. !(wpa_s->drv_flags &
  2407. WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)) {
  2408. l2_packet_deinit(wpa_s->l2);
  2409. wpa_s->l2 = l2_packet_init(wpa_s->ifname,
  2410. wpa_drv_get_mac_addr(wpa_s),
  2411. ETH_P_EAPOL,
  2412. wpa_supplicant_rx_eapol, wpa_s, 0);
  2413. if (wpa_s->l2 == NULL)
  2414. return -1;
  2415. } else {
  2416. const u8 *addr = wpa_drv_get_mac_addr(wpa_s);
  2417. if (addr)
  2418. os_memcpy(wpa_s->own_addr, addr, ETH_ALEN);
  2419. }
  2420. if (wpa_s->l2 && l2_packet_get_own_addr(wpa_s->l2, wpa_s->own_addr)) {
  2421. wpa_msg(wpa_s, MSG_ERROR, "Failed to get own L2 address");
  2422. return -1;
  2423. }
  2424. wpa_sm_set_own_addr(wpa_s->wpa, wpa_s->own_addr);
  2425. return 0;
  2426. }
  2427. static void wpa_supplicant_rx_eapol_bridge(void *ctx, const u8 *src_addr,
  2428. const u8 *buf, size_t len)
  2429. {
  2430. struct wpa_supplicant *wpa_s = ctx;
  2431. const struct l2_ethhdr *eth;
  2432. if (len < sizeof(*eth))
  2433. return;
  2434. eth = (const struct l2_ethhdr *) buf;
  2435. if (os_memcmp(eth->h_dest, wpa_s->own_addr, ETH_ALEN) != 0 &&
  2436. !(eth->h_dest[0] & 0x01)) {
  2437. wpa_dbg(wpa_s, MSG_DEBUG, "RX EAPOL from " MACSTR " to " MACSTR
  2438. " (bridge - not for this interface - ignore)",
  2439. MAC2STR(src_addr), MAC2STR(eth->h_dest));
  2440. return;
  2441. }
  2442. wpa_dbg(wpa_s, MSG_DEBUG, "RX EAPOL from " MACSTR " to " MACSTR
  2443. " (bridge)", MAC2STR(src_addr), MAC2STR(eth->h_dest));
  2444. wpa_supplicant_rx_eapol(wpa_s, src_addr, buf + sizeof(*eth),
  2445. len - sizeof(*eth));
  2446. }
  2447. /**
  2448. * wpa_supplicant_driver_init - Initialize driver interface parameters
  2449. * @wpa_s: Pointer to wpa_supplicant data
  2450. * Returns: 0 on success, -1 on failure
  2451. *
  2452. * This function is called to initialize driver interface parameters.
  2453. * wpa_drv_init() must have been called before this function to initialize the
  2454. * driver interface.
  2455. */
  2456. int wpa_supplicant_driver_init(struct wpa_supplicant *wpa_s)
  2457. {
  2458. static int interface_count = 0;
  2459. if (wpa_supplicant_update_mac_addr(wpa_s) < 0)
  2460. return -1;
  2461. wpa_dbg(wpa_s, MSG_DEBUG, "Own MAC address: " MACSTR,
  2462. MAC2STR(wpa_s->own_addr));
  2463. os_memcpy(wpa_s->perm_addr, wpa_s->own_addr, ETH_ALEN);
  2464. wpa_sm_set_own_addr(wpa_s->wpa, wpa_s->own_addr);
  2465. if (wpa_s->bridge_ifname[0]) {
  2466. wpa_dbg(wpa_s, MSG_DEBUG, "Receiving packets from bridge "
  2467. "interface '%s'", wpa_s->bridge_ifname);
  2468. wpa_s->l2_br = l2_packet_init(wpa_s->bridge_ifname,
  2469. wpa_s->own_addr,
  2470. ETH_P_EAPOL,
  2471. wpa_supplicant_rx_eapol_bridge,
  2472. wpa_s, 1);
  2473. if (wpa_s->l2_br == NULL) {
  2474. wpa_msg(wpa_s, MSG_ERROR, "Failed to open l2_packet "
  2475. "connection for the bridge interface '%s'",
  2476. wpa_s->bridge_ifname);
  2477. return -1;
  2478. }
  2479. }
  2480. wpa_clear_keys(wpa_s, NULL);
  2481. /* Make sure that TKIP countermeasures are not left enabled (could
  2482. * happen if wpa_supplicant is killed during countermeasures. */
  2483. wpa_drv_set_countermeasures(wpa_s, 0);
  2484. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: flushing PMKID list in the driver");
  2485. wpa_drv_flush_pmkid(wpa_s);
  2486. wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
  2487. wpa_s->prev_scan_wildcard = 0;
  2488. if (wpa_supplicant_enabled_networks(wpa_s)) {
  2489. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
  2490. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  2491. interface_count = 0;
  2492. }
  2493. if (!wpa_s->p2p_mgmt &&
  2494. wpa_supplicant_delayed_sched_scan(wpa_s,
  2495. interface_count % 3,
  2496. 100000))
  2497. wpa_supplicant_req_scan(wpa_s, interface_count % 3,
  2498. 100000);
  2499. interface_count++;
  2500. } else
  2501. wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
  2502. return 0;
  2503. }
  2504. static int wpa_supplicant_daemon(const char *pid_file)
  2505. {
  2506. wpa_printf(MSG_DEBUG, "Daemonize..");
  2507. return os_daemonize(pid_file);
  2508. }
  2509. static struct wpa_supplicant * wpa_supplicant_alloc(void)
  2510. {
  2511. struct wpa_supplicant *wpa_s;
  2512. wpa_s = os_zalloc(sizeof(*wpa_s));
  2513. if (wpa_s == NULL)
  2514. return NULL;
  2515. wpa_s->scan_req = INITIAL_SCAN_REQ;
  2516. wpa_s->scan_interval = 5;
  2517. wpa_s->new_connection = 1;
  2518. wpa_s->parent = wpa_s;
  2519. wpa_s->sched_scanning = 0;
  2520. return wpa_s;
  2521. }
  2522. #ifdef CONFIG_HT_OVERRIDES
  2523. static int wpa_set_htcap_mcs(struct wpa_supplicant *wpa_s,
  2524. struct ieee80211_ht_capabilities *htcaps,
  2525. struct ieee80211_ht_capabilities *htcaps_mask,
  2526. const char *ht_mcs)
  2527. {
  2528. /* parse ht_mcs into hex array */
  2529. int i;
  2530. const char *tmp = ht_mcs;
  2531. char *end = NULL;
  2532. /* If ht_mcs is null, do not set anything */
  2533. if (!ht_mcs)
  2534. return 0;
  2535. /* This is what we are setting in the kernel */
  2536. os_memset(&htcaps->supported_mcs_set, 0, IEEE80211_HT_MCS_MASK_LEN);
  2537. wpa_msg(wpa_s, MSG_DEBUG, "set_htcap, ht_mcs -:%s:-", ht_mcs);
  2538. for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++) {
  2539. errno = 0;
  2540. long v = strtol(tmp, &end, 16);
  2541. if (errno == 0) {
  2542. wpa_msg(wpa_s, MSG_DEBUG,
  2543. "htcap value[%i]: %ld end: %p tmp: %p",
  2544. i, v, end, tmp);
  2545. if (end == tmp)
  2546. break;
  2547. htcaps->supported_mcs_set[i] = v;
  2548. tmp = end;
  2549. } else {
  2550. wpa_msg(wpa_s, MSG_ERROR,
  2551. "Failed to parse ht-mcs: %s, error: %s\n",
  2552. ht_mcs, strerror(errno));
  2553. return -1;
  2554. }
  2555. }
  2556. /*
  2557. * If we were able to parse any values, then set mask for the MCS set.
  2558. */
  2559. if (i) {
  2560. os_memset(&htcaps_mask->supported_mcs_set, 0xff,
  2561. IEEE80211_HT_MCS_MASK_LEN - 1);
  2562. /* skip the 3 reserved bits */
  2563. htcaps_mask->supported_mcs_set[IEEE80211_HT_MCS_MASK_LEN - 1] =
  2564. 0x1f;
  2565. }
  2566. return 0;
  2567. }
  2568. static int wpa_disable_max_amsdu(struct wpa_supplicant *wpa_s,
  2569. struct ieee80211_ht_capabilities *htcaps,
  2570. struct ieee80211_ht_capabilities *htcaps_mask,
  2571. int disabled)
  2572. {
  2573. le16 msk;
  2574. wpa_msg(wpa_s, MSG_DEBUG, "set_disable_max_amsdu: %d", disabled);
  2575. if (disabled == -1)
  2576. return 0;
  2577. msk = host_to_le16(HT_CAP_INFO_MAX_AMSDU_SIZE);
  2578. htcaps_mask->ht_capabilities_info |= msk;
  2579. if (disabled)
  2580. htcaps->ht_capabilities_info &= msk;
  2581. else
  2582. htcaps->ht_capabilities_info |= msk;
  2583. return 0;
  2584. }
  2585. static int wpa_set_ampdu_factor(struct wpa_supplicant *wpa_s,
  2586. struct ieee80211_ht_capabilities *htcaps,
  2587. struct ieee80211_ht_capabilities *htcaps_mask,
  2588. int factor)
  2589. {
  2590. wpa_msg(wpa_s, MSG_DEBUG, "set_ampdu_factor: %d", factor);
  2591. if (factor == -1)
  2592. return 0;
  2593. if (factor < 0 || factor > 3) {
  2594. wpa_msg(wpa_s, MSG_ERROR, "ampdu_factor: %d out of range. "
  2595. "Must be 0-3 or -1", factor);
  2596. return -EINVAL;
  2597. }
  2598. htcaps_mask->a_mpdu_params |= 0x3; /* 2 bits for factor */
  2599. htcaps->a_mpdu_params &= ~0x3;
  2600. htcaps->a_mpdu_params |= factor & 0x3;
  2601. return 0;
  2602. }
  2603. static int wpa_set_ampdu_density(struct wpa_supplicant *wpa_s,
  2604. struct ieee80211_ht_capabilities *htcaps,
  2605. struct ieee80211_ht_capabilities *htcaps_mask,
  2606. int density)
  2607. {
  2608. wpa_msg(wpa_s, MSG_DEBUG, "set_ampdu_density: %d", density);
  2609. if (density == -1)
  2610. return 0;
  2611. if (density < 0 || density > 7) {
  2612. wpa_msg(wpa_s, MSG_ERROR,
  2613. "ampdu_density: %d out of range. Must be 0-7 or -1.",
  2614. density);
  2615. return -EINVAL;
  2616. }
  2617. htcaps_mask->a_mpdu_params |= 0x1C;
  2618. htcaps->a_mpdu_params &= ~(0x1C);
  2619. htcaps->a_mpdu_params |= (density << 2) & 0x1C;
  2620. return 0;
  2621. }
  2622. static int wpa_set_disable_ht40(struct wpa_supplicant *wpa_s,
  2623. struct ieee80211_ht_capabilities *htcaps,
  2624. struct ieee80211_ht_capabilities *htcaps_mask,
  2625. int disabled)
  2626. {
  2627. /* Masking these out disables HT40 */
  2628. le16 msk = host_to_le16(HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET |
  2629. HT_CAP_INFO_SHORT_GI40MHZ);
  2630. wpa_msg(wpa_s, MSG_DEBUG, "set_disable_ht40: %d", disabled);
  2631. if (disabled)
  2632. htcaps->ht_capabilities_info &= ~msk;
  2633. else
  2634. htcaps->ht_capabilities_info |= msk;
  2635. htcaps_mask->ht_capabilities_info |= msk;
  2636. return 0;
  2637. }
  2638. static int wpa_set_disable_sgi(struct wpa_supplicant *wpa_s,
  2639. struct ieee80211_ht_capabilities *htcaps,
  2640. struct ieee80211_ht_capabilities *htcaps_mask,
  2641. int disabled)
  2642. {
  2643. /* Masking these out disables SGI */
  2644. le16 msk = host_to_le16(HT_CAP_INFO_SHORT_GI20MHZ |
  2645. HT_CAP_INFO_SHORT_GI40MHZ);
  2646. wpa_msg(wpa_s, MSG_DEBUG, "set_disable_sgi: %d", disabled);
  2647. if (disabled)
  2648. htcaps->ht_capabilities_info &= ~msk;
  2649. else
  2650. htcaps->ht_capabilities_info |= msk;
  2651. htcaps_mask->ht_capabilities_info |= msk;
  2652. return 0;
  2653. }
  2654. static int wpa_set_disable_ldpc(struct wpa_supplicant *wpa_s,
  2655. struct ieee80211_ht_capabilities *htcaps,
  2656. struct ieee80211_ht_capabilities *htcaps_mask,
  2657. int disabled)
  2658. {
  2659. /* Masking these out disables LDPC */
  2660. le16 msk = host_to_le16(HT_CAP_INFO_LDPC_CODING_CAP);
  2661. wpa_msg(wpa_s, MSG_DEBUG, "set_disable_ldpc: %d", disabled);
  2662. if (disabled)
  2663. htcaps->ht_capabilities_info &= ~msk;
  2664. else
  2665. htcaps->ht_capabilities_info |= msk;
  2666. htcaps_mask->ht_capabilities_info |= msk;
  2667. return 0;
  2668. }
  2669. void wpa_supplicant_apply_ht_overrides(
  2670. struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
  2671. struct wpa_driver_associate_params *params)
  2672. {
  2673. struct ieee80211_ht_capabilities *htcaps;
  2674. struct ieee80211_ht_capabilities *htcaps_mask;
  2675. if (!ssid)
  2676. return;
  2677. params->disable_ht = ssid->disable_ht;
  2678. if (!params->htcaps || !params->htcaps_mask)
  2679. return;
  2680. htcaps = (struct ieee80211_ht_capabilities *) params->htcaps;
  2681. htcaps_mask = (struct ieee80211_ht_capabilities *) params->htcaps_mask;
  2682. wpa_set_htcap_mcs(wpa_s, htcaps, htcaps_mask, ssid->ht_mcs);
  2683. wpa_disable_max_amsdu(wpa_s, htcaps, htcaps_mask,
  2684. ssid->disable_max_amsdu);
  2685. wpa_set_ampdu_factor(wpa_s, htcaps, htcaps_mask, ssid->ampdu_factor);
  2686. wpa_set_ampdu_density(wpa_s, htcaps, htcaps_mask, ssid->ampdu_density);
  2687. wpa_set_disable_ht40(wpa_s, htcaps, htcaps_mask, ssid->disable_ht40);
  2688. wpa_set_disable_sgi(wpa_s, htcaps, htcaps_mask, ssid->disable_sgi);
  2689. wpa_set_disable_ldpc(wpa_s, htcaps, htcaps_mask, ssid->disable_ldpc);
  2690. if (ssid->ht40_intolerant) {
  2691. le16 bit = host_to_le16(HT_CAP_INFO_40MHZ_INTOLERANT);
  2692. htcaps->ht_capabilities_info |= bit;
  2693. htcaps_mask->ht_capabilities_info |= bit;
  2694. }
  2695. }
  2696. #endif /* CONFIG_HT_OVERRIDES */
  2697. #ifdef CONFIG_VHT_OVERRIDES
  2698. void wpa_supplicant_apply_vht_overrides(
  2699. struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
  2700. struct wpa_driver_associate_params *params)
  2701. {
  2702. struct ieee80211_vht_capabilities *vhtcaps;
  2703. struct ieee80211_vht_capabilities *vhtcaps_mask;
  2704. #ifdef CONFIG_HT_OVERRIDES
  2705. int max_ampdu;
  2706. const u32 max_ampdu_mask = VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MAX;
  2707. #endif /* CONFIG_HT_OVERRIDES */
  2708. if (!ssid)
  2709. return;
  2710. params->disable_vht = ssid->disable_vht;
  2711. vhtcaps = (void *) params->vhtcaps;
  2712. vhtcaps_mask = (void *) params->vhtcaps_mask;
  2713. if (!vhtcaps || !vhtcaps_mask)
  2714. return;
  2715. vhtcaps->vht_capabilities_info = ssid->vht_capa;
  2716. vhtcaps_mask->vht_capabilities_info = ssid->vht_capa_mask;
  2717. #ifdef CONFIG_HT_OVERRIDES
  2718. /* if max ampdu is <= 3, we have to make the HT cap the same */
  2719. if (ssid->vht_capa_mask & max_ampdu_mask) {
  2720. max_ampdu = (ssid->vht_capa & max_ampdu_mask) >>
  2721. find_first_bit(max_ampdu_mask);
  2722. max_ampdu = max_ampdu < 3 ? max_ampdu : 3;
  2723. wpa_set_ampdu_factor(wpa_s,
  2724. (void *) params->htcaps,
  2725. (void *) params->htcaps_mask,
  2726. max_ampdu);
  2727. }
  2728. #endif /* CONFIG_HT_OVERRIDES */
  2729. #define OVERRIDE_MCS(i) \
  2730. if (ssid->vht_tx_mcs_nss_ ##i >= 0) { \
  2731. vhtcaps_mask->vht_supported_mcs_set.tx_map |= \
  2732. 3 << 2 * (i - 1); \
  2733. vhtcaps->vht_supported_mcs_set.tx_map |= \
  2734. ssid->vht_tx_mcs_nss_ ##i << 2 * (i - 1); \
  2735. } \
  2736. if (ssid->vht_rx_mcs_nss_ ##i >= 0) { \
  2737. vhtcaps_mask->vht_supported_mcs_set.rx_map |= \
  2738. 3 << 2 * (i - 1); \
  2739. vhtcaps->vht_supported_mcs_set.rx_map |= \
  2740. ssid->vht_rx_mcs_nss_ ##i << 2 * (i - 1); \
  2741. }
  2742. OVERRIDE_MCS(1);
  2743. OVERRIDE_MCS(2);
  2744. OVERRIDE_MCS(3);
  2745. OVERRIDE_MCS(4);
  2746. OVERRIDE_MCS(5);
  2747. OVERRIDE_MCS(6);
  2748. OVERRIDE_MCS(7);
  2749. OVERRIDE_MCS(8);
  2750. }
  2751. #endif /* CONFIG_VHT_OVERRIDES */
  2752. static int pcsc_reader_init(struct wpa_supplicant *wpa_s)
  2753. {
  2754. #ifdef PCSC_FUNCS
  2755. size_t len;
  2756. if (!wpa_s->conf->pcsc_reader)
  2757. return 0;
  2758. wpa_s->scard = scard_init(wpa_s->conf->pcsc_reader);
  2759. if (!wpa_s->scard)
  2760. return 1;
  2761. if (wpa_s->conf->pcsc_pin &&
  2762. scard_set_pin(wpa_s->scard, wpa_s->conf->pcsc_pin) < 0) {
  2763. scard_deinit(wpa_s->scard);
  2764. wpa_s->scard = NULL;
  2765. wpa_msg(wpa_s, MSG_ERROR, "PC/SC PIN validation failed");
  2766. return -1;
  2767. }
  2768. len = sizeof(wpa_s->imsi) - 1;
  2769. if (scard_get_imsi(wpa_s->scard, wpa_s->imsi, &len)) {
  2770. scard_deinit(wpa_s->scard);
  2771. wpa_s->scard = NULL;
  2772. wpa_msg(wpa_s, MSG_ERROR, "Could not read IMSI");
  2773. return -1;
  2774. }
  2775. wpa_s->imsi[len] = '\0';
  2776. wpa_s->mnc_len = scard_get_mnc_len(wpa_s->scard);
  2777. wpa_printf(MSG_DEBUG, "SCARD: IMSI %s (MNC length %d)",
  2778. wpa_s->imsi, wpa_s->mnc_len);
  2779. wpa_sm_set_scard_ctx(wpa_s->wpa, wpa_s->scard);
  2780. eapol_sm_register_scard_ctx(wpa_s->eapol, wpa_s->scard);
  2781. #endif /* PCSC_FUNCS */
  2782. return 0;
  2783. }
  2784. int wpas_init_ext_pw(struct wpa_supplicant *wpa_s)
  2785. {
  2786. char *val, *pos;
  2787. ext_password_deinit(wpa_s->ext_pw);
  2788. wpa_s->ext_pw = NULL;
  2789. eapol_sm_set_ext_pw_ctx(wpa_s->eapol, NULL);
  2790. if (!wpa_s->conf->ext_password_backend)
  2791. return 0;
  2792. val = os_strdup(wpa_s->conf->ext_password_backend);
  2793. if (val == NULL)
  2794. return -1;
  2795. pos = os_strchr(val, ':');
  2796. if (pos)
  2797. *pos++ = '\0';
  2798. wpa_printf(MSG_DEBUG, "EXT PW: Initialize backend '%s'", val);
  2799. wpa_s->ext_pw = ext_password_init(val, pos);
  2800. os_free(val);
  2801. if (wpa_s->ext_pw == NULL) {
  2802. wpa_printf(MSG_DEBUG, "EXT PW: Failed to initialize backend");
  2803. return -1;
  2804. }
  2805. eapol_sm_set_ext_pw_ctx(wpa_s->eapol, wpa_s->ext_pw);
  2806. return 0;
  2807. }
  2808. static int wpas_check_wowlan_trigger(const char *start, const char *trigger,
  2809. int capa_trigger, u8 *param_trigger)
  2810. {
  2811. if (os_strcmp(start, trigger) != 0)
  2812. return 0;
  2813. if (!capa_trigger)
  2814. return 0;
  2815. *param_trigger = 1;
  2816. return 1;
  2817. }
  2818. static int wpas_set_wowlan_triggers(struct wpa_supplicant *wpa_s,
  2819. const struct wpa_driver_capa *capa)
  2820. {
  2821. struct wowlan_triggers triggers;
  2822. char *start, *end, *buf;
  2823. int last, ret;
  2824. if (!wpa_s->conf->wowlan_triggers)
  2825. return 0;
  2826. buf = os_strdup(wpa_s->conf->wowlan_triggers);
  2827. if (buf == NULL)
  2828. return -1;
  2829. os_memset(&triggers, 0, sizeof(triggers));
  2830. #define CHECK_TRIGGER(trigger) \
  2831. wpas_check_wowlan_trigger(start, #trigger, \
  2832. capa->wowlan_triggers.trigger, \
  2833. &triggers.trigger)
  2834. start = buf;
  2835. while (*start != '\0') {
  2836. while (isblank(*start))
  2837. start++;
  2838. if (*start == '\0')
  2839. break;
  2840. end = start;
  2841. while (!isblank(*end) && *end != '\0')
  2842. end++;
  2843. last = *end == '\0';
  2844. *end = '\0';
  2845. if (!CHECK_TRIGGER(any) &&
  2846. !CHECK_TRIGGER(disconnect) &&
  2847. !CHECK_TRIGGER(magic_pkt) &&
  2848. !CHECK_TRIGGER(gtk_rekey_failure) &&
  2849. !CHECK_TRIGGER(eap_identity_req) &&
  2850. !CHECK_TRIGGER(four_way_handshake) &&
  2851. !CHECK_TRIGGER(rfkill_release)) {
  2852. wpa_printf(MSG_DEBUG,
  2853. "Unknown/unsupported wowlan trigger '%s'",
  2854. start);
  2855. ret = -1;
  2856. goto out;
  2857. }
  2858. if (last)
  2859. break;
  2860. start = end + 1;
  2861. }
  2862. #undef CHECK_TRIGGER
  2863. ret = wpa_drv_wowlan(wpa_s, &triggers);
  2864. out:
  2865. os_free(buf);
  2866. return ret;
  2867. }
  2868. static struct wpa_radio * radio_add_interface(struct wpa_supplicant *wpa_s,
  2869. const char *rn)
  2870. {
  2871. struct wpa_supplicant *iface = wpa_s->global->ifaces;
  2872. struct wpa_radio *radio;
  2873. while (rn && iface) {
  2874. radio = iface->radio;
  2875. if (radio && os_strcmp(rn, radio->name) == 0) {
  2876. wpa_printf(MSG_DEBUG, "Add interface %s to existing radio %s",
  2877. wpa_s->ifname, rn);
  2878. dl_list_add(&radio->ifaces, &wpa_s->radio_list);
  2879. return radio;
  2880. }
  2881. iface = iface->next;
  2882. }
  2883. wpa_printf(MSG_DEBUG, "Add interface %s to a new radio %s",
  2884. wpa_s->ifname, rn ? rn : "N/A");
  2885. radio = os_zalloc(sizeof(*radio));
  2886. if (radio == NULL)
  2887. return NULL;
  2888. if (rn)
  2889. os_strlcpy(radio->name, rn, sizeof(radio->name));
  2890. dl_list_init(&radio->ifaces);
  2891. dl_list_init(&radio->work);
  2892. dl_list_add(&radio->ifaces, &wpa_s->radio_list);
  2893. return radio;
  2894. }
  2895. static void radio_work_free(struct wpa_radio_work *work)
  2896. {
  2897. if (work->wpa_s->scan_work == work) {
  2898. /* This should not really happen. */
  2899. wpa_dbg(work->wpa_s, MSG_INFO, "Freeing radio work '%s'@%p (started=%d) that is marked as scan_work",
  2900. work->type, work, work->started);
  2901. work->wpa_s->scan_work = NULL;
  2902. }
  2903. #ifdef CONFIG_P2P
  2904. if (work->wpa_s->p2p_scan_work == work) {
  2905. /* This should not really happen. */
  2906. wpa_dbg(work->wpa_s, MSG_INFO, "Freeing radio work '%s'@%p (started=%d) that is marked as p2p_scan_work",
  2907. work->type, work, work->started);
  2908. work->wpa_s->p2p_scan_work = NULL;
  2909. }
  2910. #endif /* CONFIG_P2P */
  2911. dl_list_del(&work->list);
  2912. os_free(work);
  2913. }
  2914. static void radio_start_next_work(void *eloop_ctx, void *timeout_ctx)
  2915. {
  2916. struct wpa_radio *radio = eloop_ctx;
  2917. struct wpa_radio_work *work;
  2918. struct os_reltime now, diff;
  2919. struct wpa_supplicant *wpa_s;
  2920. work = dl_list_first(&radio->work, struct wpa_radio_work, list);
  2921. if (work == NULL)
  2922. return;
  2923. if (work->started)
  2924. return; /* already started and still in progress */
  2925. wpa_s = dl_list_first(&radio->ifaces, struct wpa_supplicant,
  2926. radio_list);
  2927. if (wpa_s && wpa_s->external_scan_running) {
  2928. wpa_printf(MSG_DEBUG, "Delay radio work start until externally triggered scan completes");
  2929. return;
  2930. }
  2931. os_get_reltime(&now);
  2932. os_reltime_sub(&now, &work->time, &diff);
  2933. wpa_dbg(work->wpa_s, MSG_DEBUG, "Starting radio work '%s'@%p after %ld.%06ld second wait",
  2934. work->type, work, diff.sec, diff.usec);
  2935. work->started = 1;
  2936. work->time = now;
  2937. work->cb(work, 0);
  2938. }
  2939. /*
  2940. * This function removes both started and pending radio works running on
  2941. * the provided interface's radio.
  2942. * Prior to the removal of the radio work, its callback (cb) is called with
  2943. * deinit set to be 1. Each work's callback is responsible for clearing its
  2944. * internal data and restoring to a correct state.
  2945. * @wpa_s: wpa_supplicant data
  2946. * @type: type of works to be removed
  2947. * @remove_all: 1 to remove all the works on this radio, 0 to remove only
  2948. * this interface's works.
  2949. */
  2950. void radio_remove_works(struct wpa_supplicant *wpa_s,
  2951. const char *type, int remove_all)
  2952. {
  2953. struct wpa_radio_work *work, *tmp;
  2954. struct wpa_radio *radio = wpa_s->radio;
  2955. dl_list_for_each_safe(work, tmp, &radio->work, struct wpa_radio_work,
  2956. list) {
  2957. if (type && os_strcmp(type, work->type) != 0)
  2958. continue;
  2959. /* skip other ifaces' works */
  2960. if (!remove_all && work->wpa_s != wpa_s)
  2961. continue;
  2962. wpa_dbg(wpa_s, MSG_DEBUG, "Remove radio work '%s'@%p%s",
  2963. work->type, work, work->started ? " (started)" : "");
  2964. work->cb(work, 1);
  2965. radio_work_free(work);
  2966. }
  2967. /* in case we removed the started work */
  2968. radio_work_check_next(wpa_s);
  2969. }
  2970. static void radio_remove_interface(struct wpa_supplicant *wpa_s)
  2971. {
  2972. struct wpa_radio *radio = wpa_s->radio;
  2973. if (!radio)
  2974. return;
  2975. wpa_printf(MSG_DEBUG, "Remove interface %s from radio %s",
  2976. wpa_s->ifname, radio->name);
  2977. dl_list_del(&wpa_s->radio_list);
  2978. radio_remove_works(wpa_s, NULL, 0);
  2979. wpa_s->radio = NULL;
  2980. if (!dl_list_empty(&radio->ifaces))
  2981. return; /* Interfaces remain for this radio */
  2982. wpa_printf(MSG_DEBUG, "Remove radio %s", radio->name);
  2983. eloop_cancel_timeout(radio_start_next_work, radio, NULL);
  2984. os_free(radio);
  2985. }
  2986. void radio_work_check_next(struct wpa_supplicant *wpa_s)
  2987. {
  2988. struct wpa_radio *radio = wpa_s->radio;
  2989. if (dl_list_empty(&radio->work))
  2990. return;
  2991. eloop_cancel_timeout(radio_start_next_work, radio, NULL);
  2992. eloop_register_timeout(0, 0, radio_start_next_work, radio, NULL);
  2993. }
  2994. /**
  2995. * radio_add_work - Add a radio work item
  2996. * @wpa_s: Pointer to wpa_supplicant data
  2997. * @freq: Frequency of the offchannel operation in MHz or 0
  2998. * @type: Unique identifier for each type of work
  2999. * @next: Force as the next work to be executed
  3000. * @cb: Callback function for indicating when radio is available
  3001. * @ctx: Context pointer for the work (work->ctx in cb())
  3002. * Returns: 0 on success, -1 on failure
  3003. *
  3004. * This function is used to request time for an operation that requires
  3005. * exclusive radio control. Once the radio is available, the registered callback
  3006. * function will be called. radio_work_done() must be called once the exclusive
  3007. * radio operation has been completed, so that the radio is freed for other
  3008. * operations. The special case of deinit=1 is used to free the context data
  3009. * during interface removal. That does not allow the callback function to start
  3010. * the radio operation, i.e., it must free any resources allocated for the radio
  3011. * work and return.
  3012. *
  3013. * The @freq parameter can be used to indicate a single channel on which the
  3014. * offchannel operation will occur. This may allow multiple radio work
  3015. * operations to be performed in parallel if they apply for the same channel.
  3016. * Setting this to 0 indicates that the work item may use multiple channels or
  3017. * requires exclusive control of the radio.
  3018. */
  3019. int radio_add_work(struct wpa_supplicant *wpa_s, unsigned int freq,
  3020. const char *type, int next,
  3021. void (*cb)(struct wpa_radio_work *work, int deinit),
  3022. void *ctx)
  3023. {
  3024. struct wpa_radio_work *work;
  3025. int was_empty;
  3026. work = os_zalloc(sizeof(*work));
  3027. if (work == NULL)
  3028. return -1;
  3029. wpa_dbg(wpa_s, MSG_DEBUG, "Add radio work '%s'@%p", type, work);
  3030. os_get_reltime(&work->time);
  3031. work->freq = freq;
  3032. work->type = type;
  3033. work->wpa_s = wpa_s;
  3034. work->cb = cb;
  3035. work->ctx = ctx;
  3036. was_empty = dl_list_empty(&wpa_s->radio->work);
  3037. if (next)
  3038. dl_list_add(&wpa_s->radio->work, &work->list);
  3039. else
  3040. dl_list_add_tail(&wpa_s->radio->work, &work->list);
  3041. if (was_empty) {
  3042. wpa_dbg(wpa_s, MSG_DEBUG, "First radio work item in the queue - schedule start immediately");
  3043. radio_work_check_next(wpa_s);
  3044. }
  3045. return 0;
  3046. }
  3047. /**
  3048. * radio_work_done - Indicate that a radio work item has been completed
  3049. * @work: Completed work
  3050. *
  3051. * This function is called once the callback function registered with
  3052. * radio_add_work() has completed its work.
  3053. */
  3054. void radio_work_done(struct wpa_radio_work *work)
  3055. {
  3056. struct wpa_supplicant *wpa_s = work->wpa_s;
  3057. struct os_reltime now, diff;
  3058. unsigned int started = work->started;
  3059. os_get_reltime(&now);
  3060. os_reltime_sub(&now, &work->time, &diff);
  3061. wpa_dbg(wpa_s, MSG_DEBUG, "Radio work '%s'@%p %s in %ld.%06ld seconds",
  3062. work->type, work, started ? "done" : "canceled",
  3063. diff.sec, diff.usec);
  3064. radio_work_free(work);
  3065. if (started)
  3066. radio_work_check_next(wpa_s);
  3067. }
  3068. int radio_work_pending(struct wpa_supplicant *wpa_s, const char *type)
  3069. {
  3070. struct wpa_radio_work *work;
  3071. struct wpa_radio *radio = wpa_s->radio;
  3072. dl_list_for_each(work, &radio->work, struct wpa_radio_work, list) {
  3073. if (work->wpa_s == wpa_s && os_strcmp(work->type, type) == 0)
  3074. return 1;
  3075. }
  3076. return 0;
  3077. }
  3078. static int wpas_init_driver(struct wpa_supplicant *wpa_s,
  3079. struct wpa_interface *iface)
  3080. {
  3081. const char *ifname, *driver, *rn;
  3082. driver = iface->driver;
  3083. next_driver:
  3084. if (wpa_supplicant_set_driver(wpa_s, driver) < 0)
  3085. return -1;
  3086. wpa_s->drv_priv = wpa_drv_init(wpa_s, wpa_s->ifname);
  3087. if (wpa_s->drv_priv == NULL) {
  3088. const char *pos;
  3089. pos = driver ? os_strchr(driver, ',') : NULL;
  3090. if (pos) {
  3091. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to initialize "
  3092. "driver interface - try next driver wrapper");
  3093. driver = pos + 1;
  3094. goto next_driver;
  3095. }
  3096. wpa_msg(wpa_s, MSG_ERROR, "Failed to initialize driver "
  3097. "interface");
  3098. return -1;
  3099. }
  3100. if (wpa_drv_set_param(wpa_s, wpa_s->conf->driver_param) < 0) {
  3101. wpa_msg(wpa_s, MSG_ERROR, "Driver interface rejected "
  3102. "driver_param '%s'", wpa_s->conf->driver_param);
  3103. return -1;
  3104. }
  3105. ifname = wpa_drv_get_ifname(wpa_s);
  3106. if (ifname && os_strcmp(ifname, wpa_s->ifname) != 0) {
  3107. wpa_dbg(wpa_s, MSG_DEBUG, "Driver interface replaced "
  3108. "interface name with '%s'", ifname);
  3109. os_strlcpy(wpa_s->ifname, ifname, sizeof(wpa_s->ifname));
  3110. }
  3111. rn = wpa_driver_get_radio_name(wpa_s);
  3112. if (rn && rn[0] == '\0')
  3113. rn = NULL;
  3114. wpa_s->radio = radio_add_interface(wpa_s, rn);
  3115. if (wpa_s->radio == NULL)
  3116. return -1;
  3117. return 0;
  3118. }
  3119. static int wpa_supplicant_init_iface(struct wpa_supplicant *wpa_s,
  3120. struct wpa_interface *iface)
  3121. {
  3122. struct wpa_driver_capa capa;
  3123. int capa_res;
  3124. wpa_printf(MSG_DEBUG, "Initializing interface '%s' conf '%s' driver "
  3125. "'%s' ctrl_interface '%s' bridge '%s'", iface->ifname,
  3126. iface->confname ? iface->confname : "N/A",
  3127. iface->driver ? iface->driver : "default",
  3128. iface->ctrl_interface ? iface->ctrl_interface : "N/A",
  3129. iface->bridge_ifname ? iface->bridge_ifname : "N/A");
  3130. if (iface->confname) {
  3131. #ifdef CONFIG_BACKEND_FILE
  3132. wpa_s->confname = os_rel2abs_path(iface->confname);
  3133. if (wpa_s->confname == NULL) {
  3134. wpa_printf(MSG_ERROR, "Failed to get absolute path "
  3135. "for configuration file '%s'.",
  3136. iface->confname);
  3137. return -1;
  3138. }
  3139. wpa_printf(MSG_DEBUG, "Configuration file '%s' -> '%s'",
  3140. iface->confname, wpa_s->confname);
  3141. #else /* CONFIG_BACKEND_FILE */
  3142. wpa_s->confname = os_strdup(iface->confname);
  3143. #endif /* CONFIG_BACKEND_FILE */
  3144. wpa_s->conf = wpa_config_read(wpa_s->confname, NULL);
  3145. if (wpa_s->conf == NULL) {
  3146. wpa_printf(MSG_ERROR, "Failed to read or parse "
  3147. "configuration '%s'.", wpa_s->confname);
  3148. return -1;
  3149. }
  3150. wpa_s->confanother = os_rel2abs_path(iface->confanother);
  3151. wpa_config_read(wpa_s->confanother, wpa_s->conf);
  3152. /*
  3153. * Override ctrl_interface and driver_param if set on command
  3154. * line.
  3155. */
  3156. if (iface->ctrl_interface) {
  3157. os_free(wpa_s->conf->ctrl_interface);
  3158. wpa_s->conf->ctrl_interface =
  3159. os_strdup(iface->ctrl_interface);
  3160. }
  3161. if (iface->driver_param) {
  3162. os_free(wpa_s->conf->driver_param);
  3163. wpa_s->conf->driver_param =
  3164. os_strdup(iface->driver_param);
  3165. }
  3166. if (iface->p2p_mgmt && !iface->ctrl_interface) {
  3167. os_free(wpa_s->conf->ctrl_interface);
  3168. wpa_s->conf->ctrl_interface = NULL;
  3169. }
  3170. } else
  3171. wpa_s->conf = wpa_config_alloc_empty(iface->ctrl_interface,
  3172. iface->driver_param);
  3173. if (wpa_s->conf == NULL) {
  3174. wpa_printf(MSG_ERROR, "\nNo configuration found.");
  3175. return -1;
  3176. }
  3177. if (iface->ifname == NULL) {
  3178. wpa_printf(MSG_ERROR, "\nInterface name is required.");
  3179. return -1;
  3180. }
  3181. if (os_strlen(iface->ifname) >= sizeof(wpa_s->ifname)) {
  3182. wpa_printf(MSG_ERROR, "\nToo long interface name '%s'.",
  3183. iface->ifname);
  3184. return -1;
  3185. }
  3186. os_strlcpy(wpa_s->ifname, iface->ifname, sizeof(wpa_s->ifname));
  3187. if (iface->bridge_ifname) {
  3188. if (os_strlen(iface->bridge_ifname) >=
  3189. sizeof(wpa_s->bridge_ifname)) {
  3190. wpa_printf(MSG_ERROR, "\nToo long bridge interface "
  3191. "name '%s'.", iface->bridge_ifname);
  3192. return -1;
  3193. }
  3194. os_strlcpy(wpa_s->bridge_ifname, iface->bridge_ifname,
  3195. sizeof(wpa_s->bridge_ifname));
  3196. }
  3197. /* RSNA Supplicant Key Management - INITIALIZE */
  3198. eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
  3199. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  3200. /* Initialize driver interface and register driver event handler before
  3201. * L2 receive handler so that association events are processed before
  3202. * EAPOL-Key packets if both become available for the same select()
  3203. * call. */
  3204. if (wpas_init_driver(wpa_s, iface) < 0)
  3205. return -1;
  3206. if (wpa_supplicant_init_wpa(wpa_s) < 0)
  3207. return -1;
  3208. wpa_sm_set_ifname(wpa_s->wpa, wpa_s->ifname,
  3209. wpa_s->bridge_ifname[0] ? wpa_s->bridge_ifname :
  3210. NULL);
  3211. wpa_sm_set_fast_reauth(wpa_s->wpa, wpa_s->conf->fast_reauth);
  3212. if (wpa_s->conf->dot11RSNAConfigPMKLifetime &&
  3213. wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
  3214. wpa_s->conf->dot11RSNAConfigPMKLifetime)) {
  3215. wpa_msg(wpa_s, MSG_ERROR, "Invalid WPA parameter value for "
  3216. "dot11RSNAConfigPMKLifetime");
  3217. return -1;
  3218. }
  3219. if (wpa_s->conf->dot11RSNAConfigPMKReauthThreshold &&
  3220. wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
  3221. wpa_s->conf->dot11RSNAConfigPMKReauthThreshold)) {
  3222. wpa_msg(wpa_s, MSG_ERROR, "Invalid WPA parameter value for "
  3223. "dot11RSNAConfigPMKReauthThreshold");
  3224. return -1;
  3225. }
  3226. if (wpa_s->conf->dot11RSNAConfigSATimeout &&
  3227. wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT,
  3228. wpa_s->conf->dot11RSNAConfigSATimeout)) {
  3229. wpa_msg(wpa_s, MSG_ERROR, "Invalid WPA parameter value for "
  3230. "dot11RSNAConfigSATimeout");
  3231. return -1;
  3232. }
  3233. wpa_s->hw.modes = wpa_drv_get_hw_feature_data(wpa_s,
  3234. &wpa_s->hw.num_modes,
  3235. &wpa_s->hw.flags);
  3236. capa_res = wpa_drv_get_capa(wpa_s, &capa);
  3237. if (capa_res == 0) {
  3238. wpa_s->drv_capa_known = 1;
  3239. wpa_s->drv_flags = capa.flags;
  3240. wpa_s->drv_enc = capa.enc;
  3241. wpa_s->probe_resp_offloads = capa.probe_resp_offloads;
  3242. wpa_s->max_scan_ssids = capa.max_scan_ssids;
  3243. wpa_s->max_sched_scan_ssids = capa.max_sched_scan_ssids;
  3244. wpa_s->sched_scan_supported = capa.sched_scan_supported;
  3245. wpa_s->max_match_sets = capa.max_match_sets;
  3246. wpa_s->max_remain_on_chan = capa.max_remain_on_chan;
  3247. wpa_s->max_stations = capa.max_stations;
  3248. wpa_s->extended_capa = capa.extended_capa;
  3249. wpa_s->extended_capa_mask = capa.extended_capa_mask;
  3250. wpa_s->extended_capa_len = capa.extended_capa_len;
  3251. wpa_s->num_multichan_concurrent =
  3252. capa.num_multichan_concurrent;
  3253. }
  3254. if (wpa_s->max_remain_on_chan == 0)
  3255. wpa_s->max_remain_on_chan = 1000;
  3256. /*
  3257. * Only take p2p_mgmt parameters when P2P Device is supported.
  3258. * Doing it here as it determines whether l2_packet_init() will be done
  3259. * during wpa_supplicant_driver_init().
  3260. */
  3261. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE)
  3262. wpa_s->p2p_mgmt = iface->p2p_mgmt;
  3263. else
  3264. iface->p2p_mgmt = 1;
  3265. if (wpa_s->num_multichan_concurrent == 0)
  3266. wpa_s->num_multichan_concurrent = 1;
  3267. if (wpa_supplicant_driver_init(wpa_s) < 0)
  3268. return -1;
  3269. #ifdef CONFIG_TDLS
  3270. if ((!iface->p2p_mgmt ||
  3271. !(wpa_s->drv_flags &
  3272. WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE)) &&
  3273. wpa_tdls_init(wpa_s->wpa))
  3274. return -1;
  3275. #endif /* CONFIG_TDLS */
  3276. if (wpa_s->conf->country[0] && wpa_s->conf->country[1] &&
  3277. wpa_drv_set_country(wpa_s, wpa_s->conf->country)) {
  3278. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to set country");
  3279. return -1;
  3280. }
  3281. if (wpas_wps_init(wpa_s))
  3282. return -1;
  3283. if (wpa_supplicant_init_eapol(wpa_s) < 0)
  3284. return -1;
  3285. wpa_sm_set_eapol(wpa_s->wpa, wpa_s->eapol);
  3286. wpa_s->ctrl_iface = wpa_supplicant_ctrl_iface_init(wpa_s);
  3287. if (wpa_s->ctrl_iface == NULL) {
  3288. wpa_printf(MSG_ERROR,
  3289. "Failed to initialize control interface '%s'.\n"
  3290. "You may have another wpa_supplicant process "
  3291. "already running or the file was\n"
  3292. "left by an unclean termination of wpa_supplicant "
  3293. "in which case you will need\n"
  3294. "to manually remove this file before starting "
  3295. "wpa_supplicant again.\n",
  3296. wpa_s->conf->ctrl_interface);
  3297. return -1;
  3298. }
  3299. wpa_s->gas = gas_query_init(wpa_s);
  3300. if (wpa_s->gas == NULL) {
  3301. wpa_printf(MSG_ERROR, "Failed to initialize GAS query");
  3302. return -1;
  3303. }
  3304. if (iface->p2p_mgmt && wpas_p2p_init(wpa_s->global, wpa_s) < 0) {
  3305. wpa_msg(wpa_s, MSG_ERROR, "Failed to init P2P");
  3306. return -1;
  3307. }
  3308. if (wpa_bss_init(wpa_s) < 0)
  3309. return -1;
  3310. /*
  3311. * Set Wake-on-WLAN triggers, if configured.
  3312. * Note: We don't restore/remove the triggers on shutdown (it doesn't
  3313. * have effect anyway when the interface is down).
  3314. */
  3315. if (capa_res == 0 && wpas_set_wowlan_triggers(wpa_s, &capa) < 0)
  3316. return -1;
  3317. #ifdef CONFIG_EAP_PROXY
  3318. {
  3319. size_t len;
  3320. wpa_s->mnc_len = eapol_sm_get_eap_proxy_imsi(wpa_s->eapol, wpa_s->imsi,
  3321. &len);
  3322. if (wpa_s->mnc_len > 0) {
  3323. wpa_s->imsi[len] = '\0';
  3324. wpa_printf(MSG_DEBUG, "eap_proxy: IMSI %s (MNC length %d)",
  3325. wpa_s->imsi, wpa_s->mnc_len);
  3326. } else {
  3327. wpa_printf(MSG_DEBUG, "eap_proxy: IMSI not available");
  3328. }
  3329. }
  3330. #endif /* CONFIG_EAP_PROXY */
  3331. if (pcsc_reader_init(wpa_s) < 0)
  3332. return -1;
  3333. if (wpas_init_ext_pw(wpa_s) < 0)
  3334. return -1;
  3335. return 0;
  3336. }
  3337. static void wpa_supplicant_deinit_iface(struct wpa_supplicant *wpa_s,
  3338. int notify, int terminate)
  3339. {
  3340. wpa_s->disconnected = 1;
  3341. if (wpa_s->drv_priv) {
  3342. wpa_supplicant_deauthenticate(wpa_s,
  3343. WLAN_REASON_DEAUTH_LEAVING);
  3344. wpa_drv_set_countermeasures(wpa_s, 0);
  3345. wpa_clear_keys(wpa_s, NULL);
  3346. }
  3347. wpa_supplicant_cleanup(wpa_s);
  3348. wpas_p2p_deinit_iface(wpa_s);
  3349. wpas_ctrl_radio_work_flush(wpa_s);
  3350. radio_remove_interface(wpa_s);
  3351. if (wpa_s->drv_priv)
  3352. wpa_drv_deinit(wpa_s);
  3353. if (notify)
  3354. wpas_notify_iface_removed(wpa_s);
  3355. if (terminate)
  3356. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_TERMINATING);
  3357. if (wpa_s->ctrl_iface) {
  3358. wpa_supplicant_ctrl_iface_deinit(wpa_s->ctrl_iface);
  3359. wpa_s->ctrl_iface = NULL;
  3360. }
  3361. if (wpa_s->conf != NULL) {
  3362. wpa_config_free(wpa_s->conf);
  3363. wpa_s->conf = NULL;
  3364. }
  3365. os_free(wpa_s);
  3366. }
  3367. /**
  3368. * wpa_supplicant_add_iface - Add a new network interface
  3369. * @global: Pointer to global data from wpa_supplicant_init()
  3370. * @iface: Interface configuration options
  3371. * Returns: Pointer to the created interface or %NULL on failure
  3372. *
  3373. * This function is used to add new network interfaces for %wpa_supplicant.
  3374. * This can be called before wpa_supplicant_run() to add interfaces before the
  3375. * main event loop has been started. In addition, new interfaces can be added
  3376. * dynamically while %wpa_supplicant is already running. This could happen,
  3377. * e.g., when a hotplug network adapter is inserted.
  3378. */
  3379. struct wpa_supplicant * wpa_supplicant_add_iface(struct wpa_global *global,
  3380. struct wpa_interface *iface)
  3381. {
  3382. struct wpa_supplicant *wpa_s;
  3383. struct wpa_interface t_iface;
  3384. struct wpa_ssid *ssid;
  3385. if (global == NULL || iface == NULL)
  3386. return NULL;
  3387. wpa_s = wpa_supplicant_alloc();
  3388. if (wpa_s == NULL)
  3389. return NULL;
  3390. wpa_s->global = global;
  3391. t_iface = *iface;
  3392. if (global->params.override_driver) {
  3393. wpa_printf(MSG_DEBUG, "Override interface parameter: driver "
  3394. "('%s' -> '%s')",
  3395. iface->driver, global->params.override_driver);
  3396. t_iface.driver = global->params.override_driver;
  3397. }
  3398. if (global->params.override_ctrl_interface) {
  3399. wpa_printf(MSG_DEBUG, "Override interface parameter: "
  3400. "ctrl_interface ('%s' -> '%s')",
  3401. iface->ctrl_interface,
  3402. global->params.override_ctrl_interface);
  3403. t_iface.ctrl_interface =
  3404. global->params.override_ctrl_interface;
  3405. }
  3406. if (wpa_supplicant_init_iface(wpa_s, &t_iface)) {
  3407. wpa_printf(MSG_DEBUG, "Failed to add interface %s",
  3408. iface->ifname);
  3409. wpa_supplicant_deinit_iface(wpa_s, 0, 0);
  3410. return NULL;
  3411. }
  3412. /* Notify the control interfaces about new iface */
  3413. if (wpas_notify_iface_added(wpa_s)) {
  3414. wpa_supplicant_deinit_iface(wpa_s, 1, 0);
  3415. return NULL;
  3416. }
  3417. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
  3418. wpas_notify_network_added(wpa_s, ssid);
  3419. wpa_s->next = global->ifaces;
  3420. global->ifaces = wpa_s;
  3421. wpa_dbg(wpa_s, MSG_DEBUG, "Added interface %s", wpa_s->ifname);
  3422. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  3423. return wpa_s;
  3424. }
  3425. /**
  3426. * wpa_supplicant_remove_iface - Remove a network interface
  3427. * @global: Pointer to global data from wpa_supplicant_init()
  3428. * @wpa_s: Pointer to the network interface to be removed
  3429. * Returns: 0 if interface was removed, -1 if interface was not found
  3430. *
  3431. * This function can be used to dynamically remove network interfaces from
  3432. * %wpa_supplicant, e.g., when a hotplug network adapter is ejected. In
  3433. * addition, this function is used to remove all remaining interfaces when
  3434. * %wpa_supplicant is terminated.
  3435. */
  3436. int wpa_supplicant_remove_iface(struct wpa_global *global,
  3437. struct wpa_supplicant *wpa_s,
  3438. int terminate)
  3439. {
  3440. struct wpa_supplicant *prev;
  3441. /* Remove interface from the global list of interfaces */
  3442. prev = global->ifaces;
  3443. if (prev == wpa_s) {
  3444. global->ifaces = wpa_s->next;
  3445. } else {
  3446. while (prev && prev->next != wpa_s)
  3447. prev = prev->next;
  3448. if (prev == NULL)
  3449. return -1;
  3450. prev->next = wpa_s->next;
  3451. }
  3452. wpa_dbg(wpa_s, MSG_DEBUG, "Removing interface %s", wpa_s->ifname);
  3453. if (global->p2p_group_formation == wpa_s)
  3454. global->p2p_group_formation = NULL;
  3455. if (global->p2p_invite_group == wpa_s)
  3456. global->p2p_invite_group = NULL;
  3457. wpa_supplicant_deinit_iface(wpa_s, 1, terminate);
  3458. return 0;
  3459. }
  3460. /**
  3461. * wpa_supplicant_get_eap_mode - Get the current EAP mode
  3462. * @wpa_s: Pointer to the network interface
  3463. * Returns: Pointer to the eap mode or the string "UNKNOWN" if not found
  3464. */
  3465. const char * wpa_supplicant_get_eap_mode(struct wpa_supplicant *wpa_s)
  3466. {
  3467. const char *eapol_method;
  3468. if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) == 0 &&
  3469. wpa_s->key_mgmt != WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  3470. return "NO-EAP";
  3471. }
  3472. eapol_method = eapol_sm_get_method_name(wpa_s->eapol);
  3473. if (eapol_method == NULL)
  3474. return "UNKNOWN-EAP";
  3475. return eapol_method;
  3476. }
  3477. /**
  3478. * wpa_supplicant_get_iface - Get a new network interface
  3479. * @global: Pointer to global data from wpa_supplicant_init()
  3480. * @ifname: Interface name
  3481. * Returns: Pointer to the interface or %NULL if not found
  3482. */
  3483. struct wpa_supplicant * wpa_supplicant_get_iface(struct wpa_global *global,
  3484. const char *ifname)
  3485. {
  3486. struct wpa_supplicant *wpa_s;
  3487. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3488. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  3489. return wpa_s;
  3490. }
  3491. return NULL;
  3492. }
  3493. #ifndef CONFIG_NO_WPA_MSG
  3494. static const char * wpa_supplicant_msg_ifname_cb(void *ctx)
  3495. {
  3496. struct wpa_supplicant *wpa_s = ctx;
  3497. if (wpa_s == NULL)
  3498. return NULL;
  3499. return wpa_s->ifname;
  3500. }
  3501. #endif /* CONFIG_NO_WPA_MSG */
  3502. /**
  3503. * wpa_supplicant_init - Initialize %wpa_supplicant
  3504. * @params: Parameters for %wpa_supplicant
  3505. * Returns: Pointer to global %wpa_supplicant data, or %NULL on failure
  3506. *
  3507. * This function is used to initialize %wpa_supplicant. After successful
  3508. * initialization, the returned data pointer can be used to add and remove
  3509. * network interfaces, and eventually, to deinitialize %wpa_supplicant.
  3510. */
  3511. struct wpa_global * wpa_supplicant_init(struct wpa_params *params)
  3512. {
  3513. struct wpa_global *global;
  3514. int ret, i;
  3515. if (params == NULL)
  3516. return NULL;
  3517. #ifdef CONFIG_DRIVER_NDIS
  3518. {
  3519. void driver_ndis_init_ops(void);
  3520. driver_ndis_init_ops();
  3521. }
  3522. #endif /* CONFIG_DRIVER_NDIS */
  3523. #ifndef CONFIG_NO_WPA_MSG
  3524. wpa_msg_register_ifname_cb(wpa_supplicant_msg_ifname_cb);
  3525. #endif /* CONFIG_NO_WPA_MSG */
  3526. wpa_debug_open_file(params->wpa_debug_file_path);
  3527. if (params->wpa_debug_syslog)
  3528. wpa_debug_open_syslog();
  3529. if (params->wpa_debug_tracing) {
  3530. ret = wpa_debug_open_linux_tracing();
  3531. if (ret) {
  3532. wpa_printf(MSG_ERROR,
  3533. "Failed to enable trace logging");
  3534. return NULL;
  3535. }
  3536. }
  3537. ret = eap_register_methods();
  3538. if (ret) {
  3539. wpa_printf(MSG_ERROR, "Failed to register EAP methods");
  3540. if (ret == -2)
  3541. wpa_printf(MSG_ERROR, "Two or more EAP methods used "
  3542. "the same EAP type.");
  3543. return NULL;
  3544. }
  3545. global = os_zalloc(sizeof(*global));
  3546. if (global == NULL)
  3547. return NULL;
  3548. dl_list_init(&global->p2p_srv_bonjour);
  3549. dl_list_init(&global->p2p_srv_upnp);
  3550. global->params.daemonize = params->daemonize;
  3551. global->params.wait_for_monitor = params->wait_for_monitor;
  3552. global->params.dbus_ctrl_interface = params->dbus_ctrl_interface;
  3553. if (params->pid_file)
  3554. global->params.pid_file = os_strdup(params->pid_file);
  3555. if (params->ctrl_interface)
  3556. global->params.ctrl_interface =
  3557. os_strdup(params->ctrl_interface);
  3558. if (params->ctrl_interface_group)
  3559. global->params.ctrl_interface_group =
  3560. os_strdup(params->ctrl_interface_group);
  3561. if (params->override_driver)
  3562. global->params.override_driver =
  3563. os_strdup(params->override_driver);
  3564. if (params->override_ctrl_interface)
  3565. global->params.override_ctrl_interface =
  3566. os_strdup(params->override_ctrl_interface);
  3567. wpa_debug_level = global->params.wpa_debug_level =
  3568. params->wpa_debug_level;
  3569. wpa_debug_show_keys = global->params.wpa_debug_show_keys =
  3570. params->wpa_debug_show_keys;
  3571. wpa_debug_timestamp = global->params.wpa_debug_timestamp =
  3572. params->wpa_debug_timestamp;
  3573. wpa_printf(MSG_DEBUG, "wpa_supplicant v" VERSION_STR);
  3574. if (eloop_init()) {
  3575. wpa_printf(MSG_ERROR, "Failed to initialize event loop");
  3576. wpa_supplicant_deinit(global);
  3577. return NULL;
  3578. }
  3579. random_init(params->entropy_file);
  3580. global->ctrl_iface = wpa_supplicant_global_ctrl_iface_init(global);
  3581. if (global->ctrl_iface == NULL) {
  3582. wpa_supplicant_deinit(global);
  3583. return NULL;
  3584. }
  3585. if (wpas_notify_supplicant_initialized(global)) {
  3586. wpa_supplicant_deinit(global);
  3587. return NULL;
  3588. }
  3589. for (i = 0; wpa_drivers[i]; i++)
  3590. global->drv_count++;
  3591. if (global->drv_count == 0) {
  3592. wpa_printf(MSG_ERROR, "No drivers enabled");
  3593. wpa_supplicant_deinit(global);
  3594. return NULL;
  3595. }
  3596. global->drv_priv = os_zalloc(global->drv_count * sizeof(void *));
  3597. if (global->drv_priv == NULL) {
  3598. wpa_supplicant_deinit(global);
  3599. return NULL;
  3600. }
  3601. #ifdef CONFIG_WIFI_DISPLAY
  3602. if (wifi_display_init(global) < 0) {
  3603. wpa_printf(MSG_ERROR, "Failed to initialize Wi-Fi Display");
  3604. wpa_supplicant_deinit(global);
  3605. return NULL;
  3606. }
  3607. #endif /* CONFIG_WIFI_DISPLAY */
  3608. return global;
  3609. }
  3610. /**
  3611. * wpa_supplicant_run - Run the %wpa_supplicant main event loop
  3612. * @global: Pointer to global data from wpa_supplicant_init()
  3613. * Returns: 0 after successful event loop run, -1 on failure
  3614. *
  3615. * This function starts the main event loop and continues running as long as
  3616. * there are any remaining events. In most cases, this function is running as
  3617. * long as the %wpa_supplicant process in still in use.
  3618. */
  3619. int wpa_supplicant_run(struct wpa_global *global)
  3620. {
  3621. struct wpa_supplicant *wpa_s;
  3622. if (global->params.daemonize &&
  3623. wpa_supplicant_daemon(global->params.pid_file))
  3624. return -1;
  3625. if (global->params.wait_for_monitor) {
  3626. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next)
  3627. if (wpa_s->ctrl_iface)
  3628. wpa_supplicant_ctrl_iface_wait(
  3629. wpa_s->ctrl_iface);
  3630. }
  3631. eloop_register_signal_terminate(wpa_supplicant_terminate, global);
  3632. eloop_register_signal_reconfig(wpa_supplicant_reconfig, global);
  3633. eloop_run();
  3634. return 0;
  3635. }
  3636. /**
  3637. * wpa_supplicant_deinit - Deinitialize %wpa_supplicant
  3638. * @global: Pointer to global data from wpa_supplicant_init()
  3639. *
  3640. * This function is called to deinitialize %wpa_supplicant and to free all
  3641. * allocated resources. Remaining network interfaces will also be removed.
  3642. */
  3643. void wpa_supplicant_deinit(struct wpa_global *global)
  3644. {
  3645. int i;
  3646. if (global == NULL)
  3647. return;
  3648. #ifdef CONFIG_WIFI_DISPLAY
  3649. wifi_display_deinit(global);
  3650. #endif /* CONFIG_WIFI_DISPLAY */
  3651. while (global->ifaces)
  3652. wpa_supplicant_remove_iface(global, global->ifaces, 1);
  3653. if (global->ctrl_iface)
  3654. wpa_supplicant_global_ctrl_iface_deinit(global->ctrl_iface);
  3655. wpas_notify_supplicant_deinitialized(global);
  3656. eap_peer_unregister_methods();
  3657. #ifdef CONFIG_AP
  3658. eap_server_unregister_methods();
  3659. #endif /* CONFIG_AP */
  3660. for (i = 0; wpa_drivers[i] && global->drv_priv; i++) {
  3661. if (!global->drv_priv[i])
  3662. continue;
  3663. wpa_drivers[i]->global_deinit(global->drv_priv[i]);
  3664. }
  3665. os_free(global->drv_priv);
  3666. random_deinit();
  3667. eloop_destroy();
  3668. if (global->params.pid_file) {
  3669. os_daemonize_terminate(global->params.pid_file);
  3670. os_free(global->params.pid_file);
  3671. }
  3672. os_free(global->params.ctrl_interface);
  3673. os_free(global->params.ctrl_interface_group);
  3674. os_free(global->params.override_driver);
  3675. os_free(global->params.override_ctrl_interface);
  3676. os_free(global->p2p_disallow_freq.range);
  3677. os_free(global->p2p_go_avoid_freq.range);
  3678. os_free(global->add_psk);
  3679. os_free(global);
  3680. wpa_debug_close_syslog();
  3681. wpa_debug_close_file();
  3682. wpa_debug_close_linux_tracing();
  3683. }
  3684. void wpa_supplicant_update_config(struct wpa_supplicant *wpa_s)
  3685. {
  3686. if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
  3687. wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  3688. char country[3];
  3689. country[0] = wpa_s->conf->country[0];
  3690. country[1] = wpa_s->conf->country[1];
  3691. country[2] = '\0';
  3692. if (wpa_drv_set_country(wpa_s, country) < 0) {
  3693. wpa_printf(MSG_ERROR, "Failed to set country code "
  3694. "'%s'", country);
  3695. }
  3696. }
  3697. if (wpa_s->conf->changed_parameters & CFG_CHANGED_EXT_PW_BACKEND)
  3698. wpas_init_ext_pw(wpa_s);
  3699. #ifdef CONFIG_WPS
  3700. wpas_wps_update_config(wpa_s);
  3701. #endif /* CONFIG_WPS */
  3702. wpas_p2p_update_config(wpa_s);
  3703. wpa_s->conf->changed_parameters = 0;
  3704. }
  3705. static void add_freq(int *freqs, int *num_freqs, int freq)
  3706. {
  3707. int i;
  3708. for (i = 0; i < *num_freqs; i++) {
  3709. if (freqs[i] == freq)
  3710. return;
  3711. }
  3712. freqs[*num_freqs] = freq;
  3713. (*num_freqs)++;
  3714. }
  3715. static int * get_bss_freqs_in_ess(struct wpa_supplicant *wpa_s)
  3716. {
  3717. struct wpa_bss *bss, *cbss;
  3718. const int max_freqs = 10;
  3719. int *freqs;
  3720. int num_freqs = 0;
  3721. freqs = os_zalloc(sizeof(int) * (max_freqs + 1));
  3722. if (freqs == NULL)
  3723. return NULL;
  3724. cbss = wpa_s->current_bss;
  3725. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  3726. if (bss == cbss)
  3727. continue;
  3728. if (bss->ssid_len == cbss->ssid_len &&
  3729. os_memcmp(bss->ssid, cbss->ssid, bss->ssid_len) == 0 &&
  3730. wpa_blacklist_get(wpa_s, bss->bssid) == NULL) {
  3731. add_freq(freqs, &num_freqs, bss->freq);
  3732. if (num_freqs == max_freqs)
  3733. break;
  3734. }
  3735. }
  3736. if (num_freqs == 0) {
  3737. os_free(freqs);
  3738. freqs = NULL;
  3739. }
  3740. return freqs;
  3741. }
  3742. void wpas_connection_failed(struct wpa_supplicant *wpa_s, const u8 *bssid)
  3743. {
  3744. int timeout;
  3745. int count;
  3746. int *freqs = NULL;
  3747. wpas_connect_work_done(wpa_s);
  3748. /*
  3749. * Remove possible authentication timeout since the connection failed.
  3750. */
  3751. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
  3752. if (wpa_s->disconnected) {
  3753. /*
  3754. * There is no point in blacklisting the AP if this event is
  3755. * generated based on local request to disconnect.
  3756. */
  3757. wpa_dbg(wpa_s, MSG_DEBUG, "Ignore connection failure "
  3758. "indication since interface has been put into "
  3759. "disconnected state");
  3760. return;
  3761. }
  3762. /*
  3763. * Add the failed BSSID into the blacklist and speed up next scan
  3764. * attempt if there could be other APs that could accept association.
  3765. * The current blacklist count indicates how many times we have tried
  3766. * connecting to this AP and multiple attempts mean that other APs are
  3767. * either not available or has already been tried, so that we can start
  3768. * increasing the delay here to avoid constant scanning.
  3769. */
  3770. count = wpa_blacklist_add(wpa_s, bssid);
  3771. if (count == 1 && wpa_s->current_bss) {
  3772. /*
  3773. * This BSS was not in the blacklist before. If there is
  3774. * another BSS available for the same ESS, we should try that
  3775. * next. Otherwise, we may as well try this one once more
  3776. * before allowing other, likely worse, ESSes to be considered.
  3777. */
  3778. freqs = get_bss_freqs_in_ess(wpa_s);
  3779. if (freqs) {
  3780. wpa_dbg(wpa_s, MSG_DEBUG, "Another BSS in this ESS "
  3781. "has been seen; try it next");
  3782. wpa_blacklist_add(wpa_s, bssid);
  3783. /*
  3784. * On the next scan, go through only the known channels
  3785. * used in this ESS based on previous scans to speed up
  3786. * common load balancing use case.
  3787. */
  3788. os_free(wpa_s->next_scan_freqs);
  3789. wpa_s->next_scan_freqs = freqs;
  3790. }
  3791. }
  3792. /*
  3793. * Add previous failure count in case the temporary blacklist was
  3794. * cleared due to no other BSSes being available.
  3795. */
  3796. count += wpa_s->extra_blacklist_count;
  3797. if (count > 3 && wpa_s->current_ssid) {
  3798. wpa_printf(MSG_DEBUG, "Continuous association failures - "
  3799. "consider temporary network disabling");
  3800. wpas_auth_failed(wpa_s, "CONN_FAILED");
  3801. }
  3802. switch (count) {
  3803. case 1:
  3804. timeout = 100;
  3805. break;
  3806. case 2:
  3807. timeout = 500;
  3808. break;
  3809. case 3:
  3810. timeout = 1000;
  3811. break;
  3812. case 4:
  3813. timeout = 5000;
  3814. break;
  3815. default:
  3816. timeout = 10000;
  3817. break;
  3818. }
  3819. wpa_dbg(wpa_s, MSG_DEBUG, "Blacklist count %d --> request scan in %d "
  3820. "ms", count, timeout);
  3821. /*
  3822. * TODO: if more than one possible AP is available in scan results,
  3823. * could try the other ones before requesting a new scan.
  3824. */
  3825. wpa_supplicant_req_scan(wpa_s, timeout / 1000,
  3826. 1000 * (timeout % 1000));
  3827. }
  3828. int wpas_driver_bss_selection(struct wpa_supplicant *wpa_s)
  3829. {
  3830. return wpa_s->conf->ap_scan == 2 ||
  3831. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_BSS_SELECTION);
  3832. }
  3833. #if defined(CONFIG_CTRL_IFACE) || defined(CONFIG_CTRL_IFACE_DBUS_NEW)
  3834. int wpa_supplicant_ctrl_iface_ctrl_rsp_handle(struct wpa_supplicant *wpa_s,
  3835. struct wpa_ssid *ssid,
  3836. const char *field,
  3837. const char *value)
  3838. {
  3839. #ifdef IEEE8021X_EAPOL
  3840. struct eap_peer_config *eap = &ssid->eap;
  3841. wpa_printf(MSG_DEBUG, "CTRL_IFACE: response handle field=%s", field);
  3842. wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: response value",
  3843. (const u8 *) value, os_strlen(value));
  3844. switch (wpa_supplicant_ctrl_req_from_string(field)) {
  3845. case WPA_CTRL_REQ_EAP_IDENTITY:
  3846. os_free(eap->identity);
  3847. eap->identity = (u8 *) os_strdup(value);
  3848. eap->identity_len = os_strlen(value);
  3849. eap->pending_req_identity = 0;
  3850. if (ssid == wpa_s->current_ssid)
  3851. wpa_s->reassociate = 1;
  3852. break;
  3853. case WPA_CTRL_REQ_EAP_PASSWORD:
  3854. bin_clear_free(eap->password, eap->password_len);
  3855. eap->password = (u8 *) os_strdup(value);
  3856. eap->password_len = os_strlen(value);
  3857. eap->pending_req_password = 0;
  3858. if (ssid == wpa_s->current_ssid)
  3859. wpa_s->reassociate = 1;
  3860. break;
  3861. case WPA_CTRL_REQ_EAP_NEW_PASSWORD:
  3862. bin_clear_free(eap->new_password, eap->new_password_len);
  3863. eap->new_password = (u8 *) os_strdup(value);
  3864. eap->new_password_len = os_strlen(value);
  3865. eap->pending_req_new_password = 0;
  3866. if (ssid == wpa_s->current_ssid)
  3867. wpa_s->reassociate = 1;
  3868. break;
  3869. case WPA_CTRL_REQ_EAP_PIN:
  3870. str_clear_free(eap->pin);
  3871. eap->pin = os_strdup(value);
  3872. eap->pending_req_pin = 0;
  3873. if (ssid == wpa_s->current_ssid)
  3874. wpa_s->reassociate = 1;
  3875. break;
  3876. case WPA_CTRL_REQ_EAP_OTP:
  3877. bin_clear_free(eap->otp, eap->otp_len);
  3878. eap->otp = (u8 *) os_strdup(value);
  3879. eap->otp_len = os_strlen(value);
  3880. os_free(eap->pending_req_otp);
  3881. eap->pending_req_otp = NULL;
  3882. eap->pending_req_otp_len = 0;
  3883. break;
  3884. case WPA_CTRL_REQ_EAP_PASSPHRASE:
  3885. str_clear_free(eap->private_key_passwd);
  3886. eap->private_key_passwd = os_strdup(value);
  3887. eap->pending_req_passphrase = 0;
  3888. if (ssid == wpa_s->current_ssid)
  3889. wpa_s->reassociate = 1;
  3890. break;
  3891. case WPA_CTRL_REQ_SIM:
  3892. str_clear_free(eap->external_sim_resp);
  3893. eap->external_sim_resp = os_strdup(value);
  3894. break;
  3895. default:
  3896. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown field '%s'", field);
  3897. return -1;
  3898. }
  3899. return 0;
  3900. #else /* IEEE8021X_EAPOL */
  3901. wpa_printf(MSG_DEBUG, "CTRL_IFACE: IEEE 802.1X not included");
  3902. return -1;
  3903. #endif /* IEEE8021X_EAPOL */
  3904. }
  3905. #endif /* CONFIG_CTRL_IFACE || CONFIG_CTRL_IFACE_DBUS_NEW */
  3906. int wpas_network_disabled(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid)
  3907. {
  3908. int i;
  3909. unsigned int drv_enc;
  3910. if (ssid == NULL)
  3911. return 1;
  3912. if (ssid->disabled)
  3913. return 1;
  3914. if (wpa_s && wpa_s->drv_capa_known)
  3915. drv_enc = wpa_s->drv_enc;
  3916. else
  3917. drv_enc = (unsigned int) -1;
  3918. for (i = 0; i < NUM_WEP_KEYS; i++) {
  3919. size_t len = ssid->wep_key_len[i];
  3920. if (len == 0)
  3921. continue;
  3922. if (len == 5 && (drv_enc & WPA_DRIVER_CAPA_ENC_WEP40))
  3923. continue;
  3924. if (len == 13 && (drv_enc & WPA_DRIVER_CAPA_ENC_WEP104))
  3925. continue;
  3926. if (len == 16 && (drv_enc & WPA_DRIVER_CAPA_ENC_WEP128))
  3927. continue;
  3928. return 1; /* invalid WEP key */
  3929. }
  3930. if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
  3931. (!ssid->passphrase || ssid->ssid_len != 0) && !ssid->ext_psk)
  3932. return 1;
  3933. return 0;
  3934. }
  3935. int wpas_is_p2p_prioritized(struct wpa_supplicant *wpa_s)
  3936. {
  3937. if (wpa_s->global->conc_pref == WPA_CONC_PREF_P2P)
  3938. return 1;
  3939. if (wpa_s->global->conc_pref == WPA_CONC_PREF_STA)
  3940. return 0;
  3941. return -1;
  3942. }
  3943. void wpas_auth_failed(struct wpa_supplicant *wpa_s, char *reason)
  3944. {
  3945. struct wpa_ssid *ssid = wpa_s->current_ssid;
  3946. int dur;
  3947. struct os_reltime now;
  3948. if (ssid == NULL) {
  3949. wpa_printf(MSG_DEBUG, "Authentication failure but no known "
  3950. "SSID block");
  3951. return;
  3952. }
  3953. if (ssid->key_mgmt == WPA_KEY_MGMT_WPS)
  3954. return;
  3955. ssid->auth_failures++;
  3956. #ifdef CONFIG_P2P
  3957. if (ssid->p2p_group &&
  3958. (wpa_s->p2p_in_provisioning || wpa_s->show_group_started)) {
  3959. /*
  3960. * Skip the wait time since there is a short timeout on the
  3961. * connection to a P2P group.
  3962. */
  3963. return;
  3964. }
  3965. #endif /* CONFIG_P2P */
  3966. if (ssid->auth_failures > 50)
  3967. dur = 300;
  3968. else if (ssid->auth_failures > 10)
  3969. dur = 120;
  3970. else if (ssid->auth_failures > 5)
  3971. dur = 90;
  3972. else if (ssid->auth_failures > 3)
  3973. dur = 60;
  3974. else if (ssid->auth_failures > 2)
  3975. dur = 30;
  3976. else if (ssid->auth_failures > 1)
  3977. dur = 20;
  3978. else
  3979. dur = 10;
  3980. if (ssid->auth_failures > 1 &&
  3981. wpa_key_mgmt_wpa_ieee8021x(ssid->key_mgmt))
  3982. dur += os_random() % (ssid->auth_failures * 10);
  3983. os_get_reltime(&now);
  3984. if (now.sec + dur <= ssid->disabled_until.sec)
  3985. return;
  3986. ssid->disabled_until.sec = now.sec + dur;
  3987. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_TEMP_DISABLED
  3988. "id=%d ssid=\"%s\" auth_failures=%u duration=%d reason=%s",
  3989. ssid->id, wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
  3990. ssid->auth_failures, dur, reason);
  3991. }
  3992. void wpas_clear_temp_disabled(struct wpa_supplicant *wpa_s,
  3993. struct wpa_ssid *ssid, int clear_failures)
  3994. {
  3995. if (ssid == NULL)
  3996. return;
  3997. if (ssid->disabled_until.sec) {
  3998. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_REENABLED
  3999. "id=%d ssid=\"%s\"",
  4000. ssid->id, wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  4001. }
  4002. ssid->disabled_until.sec = 0;
  4003. ssid->disabled_until.usec = 0;
  4004. if (clear_failures)
  4005. ssid->auth_failures = 0;
  4006. }
  4007. int disallowed_bssid(struct wpa_supplicant *wpa_s, const u8 *bssid)
  4008. {
  4009. size_t i;
  4010. if (wpa_s->disallow_aps_bssid == NULL)
  4011. return 0;
  4012. for (i = 0; i < wpa_s->disallow_aps_bssid_count; i++) {
  4013. if (os_memcmp(wpa_s->disallow_aps_bssid + i * ETH_ALEN,
  4014. bssid, ETH_ALEN) == 0)
  4015. return 1;
  4016. }
  4017. return 0;
  4018. }
  4019. int disallowed_ssid(struct wpa_supplicant *wpa_s, const u8 *ssid,
  4020. size_t ssid_len)
  4021. {
  4022. size_t i;
  4023. if (wpa_s->disallow_aps_ssid == NULL || ssid == NULL)
  4024. return 0;
  4025. for (i = 0; i < wpa_s->disallow_aps_ssid_count; i++) {
  4026. struct wpa_ssid_value *s = &wpa_s->disallow_aps_ssid[i];
  4027. if (ssid_len == s->ssid_len &&
  4028. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  4029. return 1;
  4030. }
  4031. return 0;
  4032. }
  4033. /**
  4034. * wpas_request_connection - Request a new connection
  4035. * @wpa_s: Pointer to the network interface
  4036. *
  4037. * This function is used to request a new connection to be found. It will mark
  4038. * the interface to allow reassociation and request a new scan to find a
  4039. * suitable network to connect to.
  4040. */
  4041. void wpas_request_connection(struct wpa_supplicant *wpa_s)
  4042. {
  4043. wpa_s->normal_scans = 0;
  4044. wpa_supplicant_reinit_autoscan(wpa_s);
  4045. wpa_s->extra_blacklist_count = 0;
  4046. wpa_s->disconnected = 0;
  4047. wpa_s->reassociate = 1;
  4048. if (wpa_supplicant_fast_associate(wpa_s) != 1)
  4049. wpa_supplicant_req_scan(wpa_s, 0, 0);
  4050. }
  4051. void dump_freq_data(struct wpa_supplicant *wpa_s, const char *title,
  4052. struct wpa_used_freq_data *freqs_data,
  4053. unsigned int len)
  4054. {
  4055. unsigned int i;
  4056. wpa_dbg(wpa_s, MSG_DEBUG, "Shared frequencies (len=%u): %s",
  4057. len, title);
  4058. for (i = 0; i < len; i++) {
  4059. struct wpa_used_freq_data *cur = &freqs_data[i];
  4060. wpa_dbg(wpa_s, MSG_DEBUG, "freq[%u]: %d, flags=0x%X",
  4061. i, cur->freq, cur->flags);
  4062. }
  4063. }
  4064. /*
  4065. * Find the operating frequencies of any of the virtual interfaces that
  4066. * are using the same radio as the current interface, and in addition, get
  4067. * information about the interface types that are using the frequency.
  4068. */
  4069. int get_shared_radio_freqs_data(struct wpa_supplicant *wpa_s,
  4070. struct wpa_used_freq_data *freqs_data,
  4071. unsigned int len)
  4072. {
  4073. struct wpa_supplicant *ifs;
  4074. u8 bssid[ETH_ALEN];
  4075. int freq;
  4076. unsigned int idx = 0, i;
  4077. wpa_dbg(wpa_s, MSG_DEBUG,
  4078. "Determining shared radio frequencies (max len %u)", len);
  4079. os_memset(freqs_data, 0, sizeof(struct wpa_used_freq_data) * len);
  4080. dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
  4081. radio_list) {
  4082. if (idx == len)
  4083. break;
  4084. if (ifs->current_ssid == NULL || ifs->assoc_freq == 0)
  4085. continue;
  4086. if (ifs->current_ssid->mode == WPAS_MODE_AP ||
  4087. ifs->current_ssid->mode == WPAS_MODE_P2P_GO)
  4088. freq = ifs->current_ssid->frequency;
  4089. else if (wpa_drv_get_bssid(ifs, bssid) == 0)
  4090. freq = ifs->assoc_freq;
  4091. else
  4092. continue;
  4093. /* Hold only distinct freqs */
  4094. for (i = 0; i < idx; i++)
  4095. if (freqs_data[i].freq == freq)
  4096. break;
  4097. if (i == idx)
  4098. freqs_data[idx++].freq = freq;
  4099. if (ifs->current_ssid->mode == WPAS_MODE_INFRA) {
  4100. freqs_data[i].flags = ifs->current_ssid->p2p_group ?
  4101. WPA_FREQ_USED_BY_P2P_CLIENT :
  4102. WPA_FREQ_USED_BY_INFRA_STATION;
  4103. }
  4104. }
  4105. dump_freq_data(wpa_s, "completed iteration", freqs_data, idx);
  4106. return idx;
  4107. }
  4108. /*
  4109. * Find the operating frequencies of any of the virtual interfaces that
  4110. * are using the same radio as the current interface.
  4111. */
  4112. int get_shared_radio_freqs(struct wpa_supplicant *wpa_s,
  4113. int *freq_array, unsigned int len)
  4114. {
  4115. struct wpa_used_freq_data *freqs_data;
  4116. int num, i;
  4117. os_memset(freq_array, 0, sizeof(int) * len);
  4118. freqs_data = os_calloc(len, sizeof(struct wpa_used_freq_data));
  4119. if (!freqs_data)
  4120. return -1;
  4121. num = get_shared_radio_freqs_data(wpa_s, freqs_data, len);
  4122. for (i = 0; i < num; i++)
  4123. freq_array[i] = freqs_data[i].freq;
  4124. os_free(freqs_data);
  4125. return num;
  4126. }