events.c 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834
  1. /*
  2. * WPA Supplicant - Driver event processing
  3. * Copyright (c) 2003-2015, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "eapol_supp/eapol_supp_sm.h"
  11. #include "rsn_supp/wpa.h"
  12. #include "eloop.h"
  13. #include "config.h"
  14. #include "l2_packet/l2_packet.h"
  15. #include "wpa_supplicant_i.h"
  16. #include "driver_i.h"
  17. #include "pcsc_funcs.h"
  18. #include "rsn_supp/preauth.h"
  19. #include "rsn_supp/pmksa_cache.h"
  20. #include "common/wpa_ctrl.h"
  21. #include "eap_peer/eap.h"
  22. #include "ap/hostapd.h"
  23. #include "p2p/p2p.h"
  24. #include "wnm_sta.h"
  25. #include "notify.h"
  26. #include "common/ieee802_11_defs.h"
  27. #include "common/ieee802_11_common.h"
  28. #include "crypto/random.h"
  29. #include "blacklist.h"
  30. #include "wpas_glue.h"
  31. #include "wps_supplicant.h"
  32. #include "ibss_rsn.h"
  33. #include "sme.h"
  34. #include "gas_query.h"
  35. #include "p2p_supplicant.h"
  36. #include "bgscan.h"
  37. #include "autoscan.h"
  38. #include "ap.h"
  39. #include "bss.h"
  40. #include "scan.h"
  41. #include "offchannel.h"
  42. #include "interworking.h"
  43. #include "mesh.h"
  44. #include "mesh_mpm.h"
  45. #include "wmm_ac.h"
  46. #ifndef CONFIG_NO_SCAN_PROCESSING
  47. static int wpas_select_network_from_last_scan(struct wpa_supplicant *wpa_s,
  48. int new_scan, int own_request);
  49. #endif /* CONFIG_NO_SCAN_PROCESSING */
  50. static int wpas_temp_disabled(struct wpa_supplicant *wpa_s,
  51. struct wpa_ssid *ssid)
  52. {
  53. struct os_reltime now;
  54. if (ssid == NULL || ssid->disabled_until.sec == 0)
  55. return 0;
  56. os_get_reltime(&now);
  57. if (ssid->disabled_until.sec > now.sec)
  58. return ssid->disabled_until.sec - now.sec;
  59. wpas_clear_temp_disabled(wpa_s, ssid, 0);
  60. return 0;
  61. }
  62. /**
  63. * wpas_reenabled_network_time - Time until first network is re-enabled
  64. * @wpa_s: Pointer to wpa_supplicant data
  65. * Returns: If all enabled networks are temporarily disabled, returns the time
  66. * (in sec) until the first network is re-enabled. Otherwise returns 0.
  67. *
  68. * This function is used in case all enabled networks are temporarily disabled,
  69. * in which case it returns the time (in sec) that the first network will be
  70. * re-enabled. The function assumes that at least one network is enabled.
  71. */
  72. static int wpas_reenabled_network_time(struct wpa_supplicant *wpa_s)
  73. {
  74. struct wpa_ssid *ssid;
  75. int disabled_for, res = 0;
  76. #ifdef CONFIG_INTERWORKING
  77. if (wpa_s->conf->auto_interworking && wpa_s->conf->interworking &&
  78. wpa_s->conf->cred)
  79. return 0;
  80. #endif /* CONFIG_INTERWORKING */
  81. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  82. if (ssid->disabled)
  83. continue;
  84. disabled_for = wpas_temp_disabled(wpa_s, ssid);
  85. if (!disabled_for)
  86. return 0;
  87. if (!res || disabled_for < res)
  88. res = disabled_for;
  89. }
  90. return res;
  91. }
  92. void wpas_network_reenabled(void *eloop_ctx, void *timeout_ctx)
  93. {
  94. struct wpa_supplicant *wpa_s = eloop_ctx;
  95. if (wpa_s->disconnected || wpa_s->wpa_state != WPA_SCANNING)
  96. return;
  97. wpa_dbg(wpa_s, MSG_DEBUG,
  98. "Try to associate due to network getting re-enabled");
  99. if (wpa_supplicant_fast_associate(wpa_s) != 1) {
  100. wpa_supplicant_cancel_sched_scan(wpa_s);
  101. wpa_supplicant_req_scan(wpa_s, 0, 0);
  102. }
  103. }
  104. static struct wpa_bss * wpa_supplicant_get_new_bss(
  105. struct wpa_supplicant *wpa_s, const u8 *bssid)
  106. {
  107. struct wpa_bss *bss = NULL;
  108. struct wpa_ssid *ssid = wpa_s->current_ssid;
  109. if (ssid->ssid_len > 0)
  110. bss = wpa_bss_get(wpa_s, bssid, ssid->ssid, ssid->ssid_len);
  111. if (!bss)
  112. bss = wpa_bss_get_bssid(wpa_s, bssid);
  113. return bss;
  114. }
  115. static void wpa_supplicant_update_current_bss(struct wpa_supplicant *wpa_s)
  116. {
  117. struct wpa_bss *bss = wpa_supplicant_get_new_bss(wpa_s, wpa_s->bssid);
  118. if (!bss) {
  119. wpa_supplicant_update_scan_results(wpa_s);
  120. /* Get the BSS from the new scan results */
  121. bss = wpa_supplicant_get_new_bss(wpa_s, wpa_s->bssid);
  122. }
  123. if (bss)
  124. wpa_s->current_bss = bss;
  125. }
  126. static int wpa_supplicant_select_config(struct wpa_supplicant *wpa_s)
  127. {
  128. struct wpa_ssid *ssid, *old_ssid;
  129. u8 drv_ssid[SSID_MAX_LEN];
  130. size_t drv_ssid_len;
  131. int res;
  132. if (wpa_s->conf->ap_scan == 1 && wpa_s->current_ssid) {
  133. wpa_supplicant_update_current_bss(wpa_s);
  134. if (wpa_s->current_ssid->ssid_len == 0)
  135. return 0; /* current profile still in use */
  136. res = wpa_drv_get_ssid(wpa_s, drv_ssid);
  137. if (res < 0) {
  138. wpa_msg(wpa_s, MSG_INFO,
  139. "Failed to read SSID from driver");
  140. return 0; /* try to use current profile */
  141. }
  142. drv_ssid_len = res;
  143. if (drv_ssid_len == wpa_s->current_ssid->ssid_len &&
  144. os_memcmp(drv_ssid, wpa_s->current_ssid->ssid,
  145. drv_ssid_len) == 0)
  146. return 0; /* current profile still in use */
  147. wpa_msg(wpa_s, MSG_DEBUG,
  148. "Driver-initiated BSS selection changed the SSID to %s",
  149. wpa_ssid_txt(drv_ssid, drv_ssid_len));
  150. /* continue selecting a new network profile */
  151. }
  152. wpa_dbg(wpa_s, MSG_DEBUG, "Select network based on association "
  153. "information");
  154. ssid = wpa_supplicant_get_ssid(wpa_s);
  155. if (ssid == NULL) {
  156. wpa_msg(wpa_s, MSG_INFO,
  157. "No network configuration found for the current AP");
  158. return -1;
  159. }
  160. if (wpas_network_disabled(wpa_s, ssid)) {
  161. wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is disabled");
  162. return -1;
  163. }
  164. if (disallowed_bssid(wpa_s, wpa_s->bssid) ||
  165. disallowed_ssid(wpa_s, ssid->ssid, ssid->ssid_len)) {
  166. wpa_dbg(wpa_s, MSG_DEBUG, "Selected BSS is disallowed");
  167. return -1;
  168. }
  169. res = wpas_temp_disabled(wpa_s, ssid);
  170. if (res > 0) {
  171. wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is temporarily "
  172. "disabled for %d second(s)", res);
  173. return -1;
  174. }
  175. wpa_dbg(wpa_s, MSG_DEBUG, "Network configuration found for the "
  176. "current AP");
  177. if (wpa_key_mgmt_wpa_any(ssid->key_mgmt)) {
  178. u8 wpa_ie[80];
  179. size_t wpa_ie_len = sizeof(wpa_ie);
  180. if (wpa_supplicant_set_suites(wpa_s, NULL, ssid,
  181. wpa_ie, &wpa_ie_len) < 0)
  182. wpa_dbg(wpa_s, MSG_DEBUG, "Could not set WPA suites");
  183. } else {
  184. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  185. }
  186. if (wpa_s->current_ssid && wpa_s->current_ssid != ssid)
  187. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  188. old_ssid = wpa_s->current_ssid;
  189. wpa_s->current_ssid = ssid;
  190. wpa_supplicant_update_current_bss(wpa_s);
  191. wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
  192. wpa_supplicant_initiate_eapol(wpa_s);
  193. if (old_ssid != wpa_s->current_ssid)
  194. wpas_notify_network_changed(wpa_s);
  195. return 0;
  196. }
  197. void wpa_supplicant_stop_countermeasures(void *eloop_ctx, void *sock_ctx)
  198. {
  199. struct wpa_supplicant *wpa_s = eloop_ctx;
  200. if (wpa_s->countermeasures) {
  201. wpa_s->countermeasures = 0;
  202. wpa_drv_set_countermeasures(wpa_s, 0);
  203. wpa_msg(wpa_s, MSG_INFO, "WPA: TKIP countermeasures stopped");
  204. /*
  205. * It is possible that the device is sched scanning, which means
  206. * that a connection attempt will be done only when we receive
  207. * scan results. However, in this case, it would be preferable
  208. * to scan and connect immediately, so cancel the sched_scan and
  209. * issue a regular scan flow.
  210. */
  211. wpa_supplicant_cancel_sched_scan(wpa_s);
  212. wpa_supplicant_req_scan(wpa_s, 0, 0);
  213. }
  214. }
  215. void wpa_supplicant_mark_disassoc(struct wpa_supplicant *wpa_s)
  216. {
  217. int bssid_changed;
  218. wnm_bss_keep_alive_deinit(wpa_s);
  219. #ifdef CONFIG_IBSS_RSN
  220. ibss_rsn_deinit(wpa_s->ibss_rsn);
  221. wpa_s->ibss_rsn = NULL;
  222. #endif /* CONFIG_IBSS_RSN */
  223. #ifdef CONFIG_AP
  224. wpa_supplicant_ap_deinit(wpa_s);
  225. #endif /* CONFIG_AP */
  226. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  227. return;
  228. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  229. bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
  230. os_memset(wpa_s->bssid, 0, ETH_ALEN);
  231. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  232. sme_clear_on_disassoc(wpa_s);
  233. #ifdef CONFIG_P2P
  234. os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
  235. #endif /* CONFIG_P2P */
  236. wpa_s->current_bss = NULL;
  237. wpa_s->assoc_freq = 0;
  238. if (bssid_changed)
  239. wpas_notify_bssid_changed(wpa_s);
  240. eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
  241. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  242. if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt))
  243. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  244. wpa_s->ap_ies_from_associnfo = 0;
  245. wpa_s->current_ssid = NULL;
  246. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  247. wpa_s->key_mgmt = 0;
  248. wpas_rrm_reset(wpa_s);
  249. }
  250. static void wpa_find_assoc_pmkid(struct wpa_supplicant *wpa_s)
  251. {
  252. struct wpa_ie_data ie;
  253. int pmksa_set = -1;
  254. size_t i;
  255. if (wpa_sm_parse_own_wpa_ie(wpa_s->wpa, &ie) < 0 ||
  256. ie.pmkid == NULL)
  257. return;
  258. for (i = 0; i < ie.num_pmkid; i++) {
  259. pmksa_set = pmksa_cache_set_current(wpa_s->wpa,
  260. ie.pmkid + i * PMKID_LEN,
  261. NULL, NULL, 0);
  262. if (pmksa_set == 0) {
  263. eapol_sm_notify_pmkid_attempt(wpa_s->eapol);
  264. break;
  265. }
  266. }
  267. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: PMKID from assoc IE %sfound from "
  268. "PMKSA cache", pmksa_set == 0 ? "" : "not ");
  269. }
  270. static void wpa_supplicant_event_pmkid_candidate(struct wpa_supplicant *wpa_s,
  271. union wpa_event_data *data)
  272. {
  273. if (data == NULL) {
  274. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: No data in PMKID candidate "
  275. "event");
  276. return;
  277. }
  278. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: PMKID candidate event - bssid=" MACSTR
  279. " index=%d preauth=%d",
  280. MAC2STR(data->pmkid_candidate.bssid),
  281. data->pmkid_candidate.index,
  282. data->pmkid_candidate.preauth);
  283. pmksa_candidate_add(wpa_s->wpa, data->pmkid_candidate.bssid,
  284. data->pmkid_candidate.index,
  285. data->pmkid_candidate.preauth);
  286. }
  287. static int wpa_supplicant_dynamic_keys(struct wpa_supplicant *wpa_s)
  288. {
  289. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  290. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE)
  291. return 0;
  292. #ifdef IEEE8021X_EAPOL
  293. if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA &&
  294. wpa_s->current_ssid &&
  295. !(wpa_s->current_ssid->eapol_flags &
  296. (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
  297. EAPOL_FLAG_REQUIRE_KEY_BROADCAST))) {
  298. /* IEEE 802.1X, but not using dynamic WEP keys (i.e., either
  299. * plaintext or static WEP keys). */
  300. return 0;
  301. }
  302. #endif /* IEEE8021X_EAPOL */
  303. return 1;
  304. }
  305. /**
  306. * wpa_supplicant_scard_init - Initialize SIM/USIM access with PC/SC
  307. * @wpa_s: pointer to wpa_supplicant data
  308. * @ssid: Configuration data for the network
  309. * Returns: 0 on success, -1 on failure
  310. *
  311. * This function is called when starting authentication with a network that is
  312. * configured to use PC/SC for SIM/USIM access (EAP-SIM or EAP-AKA).
  313. */
  314. int wpa_supplicant_scard_init(struct wpa_supplicant *wpa_s,
  315. struct wpa_ssid *ssid)
  316. {
  317. #ifdef IEEE8021X_EAPOL
  318. #ifdef PCSC_FUNCS
  319. int aka = 0, sim = 0;
  320. if ((ssid != NULL && ssid->eap.pcsc == NULL) ||
  321. wpa_s->scard != NULL || wpa_s->conf->external_sim)
  322. return 0;
  323. if (ssid == NULL || ssid->eap.eap_methods == NULL) {
  324. sim = 1;
  325. aka = 1;
  326. } else {
  327. struct eap_method_type *eap = ssid->eap.eap_methods;
  328. while (eap->vendor != EAP_VENDOR_IETF ||
  329. eap->method != EAP_TYPE_NONE) {
  330. if (eap->vendor == EAP_VENDOR_IETF) {
  331. if (eap->method == EAP_TYPE_SIM)
  332. sim = 1;
  333. else if (eap->method == EAP_TYPE_AKA ||
  334. eap->method == EAP_TYPE_AKA_PRIME)
  335. aka = 1;
  336. }
  337. eap++;
  338. }
  339. }
  340. if (eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_SIM) == NULL)
  341. sim = 0;
  342. if (eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_AKA) == NULL &&
  343. eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_AKA_PRIME) ==
  344. NULL)
  345. aka = 0;
  346. if (!sim && !aka) {
  347. wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is configured to "
  348. "use SIM, but neither EAP-SIM nor EAP-AKA are "
  349. "enabled");
  350. return 0;
  351. }
  352. wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is configured to use SIM "
  353. "(sim=%d aka=%d) - initialize PCSC", sim, aka);
  354. wpa_s->scard = scard_init(wpa_s->conf->pcsc_reader);
  355. if (wpa_s->scard == NULL) {
  356. wpa_msg(wpa_s, MSG_WARNING, "Failed to initialize SIM "
  357. "(pcsc-lite)");
  358. return -1;
  359. }
  360. wpa_sm_set_scard_ctx(wpa_s->wpa, wpa_s->scard);
  361. eapol_sm_register_scard_ctx(wpa_s->eapol, wpa_s->scard);
  362. #endif /* PCSC_FUNCS */
  363. #endif /* IEEE8021X_EAPOL */
  364. return 0;
  365. }
  366. #ifndef CONFIG_NO_SCAN_PROCESSING
  367. static int has_wep_key(struct wpa_ssid *ssid)
  368. {
  369. int i;
  370. for (i = 0; i < NUM_WEP_KEYS; i++) {
  371. if (ssid->wep_key_len[i])
  372. return 1;
  373. }
  374. return 0;
  375. }
  376. static int wpa_supplicant_match_privacy(struct wpa_bss *bss,
  377. struct wpa_ssid *ssid)
  378. {
  379. int privacy = 0;
  380. if (ssid->mixed_cell)
  381. return 1;
  382. #ifdef CONFIG_WPS
  383. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS)
  384. return 1;
  385. #endif /* CONFIG_WPS */
  386. if (has_wep_key(ssid))
  387. privacy = 1;
  388. #ifdef IEEE8021X_EAPOL
  389. if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
  390. ssid->eapol_flags & (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
  391. EAPOL_FLAG_REQUIRE_KEY_BROADCAST))
  392. privacy = 1;
  393. #endif /* IEEE8021X_EAPOL */
  394. if (wpa_key_mgmt_wpa(ssid->key_mgmt))
  395. privacy = 1;
  396. if (ssid->key_mgmt & WPA_KEY_MGMT_OSEN)
  397. privacy = 1;
  398. if (bss->caps & IEEE80211_CAP_PRIVACY)
  399. return privacy;
  400. return !privacy;
  401. }
  402. static int wpa_supplicant_ssid_bss_match(struct wpa_supplicant *wpa_s,
  403. struct wpa_ssid *ssid,
  404. struct wpa_bss *bss)
  405. {
  406. struct wpa_ie_data ie;
  407. int proto_match = 0;
  408. const u8 *rsn_ie, *wpa_ie;
  409. int ret;
  410. int wep_ok;
  411. ret = wpas_wps_ssid_bss_match(wpa_s, ssid, bss);
  412. if (ret >= 0)
  413. return ret;
  414. /* Allow TSN if local configuration accepts WEP use without WPA/WPA2 */
  415. wep_ok = !wpa_key_mgmt_wpa(ssid->key_mgmt) &&
  416. (((ssid->key_mgmt & WPA_KEY_MGMT_NONE) &&
  417. ssid->wep_key_len[ssid->wep_tx_keyidx] > 0) ||
  418. (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA));
  419. rsn_ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  420. while ((ssid->proto & WPA_PROTO_RSN) && rsn_ie) {
  421. proto_match++;
  422. if (wpa_parse_wpa_ie(rsn_ie, 2 + rsn_ie[1], &ie)) {
  423. wpa_dbg(wpa_s, MSG_DEBUG, " skip RSN IE - parse "
  424. "failed");
  425. break;
  426. }
  427. if (wep_ok &&
  428. (ie.group_cipher & (WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)))
  429. {
  430. wpa_dbg(wpa_s, MSG_DEBUG, " selected based on TSN "
  431. "in RSN IE");
  432. return 1;
  433. }
  434. if (!(ie.proto & ssid->proto)) {
  435. wpa_dbg(wpa_s, MSG_DEBUG, " skip RSN IE - proto "
  436. "mismatch");
  437. break;
  438. }
  439. if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
  440. wpa_dbg(wpa_s, MSG_DEBUG, " skip RSN IE - PTK "
  441. "cipher mismatch");
  442. break;
  443. }
  444. if (!(ie.group_cipher & ssid->group_cipher)) {
  445. wpa_dbg(wpa_s, MSG_DEBUG, " skip RSN IE - GTK "
  446. "cipher mismatch");
  447. break;
  448. }
  449. if (!(ie.key_mgmt & ssid->key_mgmt)) {
  450. wpa_dbg(wpa_s, MSG_DEBUG, " skip RSN IE - key mgmt "
  451. "mismatch");
  452. break;
  453. }
  454. #ifdef CONFIG_IEEE80211W
  455. if (!(ie.capabilities & WPA_CAPABILITY_MFPC) &&
  456. wpas_get_ssid_pmf(wpa_s, ssid) ==
  457. MGMT_FRAME_PROTECTION_REQUIRED) {
  458. wpa_dbg(wpa_s, MSG_DEBUG, " skip RSN IE - no mgmt "
  459. "frame protection");
  460. break;
  461. }
  462. #endif /* CONFIG_IEEE80211W */
  463. wpa_dbg(wpa_s, MSG_DEBUG, " selected based on RSN IE");
  464. return 1;
  465. }
  466. wpa_ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  467. while ((ssid->proto & WPA_PROTO_WPA) && wpa_ie) {
  468. proto_match++;
  469. if (wpa_parse_wpa_ie(wpa_ie, 2 + wpa_ie[1], &ie)) {
  470. wpa_dbg(wpa_s, MSG_DEBUG, " skip WPA IE - parse "
  471. "failed");
  472. break;
  473. }
  474. if (wep_ok &&
  475. (ie.group_cipher & (WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)))
  476. {
  477. wpa_dbg(wpa_s, MSG_DEBUG, " selected based on TSN "
  478. "in WPA IE");
  479. return 1;
  480. }
  481. if (!(ie.proto & ssid->proto)) {
  482. wpa_dbg(wpa_s, MSG_DEBUG, " skip WPA IE - proto "
  483. "mismatch");
  484. break;
  485. }
  486. if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
  487. wpa_dbg(wpa_s, MSG_DEBUG, " skip WPA IE - PTK "
  488. "cipher mismatch");
  489. break;
  490. }
  491. if (!(ie.group_cipher & ssid->group_cipher)) {
  492. wpa_dbg(wpa_s, MSG_DEBUG, " skip WPA IE - GTK "
  493. "cipher mismatch");
  494. break;
  495. }
  496. if (!(ie.key_mgmt & ssid->key_mgmt)) {
  497. wpa_dbg(wpa_s, MSG_DEBUG, " skip WPA IE - key mgmt "
  498. "mismatch");
  499. break;
  500. }
  501. wpa_dbg(wpa_s, MSG_DEBUG, " selected based on WPA IE");
  502. return 1;
  503. }
  504. if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) && !wpa_ie &&
  505. !rsn_ie) {
  506. wpa_dbg(wpa_s, MSG_DEBUG, " allow for non-WPA IEEE 802.1X");
  507. return 1;
  508. }
  509. if ((ssid->proto & (WPA_PROTO_WPA | WPA_PROTO_RSN)) &&
  510. wpa_key_mgmt_wpa(ssid->key_mgmt) && proto_match == 0) {
  511. wpa_dbg(wpa_s, MSG_DEBUG, " skip - no WPA/RSN proto match");
  512. return 0;
  513. }
  514. if ((ssid->key_mgmt & WPA_KEY_MGMT_OSEN) &&
  515. wpa_bss_get_vendor_ie(bss, OSEN_IE_VENDOR_TYPE)) {
  516. wpa_dbg(wpa_s, MSG_DEBUG, " allow in OSEN");
  517. return 1;
  518. }
  519. if (!wpa_key_mgmt_wpa(ssid->key_mgmt)) {
  520. wpa_dbg(wpa_s, MSG_DEBUG, " allow in non-WPA/WPA2");
  521. return 1;
  522. }
  523. wpa_dbg(wpa_s, MSG_DEBUG, " reject due to mismatch with "
  524. "WPA/WPA2");
  525. return 0;
  526. }
  527. static int freq_allowed(int *freqs, int freq)
  528. {
  529. int i;
  530. if (freqs == NULL)
  531. return 1;
  532. for (i = 0; freqs[i]; i++)
  533. if (freqs[i] == freq)
  534. return 1;
  535. return 0;
  536. }
  537. static int rate_match(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  538. {
  539. const struct hostapd_hw_modes *mode = NULL, *modes;
  540. const u8 scan_ie[2] = { WLAN_EID_SUPP_RATES, WLAN_EID_EXT_SUPP_RATES };
  541. const u8 *rate_ie;
  542. int i, j, k;
  543. if (bss->freq == 0)
  544. return 1; /* Cannot do matching without knowing band */
  545. modes = wpa_s->hw.modes;
  546. if (modes == NULL) {
  547. /*
  548. * The driver does not provide any additional information
  549. * about the utilized hardware, so allow the connection attempt
  550. * to continue.
  551. */
  552. return 1;
  553. }
  554. for (i = 0; i < wpa_s->hw.num_modes; i++) {
  555. for (j = 0; j < modes[i].num_channels; j++) {
  556. int freq = modes[i].channels[j].freq;
  557. if (freq == bss->freq) {
  558. if (mode &&
  559. mode->mode == HOSTAPD_MODE_IEEE80211G)
  560. break; /* do not allow 802.11b replace
  561. * 802.11g */
  562. mode = &modes[i];
  563. break;
  564. }
  565. }
  566. }
  567. if (mode == NULL)
  568. return 0;
  569. for (i = 0; i < (int) sizeof(scan_ie); i++) {
  570. rate_ie = wpa_bss_get_ie(bss, scan_ie[i]);
  571. if (rate_ie == NULL)
  572. continue;
  573. for (j = 2; j < rate_ie[1] + 2; j++) {
  574. int flagged = !!(rate_ie[j] & 0x80);
  575. int r = (rate_ie[j] & 0x7f) * 5;
  576. /*
  577. * IEEE Std 802.11n-2009 7.3.2.2:
  578. * The new BSS Membership selector value is encoded
  579. * like a legacy basic rate, but it is not a rate and
  580. * only indicates if the BSS members are required to
  581. * support the mandatory features of Clause 20 [HT PHY]
  582. * in order to join the BSS.
  583. */
  584. if (flagged && ((rate_ie[j] & 0x7f) ==
  585. BSS_MEMBERSHIP_SELECTOR_HT_PHY)) {
  586. if (!ht_supported(mode)) {
  587. wpa_dbg(wpa_s, MSG_DEBUG,
  588. " hardware does not support "
  589. "HT PHY");
  590. return 0;
  591. }
  592. continue;
  593. }
  594. /* There's also a VHT selector for 802.11ac */
  595. if (flagged && ((rate_ie[j] & 0x7f) ==
  596. BSS_MEMBERSHIP_SELECTOR_VHT_PHY)) {
  597. if (!vht_supported(mode)) {
  598. wpa_dbg(wpa_s, MSG_DEBUG,
  599. " hardware does not support "
  600. "VHT PHY");
  601. return 0;
  602. }
  603. continue;
  604. }
  605. if (!flagged)
  606. continue;
  607. /* check for legacy basic rates */
  608. for (k = 0; k < mode->num_rates; k++) {
  609. if (mode->rates[k] == r)
  610. break;
  611. }
  612. if (k == mode->num_rates) {
  613. /*
  614. * IEEE Std 802.11-2007 7.3.2.2 demands that in
  615. * order to join a BSS all required rates
  616. * have to be supported by the hardware.
  617. */
  618. wpa_dbg(wpa_s, MSG_DEBUG,
  619. " hardware does not support required rate %d.%d Mbps (freq=%d mode==%d num_rates=%d)",
  620. r / 10, r % 10,
  621. bss->freq, mode->mode, mode->num_rates);
  622. return 0;
  623. }
  624. }
  625. }
  626. return 1;
  627. }
  628. /*
  629. * Test whether BSS is in an ESS.
  630. * This is done differently in DMG (60 GHz) and non-DMG bands
  631. */
  632. static int bss_is_ess(struct wpa_bss *bss)
  633. {
  634. if (bss_is_dmg(bss)) {
  635. return (bss->caps & IEEE80211_CAP_DMG_MASK) ==
  636. IEEE80211_CAP_DMG_AP;
  637. }
  638. return ((bss->caps & (IEEE80211_CAP_ESS | IEEE80211_CAP_IBSS)) ==
  639. IEEE80211_CAP_ESS);
  640. }
  641. static int match_mac_mask(const u8 *addr_a, const u8 *addr_b, const u8 *mask)
  642. {
  643. size_t i;
  644. for (i = 0; i < ETH_ALEN; i++) {
  645. if ((addr_a[i] & mask[i]) != (addr_b[i] & mask[i]))
  646. return 0;
  647. }
  648. return 1;
  649. }
  650. static int addr_in_list(const u8 *addr, const u8 *list, size_t num)
  651. {
  652. size_t i;
  653. for (i = 0; i < num; i++) {
  654. const u8 *a = list + i * ETH_ALEN * 2;
  655. const u8 *m = a + ETH_ALEN;
  656. if (match_mac_mask(a, addr, m))
  657. return 1;
  658. }
  659. return 0;
  660. }
  661. static struct wpa_ssid * wpa_scan_res_match(struct wpa_supplicant *wpa_s,
  662. int i, struct wpa_bss *bss,
  663. struct wpa_ssid *group,
  664. int only_first_ssid)
  665. {
  666. u8 wpa_ie_len, rsn_ie_len;
  667. int wpa;
  668. struct wpa_blacklist *e;
  669. const u8 *ie;
  670. struct wpa_ssid *ssid;
  671. int osen;
  672. ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  673. wpa_ie_len = ie ? ie[1] : 0;
  674. ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  675. rsn_ie_len = ie ? ie[1] : 0;
  676. ie = wpa_bss_get_vendor_ie(bss, OSEN_IE_VENDOR_TYPE);
  677. osen = ie != NULL;
  678. wpa_dbg(wpa_s, MSG_DEBUG, "%d: " MACSTR " ssid='%s' "
  679. "wpa_ie_len=%u rsn_ie_len=%u caps=0x%x level=%d%s%s%s",
  680. i, MAC2STR(bss->bssid), wpa_ssid_txt(bss->ssid, bss->ssid_len),
  681. wpa_ie_len, rsn_ie_len, bss->caps, bss->level,
  682. wpa_bss_get_vendor_ie(bss, WPS_IE_VENDOR_TYPE) ? " wps" : "",
  683. (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) ||
  684. wpa_bss_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) ?
  685. " p2p" : "",
  686. osen ? " osen=1" : "");
  687. e = wpa_blacklist_get(wpa_s, bss->bssid);
  688. if (e) {
  689. int limit = 1;
  690. if (wpa_supplicant_enabled_networks(wpa_s) == 1) {
  691. /*
  692. * When only a single network is enabled, we can
  693. * trigger blacklisting on the first failure. This
  694. * should not be done with multiple enabled networks to
  695. * avoid getting forced to move into a worse ESS on
  696. * single error if there are no other BSSes of the
  697. * current ESS.
  698. */
  699. limit = 0;
  700. }
  701. if (e->count > limit) {
  702. wpa_dbg(wpa_s, MSG_DEBUG, " skip - blacklisted "
  703. "(count=%d limit=%d)", e->count, limit);
  704. return NULL;
  705. }
  706. }
  707. if (bss->ssid_len == 0) {
  708. wpa_dbg(wpa_s, MSG_DEBUG, " skip - SSID not known");
  709. return NULL;
  710. }
  711. if (disallowed_bssid(wpa_s, bss->bssid)) {
  712. wpa_dbg(wpa_s, MSG_DEBUG, " skip - BSSID disallowed");
  713. return NULL;
  714. }
  715. if (disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len)) {
  716. wpa_dbg(wpa_s, MSG_DEBUG, " skip - SSID disallowed");
  717. return NULL;
  718. }
  719. wpa = wpa_ie_len > 0 || rsn_ie_len > 0;
  720. for (ssid = group; ssid; ssid = only_first_ssid ? NULL : ssid->pnext) {
  721. int check_ssid = wpa ? 1 : (ssid->ssid_len != 0);
  722. int res;
  723. if (wpas_network_disabled(wpa_s, ssid)) {
  724. wpa_dbg(wpa_s, MSG_DEBUG, " skip - disabled");
  725. continue;
  726. }
  727. res = wpas_temp_disabled(wpa_s, ssid);
  728. if (res > 0) {
  729. wpa_dbg(wpa_s, MSG_DEBUG, " skip - disabled "
  730. "temporarily for %d second(s)", res);
  731. continue;
  732. }
  733. #ifdef CONFIG_WPS
  734. if ((ssid->key_mgmt & WPA_KEY_MGMT_WPS) && e && e->count > 0) {
  735. wpa_dbg(wpa_s, MSG_DEBUG, " skip - blacklisted "
  736. "(WPS)");
  737. continue;
  738. }
  739. if (wpa && ssid->ssid_len == 0 &&
  740. wpas_wps_ssid_wildcard_ok(wpa_s, ssid, bss))
  741. check_ssid = 0;
  742. if (!wpa && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
  743. /* Only allow wildcard SSID match if an AP
  744. * advertises active WPS operation that matches
  745. * with our mode. */
  746. check_ssid = 1;
  747. if (ssid->ssid_len == 0 &&
  748. wpas_wps_ssid_wildcard_ok(wpa_s, ssid, bss))
  749. check_ssid = 0;
  750. }
  751. #endif /* CONFIG_WPS */
  752. if (ssid->bssid_set && ssid->ssid_len == 0 &&
  753. os_memcmp(bss->bssid, ssid->bssid, ETH_ALEN) == 0)
  754. check_ssid = 0;
  755. if (check_ssid &&
  756. (bss->ssid_len != ssid->ssid_len ||
  757. os_memcmp(bss->ssid, ssid->ssid, bss->ssid_len) != 0)) {
  758. wpa_dbg(wpa_s, MSG_DEBUG, " skip - SSID mismatch");
  759. continue;
  760. }
  761. if (ssid->bssid_set &&
  762. os_memcmp(bss->bssid, ssid->bssid, ETH_ALEN) != 0) {
  763. wpa_dbg(wpa_s, MSG_DEBUG, " skip - BSSID mismatch");
  764. continue;
  765. }
  766. /* check blacklist */
  767. if (ssid->num_bssid_blacklist &&
  768. addr_in_list(bss->bssid, ssid->bssid_blacklist,
  769. ssid->num_bssid_blacklist)) {
  770. wpa_dbg(wpa_s, MSG_DEBUG,
  771. " skip - BSSID blacklisted");
  772. continue;
  773. }
  774. /* if there is a whitelist, only accept those APs */
  775. if (ssid->num_bssid_whitelist &&
  776. !addr_in_list(bss->bssid, ssid->bssid_whitelist,
  777. ssid->num_bssid_whitelist)) {
  778. wpa_dbg(wpa_s, MSG_DEBUG,
  779. " skip - BSSID not in whitelist");
  780. continue;
  781. }
  782. if (!wpa_supplicant_ssid_bss_match(wpa_s, ssid, bss))
  783. continue;
  784. if (!osen && !wpa &&
  785. !(ssid->key_mgmt & WPA_KEY_MGMT_NONE) &&
  786. !(ssid->key_mgmt & WPA_KEY_MGMT_WPS) &&
  787. !(ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)) {
  788. wpa_dbg(wpa_s, MSG_DEBUG, " skip - non-WPA network "
  789. "not allowed");
  790. continue;
  791. }
  792. if (wpa && !wpa_key_mgmt_wpa(ssid->key_mgmt) &&
  793. has_wep_key(ssid)) {
  794. wpa_dbg(wpa_s, MSG_DEBUG, " skip - ignore WPA/WPA2 AP for WEP network block");
  795. continue;
  796. }
  797. if ((ssid->key_mgmt & WPA_KEY_MGMT_OSEN) && !osen) {
  798. wpa_dbg(wpa_s, MSG_DEBUG, " skip - non-OSEN network "
  799. "not allowed");
  800. continue;
  801. }
  802. if (!wpa_supplicant_match_privacy(bss, ssid)) {
  803. wpa_dbg(wpa_s, MSG_DEBUG, " skip - privacy "
  804. "mismatch");
  805. continue;
  806. }
  807. if (!bss_is_ess(bss)) {
  808. wpa_dbg(wpa_s, MSG_DEBUG, " skip - not ESS network");
  809. continue;
  810. }
  811. if (!freq_allowed(ssid->freq_list, bss->freq)) {
  812. wpa_dbg(wpa_s, MSG_DEBUG, " skip - frequency not "
  813. "allowed");
  814. continue;
  815. }
  816. if (!rate_match(wpa_s, bss)) {
  817. wpa_dbg(wpa_s, MSG_DEBUG, " skip - rate sets do "
  818. "not match");
  819. continue;
  820. }
  821. #ifdef CONFIG_P2P
  822. if (ssid->p2p_group &&
  823. !wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) &&
  824. !wpa_bss_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) {
  825. wpa_dbg(wpa_s, MSG_DEBUG, " skip - no P2P IE seen");
  826. continue;
  827. }
  828. if (!is_zero_ether_addr(ssid->go_p2p_dev_addr)) {
  829. struct wpabuf *p2p_ie;
  830. u8 dev_addr[ETH_ALEN];
  831. ie = wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE);
  832. if (ie == NULL) {
  833. wpa_dbg(wpa_s, MSG_DEBUG, " skip - no P2P element");
  834. continue;
  835. }
  836. p2p_ie = wpa_bss_get_vendor_ie_multi(
  837. bss, P2P_IE_VENDOR_TYPE);
  838. if (p2p_ie == NULL) {
  839. wpa_dbg(wpa_s, MSG_DEBUG, " skip - could not fetch P2P element");
  840. continue;
  841. }
  842. if (p2p_parse_dev_addr_in_p2p_ie(p2p_ie, dev_addr) < 0
  843. || os_memcmp(dev_addr, ssid->go_p2p_dev_addr,
  844. ETH_ALEN) != 0) {
  845. wpa_dbg(wpa_s, MSG_DEBUG, " skip - no matching GO P2P Device Address in P2P element");
  846. wpabuf_free(p2p_ie);
  847. continue;
  848. }
  849. wpabuf_free(p2p_ie);
  850. }
  851. /*
  852. * TODO: skip the AP if its P2P IE has Group Formation
  853. * bit set in the P2P Group Capability Bitmap and we
  854. * are not in Group Formation with that device.
  855. */
  856. #endif /* CONFIG_P2P */
  857. /* Matching configuration found */
  858. return ssid;
  859. }
  860. /* No matching configuration found */
  861. return NULL;
  862. }
  863. static struct wpa_bss *
  864. wpa_supplicant_select_bss(struct wpa_supplicant *wpa_s,
  865. struct wpa_ssid *group,
  866. struct wpa_ssid **selected_ssid,
  867. int only_first_ssid)
  868. {
  869. unsigned int i;
  870. if (only_first_ssid)
  871. wpa_dbg(wpa_s, MSG_DEBUG, "Try to find BSS matching pre-selected network id=%d",
  872. group->id);
  873. else
  874. wpa_dbg(wpa_s, MSG_DEBUG, "Selecting BSS from priority group %d",
  875. group->priority);
  876. for (i = 0; i < wpa_s->last_scan_res_used; i++) {
  877. struct wpa_bss *bss = wpa_s->last_scan_res[i];
  878. *selected_ssid = wpa_scan_res_match(wpa_s, i, bss, group,
  879. only_first_ssid);
  880. if (!*selected_ssid)
  881. continue;
  882. wpa_dbg(wpa_s, MSG_DEBUG, " selected BSS " MACSTR
  883. " ssid='%s'",
  884. MAC2STR(bss->bssid),
  885. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  886. return bss;
  887. }
  888. return NULL;
  889. }
  890. struct wpa_bss * wpa_supplicant_pick_network(struct wpa_supplicant *wpa_s,
  891. struct wpa_ssid **selected_ssid)
  892. {
  893. struct wpa_bss *selected = NULL;
  894. int prio;
  895. struct wpa_ssid *next_ssid = NULL;
  896. struct wpa_ssid *ssid;
  897. if (wpa_s->last_scan_res == NULL ||
  898. wpa_s->last_scan_res_used == 0)
  899. return NULL; /* no scan results from last update */
  900. if (wpa_s->next_ssid) {
  901. /* check that next_ssid is still valid */
  902. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  903. if (ssid == wpa_s->next_ssid)
  904. break;
  905. }
  906. next_ssid = ssid;
  907. wpa_s->next_ssid = NULL;
  908. }
  909. while (selected == NULL) {
  910. for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
  911. if (next_ssid && next_ssid->priority ==
  912. wpa_s->conf->pssid[prio]->priority) {
  913. selected = wpa_supplicant_select_bss(
  914. wpa_s, next_ssid, selected_ssid, 1);
  915. if (selected)
  916. break;
  917. }
  918. selected = wpa_supplicant_select_bss(
  919. wpa_s, wpa_s->conf->pssid[prio],
  920. selected_ssid, 0);
  921. if (selected)
  922. break;
  923. }
  924. if (selected == NULL && wpa_s->blacklist &&
  925. !wpa_s->countermeasures) {
  926. wpa_dbg(wpa_s, MSG_DEBUG, "No APs found - clear "
  927. "blacklist and try again");
  928. wpa_blacklist_clear(wpa_s);
  929. wpa_s->blacklist_cleared++;
  930. } else if (selected == NULL)
  931. break;
  932. }
  933. ssid = *selected_ssid;
  934. if (selected && ssid && ssid->mem_only_psk && !ssid->psk_set &&
  935. !ssid->passphrase && !ssid->ext_psk) {
  936. const char *field_name, *txt = NULL;
  937. wpa_dbg(wpa_s, MSG_DEBUG,
  938. "PSK/passphrase not yet available for the selected network");
  939. wpas_notify_network_request(wpa_s, ssid,
  940. WPA_CTRL_REQ_PSK_PASSPHRASE, NULL);
  941. field_name = wpa_supplicant_ctrl_req_to_string(
  942. WPA_CTRL_REQ_PSK_PASSPHRASE, NULL, &txt);
  943. if (field_name == NULL)
  944. return NULL;
  945. wpas_send_ctrl_req(wpa_s, ssid, field_name, txt);
  946. selected = NULL;
  947. }
  948. return selected;
  949. }
  950. static void wpa_supplicant_req_new_scan(struct wpa_supplicant *wpa_s,
  951. int timeout_sec, int timeout_usec)
  952. {
  953. if (!wpa_supplicant_enabled_networks(wpa_s)) {
  954. /*
  955. * No networks are enabled; short-circuit request so
  956. * we don't wait timeout seconds before transitioning
  957. * to INACTIVE state.
  958. */
  959. wpa_dbg(wpa_s, MSG_DEBUG, "Short-circuit new scan request "
  960. "since there are no enabled networks");
  961. wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
  962. return;
  963. }
  964. wpa_s->scan_for_connection = 1;
  965. wpa_supplicant_req_scan(wpa_s, timeout_sec, timeout_usec);
  966. }
  967. int wpa_supplicant_connect(struct wpa_supplicant *wpa_s,
  968. struct wpa_bss *selected,
  969. struct wpa_ssid *ssid)
  970. {
  971. if (wpas_wps_scan_pbc_overlap(wpa_s, selected, ssid)) {
  972. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_OVERLAP
  973. "PBC session overlap");
  974. wpas_notify_wps_event_pbc_overlap(wpa_s);
  975. #ifdef CONFIG_P2P
  976. if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
  977. wpa_s->p2p_in_provisioning) {
  978. eloop_register_timeout(0, 0, wpas_p2p_pbc_overlap_cb,
  979. wpa_s, NULL);
  980. return -1;
  981. }
  982. #endif /* CONFIG_P2P */
  983. #ifdef CONFIG_WPS
  984. wpas_wps_cancel(wpa_s);
  985. #endif /* CONFIG_WPS */
  986. return -1;
  987. }
  988. wpa_msg(wpa_s, MSG_DEBUG,
  989. "Considering connect request: reassociate: %d selected: "
  990. MACSTR " bssid: " MACSTR " pending: " MACSTR
  991. " wpa_state: %s ssid=%p current_ssid=%p",
  992. wpa_s->reassociate, MAC2STR(selected->bssid),
  993. MAC2STR(wpa_s->bssid), MAC2STR(wpa_s->pending_bssid),
  994. wpa_supplicant_state_txt(wpa_s->wpa_state),
  995. ssid, wpa_s->current_ssid);
  996. /*
  997. * Do not trigger new association unless the BSSID has changed or if
  998. * reassociation is requested. If we are in process of associating with
  999. * the selected BSSID, do not trigger new attempt.
  1000. */
  1001. if (wpa_s->reassociate ||
  1002. (os_memcmp(selected->bssid, wpa_s->bssid, ETH_ALEN) != 0 &&
  1003. ((wpa_s->wpa_state != WPA_ASSOCIATING &&
  1004. wpa_s->wpa_state != WPA_AUTHENTICATING) ||
  1005. (!is_zero_ether_addr(wpa_s->pending_bssid) &&
  1006. os_memcmp(selected->bssid, wpa_s->pending_bssid, ETH_ALEN) !=
  1007. 0) ||
  1008. (is_zero_ether_addr(wpa_s->pending_bssid) &&
  1009. ssid != wpa_s->current_ssid)))) {
  1010. if (wpa_supplicant_scard_init(wpa_s, ssid)) {
  1011. wpa_supplicant_req_new_scan(wpa_s, 10, 0);
  1012. return 0;
  1013. }
  1014. wpa_msg(wpa_s, MSG_DEBUG, "Request association with " MACSTR,
  1015. MAC2STR(selected->bssid));
  1016. wpa_supplicant_associate(wpa_s, selected, ssid);
  1017. } else {
  1018. wpa_dbg(wpa_s, MSG_DEBUG, "Already associated or trying to "
  1019. "connect with the selected AP");
  1020. }
  1021. return 0;
  1022. }
  1023. static struct wpa_ssid *
  1024. wpa_supplicant_pick_new_network(struct wpa_supplicant *wpa_s)
  1025. {
  1026. int prio;
  1027. struct wpa_ssid *ssid;
  1028. for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
  1029. for (ssid = wpa_s->conf->pssid[prio]; ssid; ssid = ssid->pnext)
  1030. {
  1031. if (wpas_network_disabled(wpa_s, ssid))
  1032. continue;
  1033. if (ssid->mode == IEEE80211_MODE_IBSS ||
  1034. ssid->mode == IEEE80211_MODE_AP ||
  1035. ssid->mode == IEEE80211_MODE_MESH)
  1036. return ssid;
  1037. }
  1038. }
  1039. return NULL;
  1040. }
  1041. /* TODO: move the rsn_preauth_scan_result*() to be called from notify.c based
  1042. * on BSS added and BSS changed events */
  1043. static void wpa_supplicant_rsn_preauth_scan_results(
  1044. struct wpa_supplicant *wpa_s)
  1045. {
  1046. struct wpa_bss *bss;
  1047. if (rsn_preauth_scan_results(wpa_s->wpa) < 0)
  1048. return;
  1049. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  1050. const u8 *ssid, *rsn;
  1051. ssid = wpa_bss_get_ie(bss, WLAN_EID_SSID);
  1052. if (ssid == NULL)
  1053. continue;
  1054. rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  1055. if (rsn == NULL)
  1056. continue;
  1057. rsn_preauth_scan_result(wpa_s->wpa, bss->bssid, ssid, rsn);
  1058. }
  1059. }
  1060. static int wpa_supplicant_need_to_roam(struct wpa_supplicant *wpa_s,
  1061. struct wpa_bss *selected,
  1062. struct wpa_ssid *ssid)
  1063. {
  1064. struct wpa_bss *current_bss = NULL;
  1065. #ifndef CONFIG_NO_ROAMING
  1066. int min_diff;
  1067. #endif /* CONFIG_NO_ROAMING */
  1068. if (wpa_s->reassociate)
  1069. return 1; /* explicit request to reassociate */
  1070. if (wpa_s->wpa_state < WPA_ASSOCIATED)
  1071. return 1; /* we are not associated; continue */
  1072. if (wpa_s->current_ssid == NULL)
  1073. return 1; /* unknown current SSID */
  1074. if (wpa_s->current_ssid != ssid)
  1075. return 1; /* different network block */
  1076. if (wpas_driver_bss_selection(wpa_s))
  1077. return 0; /* Driver-based roaming */
  1078. if (wpa_s->current_ssid->ssid)
  1079. current_bss = wpa_bss_get(wpa_s, wpa_s->bssid,
  1080. wpa_s->current_ssid->ssid,
  1081. wpa_s->current_ssid->ssid_len);
  1082. if (!current_bss)
  1083. current_bss = wpa_bss_get_bssid(wpa_s, wpa_s->bssid);
  1084. if (!current_bss)
  1085. return 1; /* current BSS not seen in scan results */
  1086. if (current_bss == selected)
  1087. return 0;
  1088. if (selected->last_update_idx > current_bss->last_update_idx)
  1089. return 1; /* current BSS not seen in the last scan */
  1090. #ifndef CONFIG_NO_ROAMING
  1091. wpa_dbg(wpa_s, MSG_DEBUG, "Considering within-ESS reassociation");
  1092. wpa_dbg(wpa_s, MSG_DEBUG, "Current BSS: " MACSTR
  1093. " level=%d snr=%d est_throughput=%u",
  1094. MAC2STR(current_bss->bssid), current_bss->level,
  1095. current_bss->snr, current_bss->est_throughput);
  1096. wpa_dbg(wpa_s, MSG_DEBUG, "Selected BSS: " MACSTR
  1097. " level=%d snr=%d est_throughput=%u",
  1098. MAC2STR(selected->bssid), selected->level,
  1099. selected->snr, selected->est_throughput);
  1100. if (wpa_s->current_ssid->bssid_set &&
  1101. os_memcmp(selected->bssid, wpa_s->current_ssid->bssid, ETH_ALEN) ==
  1102. 0) {
  1103. wpa_dbg(wpa_s, MSG_DEBUG, "Allow reassociation - selected BSS "
  1104. "has preferred BSSID");
  1105. return 1;
  1106. }
  1107. if (selected->est_throughput > current_bss->est_throughput + 5000) {
  1108. wpa_dbg(wpa_s, MSG_DEBUG,
  1109. "Allow reassociation - selected BSS has better estimated throughput");
  1110. return 1;
  1111. }
  1112. if (current_bss->level < 0 && current_bss->level > selected->level) {
  1113. wpa_dbg(wpa_s, MSG_DEBUG, "Skip roam - Current BSS has better "
  1114. "signal level");
  1115. return 0;
  1116. }
  1117. min_diff = 2;
  1118. if (current_bss->level < 0) {
  1119. if (current_bss->level < -85)
  1120. min_diff = 1;
  1121. else if (current_bss->level < -80)
  1122. min_diff = 2;
  1123. else if (current_bss->level < -75)
  1124. min_diff = 3;
  1125. else if (current_bss->level < -70)
  1126. min_diff = 4;
  1127. else
  1128. min_diff = 5;
  1129. }
  1130. if (abs(current_bss->level - selected->level) < min_diff) {
  1131. wpa_dbg(wpa_s, MSG_DEBUG, "Skip roam - too small difference "
  1132. "in signal level");
  1133. return 0;
  1134. }
  1135. return 1;
  1136. #else /* CONFIG_NO_ROAMING */
  1137. return 0;
  1138. #endif /* CONFIG_NO_ROAMING */
  1139. }
  1140. /* Return != 0 if no scan results could be fetched or if scan results should not
  1141. * be shared with other virtual interfaces. */
  1142. static int _wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
  1143. union wpa_event_data *data,
  1144. int own_request)
  1145. {
  1146. struct wpa_scan_results *scan_res = NULL;
  1147. int ret = 0;
  1148. int ap = 0;
  1149. #ifndef CONFIG_NO_RANDOM_POOL
  1150. size_t i, num;
  1151. #endif /* CONFIG_NO_RANDOM_POOL */
  1152. #ifdef CONFIG_AP
  1153. if (wpa_s->ap_iface)
  1154. ap = 1;
  1155. #endif /* CONFIG_AP */
  1156. wpa_supplicant_notify_scanning(wpa_s, 0);
  1157. scan_res = wpa_supplicant_get_scan_results(wpa_s,
  1158. data ? &data->scan_info :
  1159. NULL, 1);
  1160. if (scan_res == NULL) {
  1161. if (wpa_s->conf->ap_scan == 2 || ap ||
  1162. wpa_s->scan_res_handler == scan_only_handler)
  1163. return -1;
  1164. if (!own_request)
  1165. return -1;
  1166. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to get scan results - try "
  1167. "scanning again");
  1168. wpa_supplicant_req_new_scan(wpa_s, 1, 0);
  1169. ret = -1;
  1170. goto scan_work_done;
  1171. }
  1172. #ifndef CONFIG_NO_RANDOM_POOL
  1173. num = scan_res->num;
  1174. if (num > 10)
  1175. num = 10;
  1176. for (i = 0; i < num; i++) {
  1177. u8 buf[5];
  1178. struct wpa_scan_res *res = scan_res->res[i];
  1179. buf[0] = res->bssid[5];
  1180. buf[1] = res->qual & 0xff;
  1181. buf[2] = res->noise & 0xff;
  1182. buf[3] = res->level & 0xff;
  1183. buf[4] = res->tsf & 0xff;
  1184. random_add_randomness(buf, sizeof(buf));
  1185. }
  1186. #endif /* CONFIG_NO_RANDOM_POOL */
  1187. if (own_request && wpa_s->scan_res_handler &&
  1188. (wpa_s->own_scan_running || !wpa_s->radio->external_scan_running)) {
  1189. void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
  1190. struct wpa_scan_results *scan_res);
  1191. scan_res_handler = wpa_s->scan_res_handler;
  1192. wpa_s->scan_res_handler = NULL;
  1193. scan_res_handler(wpa_s, scan_res);
  1194. ret = -2;
  1195. goto scan_work_done;
  1196. }
  1197. if (ap) {
  1198. wpa_dbg(wpa_s, MSG_DEBUG, "Ignore scan results in AP mode");
  1199. #ifdef CONFIG_AP
  1200. if (wpa_s->ap_iface->scan_cb)
  1201. wpa_s->ap_iface->scan_cb(wpa_s->ap_iface);
  1202. #endif /* CONFIG_AP */
  1203. goto scan_work_done;
  1204. }
  1205. wpa_dbg(wpa_s, MSG_DEBUG, "New scan results available (own=%u ext=%u)",
  1206. wpa_s->own_scan_running, wpa_s->radio->external_scan_running);
  1207. if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
  1208. wpa_s->manual_scan_use_id && wpa_s->own_scan_running) {
  1209. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS "id=%u",
  1210. wpa_s->manual_scan_id);
  1211. wpa_s->manual_scan_use_id = 0;
  1212. } else {
  1213. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS);
  1214. }
  1215. wpas_notify_scan_results(wpa_s);
  1216. wpas_notify_scan_done(wpa_s, 1);
  1217. if (!wpa_s->own_scan_running && wpa_s->radio->external_scan_running) {
  1218. wpa_dbg(wpa_s, MSG_DEBUG, "Do not use results from externally requested scan operation for network selection");
  1219. wpa_scan_results_free(scan_res);
  1220. return 0;
  1221. }
  1222. if (wnm_scan_process(wpa_s, 1) > 0)
  1223. goto scan_work_done;
  1224. if (sme_proc_obss_scan(wpa_s) > 0)
  1225. goto scan_work_done;
  1226. if ((wpa_s->conf->ap_scan == 2 && !wpas_wps_searching(wpa_s)))
  1227. goto scan_work_done;
  1228. if (autoscan_notify_scan(wpa_s, scan_res))
  1229. goto scan_work_done;
  1230. if (wpa_s->disconnected) {
  1231. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  1232. goto scan_work_done;
  1233. }
  1234. if (!wpas_driver_bss_selection(wpa_s) &&
  1235. bgscan_notify_scan(wpa_s, scan_res) == 1)
  1236. goto scan_work_done;
  1237. wpas_wps_update_ap_info(wpa_s, scan_res);
  1238. wpa_scan_results_free(scan_res);
  1239. if (wpa_s->scan_work) {
  1240. struct wpa_radio_work *work = wpa_s->scan_work;
  1241. wpa_s->scan_work = NULL;
  1242. radio_work_done(work);
  1243. }
  1244. return wpas_select_network_from_last_scan(wpa_s, 1, own_request);
  1245. scan_work_done:
  1246. wpa_scan_results_free(scan_res);
  1247. if (wpa_s->scan_work) {
  1248. struct wpa_radio_work *work = wpa_s->scan_work;
  1249. wpa_s->scan_work = NULL;
  1250. radio_work_done(work);
  1251. }
  1252. return ret;
  1253. }
  1254. static int wpas_select_network_from_last_scan(struct wpa_supplicant *wpa_s,
  1255. int new_scan, int own_request)
  1256. {
  1257. struct wpa_bss *selected;
  1258. struct wpa_ssid *ssid = NULL;
  1259. int time_to_reenable = wpas_reenabled_network_time(wpa_s);
  1260. if (time_to_reenable > 0) {
  1261. wpa_dbg(wpa_s, MSG_DEBUG,
  1262. "Postpone network selection by %d seconds since all networks are disabled",
  1263. time_to_reenable);
  1264. eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
  1265. eloop_register_timeout(time_to_reenable, 0,
  1266. wpas_network_reenabled, wpa_s, NULL);
  1267. return 0;
  1268. }
  1269. if (wpa_s->p2p_mgmt)
  1270. return 0; /* no normal connection on p2p_mgmt interface */
  1271. selected = wpa_supplicant_pick_network(wpa_s, &ssid);
  1272. if (selected) {
  1273. int skip;
  1274. skip = !wpa_supplicant_need_to_roam(wpa_s, selected, ssid);
  1275. if (skip) {
  1276. if (new_scan)
  1277. wpa_supplicant_rsn_preauth_scan_results(wpa_s);
  1278. return 0;
  1279. }
  1280. if (wpa_supplicant_connect(wpa_s, selected, ssid) < 0) {
  1281. wpa_dbg(wpa_s, MSG_DEBUG, "Connect failed");
  1282. return -1;
  1283. }
  1284. if (new_scan)
  1285. wpa_supplicant_rsn_preauth_scan_results(wpa_s);
  1286. /*
  1287. * Do not notify other virtual radios of scan results since we do not
  1288. * want them to start other associations at the same time.
  1289. */
  1290. return 1;
  1291. } else {
  1292. #ifdef CONFIG_MESH
  1293. if (wpa_s->ifmsh) {
  1294. wpa_msg(wpa_s, MSG_INFO,
  1295. "Avoiding join because we already joined a mesh group");
  1296. return 0;
  1297. }
  1298. #endif /* CONFIG_MESH */
  1299. wpa_dbg(wpa_s, MSG_DEBUG, "No suitable network found");
  1300. ssid = wpa_supplicant_pick_new_network(wpa_s);
  1301. if (ssid) {
  1302. wpa_dbg(wpa_s, MSG_DEBUG, "Setup a new network");
  1303. wpa_supplicant_associate(wpa_s, NULL, ssid);
  1304. if (new_scan)
  1305. wpa_supplicant_rsn_preauth_scan_results(wpa_s);
  1306. } else if (own_request) {
  1307. /*
  1308. * No SSID found. If SCAN results are as a result of
  1309. * own scan request and not due to a scan request on
  1310. * another shared interface, try another scan.
  1311. */
  1312. int timeout_sec = wpa_s->scan_interval;
  1313. int timeout_usec = 0;
  1314. #ifdef CONFIG_P2P
  1315. int res;
  1316. res = wpas_p2p_scan_no_go_seen(wpa_s);
  1317. if (res == 2)
  1318. return 2;
  1319. if (res == 1)
  1320. return 0;
  1321. if (wpa_s->p2p_in_provisioning ||
  1322. wpa_s->show_group_started ||
  1323. wpa_s->p2p_in_invitation) {
  1324. /*
  1325. * Use shorter wait during P2P Provisioning
  1326. * state and during P2P join-a-group operation
  1327. * to speed up group formation.
  1328. */
  1329. timeout_sec = 0;
  1330. timeout_usec = 250000;
  1331. wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
  1332. timeout_usec);
  1333. return 0;
  1334. }
  1335. #endif /* CONFIG_P2P */
  1336. #ifdef CONFIG_INTERWORKING
  1337. if (wpa_s->conf->auto_interworking &&
  1338. wpa_s->conf->interworking &&
  1339. wpa_s->conf->cred) {
  1340. wpa_dbg(wpa_s, MSG_DEBUG, "Interworking: "
  1341. "start ANQP fetch since no matching "
  1342. "networks found");
  1343. wpa_s->network_select = 1;
  1344. wpa_s->auto_network_select = 1;
  1345. interworking_start_fetch_anqp(wpa_s);
  1346. return 1;
  1347. }
  1348. #endif /* CONFIG_INTERWORKING */
  1349. #ifdef CONFIG_WPS
  1350. if (wpa_s->after_wps > 0 || wpas_wps_searching(wpa_s)) {
  1351. wpa_dbg(wpa_s, MSG_DEBUG, "Use shorter wait during WPS processing");
  1352. timeout_sec = 0;
  1353. timeout_usec = 500000;
  1354. wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
  1355. timeout_usec);
  1356. return 0;
  1357. }
  1358. #endif /* CONFIG_WPS */
  1359. if (wpa_supplicant_req_sched_scan(wpa_s))
  1360. wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
  1361. timeout_usec);
  1362. wpa_msg_ctrl(wpa_s, MSG_INFO,
  1363. WPA_EVENT_NETWORK_NOT_FOUND);
  1364. }
  1365. }
  1366. return 0;
  1367. }
  1368. static int wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
  1369. union wpa_event_data *data)
  1370. {
  1371. struct wpa_supplicant *ifs;
  1372. int res;
  1373. res = _wpa_supplicant_event_scan_results(wpa_s, data, 1);
  1374. if (res == 2) {
  1375. /*
  1376. * Interface may have been removed, so must not dereference
  1377. * wpa_s after this.
  1378. */
  1379. return 1;
  1380. }
  1381. if (res != 0) {
  1382. /*
  1383. * If no scan results could be fetched, then no need to
  1384. * notify those interfaces that did not actually request
  1385. * this scan. Similarly, if scan results started a new operation on this
  1386. * interface, do not notify other interfaces to avoid concurrent
  1387. * operations during a connection attempt.
  1388. */
  1389. return 0;
  1390. }
  1391. /*
  1392. * Check other interfaces to see if they share the same radio. If
  1393. * so, they get updated with this same scan info.
  1394. */
  1395. dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
  1396. radio_list) {
  1397. if (ifs != wpa_s) {
  1398. wpa_printf(MSG_DEBUG, "%s: Updating scan results from "
  1399. "sibling", ifs->ifname);
  1400. _wpa_supplicant_event_scan_results(ifs, data, 0);
  1401. }
  1402. }
  1403. return 0;
  1404. }
  1405. #endif /* CONFIG_NO_SCAN_PROCESSING */
  1406. int wpa_supplicant_fast_associate(struct wpa_supplicant *wpa_s)
  1407. {
  1408. #ifdef CONFIG_NO_SCAN_PROCESSING
  1409. return -1;
  1410. #else /* CONFIG_NO_SCAN_PROCESSING */
  1411. struct os_reltime now;
  1412. if (wpa_s->last_scan_res_used == 0)
  1413. return -1;
  1414. os_get_reltime(&now);
  1415. if (os_reltime_expired(&now, &wpa_s->last_scan, 5)) {
  1416. wpa_printf(MSG_DEBUG, "Fast associate: Old scan results");
  1417. return -1;
  1418. }
  1419. return wpas_select_network_from_last_scan(wpa_s, 0, 1);
  1420. #endif /* CONFIG_NO_SCAN_PROCESSING */
  1421. }
  1422. #ifdef CONFIG_WNM
  1423. static void wnm_bss_keep_alive(void *eloop_ctx, void *sock_ctx)
  1424. {
  1425. struct wpa_supplicant *wpa_s = eloop_ctx;
  1426. if (wpa_s->wpa_state < WPA_ASSOCIATED)
  1427. return;
  1428. if (!wpa_s->no_keep_alive) {
  1429. wpa_printf(MSG_DEBUG, "WNM: Send keep-alive to AP " MACSTR,
  1430. MAC2STR(wpa_s->bssid));
  1431. /* TODO: could skip this if normal data traffic has been sent */
  1432. /* TODO: Consider using some more appropriate data frame for
  1433. * this */
  1434. if (wpa_s->l2)
  1435. l2_packet_send(wpa_s->l2, wpa_s->bssid, 0x0800,
  1436. (u8 *) "", 0);
  1437. }
  1438. #ifdef CONFIG_SME
  1439. if (wpa_s->sme.bss_max_idle_period) {
  1440. unsigned int msec;
  1441. msec = wpa_s->sme.bss_max_idle_period * 1024; /* times 1000 */
  1442. if (msec > 100)
  1443. msec -= 100;
  1444. eloop_register_timeout(msec / 1000, msec % 1000 * 1000,
  1445. wnm_bss_keep_alive, wpa_s, NULL);
  1446. }
  1447. #endif /* CONFIG_SME */
  1448. }
  1449. static void wnm_process_assoc_resp(struct wpa_supplicant *wpa_s,
  1450. const u8 *ies, size_t ies_len)
  1451. {
  1452. struct ieee802_11_elems elems;
  1453. if (ies == NULL)
  1454. return;
  1455. if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed)
  1456. return;
  1457. #ifdef CONFIG_SME
  1458. if (elems.bss_max_idle_period) {
  1459. unsigned int msec;
  1460. wpa_s->sme.bss_max_idle_period =
  1461. WPA_GET_LE16(elems.bss_max_idle_period);
  1462. wpa_printf(MSG_DEBUG, "WNM: BSS Max Idle Period: %u (* 1000 "
  1463. "TU)%s", wpa_s->sme.bss_max_idle_period,
  1464. (elems.bss_max_idle_period[2] & 0x01) ?
  1465. " (protected keep-live required)" : "");
  1466. if (wpa_s->sme.bss_max_idle_period == 0)
  1467. wpa_s->sme.bss_max_idle_period = 1;
  1468. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) {
  1469. eloop_cancel_timeout(wnm_bss_keep_alive, wpa_s, NULL);
  1470. /* msec times 1000 */
  1471. msec = wpa_s->sme.bss_max_idle_period * 1024;
  1472. if (msec > 100)
  1473. msec -= 100;
  1474. eloop_register_timeout(msec / 1000, msec % 1000 * 1000,
  1475. wnm_bss_keep_alive, wpa_s,
  1476. NULL);
  1477. }
  1478. }
  1479. #endif /* CONFIG_SME */
  1480. }
  1481. #endif /* CONFIG_WNM */
  1482. void wnm_bss_keep_alive_deinit(struct wpa_supplicant *wpa_s)
  1483. {
  1484. #ifdef CONFIG_WNM
  1485. eloop_cancel_timeout(wnm_bss_keep_alive, wpa_s, NULL);
  1486. #endif /* CONFIG_WNM */
  1487. }
  1488. #ifdef CONFIG_INTERWORKING
  1489. static int wpas_qos_map_set(struct wpa_supplicant *wpa_s, const u8 *qos_map,
  1490. size_t len)
  1491. {
  1492. int res;
  1493. wpa_hexdump(MSG_DEBUG, "Interworking: QoS Map Set", qos_map, len);
  1494. res = wpa_drv_set_qos_map(wpa_s, qos_map, len);
  1495. if (res) {
  1496. wpa_printf(MSG_DEBUG, "Interworking: Failed to configure QoS Map Set to the driver");
  1497. }
  1498. return res;
  1499. }
  1500. static void interworking_process_assoc_resp(struct wpa_supplicant *wpa_s,
  1501. const u8 *ies, size_t ies_len)
  1502. {
  1503. struct ieee802_11_elems elems;
  1504. if (ies == NULL)
  1505. return;
  1506. if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed)
  1507. return;
  1508. if (elems.qos_map_set) {
  1509. wpas_qos_map_set(wpa_s, elems.qos_map_set,
  1510. elems.qos_map_set_len);
  1511. }
  1512. }
  1513. #endif /* CONFIG_INTERWORKING */
  1514. static int wpa_supplicant_event_associnfo(struct wpa_supplicant *wpa_s,
  1515. union wpa_event_data *data)
  1516. {
  1517. int l, len, found = 0, wpa_found, rsn_found;
  1518. const u8 *p;
  1519. #ifdef CONFIG_IEEE80211R
  1520. u8 bssid[ETH_ALEN];
  1521. #endif /* CONFIG_IEEE80211R */
  1522. wpa_dbg(wpa_s, MSG_DEBUG, "Association info event");
  1523. if (data->assoc_info.req_ies)
  1524. wpa_hexdump(MSG_DEBUG, "req_ies", data->assoc_info.req_ies,
  1525. data->assoc_info.req_ies_len);
  1526. if (data->assoc_info.resp_ies) {
  1527. wpa_hexdump(MSG_DEBUG, "resp_ies", data->assoc_info.resp_ies,
  1528. data->assoc_info.resp_ies_len);
  1529. #ifdef CONFIG_TDLS
  1530. wpa_tdls_assoc_resp_ies(wpa_s->wpa, data->assoc_info.resp_ies,
  1531. data->assoc_info.resp_ies_len);
  1532. #endif /* CONFIG_TDLS */
  1533. #ifdef CONFIG_WNM
  1534. wnm_process_assoc_resp(wpa_s, data->assoc_info.resp_ies,
  1535. data->assoc_info.resp_ies_len);
  1536. #endif /* CONFIG_WNM */
  1537. #ifdef CONFIG_INTERWORKING
  1538. interworking_process_assoc_resp(wpa_s, data->assoc_info.resp_ies,
  1539. data->assoc_info.resp_ies_len);
  1540. #endif /* CONFIG_INTERWORKING */
  1541. }
  1542. if (data->assoc_info.beacon_ies)
  1543. wpa_hexdump(MSG_DEBUG, "beacon_ies",
  1544. data->assoc_info.beacon_ies,
  1545. data->assoc_info.beacon_ies_len);
  1546. if (data->assoc_info.freq)
  1547. wpa_dbg(wpa_s, MSG_DEBUG, "freq=%u MHz",
  1548. data->assoc_info.freq);
  1549. p = data->assoc_info.req_ies;
  1550. l = data->assoc_info.req_ies_len;
  1551. /* Go through the IEs and make a copy of the WPA/RSN IE, if present. */
  1552. while (p && l >= 2) {
  1553. len = p[1] + 2;
  1554. if (len > l) {
  1555. wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
  1556. p, l);
  1557. break;
  1558. }
  1559. if ((p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
  1560. (os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0)) ||
  1561. (p[0] == WLAN_EID_RSN && p[1] >= 2)) {
  1562. if (wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, p, len))
  1563. break;
  1564. found = 1;
  1565. wpa_find_assoc_pmkid(wpa_s);
  1566. break;
  1567. }
  1568. l -= len;
  1569. p += len;
  1570. }
  1571. if (!found && data->assoc_info.req_ies)
  1572. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  1573. #ifdef CONFIG_IEEE80211R
  1574. #ifdef CONFIG_SME
  1575. if (wpa_s->sme.auth_alg == WPA_AUTH_ALG_FT) {
  1576. if (wpa_drv_get_bssid(wpa_s, bssid) < 0 ||
  1577. wpa_ft_validate_reassoc_resp(wpa_s->wpa,
  1578. data->assoc_info.resp_ies,
  1579. data->assoc_info.resp_ies_len,
  1580. bssid) < 0) {
  1581. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Validation of "
  1582. "Reassociation Response failed");
  1583. wpa_supplicant_deauthenticate(
  1584. wpa_s, WLAN_REASON_INVALID_IE);
  1585. return -1;
  1586. }
  1587. }
  1588. p = data->assoc_info.resp_ies;
  1589. l = data->assoc_info.resp_ies_len;
  1590. #ifdef CONFIG_WPS_STRICT
  1591. if (p && wpa_s->current_ssid &&
  1592. wpa_s->current_ssid->key_mgmt == WPA_KEY_MGMT_WPS) {
  1593. struct wpabuf *wps;
  1594. wps = ieee802_11_vendor_ie_concat(p, l, WPS_IE_VENDOR_TYPE);
  1595. if (wps == NULL) {
  1596. wpa_msg(wpa_s, MSG_INFO, "WPS-STRICT: AP did not "
  1597. "include WPS IE in (Re)Association Response");
  1598. return -1;
  1599. }
  1600. if (wps_validate_assoc_resp(wps) < 0) {
  1601. wpabuf_free(wps);
  1602. wpa_supplicant_deauthenticate(
  1603. wpa_s, WLAN_REASON_INVALID_IE);
  1604. return -1;
  1605. }
  1606. wpabuf_free(wps);
  1607. }
  1608. #endif /* CONFIG_WPS_STRICT */
  1609. /* Go through the IEs and make a copy of the MDIE, if present. */
  1610. while (p && l >= 2) {
  1611. len = p[1] + 2;
  1612. if (len > l) {
  1613. wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
  1614. p, l);
  1615. break;
  1616. }
  1617. if (p[0] == WLAN_EID_MOBILITY_DOMAIN &&
  1618. p[1] >= MOBILITY_DOMAIN_ID_LEN) {
  1619. wpa_s->sme.ft_used = 1;
  1620. os_memcpy(wpa_s->sme.mobility_domain, p + 2,
  1621. MOBILITY_DOMAIN_ID_LEN);
  1622. break;
  1623. }
  1624. l -= len;
  1625. p += len;
  1626. }
  1627. #endif /* CONFIG_SME */
  1628. /* Process FT when SME is in the driver */
  1629. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) &&
  1630. wpa_ft_is_completed(wpa_s->wpa)) {
  1631. if (wpa_drv_get_bssid(wpa_s, bssid) < 0 ||
  1632. wpa_ft_validate_reassoc_resp(wpa_s->wpa,
  1633. data->assoc_info.resp_ies,
  1634. data->assoc_info.resp_ies_len,
  1635. bssid) < 0) {
  1636. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Validation of "
  1637. "Reassociation Response failed");
  1638. wpa_supplicant_deauthenticate(
  1639. wpa_s, WLAN_REASON_INVALID_IE);
  1640. return -1;
  1641. }
  1642. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Reassociation Response done");
  1643. }
  1644. wpa_sm_set_ft_params(wpa_s->wpa, data->assoc_info.resp_ies,
  1645. data->assoc_info.resp_ies_len);
  1646. #endif /* CONFIG_IEEE80211R */
  1647. /* WPA/RSN IE from Beacon/ProbeResp */
  1648. p = data->assoc_info.beacon_ies;
  1649. l = data->assoc_info.beacon_ies_len;
  1650. /* Go through the IEs and make a copy of the WPA/RSN IEs, if present.
  1651. */
  1652. wpa_found = rsn_found = 0;
  1653. while (p && l >= 2) {
  1654. len = p[1] + 2;
  1655. if (len > l) {
  1656. wpa_hexdump(MSG_DEBUG, "Truncated IE in beacon_ies",
  1657. p, l);
  1658. break;
  1659. }
  1660. if (!wpa_found &&
  1661. p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
  1662. os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0) {
  1663. wpa_found = 1;
  1664. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, p, len);
  1665. }
  1666. if (!rsn_found &&
  1667. p[0] == WLAN_EID_RSN && p[1] >= 2) {
  1668. rsn_found = 1;
  1669. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, p, len);
  1670. }
  1671. l -= len;
  1672. p += len;
  1673. }
  1674. if (!wpa_found && data->assoc_info.beacon_ies)
  1675. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, NULL, 0);
  1676. if (!rsn_found && data->assoc_info.beacon_ies)
  1677. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, NULL, 0);
  1678. if (wpa_found || rsn_found)
  1679. wpa_s->ap_ies_from_associnfo = 1;
  1680. #ifdef CONFIG_FST
  1681. wpabuf_free(wpa_s->received_mb_ies);
  1682. wpa_s->received_mb_ies = NULL;
  1683. if (wpa_s->fst) {
  1684. struct mb_ies_info mb_ies;
  1685. wpa_printf(MSG_DEBUG, "Looking for MB IE");
  1686. if (!mb_ies_info_by_ies(&mb_ies, data->assoc_info.resp_ies,
  1687. data->assoc_info.resp_ies_len))
  1688. wpa_s->received_mb_ies = mb_ies_by_info(&mb_ies);
  1689. }
  1690. #endif /* CONFIG_FST */
  1691. if (wpa_s->assoc_freq && data->assoc_info.freq &&
  1692. wpa_s->assoc_freq != data->assoc_info.freq) {
  1693. wpa_printf(MSG_DEBUG, "Operating frequency changed from "
  1694. "%u to %u MHz",
  1695. wpa_s->assoc_freq, data->assoc_info.freq);
  1696. wpa_supplicant_update_scan_results(wpa_s);
  1697. }
  1698. wpa_s->assoc_freq = data->assoc_info.freq;
  1699. return 0;
  1700. }
  1701. static int wpa_supplicant_assoc_update_ie(struct wpa_supplicant *wpa_s)
  1702. {
  1703. const u8 *bss_wpa = NULL, *bss_rsn = NULL;
  1704. if (!wpa_s->current_bss || !wpa_s->current_ssid)
  1705. return -1;
  1706. if (!wpa_key_mgmt_wpa_any(wpa_s->current_ssid->key_mgmt))
  1707. return 0;
  1708. bss_wpa = wpa_bss_get_vendor_ie(wpa_s->current_bss,
  1709. WPA_IE_VENDOR_TYPE);
  1710. bss_rsn = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_RSN);
  1711. if (wpa_sm_set_ap_wpa_ie(wpa_s->wpa, bss_wpa,
  1712. bss_wpa ? 2 + bss_wpa[1] : 0) ||
  1713. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, bss_rsn,
  1714. bss_rsn ? 2 + bss_rsn[1] : 0))
  1715. return -1;
  1716. return 0;
  1717. }
  1718. static void wpa_supplicant_event_assoc(struct wpa_supplicant *wpa_s,
  1719. union wpa_event_data *data)
  1720. {
  1721. u8 bssid[ETH_ALEN];
  1722. int ft_completed;
  1723. #ifdef CONFIG_AP
  1724. if (wpa_s->ap_iface) {
  1725. if (!data)
  1726. return;
  1727. hostapd_notif_assoc(wpa_s->ap_iface->bss[0],
  1728. data->assoc_info.addr,
  1729. data->assoc_info.req_ies,
  1730. data->assoc_info.req_ies_len,
  1731. data->assoc_info.reassoc);
  1732. return;
  1733. }
  1734. #endif /* CONFIG_AP */
  1735. eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
  1736. ft_completed = wpa_ft_is_completed(wpa_s->wpa);
  1737. if (data && wpa_supplicant_event_associnfo(wpa_s, data) < 0)
  1738. return;
  1739. if (wpa_drv_get_bssid(wpa_s, bssid) < 0) {
  1740. wpa_dbg(wpa_s, MSG_ERROR, "Failed to get BSSID");
  1741. wpa_supplicant_deauthenticate(
  1742. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1743. return;
  1744. }
  1745. wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATED);
  1746. if (os_memcmp(bssid, wpa_s->bssid, ETH_ALEN) != 0) {
  1747. wpa_dbg(wpa_s, MSG_DEBUG, "Associated to a new BSS: BSSID="
  1748. MACSTR, MAC2STR(bssid));
  1749. random_add_randomness(bssid, ETH_ALEN);
  1750. os_memcpy(wpa_s->bssid, bssid, ETH_ALEN);
  1751. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  1752. wpas_notify_bssid_changed(wpa_s);
  1753. if (wpa_supplicant_dynamic_keys(wpa_s) && !ft_completed) {
  1754. wpa_clear_keys(wpa_s, bssid);
  1755. }
  1756. if (wpa_supplicant_select_config(wpa_s) < 0) {
  1757. wpa_supplicant_deauthenticate(
  1758. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1759. return;
  1760. }
  1761. if (wpa_s->conf->ap_scan == 1 &&
  1762. wpa_s->drv_flags & WPA_DRIVER_FLAGS_BSS_SELECTION) {
  1763. if (wpa_supplicant_assoc_update_ie(wpa_s) < 0)
  1764. wpa_msg(wpa_s, MSG_WARNING,
  1765. "WPA/RSN IEs not updated");
  1766. }
  1767. }
  1768. #ifdef CONFIG_SME
  1769. os_memcpy(wpa_s->sme.prev_bssid, bssid, ETH_ALEN);
  1770. wpa_s->sme.prev_bssid_set = 1;
  1771. wpa_s->sme.last_unprot_disconnect.sec = 0;
  1772. #endif /* CONFIG_SME */
  1773. wpa_msg(wpa_s, MSG_INFO, "Associated with " MACSTR, MAC2STR(bssid));
  1774. if (wpa_s->current_ssid) {
  1775. /* When using scanning (ap_scan=1), SIM PC/SC interface can be
  1776. * initialized before association, but for other modes,
  1777. * initialize PC/SC here, if the current configuration needs
  1778. * smartcard or SIM/USIM. */
  1779. wpa_supplicant_scard_init(wpa_s, wpa_s->current_ssid);
  1780. }
  1781. wpa_sm_notify_assoc(wpa_s->wpa, bssid);
  1782. if (wpa_s->l2)
  1783. l2_packet_notify_auth_start(wpa_s->l2);
  1784. /*
  1785. * Set portEnabled first to FALSE in order to get EAP state machine out
  1786. * of the SUCCESS state and eapSuccess cleared. Without this, EAPOL PAE
  1787. * state machine may transit to AUTHENTICATING state based on obsolete
  1788. * eapSuccess and then trigger BE_AUTH to SUCCESS and PAE to
  1789. * AUTHENTICATED without ever giving chance to EAP state machine to
  1790. * reset the state.
  1791. */
  1792. if (!ft_completed) {
  1793. eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
  1794. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  1795. }
  1796. if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) || ft_completed)
  1797. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  1798. /* 802.1X::portControl = Auto */
  1799. eapol_sm_notify_portEnabled(wpa_s->eapol, TRUE);
  1800. wpa_s->eapol_received = 0;
  1801. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  1802. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE ||
  1803. (wpa_s->current_ssid &&
  1804. wpa_s->current_ssid->mode == IEEE80211_MODE_IBSS)) {
  1805. if (wpa_s->current_ssid &&
  1806. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE &&
  1807. (wpa_s->drv_flags &
  1808. WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE)) {
  1809. /*
  1810. * Set the key after having received joined-IBSS event
  1811. * from the driver.
  1812. */
  1813. wpa_supplicant_set_wpa_none_key(wpa_s,
  1814. wpa_s->current_ssid);
  1815. }
  1816. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1817. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  1818. } else if (!ft_completed) {
  1819. /* Timeout for receiving the first EAPOL packet */
  1820. wpa_supplicant_req_auth_timeout(wpa_s, 10, 0);
  1821. }
  1822. wpa_supplicant_cancel_scan(wpa_s);
  1823. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
  1824. wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt)) {
  1825. /*
  1826. * We are done; the driver will take care of RSN 4-way
  1827. * handshake.
  1828. */
  1829. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1830. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  1831. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  1832. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  1833. } else if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
  1834. wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
  1835. /*
  1836. * The driver will take care of RSN 4-way handshake, so we need
  1837. * to allow EAPOL supplicant to complete its work without
  1838. * waiting for WPA supplicant.
  1839. */
  1840. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  1841. } else if (ft_completed) {
  1842. /*
  1843. * FT protocol completed - make sure EAPOL state machine ends
  1844. * up in authenticated.
  1845. */
  1846. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1847. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  1848. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  1849. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  1850. }
  1851. wpa_s->last_eapol_matches_bssid = 0;
  1852. if (wpa_s->pending_eapol_rx) {
  1853. struct os_reltime now, age;
  1854. os_get_reltime(&now);
  1855. os_reltime_sub(&now, &wpa_s->pending_eapol_rx_time, &age);
  1856. if (age.sec == 0 && age.usec < 100000 &&
  1857. os_memcmp(wpa_s->pending_eapol_rx_src, bssid, ETH_ALEN) ==
  1858. 0) {
  1859. wpa_dbg(wpa_s, MSG_DEBUG, "Process pending EAPOL "
  1860. "frame that was received just before "
  1861. "association notification");
  1862. wpa_supplicant_rx_eapol(
  1863. wpa_s, wpa_s->pending_eapol_rx_src,
  1864. wpabuf_head(wpa_s->pending_eapol_rx),
  1865. wpabuf_len(wpa_s->pending_eapol_rx));
  1866. }
  1867. wpabuf_free(wpa_s->pending_eapol_rx);
  1868. wpa_s->pending_eapol_rx = NULL;
  1869. }
  1870. if ((wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  1871. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
  1872. wpa_s->current_ssid &&
  1873. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE)) {
  1874. /* Set static WEP keys again */
  1875. wpa_set_wep_keys(wpa_s, wpa_s->current_ssid);
  1876. }
  1877. #ifdef CONFIG_IBSS_RSN
  1878. if (wpa_s->current_ssid &&
  1879. wpa_s->current_ssid->mode == WPAS_MODE_IBSS &&
  1880. wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
  1881. wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE &&
  1882. wpa_s->ibss_rsn == NULL) {
  1883. wpa_s->ibss_rsn = ibss_rsn_init(wpa_s);
  1884. if (!wpa_s->ibss_rsn) {
  1885. wpa_msg(wpa_s, MSG_INFO, "Failed to init IBSS RSN");
  1886. wpa_supplicant_deauthenticate(
  1887. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1888. return;
  1889. }
  1890. ibss_rsn_set_psk(wpa_s->ibss_rsn, wpa_s->current_ssid->psk);
  1891. }
  1892. #endif /* CONFIG_IBSS_RSN */
  1893. wpas_wps_notify_assoc(wpa_s, bssid);
  1894. if (data) {
  1895. wmm_ac_notify_assoc(wpa_s, data->assoc_info.resp_ies,
  1896. data->assoc_info.resp_ies_len,
  1897. &data->assoc_info.wmm_params);
  1898. if (wpa_s->reassoc_same_bss)
  1899. wmm_ac_restore_tspecs(wpa_s);
  1900. }
  1901. }
  1902. static int disconnect_reason_recoverable(u16 reason_code)
  1903. {
  1904. return reason_code == WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY ||
  1905. reason_code == WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA ||
  1906. reason_code == WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA;
  1907. }
  1908. static void wpa_supplicant_event_disassoc(struct wpa_supplicant *wpa_s,
  1909. u16 reason_code,
  1910. int locally_generated)
  1911. {
  1912. const u8 *bssid;
  1913. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  1914. /*
  1915. * At least Host AP driver and a Prism3 card seemed to be
  1916. * generating streams of disconnected events when configuring
  1917. * IBSS for WPA-None. Ignore them for now.
  1918. */
  1919. return;
  1920. }
  1921. bssid = wpa_s->bssid;
  1922. if (is_zero_ether_addr(bssid))
  1923. bssid = wpa_s->pending_bssid;
  1924. if (!is_zero_ether_addr(bssid) ||
  1925. wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  1926. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid=" MACSTR
  1927. " reason=%d%s",
  1928. MAC2STR(bssid), reason_code,
  1929. locally_generated ? " locally_generated=1" : "");
  1930. }
  1931. }
  1932. static int could_be_psk_mismatch(struct wpa_supplicant *wpa_s, u16 reason_code,
  1933. int locally_generated)
  1934. {
  1935. if (wpa_s->wpa_state != WPA_4WAY_HANDSHAKE ||
  1936. !wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt))
  1937. return 0; /* Not in 4-way handshake with PSK */
  1938. /*
  1939. * It looks like connection was lost while trying to go through PSK
  1940. * 4-way handshake. Filter out known disconnection cases that are caused
  1941. * by something else than PSK mismatch to avoid confusing reports.
  1942. */
  1943. if (locally_generated) {
  1944. if (reason_code == WLAN_REASON_IE_IN_4WAY_DIFFERS)
  1945. return 0;
  1946. }
  1947. return 1;
  1948. }
  1949. static void wpa_supplicant_event_disassoc_finish(struct wpa_supplicant *wpa_s,
  1950. u16 reason_code,
  1951. int locally_generated)
  1952. {
  1953. const u8 *bssid;
  1954. int authenticating;
  1955. u8 prev_pending_bssid[ETH_ALEN];
  1956. struct wpa_bss *fast_reconnect = NULL;
  1957. struct wpa_ssid *fast_reconnect_ssid = NULL;
  1958. struct wpa_ssid *last_ssid;
  1959. authenticating = wpa_s->wpa_state == WPA_AUTHENTICATING;
  1960. os_memcpy(prev_pending_bssid, wpa_s->pending_bssid, ETH_ALEN);
  1961. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  1962. /*
  1963. * At least Host AP driver and a Prism3 card seemed to be
  1964. * generating streams of disconnected events when configuring
  1965. * IBSS for WPA-None. Ignore them for now.
  1966. */
  1967. wpa_dbg(wpa_s, MSG_DEBUG, "Disconnect event - ignore in "
  1968. "IBSS/WPA-None mode");
  1969. return;
  1970. }
  1971. if (could_be_psk_mismatch(wpa_s, reason_code, locally_generated)) {
  1972. wpa_msg(wpa_s, MSG_INFO, "WPA: 4-Way Handshake failed - "
  1973. "pre-shared key may be incorrect");
  1974. if (wpas_p2p_4way_hs_failed(wpa_s) > 0)
  1975. return; /* P2P group removed */
  1976. wpas_auth_failed(wpa_s, "WRONG_KEY");
  1977. }
  1978. if (!wpa_s->disconnected &&
  1979. (!wpa_s->auto_reconnect_disabled ||
  1980. wpa_s->key_mgmt == WPA_KEY_MGMT_WPS ||
  1981. wpas_wps_searching(wpa_s))) {
  1982. wpa_dbg(wpa_s, MSG_DEBUG, "Auto connect enabled: try to "
  1983. "reconnect (wps=%d/%d wpa_state=%d)",
  1984. wpa_s->key_mgmt == WPA_KEY_MGMT_WPS,
  1985. wpas_wps_searching(wpa_s),
  1986. wpa_s->wpa_state);
  1987. if (wpa_s->wpa_state == WPA_COMPLETED &&
  1988. wpa_s->current_ssid &&
  1989. wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
  1990. !locally_generated &&
  1991. disconnect_reason_recoverable(reason_code)) {
  1992. /*
  1993. * It looks like the AP has dropped association with
  1994. * us, but could allow us to get back in. Try to
  1995. * reconnect to the same BSS without full scan to save
  1996. * time for some common cases.
  1997. */
  1998. fast_reconnect = wpa_s->current_bss;
  1999. fast_reconnect_ssid = wpa_s->current_ssid;
  2000. } else if (wpa_s->wpa_state >= WPA_ASSOCIATING)
  2001. wpa_supplicant_req_scan(wpa_s, 0, 100000);
  2002. else
  2003. wpa_dbg(wpa_s, MSG_DEBUG, "Do not request new "
  2004. "immediate scan");
  2005. } else {
  2006. wpa_dbg(wpa_s, MSG_DEBUG, "Auto connect disabled: do not "
  2007. "try to re-connect");
  2008. wpa_s->reassociate = 0;
  2009. wpa_s->disconnected = 1;
  2010. wpa_supplicant_cancel_sched_scan(wpa_s);
  2011. }
  2012. bssid = wpa_s->bssid;
  2013. if (is_zero_ether_addr(bssid))
  2014. bssid = wpa_s->pending_bssid;
  2015. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  2016. wpas_connection_failed(wpa_s, bssid);
  2017. wpa_sm_notify_disassoc(wpa_s->wpa);
  2018. if (locally_generated)
  2019. wpa_s->disconnect_reason = -reason_code;
  2020. else
  2021. wpa_s->disconnect_reason = reason_code;
  2022. wpas_notify_disconnect_reason(wpa_s);
  2023. if (wpa_supplicant_dynamic_keys(wpa_s)) {
  2024. wpa_dbg(wpa_s, MSG_DEBUG, "Disconnect event - remove keys");
  2025. wpa_clear_keys(wpa_s, wpa_s->bssid);
  2026. }
  2027. last_ssid = wpa_s->current_ssid;
  2028. wpa_supplicant_mark_disassoc(wpa_s);
  2029. if (authenticating && (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)) {
  2030. sme_disassoc_while_authenticating(wpa_s, prev_pending_bssid);
  2031. wpa_s->current_ssid = last_ssid;
  2032. }
  2033. if (fast_reconnect &&
  2034. !wpas_network_disabled(wpa_s, fast_reconnect_ssid) &&
  2035. !disallowed_bssid(wpa_s, fast_reconnect->bssid) &&
  2036. !disallowed_ssid(wpa_s, fast_reconnect->ssid,
  2037. fast_reconnect->ssid_len) &&
  2038. !wpas_temp_disabled(wpa_s, fast_reconnect_ssid)) {
  2039. #ifndef CONFIG_NO_SCAN_PROCESSING
  2040. wpa_dbg(wpa_s, MSG_DEBUG, "Try to reconnect to the same BSS");
  2041. if (wpa_supplicant_connect(wpa_s, fast_reconnect,
  2042. fast_reconnect_ssid) < 0) {
  2043. /* Recover through full scan */
  2044. wpa_supplicant_req_scan(wpa_s, 0, 100000);
  2045. }
  2046. #endif /* CONFIG_NO_SCAN_PROCESSING */
  2047. } else if (fast_reconnect) {
  2048. /*
  2049. * Could not reconnect to the same BSS due to network being
  2050. * disabled. Use a new scan to match the alternative behavior
  2051. * above, i.e., to continue automatic reconnection attempt in a
  2052. * way that enforces disabled network rules.
  2053. */
  2054. wpa_supplicant_req_scan(wpa_s, 0, 100000);
  2055. }
  2056. }
  2057. #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
  2058. void wpa_supplicant_delayed_mic_error_report(void *eloop_ctx, void *sock_ctx)
  2059. {
  2060. struct wpa_supplicant *wpa_s = eloop_ctx;
  2061. if (!wpa_s->pending_mic_error_report)
  2062. return;
  2063. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Sending pending MIC error report");
  2064. wpa_sm_key_request(wpa_s->wpa, 1, wpa_s->pending_mic_error_pairwise);
  2065. wpa_s->pending_mic_error_report = 0;
  2066. }
  2067. #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  2068. static void
  2069. wpa_supplicant_event_michael_mic_failure(struct wpa_supplicant *wpa_s,
  2070. union wpa_event_data *data)
  2071. {
  2072. int pairwise;
  2073. struct os_reltime t;
  2074. wpa_msg(wpa_s, MSG_WARNING, "Michael MIC failure detected");
  2075. pairwise = (data && data->michael_mic_failure.unicast);
  2076. os_get_reltime(&t);
  2077. if ((wpa_s->last_michael_mic_error.sec &&
  2078. !os_reltime_expired(&t, &wpa_s->last_michael_mic_error, 60)) ||
  2079. wpa_s->pending_mic_error_report) {
  2080. if (wpa_s->pending_mic_error_report) {
  2081. /*
  2082. * Send the pending MIC error report immediately since
  2083. * we are going to start countermeasures and AP better
  2084. * do the same.
  2085. */
  2086. wpa_sm_key_request(wpa_s->wpa, 1,
  2087. wpa_s->pending_mic_error_pairwise);
  2088. }
  2089. /* Send the new MIC error report immediately since we are going
  2090. * to start countermeasures and AP better do the same.
  2091. */
  2092. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  2093. /* initialize countermeasures */
  2094. wpa_s->countermeasures = 1;
  2095. wpa_blacklist_add(wpa_s, wpa_s->bssid);
  2096. wpa_msg(wpa_s, MSG_WARNING, "TKIP countermeasures started");
  2097. /*
  2098. * Need to wait for completion of request frame. We do not get
  2099. * any callback for the message completion, so just wait a
  2100. * short while and hope for the best. */
  2101. os_sleep(0, 10000);
  2102. wpa_drv_set_countermeasures(wpa_s, 1);
  2103. wpa_supplicant_deauthenticate(wpa_s,
  2104. WLAN_REASON_MICHAEL_MIC_FAILURE);
  2105. eloop_cancel_timeout(wpa_supplicant_stop_countermeasures,
  2106. wpa_s, NULL);
  2107. eloop_register_timeout(60, 0,
  2108. wpa_supplicant_stop_countermeasures,
  2109. wpa_s, NULL);
  2110. /* TODO: mark the AP rejected for 60 second. STA is
  2111. * allowed to associate with another AP.. */
  2112. } else {
  2113. #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
  2114. if (wpa_s->mic_errors_seen) {
  2115. /*
  2116. * Reduce the effectiveness of Michael MIC error
  2117. * reports as a means for attacking against TKIP if
  2118. * more than one MIC failure is noticed with the same
  2119. * PTK. We delay the transmission of the reports by a
  2120. * random time between 0 and 60 seconds in order to
  2121. * force the attacker wait 60 seconds before getting
  2122. * the information on whether a frame resulted in a MIC
  2123. * failure.
  2124. */
  2125. u8 rval[4];
  2126. int sec;
  2127. if (os_get_random(rval, sizeof(rval)) < 0)
  2128. sec = os_random() % 60;
  2129. else
  2130. sec = WPA_GET_BE32(rval) % 60;
  2131. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Delay MIC error "
  2132. "report %d seconds", sec);
  2133. wpa_s->pending_mic_error_report = 1;
  2134. wpa_s->pending_mic_error_pairwise = pairwise;
  2135. eloop_cancel_timeout(
  2136. wpa_supplicant_delayed_mic_error_report,
  2137. wpa_s, NULL);
  2138. eloop_register_timeout(
  2139. sec, os_random() % 1000000,
  2140. wpa_supplicant_delayed_mic_error_report,
  2141. wpa_s, NULL);
  2142. } else {
  2143. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  2144. }
  2145. #else /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  2146. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  2147. #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  2148. }
  2149. wpa_s->last_michael_mic_error = t;
  2150. wpa_s->mic_errors_seen++;
  2151. }
  2152. #ifdef CONFIG_TERMINATE_ONLASTIF
  2153. static int any_interfaces(struct wpa_supplicant *head)
  2154. {
  2155. struct wpa_supplicant *wpa_s;
  2156. for (wpa_s = head; wpa_s != NULL; wpa_s = wpa_s->next)
  2157. if (!wpa_s->interface_removed)
  2158. return 1;
  2159. return 0;
  2160. }
  2161. #endif /* CONFIG_TERMINATE_ONLASTIF */
  2162. static void
  2163. wpa_supplicant_event_interface_status(struct wpa_supplicant *wpa_s,
  2164. union wpa_event_data *data)
  2165. {
  2166. if (os_strcmp(wpa_s->ifname, data->interface_status.ifname) != 0)
  2167. return;
  2168. switch (data->interface_status.ievent) {
  2169. case EVENT_INTERFACE_ADDED:
  2170. if (!wpa_s->interface_removed)
  2171. break;
  2172. wpa_s->interface_removed = 0;
  2173. wpa_dbg(wpa_s, MSG_DEBUG, "Configured interface was added");
  2174. if (wpa_supplicant_driver_init(wpa_s) < 0) {
  2175. wpa_msg(wpa_s, MSG_INFO, "Failed to initialize the "
  2176. "driver after interface was added");
  2177. }
  2178. #ifdef CONFIG_P2P
  2179. if (!wpa_s->global->p2p &&
  2180. !wpa_s->global->p2p_disabled &&
  2181. !wpa_s->conf->p2p_disabled &&
  2182. (wpa_s->drv_flags &
  2183. WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE) &&
  2184. wpas_p2p_add_p2pdev_interface(
  2185. wpa_s, wpa_s->global->params.conf_p2p_dev) < 0) {
  2186. wpa_printf(MSG_INFO,
  2187. "P2P: Failed to enable P2P Device interface");
  2188. /* Try to continue without. P2P will be disabled. */
  2189. }
  2190. #endif /* CONFIG_P2P */
  2191. break;
  2192. case EVENT_INTERFACE_REMOVED:
  2193. wpa_dbg(wpa_s, MSG_DEBUG, "Configured interface was removed");
  2194. wpa_s->interface_removed = 1;
  2195. wpa_supplicant_mark_disassoc(wpa_s);
  2196. wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
  2197. l2_packet_deinit(wpa_s->l2);
  2198. wpa_s->l2 = NULL;
  2199. #ifdef CONFIG_P2P
  2200. if (wpa_s->global->p2p &&
  2201. wpa_s->global->p2p_init_wpa_s->parent == wpa_s &&
  2202. (wpa_s->drv_flags &
  2203. WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE)) {
  2204. wpa_dbg(wpa_s, MSG_DEBUG,
  2205. "Removing P2P Device interface");
  2206. wpa_supplicant_remove_iface(
  2207. wpa_s->global, wpa_s->global->p2p_init_wpa_s,
  2208. 0);
  2209. wpa_s->global->p2p_init_wpa_s = NULL;
  2210. }
  2211. #endif /* CONFIG_P2P */
  2212. #ifdef CONFIG_TERMINATE_ONLASTIF
  2213. /* check if last interface */
  2214. if (!any_interfaces(wpa_s->global->ifaces))
  2215. eloop_terminate();
  2216. #endif /* CONFIG_TERMINATE_ONLASTIF */
  2217. break;
  2218. }
  2219. }
  2220. #ifdef CONFIG_PEERKEY
  2221. static void
  2222. wpa_supplicant_event_stkstart(struct wpa_supplicant *wpa_s,
  2223. union wpa_event_data *data)
  2224. {
  2225. if (data == NULL)
  2226. return;
  2227. wpa_sm_stkstart(wpa_s->wpa, data->stkstart.peer);
  2228. }
  2229. #endif /* CONFIG_PEERKEY */
  2230. #ifdef CONFIG_TDLS
  2231. static void wpa_supplicant_event_tdls(struct wpa_supplicant *wpa_s,
  2232. union wpa_event_data *data)
  2233. {
  2234. if (data == NULL)
  2235. return;
  2236. switch (data->tdls.oper) {
  2237. case TDLS_REQUEST_SETUP:
  2238. wpa_tdls_remove(wpa_s->wpa, data->tdls.peer);
  2239. if (wpa_tdls_is_external_setup(wpa_s->wpa))
  2240. wpa_tdls_start(wpa_s->wpa, data->tdls.peer);
  2241. else
  2242. wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, data->tdls.peer);
  2243. break;
  2244. case TDLS_REQUEST_TEARDOWN:
  2245. if (wpa_tdls_is_external_setup(wpa_s->wpa))
  2246. wpa_tdls_teardown_link(wpa_s->wpa, data->tdls.peer,
  2247. data->tdls.reason_code);
  2248. else
  2249. wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN,
  2250. data->tdls.peer);
  2251. break;
  2252. case TDLS_REQUEST_DISCOVER:
  2253. wpa_tdls_send_discovery_request(wpa_s->wpa,
  2254. data->tdls.peer);
  2255. break;
  2256. }
  2257. }
  2258. #endif /* CONFIG_TDLS */
  2259. #ifdef CONFIG_WNM
  2260. static void wpa_supplicant_event_wnm(struct wpa_supplicant *wpa_s,
  2261. union wpa_event_data *data)
  2262. {
  2263. if (data == NULL)
  2264. return;
  2265. switch (data->wnm.oper) {
  2266. case WNM_OPER_SLEEP:
  2267. wpa_printf(MSG_DEBUG, "Start sending WNM-Sleep Request "
  2268. "(action=%d, intval=%d)",
  2269. data->wnm.sleep_action, data->wnm.sleep_intval);
  2270. ieee802_11_send_wnmsleep_req(wpa_s, data->wnm.sleep_action,
  2271. data->wnm.sleep_intval, NULL);
  2272. break;
  2273. }
  2274. }
  2275. #endif /* CONFIG_WNM */
  2276. #ifdef CONFIG_IEEE80211R
  2277. static void
  2278. wpa_supplicant_event_ft_response(struct wpa_supplicant *wpa_s,
  2279. union wpa_event_data *data)
  2280. {
  2281. if (data == NULL)
  2282. return;
  2283. if (wpa_ft_process_response(wpa_s->wpa, data->ft_ies.ies,
  2284. data->ft_ies.ies_len,
  2285. data->ft_ies.ft_action,
  2286. data->ft_ies.target_ap,
  2287. data->ft_ies.ric_ies,
  2288. data->ft_ies.ric_ies_len) < 0) {
  2289. /* TODO: prevent MLME/driver from trying to associate? */
  2290. }
  2291. }
  2292. #endif /* CONFIG_IEEE80211R */
  2293. #ifdef CONFIG_IBSS_RSN
  2294. static void wpa_supplicant_event_ibss_rsn_start(struct wpa_supplicant *wpa_s,
  2295. union wpa_event_data *data)
  2296. {
  2297. struct wpa_ssid *ssid;
  2298. if (wpa_s->wpa_state < WPA_ASSOCIATED)
  2299. return;
  2300. if (data == NULL)
  2301. return;
  2302. ssid = wpa_s->current_ssid;
  2303. if (ssid == NULL)
  2304. return;
  2305. if (ssid->mode != WPAS_MODE_IBSS || !wpa_key_mgmt_wpa(ssid->key_mgmt))
  2306. return;
  2307. ibss_rsn_start(wpa_s->ibss_rsn, data->ibss_rsn_start.peer);
  2308. }
  2309. static void wpa_supplicant_event_ibss_auth(struct wpa_supplicant *wpa_s,
  2310. union wpa_event_data *data)
  2311. {
  2312. struct wpa_ssid *ssid = wpa_s->current_ssid;
  2313. if (ssid == NULL)
  2314. return;
  2315. /* check if the ssid is correctly configured as IBSS/RSN */
  2316. if (ssid->mode != WPAS_MODE_IBSS || !wpa_key_mgmt_wpa(ssid->key_mgmt))
  2317. return;
  2318. ibss_rsn_handle_auth(wpa_s->ibss_rsn, data->rx_mgmt.frame,
  2319. data->rx_mgmt.frame_len);
  2320. }
  2321. #endif /* CONFIG_IBSS_RSN */
  2322. #ifdef CONFIG_IEEE80211R
  2323. static void ft_rx_action(struct wpa_supplicant *wpa_s, const u8 *data,
  2324. size_t len)
  2325. {
  2326. const u8 *sta_addr, *target_ap_addr;
  2327. u16 status;
  2328. wpa_hexdump(MSG_MSGDUMP, "FT: RX Action", data, len);
  2329. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME))
  2330. return; /* only SME case supported for now */
  2331. if (len < 1 + 2 * ETH_ALEN + 2)
  2332. return;
  2333. if (data[0] != 2)
  2334. return; /* Only FT Action Response is supported for now */
  2335. sta_addr = data + 1;
  2336. target_ap_addr = data + 1 + ETH_ALEN;
  2337. status = WPA_GET_LE16(data + 1 + 2 * ETH_ALEN);
  2338. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Received FT Action Response: STA "
  2339. MACSTR " TargetAP " MACSTR " status %u",
  2340. MAC2STR(sta_addr), MAC2STR(target_ap_addr), status);
  2341. if (os_memcmp(sta_addr, wpa_s->own_addr, ETH_ALEN) != 0) {
  2342. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Foreign STA Address " MACSTR
  2343. " in FT Action Response", MAC2STR(sta_addr));
  2344. return;
  2345. }
  2346. if (status) {
  2347. wpa_dbg(wpa_s, MSG_DEBUG, "FT: FT Action Response indicates "
  2348. "failure (status code %d)", status);
  2349. /* TODO: report error to FT code(?) */
  2350. return;
  2351. }
  2352. if (wpa_ft_process_response(wpa_s->wpa, data + 1 + 2 * ETH_ALEN + 2,
  2353. len - (1 + 2 * ETH_ALEN + 2), 1,
  2354. target_ap_addr, NULL, 0) < 0)
  2355. return;
  2356. #ifdef CONFIG_SME
  2357. {
  2358. struct wpa_bss *bss;
  2359. bss = wpa_bss_get_bssid(wpa_s, target_ap_addr);
  2360. if (bss)
  2361. wpa_s->sme.freq = bss->freq;
  2362. wpa_s->sme.auth_alg = WPA_AUTH_ALG_FT;
  2363. sme_associate(wpa_s, WPAS_MODE_INFRA, target_ap_addr,
  2364. WLAN_AUTH_FT);
  2365. }
  2366. #endif /* CONFIG_SME */
  2367. }
  2368. #endif /* CONFIG_IEEE80211R */
  2369. static void wpa_supplicant_event_unprot_deauth(struct wpa_supplicant *wpa_s,
  2370. struct unprot_deauth *e)
  2371. {
  2372. #ifdef CONFIG_IEEE80211W
  2373. wpa_printf(MSG_DEBUG, "Unprotected Deauthentication frame "
  2374. "dropped: " MACSTR " -> " MACSTR
  2375. " (reason code %u)",
  2376. MAC2STR(e->sa), MAC2STR(e->da), e->reason_code);
  2377. sme_event_unprot_disconnect(wpa_s, e->sa, e->da, e->reason_code);
  2378. #endif /* CONFIG_IEEE80211W */
  2379. }
  2380. static void wpa_supplicant_event_unprot_disassoc(struct wpa_supplicant *wpa_s,
  2381. struct unprot_disassoc *e)
  2382. {
  2383. #ifdef CONFIG_IEEE80211W
  2384. wpa_printf(MSG_DEBUG, "Unprotected Disassociation frame "
  2385. "dropped: " MACSTR " -> " MACSTR
  2386. " (reason code %u)",
  2387. MAC2STR(e->sa), MAC2STR(e->da), e->reason_code);
  2388. sme_event_unprot_disconnect(wpa_s, e->sa, e->da, e->reason_code);
  2389. #endif /* CONFIG_IEEE80211W */
  2390. }
  2391. static void wpas_event_disconnect(struct wpa_supplicant *wpa_s, const u8 *addr,
  2392. u16 reason_code, int locally_generated,
  2393. const u8 *ie, size_t ie_len, int deauth)
  2394. {
  2395. #ifdef CONFIG_AP
  2396. if (wpa_s->ap_iface && addr) {
  2397. hostapd_notif_disassoc(wpa_s->ap_iface->bss[0], addr);
  2398. return;
  2399. }
  2400. if (wpa_s->ap_iface) {
  2401. wpa_dbg(wpa_s, MSG_DEBUG, "Ignore deauth event in AP mode");
  2402. return;
  2403. }
  2404. #endif /* CONFIG_AP */
  2405. if (!locally_generated)
  2406. wpa_s->own_disconnect_req = 0;
  2407. wpa_supplicant_event_disassoc(wpa_s, reason_code, locally_generated);
  2408. if (((reason_code == WLAN_REASON_IEEE_802_1X_AUTH_FAILED ||
  2409. ((wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
  2410. (wpa_s->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)) &&
  2411. eapol_sm_failed(wpa_s->eapol))) &&
  2412. !wpa_s->eap_expected_failure))
  2413. wpas_auth_failed(wpa_s, "AUTH_FAILED");
  2414. #ifdef CONFIG_P2P
  2415. if (deauth && reason_code > 0) {
  2416. if (wpas_p2p_deauth_notif(wpa_s, addr, reason_code, ie, ie_len,
  2417. locally_generated) > 0) {
  2418. /*
  2419. * The interface was removed, so cannot continue
  2420. * processing any additional operations after this.
  2421. */
  2422. return;
  2423. }
  2424. }
  2425. #endif /* CONFIG_P2P */
  2426. wpa_supplicant_event_disassoc_finish(wpa_s, reason_code,
  2427. locally_generated);
  2428. }
  2429. static void wpas_event_disassoc(struct wpa_supplicant *wpa_s,
  2430. struct disassoc_info *info)
  2431. {
  2432. u16 reason_code = 0;
  2433. int locally_generated = 0;
  2434. const u8 *addr = NULL;
  2435. const u8 *ie = NULL;
  2436. size_t ie_len = 0;
  2437. wpa_dbg(wpa_s, MSG_DEBUG, "Disassociation notification");
  2438. if (info) {
  2439. addr = info->addr;
  2440. ie = info->ie;
  2441. ie_len = info->ie_len;
  2442. reason_code = info->reason_code;
  2443. locally_generated = info->locally_generated;
  2444. wpa_dbg(wpa_s, MSG_DEBUG, " * reason %u%s", reason_code,
  2445. locally_generated ? " (locally generated)" : "");
  2446. if (addr)
  2447. wpa_dbg(wpa_s, MSG_DEBUG, " * address " MACSTR,
  2448. MAC2STR(addr));
  2449. wpa_hexdump(MSG_DEBUG, "Disassociation frame IE(s)",
  2450. ie, ie_len);
  2451. }
  2452. #ifdef CONFIG_AP
  2453. if (wpa_s->ap_iface && info && info->addr) {
  2454. hostapd_notif_disassoc(wpa_s->ap_iface->bss[0], info->addr);
  2455. return;
  2456. }
  2457. if (wpa_s->ap_iface) {
  2458. wpa_dbg(wpa_s, MSG_DEBUG, "Ignore disassoc event in AP mode");
  2459. return;
  2460. }
  2461. #endif /* CONFIG_AP */
  2462. #ifdef CONFIG_P2P
  2463. if (info) {
  2464. wpas_p2p_disassoc_notif(
  2465. wpa_s, info->addr, reason_code, info->ie, info->ie_len,
  2466. locally_generated);
  2467. }
  2468. #endif /* CONFIG_P2P */
  2469. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  2470. sme_event_disassoc(wpa_s, info);
  2471. wpas_event_disconnect(wpa_s, addr, reason_code, locally_generated,
  2472. ie, ie_len, 0);
  2473. }
  2474. static void wpas_event_deauth(struct wpa_supplicant *wpa_s,
  2475. struct deauth_info *info)
  2476. {
  2477. u16 reason_code = 0;
  2478. int locally_generated = 0;
  2479. const u8 *addr = NULL;
  2480. const u8 *ie = NULL;
  2481. size_t ie_len = 0;
  2482. wpa_dbg(wpa_s, MSG_DEBUG, "Deauthentication notification");
  2483. if (info) {
  2484. addr = info->addr;
  2485. ie = info->ie;
  2486. ie_len = info->ie_len;
  2487. reason_code = info->reason_code;
  2488. locally_generated = info->locally_generated;
  2489. wpa_dbg(wpa_s, MSG_DEBUG, " * reason %u%s",
  2490. reason_code,
  2491. locally_generated ? " (locally generated)" : "");
  2492. if (addr) {
  2493. wpa_dbg(wpa_s, MSG_DEBUG, " * address " MACSTR,
  2494. MAC2STR(addr));
  2495. }
  2496. wpa_hexdump(MSG_DEBUG, "Deauthentication frame IE(s)",
  2497. ie, ie_len);
  2498. }
  2499. wpa_reset_ft_completed(wpa_s->wpa);
  2500. wpas_event_disconnect(wpa_s, addr, reason_code,
  2501. locally_generated, ie, ie_len, 1);
  2502. }
  2503. static const char * reg_init_str(enum reg_change_initiator init)
  2504. {
  2505. switch (init) {
  2506. case REGDOM_SET_BY_CORE:
  2507. return "CORE";
  2508. case REGDOM_SET_BY_USER:
  2509. return "USER";
  2510. case REGDOM_SET_BY_DRIVER:
  2511. return "DRIVER";
  2512. case REGDOM_SET_BY_COUNTRY_IE:
  2513. return "COUNTRY_IE";
  2514. case REGDOM_BEACON_HINT:
  2515. return "BEACON_HINT";
  2516. }
  2517. return "?";
  2518. }
  2519. static const char * reg_type_str(enum reg_type type)
  2520. {
  2521. switch (type) {
  2522. case REGDOM_TYPE_UNKNOWN:
  2523. return "UNKNOWN";
  2524. case REGDOM_TYPE_COUNTRY:
  2525. return "COUNTRY";
  2526. case REGDOM_TYPE_WORLD:
  2527. return "WORLD";
  2528. case REGDOM_TYPE_CUSTOM_WORLD:
  2529. return "CUSTOM_WORLD";
  2530. case REGDOM_TYPE_INTERSECTION:
  2531. return "INTERSECTION";
  2532. }
  2533. return "?";
  2534. }
  2535. static void wpa_supplicant_update_channel_list(
  2536. struct wpa_supplicant *wpa_s, struct channel_list_changed *info)
  2537. {
  2538. struct wpa_supplicant *ifs;
  2539. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_REGDOM_CHANGE "init=%s type=%s%s%s",
  2540. reg_init_str(info->initiator), reg_type_str(info->type),
  2541. info->alpha2[0] ? " alpha2=" : "",
  2542. info->alpha2[0] ? info->alpha2 : "");
  2543. if (wpa_s->drv_priv == NULL)
  2544. return; /* Ignore event during drv initialization */
  2545. free_hw_features(wpa_s);
  2546. wpa_s->hw.modes = wpa_drv_get_hw_feature_data(
  2547. wpa_s, &wpa_s->hw.num_modes, &wpa_s->hw.flags);
  2548. wpas_p2p_update_channel_list(wpa_s);
  2549. /*
  2550. * Check other interfaces to see if they share the same radio. If
  2551. * so, they get updated with this same hw mode info.
  2552. */
  2553. dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
  2554. radio_list) {
  2555. if (ifs != wpa_s) {
  2556. wpa_printf(MSG_DEBUG, "%s: Updating hw mode",
  2557. ifs->ifname);
  2558. free_hw_features(ifs);
  2559. ifs->hw.modes = wpa_drv_get_hw_feature_data(
  2560. ifs, &ifs->hw.num_modes, &ifs->hw.flags);
  2561. }
  2562. }
  2563. /* Restart sched_scan with updated channel list */
  2564. if (wpa_s->sched_scanning) {
  2565. wpa_dbg(wpa_s, MSG_DEBUG,
  2566. "Channel list changed restart sched scan.");
  2567. wpa_supplicant_cancel_sched_scan(wpa_s);
  2568. wpa_supplicant_req_scan(wpa_s, 0, 0);
  2569. }
  2570. }
  2571. static void wpas_event_rx_mgmt_action(struct wpa_supplicant *wpa_s,
  2572. const u8 *frame, size_t len, int freq,
  2573. int rssi)
  2574. {
  2575. const struct ieee80211_mgmt *mgmt;
  2576. const u8 *payload;
  2577. size_t plen;
  2578. u8 category;
  2579. if (len < IEEE80211_HDRLEN + 2)
  2580. return;
  2581. mgmt = (const struct ieee80211_mgmt *) frame;
  2582. payload = frame + IEEE80211_HDRLEN;
  2583. category = *payload++;
  2584. plen = len - IEEE80211_HDRLEN - 1;
  2585. wpa_dbg(wpa_s, MSG_DEBUG, "Received Action frame: SA=" MACSTR
  2586. " Category=%u DataLen=%d freq=%d MHz",
  2587. MAC2STR(mgmt->sa), category, (int) plen, freq);
  2588. if (category == WLAN_ACTION_WMM) {
  2589. wmm_ac_rx_action(wpa_s, mgmt->da, mgmt->sa, payload, plen);
  2590. return;
  2591. }
  2592. #ifdef CONFIG_IEEE80211R
  2593. if (category == WLAN_ACTION_FT) {
  2594. ft_rx_action(wpa_s, payload, plen);
  2595. return;
  2596. }
  2597. #endif /* CONFIG_IEEE80211R */
  2598. #ifdef CONFIG_IEEE80211W
  2599. #ifdef CONFIG_SME
  2600. if (category == WLAN_ACTION_SA_QUERY) {
  2601. sme_sa_query_rx(wpa_s, mgmt->sa, payload, plen);
  2602. return;
  2603. }
  2604. #endif /* CONFIG_SME */
  2605. #endif /* CONFIG_IEEE80211W */
  2606. #ifdef CONFIG_WNM
  2607. if (mgmt->u.action.category == WLAN_ACTION_WNM) {
  2608. ieee802_11_rx_wnm_action(wpa_s, mgmt, len);
  2609. return;
  2610. }
  2611. #endif /* CONFIG_WNM */
  2612. #ifdef CONFIG_GAS
  2613. if ((mgmt->u.action.category == WLAN_ACTION_PUBLIC ||
  2614. mgmt->u.action.category == WLAN_ACTION_PROTECTED_DUAL) &&
  2615. gas_query_rx(wpa_s->gas, mgmt->da, mgmt->sa, mgmt->bssid,
  2616. mgmt->u.action.category,
  2617. payload, plen, freq) == 0)
  2618. return;
  2619. #endif /* CONFIG_GAS */
  2620. #ifdef CONFIG_TDLS
  2621. if (category == WLAN_ACTION_PUBLIC && plen >= 4 &&
  2622. payload[0] == WLAN_TDLS_DISCOVERY_RESPONSE) {
  2623. wpa_dbg(wpa_s, MSG_DEBUG,
  2624. "TDLS: Received Discovery Response from " MACSTR,
  2625. MAC2STR(mgmt->sa));
  2626. return;
  2627. }
  2628. #endif /* CONFIG_TDLS */
  2629. #ifdef CONFIG_INTERWORKING
  2630. if (category == WLAN_ACTION_QOS && plen >= 1 &&
  2631. payload[0] == QOS_QOS_MAP_CONFIG) {
  2632. const u8 *pos = payload + 1;
  2633. size_t qlen = plen - 1;
  2634. wpa_dbg(wpa_s, MSG_DEBUG, "Interworking: Received QoS Map Configure frame from "
  2635. MACSTR, MAC2STR(mgmt->sa));
  2636. if (os_memcmp(mgmt->sa, wpa_s->bssid, ETH_ALEN) == 0 &&
  2637. qlen > 2 && pos[0] == WLAN_EID_QOS_MAP_SET &&
  2638. pos[1] <= qlen - 2 && pos[1] >= 16)
  2639. wpas_qos_map_set(wpa_s, pos + 2, pos[1]);
  2640. return;
  2641. }
  2642. #endif /* CONFIG_INTERWORKING */
  2643. if (category == WLAN_ACTION_RADIO_MEASUREMENT &&
  2644. payload[0] == WLAN_RRM_NEIGHBOR_REPORT_RESPONSE) {
  2645. wpas_rrm_process_neighbor_rep(wpa_s, payload + 1, plen - 1);
  2646. return;
  2647. }
  2648. if (category == WLAN_ACTION_RADIO_MEASUREMENT &&
  2649. payload[0] == WLAN_RRM_LINK_MEASUREMENT_REQUEST) {
  2650. wpas_rrm_handle_link_measurement_request(wpa_s, mgmt->sa,
  2651. payload + 1, plen - 1,
  2652. rssi);
  2653. return;
  2654. }
  2655. wpas_p2p_rx_action(wpa_s, mgmt->da, mgmt->sa, mgmt->bssid,
  2656. category, payload, plen, freq);
  2657. if (wpa_s->ifmsh)
  2658. mesh_mpm_action_rx(wpa_s, mgmt, len);
  2659. }
  2660. static void wpa_supplicant_notify_avoid_freq(struct wpa_supplicant *wpa_s,
  2661. union wpa_event_data *event)
  2662. {
  2663. #ifdef CONFIG_P2P
  2664. struct wpa_supplicant *ifs;
  2665. #endif /* CONFIG_P2P */
  2666. struct wpa_freq_range_list *list;
  2667. char *str = NULL;
  2668. list = &event->freq_range;
  2669. if (list->num)
  2670. str = freq_range_list_str(list);
  2671. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_AVOID_FREQ "ranges=%s",
  2672. str ? str : "");
  2673. #ifdef CONFIG_P2P
  2674. if (freq_range_list_parse(&wpa_s->global->p2p_go_avoid_freq, str)) {
  2675. wpa_dbg(wpa_s, MSG_ERROR, "%s: Failed to parse freq range",
  2676. __func__);
  2677. } else {
  2678. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Update channel list based on frequency avoid event");
  2679. wpas_p2p_update_channel_list(wpa_s);
  2680. }
  2681. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  2682. int freq;
  2683. if (!ifs->current_ssid ||
  2684. !ifs->current_ssid->p2p_group ||
  2685. (ifs->current_ssid->mode != WPAS_MODE_P2P_GO &&
  2686. ifs->current_ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION))
  2687. continue;
  2688. freq = ifs->current_ssid->frequency;
  2689. if (!freq_range_list_includes(list, freq)) {
  2690. wpa_dbg(ifs, MSG_DEBUG, "P2P GO operating frequency %d MHz in safe range",
  2691. freq);
  2692. continue;
  2693. }
  2694. wpa_dbg(ifs, MSG_DEBUG, "P2P GO operating in unsafe frequency %d MHz",
  2695. freq);
  2696. /* TODO: Consider using CSA or removing the group within
  2697. * wpa_supplicant */
  2698. wpa_msg(ifs, MSG_INFO, P2P_EVENT_REMOVE_AND_REFORM_GROUP);
  2699. }
  2700. #endif /* CONFIG_P2P */
  2701. os_free(str);
  2702. }
  2703. static void wpa_supplicant_event_assoc_auth(struct wpa_supplicant *wpa_s,
  2704. union wpa_event_data *data)
  2705. {
  2706. wpa_dbg(wpa_s, MSG_DEBUG,
  2707. "Connection authorized by device, previous state %d",
  2708. wpa_s->wpa_state);
  2709. if (wpa_s->wpa_state == WPA_ASSOCIATED) {
  2710. wpa_supplicant_cancel_auth_timeout(wpa_s);
  2711. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  2712. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  2713. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  2714. }
  2715. wpa_sm_set_rx_replay_ctr(wpa_s->wpa, data->assoc_info.key_replay_ctr);
  2716. wpa_sm_set_ptk_kck_kek(wpa_s->wpa, data->assoc_info.ptk_kck,
  2717. data->assoc_info.ptk_kck_len,
  2718. data->assoc_info.ptk_kek,
  2719. data->assoc_info.ptk_kek_len);
  2720. }
  2721. void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
  2722. union wpa_event_data *data)
  2723. {
  2724. struct wpa_supplicant *wpa_s = ctx;
  2725. int resched;
  2726. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED &&
  2727. event != EVENT_INTERFACE_ENABLED &&
  2728. event != EVENT_INTERFACE_STATUS &&
  2729. event != EVENT_SCHED_SCAN_STOPPED) {
  2730. wpa_dbg(wpa_s, MSG_DEBUG,
  2731. "Ignore event %s (%d) while interface is disabled",
  2732. event_to_string(event), event);
  2733. return;
  2734. }
  2735. #ifndef CONFIG_NO_STDOUT_DEBUG
  2736. {
  2737. int level = MSG_DEBUG;
  2738. if (event == EVENT_RX_MGMT && data->rx_mgmt.frame_len >= 24) {
  2739. const struct ieee80211_hdr *hdr;
  2740. u16 fc;
  2741. hdr = (const struct ieee80211_hdr *) data->rx_mgmt.frame;
  2742. fc = le_to_host16(hdr->frame_control);
  2743. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
  2744. WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON)
  2745. level = MSG_EXCESSIVE;
  2746. }
  2747. wpa_dbg(wpa_s, level, "Event %s (%d) received",
  2748. event_to_string(event), event);
  2749. }
  2750. #endif /* CONFIG_NO_STDOUT_DEBUG */
  2751. switch (event) {
  2752. case EVENT_AUTH:
  2753. sme_event_auth(wpa_s, data);
  2754. break;
  2755. case EVENT_ASSOC:
  2756. wpa_supplicant_event_assoc(wpa_s, data);
  2757. if (data && data->assoc_info.authorized)
  2758. wpa_supplicant_event_assoc_auth(wpa_s, data);
  2759. break;
  2760. case EVENT_DISASSOC:
  2761. wpas_event_disassoc(wpa_s,
  2762. data ? &data->disassoc_info : NULL);
  2763. break;
  2764. case EVENT_DEAUTH:
  2765. wpas_event_deauth(wpa_s,
  2766. data ? &data->deauth_info : NULL);
  2767. break;
  2768. case EVENT_MICHAEL_MIC_FAILURE:
  2769. wpa_supplicant_event_michael_mic_failure(wpa_s, data);
  2770. break;
  2771. #ifndef CONFIG_NO_SCAN_PROCESSING
  2772. case EVENT_SCAN_STARTED:
  2773. os_get_reltime(&wpa_s->scan_start_time);
  2774. if (wpa_s->own_scan_requested) {
  2775. struct os_reltime diff;
  2776. os_reltime_sub(&wpa_s->scan_start_time,
  2777. &wpa_s->scan_trigger_time, &diff);
  2778. wpa_dbg(wpa_s, MSG_DEBUG, "Own scan request started a scan in %ld.%06ld seconds",
  2779. diff.sec, diff.usec);
  2780. wpa_s->own_scan_requested = 0;
  2781. wpa_s->own_scan_running = 1;
  2782. if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
  2783. wpa_s->manual_scan_use_id) {
  2784. wpa_msg_ctrl(wpa_s, MSG_INFO,
  2785. WPA_EVENT_SCAN_STARTED "id=%u",
  2786. wpa_s->manual_scan_id);
  2787. } else {
  2788. wpa_msg_ctrl(wpa_s, MSG_INFO,
  2789. WPA_EVENT_SCAN_STARTED);
  2790. }
  2791. } else {
  2792. wpa_dbg(wpa_s, MSG_DEBUG, "External program started a scan");
  2793. wpa_s->radio->external_scan_running = 1;
  2794. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_STARTED);
  2795. }
  2796. break;
  2797. case EVENT_SCAN_RESULTS:
  2798. if (os_reltime_initialized(&wpa_s->scan_start_time)) {
  2799. struct os_reltime now, diff;
  2800. os_get_reltime(&now);
  2801. os_reltime_sub(&now, &wpa_s->scan_start_time, &diff);
  2802. wpa_s->scan_start_time.sec = 0;
  2803. wpa_s->scan_start_time.usec = 0;
  2804. wpa_dbg(wpa_s, MSG_DEBUG, "Scan completed in %ld.%06ld seconds",
  2805. diff.sec, diff.usec);
  2806. }
  2807. if (wpa_supplicant_event_scan_results(wpa_s, data))
  2808. break; /* interface may have been removed */
  2809. wpa_s->own_scan_running = 0;
  2810. wpa_s->radio->external_scan_running = 0;
  2811. radio_work_check_next(wpa_s);
  2812. break;
  2813. #endif /* CONFIG_NO_SCAN_PROCESSING */
  2814. case EVENT_ASSOCINFO:
  2815. wpa_supplicant_event_associnfo(wpa_s, data);
  2816. break;
  2817. case EVENT_INTERFACE_STATUS:
  2818. wpa_supplicant_event_interface_status(wpa_s, data);
  2819. break;
  2820. case EVENT_PMKID_CANDIDATE:
  2821. wpa_supplicant_event_pmkid_candidate(wpa_s, data);
  2822. break;
  2823. #ifdef CONFIG_PEERKEY
  2824. case EVENT_STKSTART:
  2825. wpa_supplicant_event_stkstart(wpa_s, data);
  2826. break;
  2827. #endif /* CONFIG_PEERKEY */
  2828. #ifdef CONFIG_TDLS
  2829. case EVENT_TDLS:
  2830. wpa_supplicant_event_tdls(wpa_s, data);
  2831. break;
  2832. #endif /* CONFIG_TDLS */
  2833. #ifdef CONFIG_WNM
  2834. case EVENT_WNM:
  2835. wpa_supplicant_event_wnm(wpa_s, data);
  2836. break;
  2837. #endif /* CONFIG_WNM */
  2838. #ifdef CONFIG_IEEE80211R
  2839. case EVENT_FT_RESPONSE:
  2840. wpa_supplicant_event_ft_response(wpa_s, data);
  2841. break;
  2842. #endif /* CONFIG_IEEE80211R */
  2843. #ifdef CONFIG_IBSS_RSN
  2844. case EVENT_IBSS_RSN_START:
  2845. wpa_supplicant_event_ibss_rsn_start(wpa_s, data);
  2846. break;
  2847. #endif /* CONFIG_IBSS_RSN */
  2848. case EVENT_ASSOC_REJECT:
  2849. if (data->assoc_reject.bssid)
  2850. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_ASSOC_REJECT
  2851. "bssid=" MACSTR " status_code=%u",
  2852. MAC2STR(data->assoc_reject.bssid),
  2853. data->assoc_reject.status_code);
  2854. else
  2855. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_ASSOC_REJECT
  2856. "status_code=%u",
  2857. data->assoc_reject.status_code);
  2858. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  2859. sme_event_assoc_reject(wpa_s, data);
  2860. else {
  2861. const u8 *bssid = data->assoc_reject.bssid;
  2862. if (bssid == NULL || is_zero_ether_addr(bssid))
  2863. bssid = wpa_s->pending_bssid;
  2864. wpas_connection_failed(wpa_s, bssid);
  2865. wpa_supplicant_mark_disassoc(wpa_s);
  2866. }
  2867. break;
  2868. case EVENT_AUTH_TIMED_OUT:
  2869. /* It is possible to get this event from earlier connection */
  2870. if (wpa_s->current_ssid &&
  2871. wpa_s->current_ssid->mode == WPAS_MODE_MESH) {
  2872. wpa_dbg(wpa_s, MSG_DEBUG,
  2873. "Ignore AUTH_TIMED_OUT in mesh configuration");
  2874. break;
  2875. }
  2876. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  2877. sme_event_auth_timed_out(wpa_s, data);
  2878. break;
  2879. case EVENT_ASSOC_TIMED_OUT:
  2880. /* It is possible to get this event from earlier connection */
  2881. if (wpa_s->current_ssid &&
  2882. wpa_s->current_ssid->mode == WPAS_MODE_MESH) {
  2883. wpa_dbg(wpa_s, MSG_DEBUG,
  2884. "Ignore ASSOC_TIMED_OUT in mesh configuration");
  2885. break;
  2886. }
  2887. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  2888. sme_event_assoc_timed_out(wpa_s, data);
  2889. break;
  2890. case EVENT_TX_STATUS:
  2891. wpa_dbg(wpa_s, MSG_DEBUG, "EVENT_TX_STATUS dst=" MACSTR
  2892. " type=%d stype=%d",
  2893. MAC2STR(data->tx_status.dst),
  2894. data->tx_status.type, data->tx_status.stype);
  2895. #ifdef CONFIG_AP
  2896. if (wpa_s->ap_iface == NULL) {
  2897. #ifdef CONFIG_OFFCHANNEL
  2898. if (data->tx_status.type == WLAN_FC_TYPE_MGMT &&
  2899. data->tx_status.stype == WLAN_FC_STYPE_ACTION)
  2900. offchannel_send_action_tx_status(
  2901. wpa_s, data->tx_status.dst,
  2902. data->tx_status.data,
  2903. data->tx_status.data_len,
  2904. data->tx_status.ack ?
  2905. OFFCHANNEL_SEND_ACTION_SUCCESS :
  2906. OFFCHANNEL_SEND_ACTION_NO_ACK);
  2907. #endif /* CONFIG_OFFCHANNEL */
  2908. break;
  2909. }
  2910. #endif /* CONFIG_AP */
  2911. #ifdef CONFIG_OFFCHANNEL
  2912. wpa_dbg(wpa_s, MSG_DEBUG, "EVENT_TX_STATUS pending_dst="
  2913. MACSTR, MAC2STR(wpa_s->parent->pending_action_dst));
  2914. /*
  2915. * Catch TX status events for Action frames we sent via group
  2916. * interface in GO mode.
  2917. */
  2918. if (data->tx_status.type == WLAN_FC_TYPE_MGMT &&
  2919. data->tx_status.stype == WLAN_FC_STYPE_ACTION &&
  2920. os_memcmp(wpa_s->parent->pending_action_dst,
  2921. data->tx_status.dst, ETH_ALEN) == 0) {
  2922. offchannel_send_action_tx_status(
  2923. wpa_s->parent, data->tx_status.dst,
  2924. data->tx_status.data,
  2925. data->tx_status.data_len,
  2926. data->tx_status.ack ?
  2927. OFFCHANNEL_SEND_ACTION_SUCCESS :
  2928. OFFCHANNEL_SEND_ACTION_NO_ACK);
  2929. break;
  2930. }
  2931. #endif /* CONFIG_OFFCHANNEL */
  2932. #ifdef CONFIG_AP
  2933. switch (data->tx_status.type) {
  2934. case WLAN_FC_TYPE_MGMT:
  2935. ap_mgmt_tx_cb(wpa_s, data->tx_status.data,
  2936. data->tx_status.data_len,
  2937. data->tx_status.stype,
  2938. data->tx_status.ack);
  2939. break;
  2940. case WLAN_FC_TYPE_DATA:
  2941. ap_tx_status(wpa_s, data->tx_status.dst,
  2942. data->tx_status.data,
  2943. data->tx_status.data_len,
  2944. data->tx_status.ack);
  2945. break;
  2946. }
  2947. #endif /* CONFIG_AP */
  2948. break;
  2949. #ifdef CONFIG_AP
  2950. case EVENT_EAPOL_TX_STATUS:
  2951. ap_eapol_tx_status(wpa_s, data->eapol_tx_status.dst,
  2952. data->eapol_tx_status.data,
  2953. data->eapol_tx_status.data_len,
  2954. data->eapol_tx_status.ack);
  2955. break;
  2956. case EVENT_DRIVER_CLIENT_POLL_OK:
  2957. ap_client_poll_ok(wpa_s, data->client_poll.addr);
  2958. break;
  2959. case EVENT_RX_FROM_UNKNOWN:
  2960. if (wpa_s->ap_iface == NULL)
  2961. break;
  2962. ap_rx_from_unknown_sta(wpa_s, data->rx_from_unknown.addr,
  2963. data->rx_from_unknown.wds);
  2964. break;
  2965. case EVENT_CH_SWITCH:
  2966. if (!data)
  2967. break;
  2968. if (!wpa_s->ap_iface) {
  2969. wpa_dbg(wpa_s, MSG_DEBUG, "AP: Ignore channel switch "
  2970. "event in non-AP mode");
  2971. break;
  2972. }
  2973. wpas_ap_ch_switch(wpa_s, data->ch_switch.freq,
  2974. data->ch_switch.ht_enabled,
  2975. data->ch_switch.ch_offset,
  2976. data->ch_switch.ch_width,
  2977. data->ch_switch.cf1,
  2978. data->ch_switch.cf2);
  2979. break;
  2980. #ifdef NEED_AP_MLME
  2981. case EVENT_DFS_RADAR_DETECTED:
  2982. if (data)
  2983. wpas_event_dfs_radar_detected(wpa_s, &data->dfs_event);
  2984. break;
  2985. case EVENT_DFS_CAC_STARTED:
  2986. if (data)
  2987. wpas_event_dfs_cac_started(wpa_s, &data->dfs_event);
  2988. break;
  2989. case EVENT_DFS_CAC_FINISHED:
  2990. if (data)
  2991. wpas_event_dfs_cac_finished(wpa_s, &data->dfs_event);
  2992. break;
  2993. case EVENT_DFS_CAC_ABORTED:
  2994. if (data)
  2995. wpas_event_dfs_cac_aborted(wpa_s, &data->dfs_event);
  2996. break;
  2997. case EVENT_DFS_NOP_FINISHED:
  2998. if (data)
  2999. wpas_event_dfs_cac_nop_finished(wpa_s,
  3000. &data->dfs_event);
  3001. break;
  3002. #endif /* NEED_AP_MLME */
  3003. #endif /* CONFIG_AP */
  3004. case EVENT_RX_MGMT: {
  3005. u16 fc, stype;
  3006. const struct ieee80211_mgmt *mgmt;
  3007. #ifdef CONFIG_TESTING_OPTIONS
  3008. if (wpa_s->ext_mgmt_frame_handling) {
  3009. struct rx_mgmt *rx = &data->rx_mgmt;
  3010. size_t hex_len = 2 * rx->frame_len + 1;
  3011. char *hex = os_malloc(hex_len);
  3012. if (hex) {
  3013. wpa_snprintf_hex(hex, hex_len,
  3014. rx->frame, rx->frame_len);
  3015. wpa_msg(wpa_s, MSG_INFO, "MGMT-RX freq=%d datarate=%u ssi_signal=%d %s",
  3016. rx->freq, rx->datarate, rx->ssi_signal,
  3017. hex);
  3018. os_free(hex);
  3019. }
  3020. break;
  3021. }
  3022. #endif /* CONFIG_TESTING_OPTIONS */
  3023. mgmt = (const struct ieee80211_mgmt *)
  3024. data->rx_mgmt.frame;
  3025. fc = le_to_host16(mgmt->frame_control);
  3026. stype = WLAN_FC_GET_STYPE(fc);
  3027. #ifdef CONFIG_AP
  3028. if (wpa_s->ap_iface == NULL) {
  3029. #endif /* CONFIG_AP */
  3030. #ifdef CONFIG_P2P
  3031. if (stype == WLAN_FC_STYPE_PROBE_REQ &&
  3032. data->rx_mgmt.frame_len > 24) {
  3033. const u8 *src = mgmt->sa;
  3034. const u8 *ie = mgmt->u.probe_req.variable;
  3035. size_t ie_len = data->rx_mgmt.frame_len -
  3036. (mgmt->u.probe_req.variable -
  3037. data->rx_mgmt.frame);
  3038. wpas_p2p_probe_req_rx(
  3039. wpa_s, src, mgmt->da,
  3040. mgmt->bssid, ie, ie_len,
  3041. data->rx_mgmt.freq,
  3042. data->rx_mgmt.ssi_signal);
  3043. break;
  3044. }
  3045. #endif /* CONFIG_P2P */
  3046. #ifdef CONFIG_IBSS_RSN
  3047. if (wpa_s->current_ssid &&
  3048. wpa_s->current_ssid->mode == WPAS_MODE_IBSS &&
  3049. stype == WLAN_FC_STYPE_AUTH &&
  3050. data->rx_mgmt.frame_len >= 30) {
  3051. wpa_supplicant_event_ibss_auth(wpa_s, data);
  3052. break;
  3053. }
  3054. #endif /* CONFIG_IBSS_RSN */
  3055. if (stype == WLAN_FC_STYPE_ACTION) {
  3056. wpas_event_rx_mgmt_action(
  3057. wpa_s, data->rx_mgmt.frame,
  3058. data->rx_mgmt.frame_len,
  3059. data->rx_mgmt.freq,
  3060. data->rx_mgmt.ssi_signal);
  3061. break;
  3062. }
  3063. if (wpa_s->ifmsh) {
  3064. mesh_mpm_mgmt_rx(wpa_s, &data->rx_mgmt);
  3065. break;
  3066. }
  3067. wpa_dbg(wpa_s, MSG_DEBUG, "AP: ignore received "
  3068. "management frame in non-AP mode");
  3069. break;
  3070. #ifdef CONFIG_AP
  3071. }
  3072. if (stype == WLAN_FC_STYPE_PROBE_REQ &&
  3073. data->rx_mgmt.frame_len > 24) {
  3074. const u8 *ie = mgmt->u.probe_req.variable;
  3075. size_t ie_len = data->rx_mgmt.frame_len -
  3076. (mgmt->u.probe_req.variable -
  3077. data->rx_mgmt.frame);
  3078. wpas_notify_preq(wpa_s, mgmt->sa, mgmt->da,
  3079. mgmt->bssid, ie, ie_len,
  3080. data->rx_mgmt.ssi_signal);
  3081. }
  3082. ap_mgmt_rx(wpa_s, &data->rx_mgmt);
  3083. #endif /* CONFIG_AP */
  3084. break;
  3085. }
  3086. case EVENT_RX_PROBE_REQ:
  3087. if (data->rx_probe_req.sa == NULL ||
  3088. data->rx_probe_req.ie == NULL)
  3089. break;
  3090. #ifdef CONFIG_AP
  3091. if (wpa_s->ap_iface) {
  3092. hostapd_probe_req_rx(wpa_s->ap_iface->bss[0],
  3093. data->rx_probe_req.sa,
  3094. data->rx_probe_req.da,
  3095. data->rx_probe_req.bssid,
  3096. data->rx_probe_req.ie,
  3097. data->rx_probe_req.ie_len,
  3098. data->rx_probe_req.ssi_signal);
  3099. break;
  3100. }
  3101. #endif /* CONFIG_AP */
  3102. wpas_p2p_probe_req_rx(wpa_s, data->rx_probe_req.sa,
  3103. data->rx_probe_req.da,
  3104. data->rx_probe_req.bssid,
  3105. data->rx_probe_req.ie,
  3106. data->rx_probe_req.ie_len,
  3107. 0,
  3108. data->rx_probe_req.ssi_signal);
  3109. break;
  3110. case EVENT_REMAIN_ON_CHANNEL:
  3111. #ifdef CONFIG_OFFCHANNEL
  3112. offchannel_remain_on_channel_cb(
  3113. wpa_s, data->remain_on_channel.freq,
  3114. data->remain_on_channel.duration);
  3115. #endif /* CONFIG_OFFCHANNEL */
  3116. wpas_p2p_remain_on_channel_cb(
  3117. wpa_s, data->remain_on_channel.freq,
  3118. data->remain_on_channel.duration);
  3119. break;
  3120. case EVENT_CANCEL_REMAIN_ON_CHANNEL:
  3121. #ifdef CONFIG_OFFCHANNEL
  3122. offchannel_cancel_remain_on_channel_cb(
  3123. wpa_s, data->remain_on_channel.freq);
  3124. #endif /* CONFIG_OFFCHANNEL */
  3125. wpas_p2p_cancel_remain_on_channel_cb(
  3126. wpa_s, data->remain_on_channel.freq);
  3127. break;
  3128. case EVENT_EAPOL_RX:
  3129. wpa_supplicant_rx_eapol(wpa_s, data->eapol_rx.src,
  3130. data->eapol_rx.data,
  3131. data->eapol_rx.data_len);
  3132. break;
  3133. case EVENT_SIGNAL_CHANGE:
  3134. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_SIGNAL_CHANGE
  3135. "above=%d signal=%d noise=%d txrate=%d",
  3136. data->signal_change.above_threshold,
  3137. data->signal_change.current_signal,
  3138. data->signal_change.current_noise,
  3139. data->signal_change.current_txrate);
  3140. wpa_bss_update_level(wpa_s->current_bss,
  3141. data->signal_change.current_signal);
  3142. bgscan_notify_signal_change(
  3143. wpa_s, data->signal_change.above_threshold,
  3144. data->signal_change.current_signal,
  3145. data->signal_change.current_noise,
  3146. data->signal_change.current_txrate);
  3147. break;
  3148. case EVENT_INTERFACE_ENABLED:
  3149. wpa_dbg(wpa_s, MSG_DEBUG, "Interface was enabled");
  3150. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
  3151. wpa_supplicant_update_mac_addr(wpa_s);
  3152. if (wpa_s->p2p_mgmt) {
  3153. wpa_supplicant_set_state(wpa_s,
  3154. WPA_DISCONNECTED);
  3155. break;
  3156. }
  3157. #ifdef CONFIG_AP
  3158. if (!wpa_s->ap_iface) {
  3159. wpa_supplicant_set_state(wpa_s,
  3160. WPA_DISCONNECTED);
  3161. wpa_s->scan_req = NORMAL_SCAN_REQ;
  3162. wpa_supplicant_req_scan(wpa_s, 0, 0);
  3163. } else
  3164. wpa_supplicant_set_state(wpa_s,
  3165. WPA_COMPLETED);
  3166. #else /* CONFIG_AP */
  3167. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  3168. wpa_supplicant_req_scan(wpa_s, 0, 0);
  3169. #endif /* CONFIG_AP */
  3170. }
  3171. break;
  3172. case EVENT_INTERFACE_DISABLED:
  3173. wpa_dbg(wpa_s, MSG_DEBUG, "Interface was disabled");
  3174. #ifdef CONFIG_P2P
  3175. if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO ||
  3176. (wpa_s->current_ssid && wpa_s->current_ssid->p2p_group &&
  3177. wpa_s->current_ssid->mode == WPAS_MODE_P2P_GO)) {
  3178. /*
  3179. * Mark interface disabled if this happens to end up not
  3180. * being removed as a separate P2P group interface.
  3181. */
  3182. wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
  3183. /*
  3184. * The interface was externally disabled. Remove
  3185. * it assuming an external entity will start a
  3186. * new session if needed.
  3187. */
  3188. if (wpa_s->current_ssid &&
  3189. wpa_s->current_ssid->p2p_group)
  3190. wpas_p2p_interface_unavailable(wpa_s);
  3191. else
  3192. wpas_p2p_disconnect(wpa_s);
  3193. /*
  3194. * wpa_s instance may have been freed, so must not use
  3195. * it here anymore.
  3196. */
  3197. break;
  3198. }
  3199. if (wpa_s->p2p_scan_work && wpa_s->global->p2p &&
  3200. p2p_in_progress(wpa_s->global->p2p) > 1) {
  3201. /* This radio work will be cancelled, so clear P2P
  3202. * state as well.
  3203. */
  3204. p2p_stop_find(wpa_s->global->p2p);
  3205. }
  3206. #endif /* CONFIG_P2P */
  3207. if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  3208. /*
  3209. * Indicate disconnection to keep ctrl_iface events
  3210. * consistent.
  3211. */
  3212. wpa_supplicant_event_disassoc(
  3213. wpa_s, WLAN_REASON_DEAUTH_LEAVING, 1);
  3214. }
  3215. wpa_supplicant_mark_disassoc(wpa_s);
  3216. radio_remove_works(wpa_s, NULL, 0);
  3217. wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
  3218. break;
  3219. case EVENT_CHANNEL_LIST_CHANGED:
  3220. wpa_supplicant_update_channel_list(
  3221. wpa_s, &data->channel_list_changed);
  3222. break;
  3223. case EVENT_INTERFACE_UNAVAILABLE:
  3224. wpas_p2p_interface_unavailable(wpa_s);
  3225. break;
  3226. case EVENT_BEST_CHANNEL:
  3227. wpa_dbg(wpa_s, MSG_DEBUG, "Best channel event received "
  3228. "(%d %d %d)",
  3229. data->best_chan.freq_24, data->best_chan.freq_5,
  3230. data->best_chan.freq_overall);
  3231. wpa_s->best_24_freq = data->best_chan.freq_24;
  3232. wpa_s->best_5_freq = data->best_chan.freq_5;
  3233. wpa_s->best_overall_freq = data->best_chan.freq_overall;
  3234. wpas_p2p_update_best_channels(wpa_s, data->best_chan.freq_24,
  3235. data->best_chan.freq_5,
  3236. data->best_chan.freq_overall);
  3237. break;
  3238. case EVENT_UNPROT_DEAUTH:
  3239. wpa_supplicant_event_unprot_deauth(wpa_s,
  3240. &data->unprot_deauth);
  3241. break;
  3242. case EVENT_UNPROT_DISASSOC:
  3243. wpa_supplicant_event_unprot_disassoc(wpa_s,
  3244. &data->unprot_disassoc);
  3245. break;
  3246. case EVENT_STATION_LOW_ACK:
  3247. #ifdef CONFIG_AP
  3248. if (wpa_s->ap_iface && data)
  3249. hostapd_event_sta_low_ack(wpa_s->ap_iface->bss[0],
  3250. data->low_ack.addr);
  3251. #endif /* CONFIG_AP */
  3252. #ifdef CONFIG_TDLS
  3253. if (data)
  3254. wpa_tdls_disable_unreachable_link(wpa_s->wpa,
  3255. data->low_ack.addr);
  3256. #endif /* CONFIG_TDLS */
  3257. break;
  3258. case EVENT_IBSS_PEER_LOST:
  3259. #ifdef CONFIG_IBSS_RSN
  3260. ibss_rsn_stop(wpa_s->ibss_rsn, data->ibss_peer_lost.peer);
  3261. #endif /* CONFIG_IBSS_RSN */
  3262. break;
  3263. case EVENT_DRIVER_GTK_REKEY:
  3264. if (os_memcmp(data->driver_gtk_rekey.bssid,
  3265. wpa_s->bssid, ETH_ALEN))
  3266. break;
  3267. if (!wpa_s->wpa)
  3268. break;
  3269. wpa_sm_update_replay_ctr(wpa_s->wpa,
  3270. data->driver_gtk_rekey.replay_ctr);
  3271. break;
  3272. case EVENT_SCHED_SCAN_STOPPED:
  3273. wpa_s->pno = 0;
  3274. wpa_s->sched_scanning = 0;
  3275. resched = wpa_s->scanning;
  3276. wpa_supplicant_notify_scanning(wpa_s, 0);
  3277. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  3278. break;
  3279. /*
  3280. * Start a new sched scan to continue searching for more SSIDs
  3281. * either if timed out or PNO schedule scan is pending.
  3282. */
  3283. if (wpa_s->sched_scan_timed_out) {
  3284. wpa_supplicant_req_sched_scan(wpa_s);
  3285. } else if (wpa_s->pno_sched_pending) {
  3286. wpa_s->pno_sched_pending = 0;
  3287. wpas_start_pno(wpa_s);
  3288. } else if (resched) {
  3289. wpa_supplicant_req_scan(wpa_s, 0, 0);
  3290. }
  3291. break;
  3292. case EVENT_WPS_BUTTON_PUSHED:
  3293. #ifdef CONFIG_WPS
  3294. wpas_wps_start_pbc(wpa_s, NULL, 0);
  3295. #endif /* CONFIG_WPS */
  3296. break;
  3297. case EVENT_AVOID_FREQUENCIES:
  3298. wpa_supplicant_notify_avoid_freq(wpa_s, data);
  3299. break;
  3300. case EVENT_CONNECT_FAILED_REASON:
  3301. #ifdef CONFIG_AP
  3302. if (!wpa_s->ap_iface || !data)
  3303. break;
  3304. hostapd_event_connect_failed_reason(
  3305. wpa_s->ap_iface->bss[0],
  3306. data->connect_failed_reason.addr,
  3307. data->connect_failed_reason.code);
  3308. #endif /* CONFIG_AP */
  3309. break;
  3310. case EVENT_NEW_PEER_CANDIDATE:
  3311. #ifdef CONFIG_MESH
  3312. if (!wpa_s->ifmsh || !data)
  3313. break;
  3314. wpa_mesh_notify_peer(wpa_s, data->mesh_peer.peer,
  3315. data->mesh_peer.ies,
  3316. data->mesh_peer.ie_len);
  3317. #endif /* CONFIG_MESH */
  3318. break;
  3319. default:
  3320. wpa_msg(wpa_s, MSG_INFO, "Unknown event %d", event);
  3321. break;
  3322. }
  3323. }