events.c 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759
  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[MAX_SSID_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. if (wpa_s->last_scan_res == NULL ||
  897. wpa_s->last_scan_res_used == 0)
  898. return NULL; /* no scan results from last update */
  899. if (wpa_s->next_ssid) {
  900. struct wpa_ssid *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. return selected;
  934. }
  935. static void wpa_supplicant_req_new_scan(struct wpa_supplicant *wpa_s,
  936. int timeout_sec, int timeout_usec)
  937. {
  938. if (!wpa_supplicant_enabled_networks(wpa_s)) {
  939. /*
  940. * No networks are enabled; short-circuit request so
  941. * we don't wait timeout seconds before transitioning
  942. * to INACTIVE state.
  943. */
  944. wpa_dbg(wpa_s, MSG_DEBUG, "Short-circuit new scan request "
  945. "since there are no enabled networks");
  946. wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
  947. return;
  948. }
  949. wpa_s->scan_for_connection = 1;
  950. wpa_supplicant_req_scan(wpa_s, timeout_sec, timeout_usec);
  951. }
  952. int wpa_supplicant_connect(struct wpa_supplicant *wpa_s,
  953. struct wpa_bss *selected,
  954. struct wpa_ssid *ssid)
  955. {
  956. if (wpas_wps_scan_pbc_overlap(wpa_s, selected, ssid)) {
  957. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_OVERLAP
  958. "PBC session overlap");
  959. #ifdef CONFIG_P2P
  960. if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
  961. wpa_s->p2p_in_provisioning) {
  962. eloop_register_timeout(0, 0, wpas_p2p_pbc_overlap_cb,
  963. wpa_s, NULL);
  964. return -1;
  965. }
  966. #endif /* CONFIG_P2P */
  967. #ifdef CONFIG_WPS
  968. wpas_wps_cancel(wpa_s);
  969. #endif /* CONFIG_WPS */
  970. return -1;
  971. }
  972. wpa_msg(wpa_s, MSG_DEBUG,
  973. "Considering connect request: reassociate: %d selected: "
  974. MACSTR " bssid: " MACSTR " pending: " MACSTR
  975. " wpa_state: %s ssid=%p current_ssid=%p",
  976. wpa_s->reassociate, MAC2STR(selected->bssid),
  977. MAC2STR(wpa_s->bssid), MAC2STR(wpa_s->pending_bssid),
  978. wpa_supplicant_state_txt(wpa_s->wpa_state),
  979. ssid, wpa_s->current_ssid);
  980. /*
  981. * Do not trigger new association unless the BSSID has changed or if
  982. * reassociation is requested. If we are in process of associating with
  983. * the selected BSSID, do not trigger new attempt.
  984. */
  985. if (wpa_s->reassociate ||
  986. (os_memcmp(selected->bssid, wpa_s->bssid, ETH_ALEN) != 0 &&
  987. ((wpa_s->wpa_state != WPA_ASSOCIATING &&
  988. wpa_s->wpa_state != WPA_AUTHENTICATING) ||
  989. (!is_zero_ether_addr(wpa_s->pending_bssid) &&
  990. os_memcmp(selected->bssid, wpa_s->pending_bssid, ETH_ALEN) !=
  991. 0) ||
  992. (is_zero_ether_addr(wpa_s->pending_bssid) &&
  993. ssid != wpa_s->current_ssid)))) {
  994. if (wpa_supplicant_scard_init(wpa_s, ssid)) {
  995. wpa_supplicant_req_new_scan(wpa_s, 10, 0);
  996. return 0;
  997. }
  998. wpa_msg(wpa_s, MSG_DEBUG, "Request association with " MACSTR,
  999. MAC2STR(selected->bssid));
  1000. wpa_supplicant_associate(wpa_s, selected, ssid);
  1001. } else {
  1002. wpa_dbg(wpa_s, MSG_DEBUG, "Already associated or trying to "
  1003. "connect with the selected AP");
  1004. }
  1005. return 0;
  1006. }
  1007. static struct wpa_ssid *
  1008. wpa_supplicant_pick_new_network(struct wpa_supplicant *wpa_s)
  1009. {
  1010. int prio;
  1011. struct wpa_ssid *ssid;
  1012. for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
  1013. for (ssid = wpa_s->conf->pssid[prio]; ssid; ssid = ssid->pnext)
  1014. {
  1015. if (wpas_network_disabled(wpa_s, ssid))
  1016. continue;
  1017. if (ssid->mode == IEEE80211_MODE_IBSS ||
  1018. ssid->mode == IEEE80211_MODE_AP ||
  1019. ssid->mode == IEEE80211_MODE_MESH)
  1020. return ssid;
  1021. }
  1022. }
  1023. return NULL;
  1024. }
  1025. /* TODO: move the rsn_preauth_scan_result*() to be called from notify.c based
  1026. * on BSS added and BSS changed events */
  1027. static void wpa_supplicant_rsn_preauth_scan_results(
  1028. struct wpa_supplicant *wpa_s)
  1029. {
  1030. struct wpa_bss *bss;
  1031. if (rsn_preauth_scan_results(wpa_s->wpa) < 0)
  1032. return;
  1033. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  1034. const u8 *ssid, *rsn;
  1035. ssid = wpa_bss_get_ie(bss, WLAN_EID_SSID);
  1036. if (ssid == NULL)
  1037. continue;
  1038. rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  1039. if (rsn == NULL)
  1040. continue;
  1041. rsn_preauth_scan_result(wpa_s->wpa, bss->bssid, ssid, rsn);
  1042. }
  1043. }
  1044. static int wpa_supplicant_need_to_roam(struct wpa_supplicant *wpa_s,
  1045. struct wpa_bss *selected,
  1046. struct wpa_ssid *ssid)
  1047. {
  1048. struct wpa_bss *current_bss = NULL;
  1049. int min_diff;
  1050. if (wpa_s->reassociate)
  1051. return 1; /* explicit request to reassociate */
  1052. if (wpa_s->wpa_state < WPA_ASSOCIATED)
  1053. return 1; /* we are not associated; continue */
  1054. if (wpa_s->current_ssid == NULL)
  1055. return 1; /* unknown current SSID */
  1056. if (wpa_s->current_ssid != ssid)
  1057. return 1; /* different network block */
  1058. if (wpas_driver_bss_selection(wpa_s))
  1059. return 0; /* Driver-based roaming */
  1060. if (wpa_s->current_ssid->ssid)
  1061. current_bss = wpa_bss_get(wpa_s, wpa_s->bssid,
  1062. wpa_s->current_ssid->ssid,
  1063. wpa_s->current_ssid->ssid_len);
  1064. if (!current_bss)
  1065. current_bss = wpa_bss_get_bssid(wpa_s, wpa_s->bssid);
  1066. if (!current_bss)
  1067. return 1; /* current BSS not seen in scan results */
  1068. if (current_bss == selected)
  1069. return 0;
  1070. if (selected->last_update_idx > current_bss->last_update_idx)
  1071. return 1; /* current BSS not seen in the last scan */
  1072. #ifndef CONFIG_NO_ROAMING
  1073. wpa_dbg(wpa_s, MSG_DEBUG, "Considering within-ESS reassociation");
  1074. wpa_dbg(wpa_s, MSG_DEBUG, "Current BSS: " MACSTR
  1075. " level=%d snr=%d est_throughput=%u",
  1076. MAC2STR(current_bss->bssid), current_bss->level,
  1077. current_bss->snr, current_bss->est_throughput);
  1078. wpa_dbg(wpa_s, MSG_DEBUG, "Selected BSS: " MACSTR
  1079. " level=%d snr=%d est_throughput=%u",
  1080. MAC2STR(selected->bssid), selected->level,
  1081. selected->snr, selected->est_throughput);
  1082. if (wpa_s->current_ssid->bssid_set &&
  1083. os_memcmp(selected->bssid, wpa_s->current_ssid->bssid, ETH_ALEN) ==
  1084. 0) {
  1085. wpa_dbg(wpa_s, MSG_DEBUG, "Allow reassociation - selected BSS "
  1086. "has preferred BSSID");
  1087. return 1;
  1088. }
  1089. if (selected->est_throughput > current_bss->est_throughput + 5000) {
  1090. wpa_dbg(wpa_s, MSG_DEBUG,
  1091. "Allow reassociation - selected BSS has better estimated throughput");
  1092. return 1;
  1093. }
  1094. if (current_bss->level < 0 && current_bss->level > selected->level) {
  1095. wpa_dbg(wpa_s, MSG_DEBUG, "Skip roam - Current BSS has better "
  1096. "signal level");
  1097. return 0;
  1098. }
  1099. min_diff = 2;
  1100. if (current_bss->level < 0) {
  1101. if (current_bss->level < -85)
  1102. min_diff = 1;
  1103. else if (current_bss->level < -80)
  1104. min_diff = 2;
  1105. else if (current_bss->level < -75)
  1106. min_diff = 3;
  1107. else if (current_bss->level < -70)
  1108. min_diff = 4;
  1109. else
  1110. min_diff = 5;
  1111. }
  1112. if (abs(current_bss->level - selected->level) < min_diff) {
  1113. wpa_dbg(wpa_s, MSG_DEBUG, "Skip roam - too small difference "
  1114. "in signal level");
  1115. return 0;
  1116. }
  1117. return 1;
  1118. #else /* CONFIG_NO_ROAMING */
  1119. return 0;
  1120. #endif /* CONFIG_NO_ROAMING */
  1121. }
  1122. /* Return != 0 if no scan results could be fetched or if scan results should not
  1123. * be shared with other virtual interfaces. */
  1124. static int _wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
  1125. union wpa_event_data *data,
  1126. int own_request)
  1127. {
  1128. struct wpa_scan_results *scan_res = NULL;
  1129. int ret = 0;
  1130. int ap = 0;
  1131. #ifndef CONFIG_NO_RANDOM_POOL
  1132. size_t i, num;
  1133. #endif /* CONFIG_NO_RANDOM_POOL */
  1134. #ifdef CONFIG_AP
  1135. if (wpa_s->ap_iface)
  1136. ap = 1;
  1137. #endif /* CONFIG_AP */
  1138. wpa_supplicant_notify_scanning(wpa_s, 0);
  1139. scan_res = wpa_supplicant_get_scan_results(wpa_s,
  1140. data ? &data->scan_info :
  1141. NULL, 1);
  1142. if (scan_res == NULL) {
  1143. if (wpa_s->conf->ap_scan == 2 || ap ||
  1144. wpa_s->scan_res_handler == scan_only_handler)
  1145. return -1;
  1146. if (!own_request)
  1147. return -1;
  1148. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to get scan results - try "
  1149. "scanning again");
  1150. wpa_supplicant_req_new_scan(wpa_s, 1, 0);
  1151. ret = -1;
  1152. goto scan_work_done;
  1153. }
  1154. #ifndef CONFIG_NO_RANDOM_POOL
  1155. num = scan_res->num;
  1156. if (num > 10)
  1157. num = 10;
  1158. for (i = 0; i < num; i++) {
  1159. u8 buf[5];
  1160. struct wpa_scan_res *res = scan_res->res[i];
  1161. buf[0] = res->bssid[5];
  1162. buf[1] = res->qual & 0xff;
  1163. buf[2] = res->noise & 0xff;
  1164. buf[3] = res->level & 0xff;
  1165. buf[4] = res->tsf & 0xff;
  1166. random_add_randomness(buf, sizeof(buf));
  1167. }
  1168. #endif /* CONFIG_NO_RANDOM_POOL */
  1169. if (own_request && wpa_s->scan_res_handler &&
  1170. (wpa_s->own_scan_running || !wpa_s->radio->external_scan_running)) {
  1171. void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
  1172. struct wpa_scan_results *scan_res);
  1173. scan_res_handler = wpa_s->scan_res_handler;
  1174. wpa_s->scan_res_handler = NULL;
  1175. scan_res_handler(wpa_s, scan_res);
  1176. ret = -2;
  1177. goto scan_work_done;
  1178. }
  1179. if (ap) {
  1180. wpa_dbg(wpa_s, MSG_DEBUG, "Ignore scan results in AP mode");
  1181. #ifdef CONFIG_AP
  1182. if (wpa_s->ap_iface->scan_cb)
  1183. wpa_s->ap_iface->scan_cb(wpa_s->ap_iface);
  1184. #endif /* CONFIG_AP */
  1185. goto scan_work_done;
  1186. }
  1187. wpa_dbg(wpa_s, MSG_DEBUG, "New scan results available (own=%u ext=%u)",
  1188. wpa_s->own_scan_running, wpa_s->radio->external_scan_running);
  1189. if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
  1190. wpa_s->manual_scan_use_id && wpa_s->own_scan_running) {
  1191. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS "id=%u",
  1192. wpa_s->manual_scan_id);
  1193. wpa_s->manual_scan_use_id = 0;
  1194. } else {
  1195. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS);
  1196. }
  1197. wpas_notify_scan_results(wpa_s);
  1198. wpas_notify_scan_done(wpa_s, 1);
  1199. if (!wpa_s->own_scan_running && wpa_s->radio->external_scan_running) {
  1200. wpa_dbg(wpa_s, MSG_DEBUG, "Do not use results from externally requested scan operation for network selection");
  1201. wpa_scan_results_free(scan_res);
  1202. return 0;
  1203. }
  1204. if (wnm_scan_process(wpa_s, 1) > 0)
  1205. goto scan_work_done;
  1206. if (sme_proc_obss_scan(wpa_s) > 0)
  1207. goto scan_work_done;
  1208. if ((wpa_s->conf->ap_scan == 2 && !wpas_wps_searching(wpa_s)))
  1209. goto scan_work_done;
  1210. if (autoscan_notify_scan(wpa_s, scan_res))
  1211. goto scan_work_done;
  1212. if (wpa_s->disconnected) {
  1213. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  1214. goto scan_work_done;
  1215. }
  1216. if (!wpas_driver_bss_selection(wpa_s) &&
  1217. bgscan_notify_scan(wpa_s, scan_res) == 1)
  1218. goto scan_work_done;
  1219. wpas_wps_update_ap_info(wpa_s, scan_res);
  1220. wpa_scan_results_free(scan_res);
  1221. if (wpa_s->scan_work) {
  1222. struct wpa_radio_work *work = wpa_s->scan_work;
  1223. wpa_s->scan_work = NULL;
  1224. radio_work_done(work);
  1225. }
  1226. return wpas_select_network_from_last_scan(wpa_s, 1, own_request);
  1227. scan_work_done:
  1228. wpa_scan_results_free(scan_res);
  1229. if (wpa_s->scan_work) {
  1230. struct wpa_radio_work *work = wpa_s->scan_work;
  1231. wpa_s->scan_work = NULL;
  1232. radio_work_done(work);
  1233. }
  1234. return ret;
  1235. }
  1236. static int wpas_select_network_from_last_scan(struct wpa_supplicant *wpa_s,
  1237. int new_scan, int own_request)
  1238. {
  1239. struct wpa_bss *selected;
  1240. struct wpa_ssid *ssid = NULL;
  1241. int time_to_reenable = wpas_reenabled_network_time(wpa_s);
  1242. if (time_to_reenable > 0) {
  1243. wpa_dbg(wpa_s, MSG_DEBUG,
  1244. "Postpone network selection by %d seconds since all networks are disabled",
  1245. time_to_reenable);
  1246. eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
  1247. eloop_register_timeout(time_to_reenable, 0,
  1248. wpas_network_reenabled, wpa_s, NULL);
  1249. return 0;
  1250. }
  1251. if (wpa_s->p2p_mgmt)
  1252. return 0; /* no normal connection on p2p_mgmt interface */
  1253. selected = wpa_supplicant_pick_network(wpa_s, &ssid);
  1254. if (selected) {
  1255. int skip;
  1256. skip = !wpa_supplicant_need_to_roam(wpa_s, selected, ssid);
  1257. if (skip) {
  1258. if (new_scan)
  1259. wpa_supplicant_rsn_preauth_scan_results(wpa_s);
  1260. return 0;
  1261. }
  1262. if (wpa_supplicant_connect(wpa_s, selected, ssid) < 0) {
  1263. wpa_dbg(wpa_s, MSG_DEBUG, "Connect failed");
  1264. return -1;
  1265. }
  1266. if (new_scan)
  1267. wpa_supplicant_rsn_preauth_scan_results(wpa_s);
  1268. /*
  1269. * Do not notify other virtual radios of scan results since we do not
  1270. * want them to start other associations at the same time.
  1271. */
  1272. return 1;
  1273. } else {
  1274. #ifdef CONFIG_MESH
  1275. if (wpa_s->ifmsh) {
  1276. wpa_msg(wpa_s, MSG_INFO,
  1277. "Avoiding join because we already joined a mesh group");
  1278. return 0;
  1279. }
  1280. #endif /* CONFIG_MESH */
  1281. wpa_dbg(wpa_s, MSG_DEBUG, "No suitable network found");
  1282. ssid = wpa_supplicant_pick_new_network(wpa_s);
  1283. if (ssid) {
  1284. wpa_dbg(wpa_s, MSG_DEBUG, "Setup a new network");
  1285. wpa_supplicant_associate(wpa_s, NULL, ssid);
  1286. if (new_scan)
  1287. wpa_supplicant_rsn_preauth_scan_results(wpa_s);
  1288. } else if (own_request) {
  1289. /*
  1290. * No SSID found. If SCAN results are as a result of
  1291. * own scan request and not due to a scan request on
  1292. * another shared interface, try another scan.
  1293. */
  1294. int timeout_sec = wpa_s->scan_interval;
  1295. int timeout_usec = 0;
  1296. #ifdef CONFIG_P2P
  1297. int res;
  1298. res = wpas_p2p_scan_no_go_seen(wpa_s);
  1299. if (res == 2)
  1300. return 2;
  1301. if (res == 1)
  1302. return 0;
  1303. if (wpa_s->p2p_in_provisioning ||
  1304. wpa_s->show_group_started ||
  1305. wpa_s->p2p_in_invitation) {
  1306. /*
  1307. * Use shorter wait during P2P Provisioning
  1308. * state and during P2P join-a-group operation
  1309. * to speed up group formation.
  1310. */
  1311. timeout_sec = 0;
  1312. timeout_usec = 250000;
  1313. wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
  1314. timeout_usec);
  1315. return 0;
  1316. }
  1317. #endif /* CONFIG_P2P */
  1318. #ifdef CONFIG_INTERWORKING
  1319. if (wpa_s->conf->auto_interworking &&
  1320. wpa_s->conf->interworking &&
  1321. wpa_s->conf->cred) {
  1322. wpa_dbg(wpa_s, MSG_DEBUG, "Interworking: "
  1323. "start ANQP fetch since no matching "
  1324. "networks found");
  1325. wpa_s->network_select = 1;
  1326. wpa_s->auto_network_select = 1;
  1327. interworking_start_fetch_anqp(wpa_s);
  1328. return 1;
  1329. }
  1330. #endif /* CONFIG_INTERWORKING */
  1331. #ifdef CONFIG_WPS
  1332. if (wpa_s->after_wps > 0 || wpas_wps_searching(wpa_s)) {
  1333. wpa_dbg(wpa_s, MSG_DEBUG, "Use shorter wait during WPS processing");
  1334. timeout_sec = 0;
  1335. timeout_usec = 500000;
  1336. wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
  1337. timeout_usec);
  1338. return 0;
  1339. }
  1340. #endif /* CONFIG_WPS */
  1341. if (wpa_supplicant_req_sched_scan(wpa_s))
  1342. wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
  1343. timeout_usec);
  1344. }
  1345. }
  1346. return 0;
  1347. }
  1348. static int wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
  1349. union wpa_event_data *data)
  1350. {
  1351. struct wpa_supplicant *ifs;
  1352. int res;
  1353. res = _wpa_supplicant_event_scan_results(wpa_s, data, 1);
  1354. if (res == 2) {
  1355. /*
  1356. * Interface may have been removed, so must not dereference
  1357. * wpa_s after this.
  1358. */
  1359. return 1;
  1360. }
  1361. if (res != 0) {
  1362. /*
  1363. * If no scan results could be fetched, then no need to
  1364. * notify those interfaces that did not actually request
  1365. * this scan. Similarly, if scan results started a new operation on this
  1366. * interface, do not notify other interfaces to avoid concurrent
  1367. * operations during a connection attempt.
  1368. */
  1369. return 0;
  1370. }
  1371. /*
  1372. * Check other interfaces to see if they share the same radio. If
  1373. * so, they get updated with this same scan info.
  1374. */
  1375. dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
  1376. radio_list) {
  1377. if (ifs != wpa_s) {
  1378. wpa_printf(MSG_DEBUG, "%s: Updating scan results from "
  1379. "sibling", ifs->ifname);
  1380. _wpa_supplicant_event_scan_results(ifs, data, 0);
  1381. }
  1382. }
  1383. return 0;
  1384. }
  1385. #endif /* CONFIG_NO_SCAN_PROCESSING */
  1386. int wpa_supplicant_fast_associate(struct wpa_supplicant *wpa_s)
  1387. {
  1388. #ifdef CONFIG_NO_SCAN_PROCESSING
  1389. return -1;
  1390. #else /* CONFIG_NO_SCAN_PROCESSING */
  1391. struct os_reltime now;
  1392. if (wpa_s->last_scan_res_used <= 0)
  1393. return -1;
  1394. os_get_reltime(&now);
  1395. if (os_reltime_expired(&now, &wpa_s->last_scan, 5)) {
  1396. wpa_printf(MSG_DEBUG, "Fast associate: Old scan results");
  1397. return -1;
  1398. }
  1399. return wpas_select_network_from_last_scan(wpa_s, 0, 1);
  1400. #endif /* CONFIG_NO_SCAN_PROCESSING */
  1401. }
  1402. #ifdef CONFIG_WNM
  1403. static void wnm_bss_keep_alive(void *eloop_ctx, void *sock_ctx)
  1404. {
  1405. struct wpa_supplicant *wpa_s = eloop_ctx;
  1406. if (wpa_s->wpa_state < WPA_ASSOCIATED)
  1407. return;
  1408. if (!wpa_s->no_keep_alive) {
  1409. wpa_printf(MSG_DEBUG, "WNM: Send keep-alive to AP " MACSTR,
  1410. MAC2STR(wpa_s->bssid));
  1411. /* TODO: could skip this if normal data traffic has been sent */
  1412. /* TODO: Consider using some more appropriate data frame for
  1413. * this */
  1414. if (wpa_s->l2)
  1415. l2_packet_send(wpa_s->l2, wpa_s->bssid, 0x0800,
  1416. (u8 *) "", 0);
  1417. }
  1418. #ifdef CONFIG_SME
  1419. if (wpa_s->sme.bss_max_idle_period) {
  1420. unsigned int msec;
  1421. msec = wpa_s->sme.bss_max_idle_period * 1024; /* times 1000 */
  1422. if (msec > 100)
  1423. msec -= 100;
  1424. eloop_register_timeout(msec / 1000, msec % 1000 * 1000,
  1425. wnm_bss_keep_alive, wpa_s, NULL);
  1426. }
  1427. #endif /* CONFIG_SME */
  1428. }
  1429. static void wnm_process_assoc_resp(struct wpa_supplicant *wpa_s,
  1430. const u8 *ies, size_t ies_len)
  1431. {
  1432. struct ieee802_11_elems elems;
  1433. if (ies == NULL)
  1434. return;
  1435. if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed)
  1436. return;
  1437. #ifdef CONFIG_SME
  1438. if (elems.bss_max_idle_period) {
  1439. unsigned int msec;
  1440. wpa_s->sme.bss_max_idle_period =
  1441. WPA_GET_LE16(elems.bss_max_idle_period);
  1442. wpa_printf(MSG_DEBUG, "WNM: BSS Max Idle Period: %u (* 1000 "
  1443. "TU)%s", wpa_s->sme.bss_max_idle_period,
  1444. (elems.bss_max_idle_period[2] & 0x01) ?
  1445. " (protected keep-live required)" : "");
  1446. if (wpa_s->sme.bss_max_idle_period == 0)
  1447. wpa_s->sme.bss_max_idle_period = 1;
  1448. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) {
  1449. eloop_cancel_timeout(wnm_bss_keep_alive, wpa_s, NULL);
  1450. /* msec times 1000 */
  1451. msec = wpa_s->sme.bss_max_idle_period * 1024;
  1452. if (msec > 100)
  1453. msec -= 100;
  1454. eloop_register_timeout(msec / 1000, msec % 1000 * 1000,
  1455. wnm_bss_keep_alive, wpa_s,
  1456. NULL);
  1457. }
  1458. }
  1459. #endif /* CONFIG_SME */
  1460. }
  1461. #endif /* CONFIG_WNM */
  1462. void wnm_bss_keep_alive_deinit(struct wpa_supplicant *wpa_s)
  1463. {
  1464. #ifdef CONFIG_WNM
  1465. eloop_cancel_timeout(wnm_bss_keep_alive, wpa_s, NULL);
  1466. #endif /* CONFIG_WNM */
  1467. }
  1468. #ifdef CONFIG_INTERWORKING
  1469. static int wpas_qos_map_set(struct wpa_supplicant *wpa_s, const u8 *qos_map,
  1470. size_t len)
  1471. {
  1472. int res;
  1473. wpa_hexdump(MSG_DEBUG, "Interworking: QoS Map Set", qos_map, len);
  1474. res = wpa_drv_set_qos_map(wpa_s, qos_map, len);
  1475. if (res) {
  1476. wpa_printf(MSG_DEBUG, "Interworking: Failed to configure QoS Map Set to the driver");
  1477. }
  1478. return res;
  1479. }
  1480. static void interworking_process_assoc_resp(struct wpa_supplicant *wpa_s,
  1481. const u8 *ies, size_t ies_len)
  1482. {
  1483. struct ieee802_11_elems elems;
  1484. if (ies == NULL)
  1485. return;
  1486. if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed)
  1487. return;
  1488. if (elems.qos_map_set) {
  1489. wpas_qos_map_set(wpa_s, elems.qos_map_set,
  1490. elems.qos_map_set_len);
  1491. }
  1492. }
  1493. #endif /* CONFIG_INTERWORKING */
  1494. static int wpa_supplicant_event_associnfo(struct wpa_supplicant *wpa_s,
  1495. union wpa_event_data *data)
  1496. {
  1497. int l, len, found = 0, wpa_found, rsn_found;
  1498. const u8 *p;
  1499. #ifdef CONFIG_IEEE80211R
  1500. u8 bssid[ETH_ALEN];
  1501. #endif /* CONFIG_IEEE80211R */
  1502. wpa_dbg(wpa_s, MSG_DEBUG, "Association info event");
  1503. if (data->assoc_info.req_ies)
  1504. wpa_hexdump(MSG_DEBUG, "req_ies", data->assoc_info.req_ies,
  1505. data->assoc_info.req_ies_len);
  1506. if (data->assoc_info.resp_ies) {
  1507. wpa_hexdump(MSG_DEBUG, "resp_ies", data->assoc_info.resp_ies,
  1508. data->assoc_info.resp_ies_len);
  1509. #ifdef CONFIG_TDLS
  1510. wpa_tdls_assoc_resp_ies(wpa_s->wpa, data->assoc_info.resp_ies,
  1511. data->assoc_info.resp_ies_len);
  1512. #endif /* CONFIG_TDLS */
  1513. #ifdef CONFIG_WNM
  1514. wnm_process_assoc_resp(wpa_s, data->assoc_info.resp_ies,
  1515. data->assoc_info.resp_ies_len);
  1516. #endif /* CONFIG_WNM */
  1517. #ifdef CONFIG_INTERWORKING
  1518. interworking_process_assoc_resp(wpa_s, data->assoc_info.resp_ies,
  1519. data->assoc_info.resp_ies_len);
  1520. #endif /* CONFIG_INTERWORKING */
  1521. }
  1522. if (data->assoc_info.beacon_ies)
  1523. wpa_hexdump(MSG_DEBUG, "beacon_ies",
  1524. data->assoc_info.beacon_ies,
  1525. data->assoc_info.beacon_ies_len);
  1526. if (data->assoc_info.freq)
  1527. wpa_dbg(wpa_s, MSG_DEBUG, "freq=%u MHz",
  1528. data->assoc_info.freq);
  1529. p = data->assoc_info.req_ies;
  1530. l = data->assoc_info.req_ies_len;
  1531. /* Go through the IEs and make a copy of the WPA/RSN IE, if present. */
  1532. while (p && l >= 2) {
  1533. len = p[1] + 2;
  1534. if (len > l) {
  1535. wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
  1536. p, l);
  1537. break;
  1538. }
  1539. if ((p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
  1540. (os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0)) ||
  1541. (p[0] == WLAN_EID_RSN && p[1] >= 2)) {
  1542. if (wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, p, len))
  1543. break;
  1544. found = 1;
  1545. wpa_find_assoc_pmkid(wpa_s);
  1546. break;
  1547. }
  1548. l -= len;
  1549. p += len;
  1550. }
  1551. if (!found && data->assoc_info.req_ies)
  1552. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  1553. #ifdef CONFIG_IEEE80211R
  1554. #ifdef CONFIG_SME
  1555. if (wpa_s->sme.auth_alg == WPA_AUTH_ALG_FT) {
  1556. if (wpa_drv_get_bssid(wpa_s, bssid) < 0 ||
  1557. wpa_ft_validate_reassoc_resp(wpa_s->wpa,
  1558. data->assoc_info.resp_ies,
  1559. data->assoc_info.resp_ies_len,
  1560. bssid) < 0) {
  1561. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Validation of "
  1562. "Reassociation Response failed");
  1563. wpa_supplicant_deauthenticate(
  1564. wpa_s, WLAN_REASON_INVALID_IE);
  1565. return -1;
  1566. }
  1567. }
  1568. p = data->assoc_info.resp_ies;
  1569. l = data->assoc_info.resp_ies_len;
  1570. #ifdef CONFIG_WPS_STRICT
  1571. if (p && wpa_s->current_ssid &&
  1572. wpa_s->current_ssid->key_mgmt == WPA_KEY_MGMT_WPS) {
  1573. struct wpabuf *wps;
  1574. wps = ieee802_11_vendor_ie_concat(p, l, WPS_IE_VENDOR_TYPE);
  1575. if (wps == NULL) {
  1576. wpa_msg(wpa_s, MSG_INFO, "WPS-STRICT: AP did not "
  1577. "include WPS IE in (Re)Association Response");
  1578. return -1;
  1579. }
  1580. if (wps_validate_assoc_resp(wps) < 0) {
  1581. wpabuf_free(wps);
  1582. wpa_supplicant_deauthenticate(
  1583. wpa_s, WLAN_REASON_INVALID_IE);
  1584. return -1;
  1585. }
  1586. wpabuf_free(wps);
  1587. }
  1588. #endif /* CONFIG_WPS_STRICT */
  1589. /* Go through the IEs and make a copy of the MDIE, if present. */
  1590. while (p && l >= 2) {
  1591. len = p[1] + 2;
  1592. if (len > l) {
  1593. wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
  1594. p, l);
  1595. break;
  1596. }
  1597. if (p[0] == WLAN_EID_MOBILITY_DOMAIN &&
  1598. p[1] >= MOBILITY_DOMAIN_ID_LEN) {
  1599. wpa_s->sme.ft_used = 1;
  1600. os_memcpy(wpa_s->sme.mobility_domain, p + 2,
  1601. MOBILITY_DOMAIN_ID_LEN);
  1602. break;
  1603. }
  1604. l -= len;
  1605. p += len;
  1606. }
  1607. #endif /* CONFIG_SME */
  1608. /* Process FT when SME is in the driver */
  1609. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) &&
  1610. wpa_ft_is_completed(wpa_s->wpa)) {
  1611. if (wpa_drv_get_bssid(wpa_s, bssid) < 0 ||
  1612. wpa_ft_validate_reassoc_resp(wpa_s->wpa,
  1613. data->assoc_info.resp_ies,
  1614. data->assoc_info.resp_ies_len,
  1615. bssid) < 0) {
  1616. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Validation of "
  1617. "Reassociation Response failed");
  1618. wpa_supplicant_deauthenticate(
  1619. wpa_s, WLAN_REASON_INVALID_IE);
  1620. return -1;
  1621. }
  1622. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Reassociation Response done");
  1623. }
  1624. wpa_sm_set_ft_params(wpa_s->wpa, data->assoc_info.resp_ies,
  1625. data->assoc_info.resp_ies_len);
  1626. #endif /* CONFIG_IEEE80211R */
  1627. /* WPA/RSN IE from Beacon/ProbeResp */
  1628. p = data->assoc_info.beacon_ies;
  1629. l = data->assoc_info.beacon_ies_len;
  1630. /* Go through the IEs and make a copy of the WPA/RSN IEs, if present.
  1631. */
  1632. wpa_found = rsn_found = 0;
  1633. while (p && l >= 2) {
  1634. len = p[1] + 2;
  1635. if (len > l) {
  1636. wpa_hexdump(MSG_DEBUG, "Truncated IE in beacon_ies",
  1637. p, l);
  1638. break;
  1639. }
  1640. if (!wpa_found &&
  1641. p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
  1642. os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0) {
  1643. wpa_found = 1;
  1644. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, p, len);
  1645. }
  1646. if (!rsn_found &&
  1647. p[0] == WLAN_EID_RSN && p[1] >= 2) {
  1648. rsn_found = 1;
  1649. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, p, len);
  1650. }
  1651. l -= len;
  1652. p += len;
  1653. }
  1654. if (!wpa_found && data->assoc_info.beacon_ies)
  1655. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, NULL, 0);
  1656. if (!rsn_found && data->assoc_info.beacon_ies)
  1657. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, NULL, 0);
  1658. if (wpa_found || rsn_found)
  1659. wpa_s->ap_ies_from_associnfo = 1;
  1660. if (wpa_s->assoc_freq && data->assoc_info.freq &&
  1661. wpa_s->assoc_freq != data->assoc_info.freq) {
  1662. wpa_printf(MSG_DEBUG, "Operating frequency changed from "
  1663. "%u to %u MHz",
  1664. wpa_s->assoc_freq, data->assoc_info.freq);
  1665. wpa_supplicant_update_scan_results(wpa_s);
  1666. }
  1667. wpa_s->assoc_freq = data->assoc_info.freq;
  1668. return 0;
  1669. }
  1670. static int wpa_supplicant_assoc_update_ie(struct wpa_supplicant *wpa_s)
  1671. {
  1672. const u8 *bss_wpa = NULL, *bss_rsn = NULL;
  1673. if (!wpa_s->current_bss || !wpa_s->current_ssid)
  1674. return -1;
  1675. if (!wpa_key_mgmt_wpa_any(wpa_s->current_ssid->key_mgmt))
  1676. return 0;
  1677. bss_wpa = wpa_bss_get_vendor_ie(wpa_s->current_bss,
  1678. WPA_IE_VENDOR_TYPE);
  1679. bss_rsn = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_RSN);
  1680. if (wpa_sm_set_ap_wpa_ie(wpa_s->wpa, bss_wpa,
  1681. bss_wpa ? 2 + bss_wpa[1] : 0) ||
  1682. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, bss_rsn,
  1683. bss_rsn ? 2 + bss_rsn[1] : 0))
  1684. return -1;
  1685. return 0;
  1686. }
  1687. static void wpa_supplicant_event_assoc(struct wpa_supplicant *wpa_s,
  1688. union wpa_event_data *data)
  1689. {
  1690. u8 bssid[ETH_ALEN];
  1691. int ft_completed;
  1692. #ifdef CONFIG_AP
  1693. if (wpa_s->ap_iface) {
  1694. if (!data)
  1695. return;
  1696. hostapd_notif_assoc(wpa_s->ap_iface->bss[0],
  1697. data->assoc_info.addr,
  1698. data->assoc_info.req_ies,
  1699. data->assoc_info.req_ies_len,
  1700. data->assoc_info.reassoc);
  1701. return;
  1702. }
  1703. #endif /* CONFIG_AP */
  1704. eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
  1705. ft_completed = wpa_ft_is_completed(wpa_s->wpa);
  1706. if (data && wpa_supplicant_event_associnfo(wpa_s, data) < 0)
  1707. return;
  1708. if (wpa_drv_get_bssid(wpa_s, bssid) < 0) {
  1709. wpa_dbg(wpa_s, MSG_ERROR, "Failed to get BSSID");
  1710. wpa_supplicant_deauthenticate(
  1711. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1712. return;
  1713. }
  1714. wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATED);
  1715. if (os_memcmp(bssid, wpa_s->bssid, ETH_ALEN) != 0) {
  1716. wpa_dbg(wpa_s, MSG_DEBUG, "Associated to a new BSS: BSSID="
  1717. MACSTR, MAC2STR(bssid));
  1718. random_add_randomness(bssid, ETH_ALEN);
  1719. os_memcpy(wpa_s->bssid, bssid, ETH_ALEN);
  1720. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  1721. wpas_notify_bssid_changed(wpa_s);
  1722. if (wpa_supplicant_dynamic_keys(wpa_s) && !ft_completed) {
  1723. wpa_clear_keys(wpa_s, bssid);
  1724. }
  1725. if (wpa_supplicant_select_config(wpa_s) < 0) {
  1726. wpa_supplicant_deauthenticate(
  1727. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1728. return;
  1729. }
  1730. if (wpa_s->conf->ap_scan == 1 &&
  1731. wpa_s->drv_flags & WPA_DRIVER_FLAGS_BSS_SELECTION) {
  1732. if (wpa_supplicant_assoc_update_ie(wpa_s) < 0)
  1733. wpa_msg(wpa_s, MSG_WARNING,
  1734. "WPA/RSN IEs not updated");
  1735. }
  1736. }
  1737. #ifdef CONFIG_SME
  1738. os_memcpy(wpa_s->sme.prev_bssid, bssid, ETH_ALEN);
  1739. wpa_s->sme.prev_bssid_set = 1;
  1740. wpa_s->sme.last_unprot_disconnect.sec = 0;
  1741. #endif /* CONFIG_SME */
  1742. wpa_msg(wpa_s, MSG_INFO, "Associated with " MACSTR, MAC2STR(bssid));
  1743. if (wpa_s->current_ssid) {
  1744. /* When using scanning (ap_scan=1), SIM PC/SC interface can be
  1745. * initialized before association, but for other modes,
  1746. * initialize PC/SC here, if the current configuration needs
  1747. * smartcard or SIM/USIM. */
  1748. wpa_supplicant_scard_init(wpa_s, wpa_s->current_ssid);
  1749. }
  1750. wpa_sm_notify_assoc(wpa_s->wpa, bssid);
  1751. if (wpa_s->l2)
  1752. l2_packet_notify_auth_start(wpa_s->l2);
  1753. /*
  1754. * Set portEnabled first to FALSE in order to get EAP state machine out
  1755. * of the SUCCESS state and eapSuccess cleared. Without this, EAPOL PAE
  1756. * state machine may transit to AUTHENTICATING state based on obsolete
  1757. * eapSuccess and then trigger BE_AUTH to SUCCESS and PAE to
  1758. * AUTHENTICATED without ever giving chance to EAP state machine to
  1759. * reset the state.
  1760. */
  1761. if (!ft_completed) {
  1762. eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
  1763. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  1764. }
  1765. if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) || ft_completed)
  1766. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  1767. /* 802.1X::portControl = Auto */
  1768. eapol_sm_notify_portEnabled(wpa_s->eapol, TRUE);
  1769. wpa_s->eapol_received = 0;
  1770. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  1771. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE ||
  1772. (wpa_s->current_ssid &&
  1773. wpa_s->current_ssid->mode == IEEE80211_MODE_IBSS)) {
  1774. if (wpa_s->current_ssid &&
  1775. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE &&
  1776. (wpa_s->drv_flags &
  1777. WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE)) {
  1778. /*
  1779. * Set the key after having received joined-IBSS event
  1780. * from the driver.
  1781. */
  1782. wpa_supplicant_set_wpa_none_key(wpa_s,
  1783. wpa_s->current_ssid);
  1784. }
  1785. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1786. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  1787. } else if (!ft_completed) {
  1788. /* Timeout for receiving the first EAPOL packet */
  1789. wpa_supplicant_req_auth_timeout(wpa_s, 10, 0);
  1790. }
  1791. wpa_supplicant_cancel_scan(wpa_s);
  1792. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
  1793. wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt)) {
  1794. /*
  1795. * We are done; the driver will take care of RSN 4-way
  1796. * handshake.
  1797. */
  1798. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1799. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  1800. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  1801. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  1802. } else if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
  1803. wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
  1804. /*
  1805. * The driver will take care of RSN 4-way handshake, so we need
  1806. * to allow EAPOL supplicant to complete its work without
  1807. * waiting for WPA supplicant.
  1808. */
  1809. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  1810. } else if (ft_completed) {
  1811. /*
  1812. * FT protocol completed - make sure EAPOL state machine ends
  1813. * up in authenticated.
  1814. */
  1815. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1816. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  1817. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  1818. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  1819. }
  1820. wpa_s->last_eapol_matches_bssid = 0;
  1821. if (wpa_s->pending_eapol_rx) {
  1822. struct os_reltime now, age;
  1823. os_get_reltime(&now);
  1824. os_reltime_sub(&now, &wpa_s->pending_eapol_rx_time, &age);
  1825. if (age.sec == 0 && age.usec < 100000 &&
  1826. os_memcmp(wpa_s->pending_eapol_rx_src, bssid, ETH_ALEN) ==
  1827. 0) {
  1828. wpa_dbg(wpa_s, MSG_DEBUG, "Process pending EAPOL "
  1829. "frame that was received just before "
  1830. "association notification");
  1831. wpa_supplicant_rx_eapol(
  1832. wpa_s, wpa_s->pending_eapol_rx_src,
  1833. wpabuf_head(wpa_s->pending_eapol_rx),
  1834. wpabuf_len(wpa_s->pending_eapol_rx));
  1835. }
  1836. wpabuf_free(wpa_s->pending_eapol_rx);
  1837. wpa_s->pending_eapol_rx = NULL;
  1838. }
  1839. if ((wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  1840. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
  1841. wpa_s->current_ssid &&
  1842. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE)) {
  1843. /* Set static WEP keys again */
  1844. wpa_set_wep_keys(wpa_s, wpa_s->current_ssid);
  1845. }
  1846. #ifdef CONFIG_IBSS_RSN
  1847. if (wpa_s->current_ssid &&
  1848. wpa_s->current_ssid->mode == WPAS_MODE_IBSS &&
  1849. wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
  1850. wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE &&
  1851. wpa_s->ibss_rsn == NULL) {
  1852. wpa_s->ibss_rsn = ibss_rsn_init(wpa_s);
  1853. if (!wpa_s->ibss_rsn) {
  1854. wpa_msg(wpa_s, MSG_INFO, "Failed to init IBSS RSN");
  1855. wpa_supplicant_deauthenticate(
  1856. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1857. return;
  1858. }
  1859. ibss_rsn_set_psk(wpa_s->ibss_rsn, wpa_s->current_ssid->psk);
  1860. }
  1861. #endif /* CONFIG_IBSS_RSN */
  1862. wpas_wps_notify_assoc(wpa_s, bssid);
  1863. if (data) {
  1864. wmm_ac_notify_assoc(wpa_s, data->assoc_info.resp_ies,
  1865. data->assoc_info.resp_ies_len,
  1866. &data->assoc_info.wmm_params);
  1867. if (wpa_s->reassoc_same_bss)
  1868. wmm_ac_restore_tspecs(wpa_s);
  1869. }
  1870. }
  1871. static int disconnect_reason_recoverable(u16 reason_code)
  1872. {
  1873. return reason_code == WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY ||
  1874. reason_code == WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA ||
  1875. reason_code == WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA;
  1876. }
  1877. static void wpa_supplicant_event_disassoc(struct wpa_supplicant *wpa_s,
  1878. u16 reason_code,
  1879. int locally_generated)
  1880. {
  1881. const u8 *bssid;
  1882. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  1883. /*
  1884. * At least Host AP driver and a Prism3 card seemed to be
  1885. * generating streams of disconnected events when configuring
  1886. * IBSS for WPA-None. Ignore them for now.
  1887. */
  1888. return;
  1889. }
  1890. bssid = wpa_s->bssid;
  1891. if (is_zero_ether_addr(bssid))
  1892. bssid = wpa_s->pending_bssid;
  1893. if (!is_zero_ether_addr(bssid) ||
  1894. wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  1895. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid=" MACSTR
  1896. " reason=%d%s",
  1897. MAC2STR(bssid), reason_code,
  1898. locally_generated ? " locally_generated=1" : "");
  1899. }
  1900. }
  1901. static int could_be_psk_mismatch(struct wpa_supplicant *wpa_s, u16 reason_code,
  1902. int locally_generated)
  1903. {
  1904. if (wpa_s->wpa_state != WPA_4WAY_HANDSHAKE ||
  1905. !wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt))
  1906. return 0; /* Not in 4-way handshake with PSK */
  1907. /*
  1908. * It looks like connection was lost while trying to go through PSK
  1909. * 4-way handshake. Filter out known disconnection cases that are caused
  1910. * by something else than PSK mismatch to avoid confusing reports.
  1911. */
  1912. if (locally_generated) {
  1913. if (reason_code == WLAN_REASON_IE_IN_4WAY_DIFFERS)
  1914. return 0;
  1915. }
  1916. return 1;
  1917. }
  1918. static void wpa_supplicant_event_disassoc_finish(struct wpa_supplicant *wpa_s,
  1919. u16 reason_code,
  1920. int locally_generated)
  1921. {
  1922. const u8 *bssid;
  1923. int authenticating;
  1924. u8 prev_pending_bssid[ETH_ALEN];
  1925. struct wpa_bss *fast_reconnect = NULL;
  1926. struct wpa_ssid *fast_reconnect_ssid = NULL;
  1927. struct wpa_ssid *last_ssid;
  1928. authenticating = wpa_s->wpa_state == WPA_AUTHENTICATING;
  1929. os_memcpy(prev_pending_bssid, wpa_s->pending_bssid, ETH_ALEN);
  1930. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  1931. /*
  1932. * At least Host AP driver and a Prism3 card seemed to be
  1933. * generating streams of disconnected events when configuring
  1934. * IBSS for WPA-None. Ignore them for now.
  1935. */
  1936. wpa_dbg(wpa_s, MSG_DEBUG, "Disconnect event - ignore in "
  1937. "IBSS/WPA-None mode");
  1938. return;
  1939. }
  1940. if (could_be_psk_mismatch(wpa_s, reason_code, locally_generated)) {
  1941. wpa_msg(wpa_s, MSG_INFO, "WPA: 4-Way Handshake failed - "
  1942. "pre-shared key may be incorrect");
  1943. if (wpas_p2p_4way_hs_failed(wpa_s) > 0)
  1944. return; /* P2P group removed */
  1945. wpas_auth_failed(wpa_s, "WRONG_KEY");
  1946. }
  1947. if (!wpa_s->disconnected &&
  1948. (!wpa_s->auto_reconnect_disabled ||
  1949. wpa_s->key_mgmt == WPA_KEY_MGMT_WPS ||
  1950. wpas_wps_searching(wpa_s))) {
  1951. wpa_dbg(wpa_s, MSG_DEBUG, "Auto connect enabled: try to "
  1952. "reconnect (wps=%d/%d wpa_state=%d)",
  1953. wpa_s->key_mgmt == WPA_KEY_MGMT_WPS,
  1954. wpas_wps_searching(wpa_s),
  1955. wpa_s->wpa_state);
  1956. if (wpa_s->wpa_state == WPA_COMPLETED &&
  1957. wpa_s->current_ssid &&
  1958. wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
  1959. !locally_generated &&
  1960. disconnect_reason_recoverable(reason_code)) {
  1961. /*
  1962. * It looks like the AP has dropped association with
  1963. * us, but could allow us to get back in. Try to
  1964. * reconnect to the same BSS without full scan to save
  1965. * time for some common cases.
  1966. */
  1967. fast_reconnect = wpa_s->current_bss;
  1968. fast_reconnect_ssid = wpa_s->current_ssid;
  1969. } else if (wpa_s->wpa_state >= WPA_ASSOCIATING)
  1970. wpa_supplicant_req_scan(wpa_s, 0, 100000);
  1971. else
  1972. wpa_dbg(wpa_s, MSG_DEBUG, "Do not request new "
  1973. "immediate scan");
  1974. } else {
  1975. wpa_dbg(wpa_s, MSG_DEBUG, "Auto connect disabled: do not "
  1976. "try to re-connect");
  1977. wpa_s->reassociate = 0;
  1978. wpa_s->disconnected = 1;
  1979. wpa_supplicant_cancel_sched_scan(wpa_s);
  1980. }
  1981. bssid = wpa_s->bssid;
  1982. if (is_zero_ether_addr(bssid))
  1983. bssid = wpa_s->pending_bssid;
  1984. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  1985. wpas_connection_failed(wpa_s, bssid);
  1986. wpa_sm_notify_disassoc(wpa_s->wpa);
  1987. if (locally_generated)
  1988. wpa_s->disconnect_reason = -reason_code;
  1989. else
  1990. wpa_s->disconnect_reason = reason_code;
  1991. wpas_notify_disconnect_reason(wpa_s);
  1992. if (wpa_supplicant_dynamic_keys(wpa_s)) {
  1993. wpa_dbg(wpa_s, MSG_DEBUG, "Disconnect event - remove keys");
  1994. wpa_clear_keys(wpa_s, wpa_s->bssid);
  1995. }
  1996. last_ssid = wpa_s->current_ssid;
  1997. wpa_supplicant_mark_disassoc(wpa_s);
  1998. if (authenticating && (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)) {
  1999. sme_disassoc_while_authenticating(wpa_s, prev_pending_bssid);
  2000. wpa_s->current_ssid = last_ssid;
  2001. }
  2002. if (fast_reconnect &&
  2003. !wpas_network_disabled(wpa_s, fast_reconnect_ssid) &&
  2004. !disallowed_bssid(wpa_s, fast_reconnect->bssid) &&
  2005. !disallowed_ssid(wpa_s, fast_reconnect->ssid,
  2006. fast_reconnect->ssid_len) &&
  2007. !wpas_temp_disabled(wpa_s, fast_reconnect_ssid)) {
  2008. #ifndef CONFIG_NO_SCAN_PROCESSING
  2009. wpa_dbg(wpa_s, MSG_DEBUG, "Try to reconnect to the same BSS");
  2010. if (wpa_supplicant_connect(wpa_s, fast_reconnect,
  2011. fast_reconnect_ssid) < 0) {
  2012. /* Recover through full scan */
  2013. wpa_supplicant_req_scan(wpa_s, 0, 100000);
  2014. }
  2015. #endif /* CONFIG_NO_SCAN_PROCESSING */
  2016. } else if (fast_reconnect) {
  2017. /*
  2018. * Could not reconnect to the same BSS due to network being
  2019. * disabled. Use a new scan to match the alternative behavior
  2020. * above, i.e., to continue automatic reconnection attempt in a
  2021. * way that enforces disabled network rules.
  2022. */
  2023. wpa_supplicant_req_scan(wpa_s, 0, 100000);
  2024. }
  2025. }
  2026. #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
  2027. void wpa_supplicant_delayed_mic_error_report(void *eloop_ctx, void *sock_ctx)
  2028. {
  2029. struct wpa_supplicant *wpa_s = eloop_ctx;
  2030. if (!wpa_s->pending_mic_error_report)
  2031. return;
  2032. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Sending pending MIC error report");
  2033. wpa_sm_key_request(wpa_s->wpa, 1, wpa_s->pending_mic_error_pairwise);
  2034. wpa_s->pending_mic_error_report = 0;
  2035. }
  2036. #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  2037. static void
  2038. wpa_supplicant_event_michael_mic_failure(struct wpa_supplicant *wpa_s,
  2039. union wpa_event_data *data)
  2040. {
  2041. int pairwise;
  2042. struct os_reltime t;
  2043. wpa_msg(wpa_s, MSG_WARNING, "Michael MIC failure detected");
  2044. pairwise = (data && data->michael_mic_failure.unicast);
  2045. os_get_reltime(&t);
  2046. if ((wpa_s->last_michael_mic_error.sec &&
  2047. !os_reltime_expired(&t, &wpa_s->last_michael_mic_error, 60)) ||
  2048. wpa_s->pending_mic_error_report) {
  2049. if (wpa_s->pending_mic_error_report) {
  2050. /*
  2051. * Send the pending MIC error report immediately since
  2052. * we are going to start countermeasures and AP better
  2053. * do the same.
  2054. */
  2055. wpa_sm_key_request(wpa_s->wpa, 1,
  2056. wpa_s->pending_mic_error_pairwise);
  2057. }
  2058. /* Send the new MIC error report immediately since we are going
  2059. * to start countermeasures and AP better do the same.
  2060. */
  2061. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  2062. /* initialize countermeasures */
  2063. wpa_s->countermeasures = 1;
  2064. wpa_blacklist_add(wpa_s, wpa_s->bssid);
  2065. wpa_msg(wpa_s, MSG_WARNING, "TKIP countermeasures started");
  2066. /*
  2067. * Need to wait for completion of request frame. We do not get
  2068. * any callback for the message completion, so just wait a
  2069. * short while and hope for the best. */
  2070. os_sleep(0, 10000);
  2071. wpa_drv_set_countermeasures(wpa_s, 1);
  2072. wpa_supplicant_deauthenticate(wpa_s,
  2073. WLAN_REASON_MICHAEL_MIC_FAILURE);
  2074. eloop_cancel_timeout(wpa_supplicant_stop_countermeasures,
  2075. wpa_s, NULL);
  2076. eloop_register_timeout(60, 0,
  2077. wpa_supplicant_stop_countermeasures,
  2078. wpa_s, NULL);
  2079. /* TODO: mark the AP rejected for 60 second. STA is
  2080. * allowed to associate with another AP.. */
  2081. } else {
  2082. #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
  2083. if (wpa_s->mic_errors_seen) {
  2084. /*
  2085. * Reduce the effectiveness of Michael MIC error
  2086. * reports as a means for attacking against TKIP if
  2087. * more than one MIC failure is noticed with the same
  2088. * PTK. We delay the transmission of the reports by a
  2089. * random time between 0 and 60 seconds in order to
  2090. * force the attacker wait 60 seconds before getting
  2091. * the information on whether a frame resulted in a MIC
  2092. * failure.
  2093. */
  2094. u8 rval[4];
  2095. int sec;
  2096. if (os_get_random(rval, sizeof(rval)) < 0)
  2097. sec = os_random() % 60;
  2098. else
  2099. sec = WPA_GET_BE32(rval) % 60;
  2100. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Delay MIC error "
  2101. "report %d seconds", sec);
  2102. wpa_s->pending_mic_error_report = 1;
  2103. wpa_s->pending_mic_error_pairwise = pairwise;
  2104. eloop_cancel_timeout(
  2105. wpa_supplicant_delayed_mic_error_report,
  2106. wpa_s, NULL);
  2107. eloop_register_timeout(
  2108. sec, os_random() % 1000000,
  2109. wpa_supplicant_delayed_mic_error_report,
  2110. wpa_s, NULL);
  2111. } else {
  2112. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  2113. }
  2114. #else /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  2115. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  2116. #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  2117. }
  2118. wpa_s->last_michael_mic_error = t;
  2119. wpa_s->mic_errors_seen++;
  2120. }
  2121. #ifdef CONFIG_TERMINATE_ONLASTIF
  2122. static int any_interfaces(struct wpa_supplicant *head)
  2123. {
  2124. struct wpa_supplicant *wpa_s;
  2125. for (wpa_s = head; wpa_s != NULL; wpa_s = wpa_s->next)
  2126. if (!wpa_s->interface_removed)
  2127. return 1;
  2128. return 0;
  2129. }
  2130. #endif /* CONFIG_TERMINATE_ONLASTIF */
  2131. static void
  2132. wpa_supplicant_event_interface_status(struct wpa_supplicant *wpa_s,
  2133. union wpa_event_data *data)
  2134. {
  2135. if (os_strcmp(wpa_s->ifname, data->interface_status.ifname) != 0)
  2136. return;
  2137. switch (data->interface_status.ievent) {
  2138. case EVENT_INTERFACE_ADDED:
  2139. if (!wpa_s->interface_removed)
  2140. break;
  2141. wpa_s->interface_removed = 0;
  2142. wpa_dbg(wpa_s, MSG_DEBUG, "Configured interface was added");
  2143. if (wpa_supplicant_driver_init(wpa_s) < 0) {
  2144. wpa_msg(wpa_s, MSG_INFO, "Failed to initialize the "
  2145. "driver after interface was added");
  2146. }
  2147. break;
  2148. case EVENT_INTERFACE_REMOVED:
  2149. wpa_dbg(wpa_s, MSG_DEBUG, "Configured interface was removed");
  2150. wpa_s->interface_removed = 1;
  2151. wpa_supplicant_mark_disassoc(wpa_s);
  2152. wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
  2153. l2_packet_deinit(wpa_s->l2);
  2154. wpa_s->l2 = NULL;
  2155. #ifdef CONFIG_TERMINATE_ONLASTIF
  2156. /* check if last interface */
  2157. if (!any_interfaces(wpa_s->global->ifaces))
  2158. eloop_terminate();
  2159. #endif /* CONFIG_TERMINATE_ONLASTIF */
  2160. break;
  2161. }
  2162. }
  2163. #ifdef CONFIG_PEERKEY
  2164. static void
  2165. wpa_supplicant_event_stkstart(struct wpa_supplicant *wpa_s,
  2166. union wpa_event_data *data)
  2167. {
  2168. if (data == NULL)
  2169. return;
  2170. wpa_sm_stkstart(wpa_s->wpa, data->stkstart.peer);
  2171. }
  2172. #endif /* CONFIG_PEERKEY */
  2173. #ifdef CONFIG_TDLS
  2174. static void wpa_supplicant_event_tdls(struct wpa_supplicant *wpa_s,
  2175. union wpa_event_data *data)
  2176. {
  2177. if (data == NULL)
  2178. return;
  2179. switch (data->tdls.oper) {
  2180. case TDLS_REQUEST_SETUP:
  2181. wpa_tdls_remove(wpa_s->wpa, data->tdls.peer);
  2182. if (wpa_tdls_is_external_setup(wpa_s->wpa))
  2183. wpa_tdls_start(wpa_s->wpa, data->tdls.peer);
  2184. else
  2185. wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, data->tdls.peer);
  2186. break;
  2187. case TDLS_REQUEST_TEARDOWN:
  2188. if (wpa_tdls_is_external_setup(wpa_s->wpa))
  2189. wpa_tdls_teardown_link(wpa_s->wpa, data->tdls.peer,
  2190. data->tdls.reason_code);
  2191. else
  2192. wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN,
  2193. data->tdls.peer);
  2194. break;
  2195. case TDLS_REQUEST_DISCOVER:
  2196. wpa_tdls_send_discovery_request(wpa_s->wpa,
  2197. data->tdls.peer);
  2198. break;
  2199. }
  2200. }
  2201. #endif /* CONFIG_TDLS */
  2202. #ifdef CONFIG_WNM
  2203. static void wpa_supplicant_event_wnm(struct wpa_supplicant *wpa_s,
  2204. union wpa_event_data *data)
  2205. {
  2206. if (data == NULL)
  2207. return;
  2208. switch (data->wnm.oper) {
  2209. case WNM_OPER_SLEEP:
  2210. wpa_printf(MSG_DEBUG, "Start sending WNM-Sleep Request "
  2211. "(action=%d, intval=%d)",
  2212. data->wnm.sleep_action, data->wnm.sleep_intval);
  2213. ieee802_11_send_wnmsleep_req(wpa_s, data->wnm.sleep_action,
  2214. data->wnm.sleep_intval, NULL);
  2215. break;
  2216. }
  2217. }
  2218. #endif /* CONFIG_WNM */
  2219. #ifdef CONFIG_IEEE80211R
  2220. static void
  2221. wpa_supplicant_event_ft_response(struct wpa_supplicant *wpa_s,
  2222. union wpa_event_data *data)
  2223. {
  2224. if (data == NULL)
  2225. return;
  2226. if (wpa_ft_process_response(wpa_s->wpa, data->ft_ies.ies,
  2227. data->ft_ies.ies_len,
  2228. data->ft_ies.ft_action,
  2229. data->ft_ies.target_ap,
  2230. data->ft_ies.ric_ies,
  2231. data->ft_ies.ric_ies_len) < 0) {
  2232. /* TODO: prevent MLME/driver from trying to associate? */
  2233. }
  2234. }
  2235. #endif /* CONFIG_IEEE80211R */
  2236. #ifdef CONFIG_IBSS_RSN
  2237. static void wpa_supplicant_event_ibss_rsn_start(struct wpa_supplicant *wpa_s,
  2238. union wpa_event_data *data)
  2239. {
  2240. struct wpa_ssid *ssid;
  2241. if (wpa_s->wpa_state < WPA_ASSOCIATED)
  2242. return;
  2243. if (data == NULL)
  2244. return;
  2245. ssid = wpa_s->current_ssid;
  2246. if (ssid == NULL)
  2247. return;
  2248. if (ssid->mode != WPAS_MODE_IBSS || !wpa_key_mgmt_wpa(ssid->key_mgmt))
  2249. return;
  2250. ibss_rsn_start(wpa_s->ibss_rsn, data->ibss_rsn_start.peer);
  2251. }
  2252. static void wpa_supplicant_event_ibss_auth(struct wpa_supplicant *wpa_s,
  2253. union wpa_event_data *data)
  2254. {
  2255. struct wpa_ssid *ssid = wpa_s->current_ssid;
  2256. if (ssid == NULL)
  2257. return;
  2258. /* check if the ssid is correctly configured as IBSS/RSN */
  2259. if (ssid->mode != WPAS_MODE_IBSS || !wpa_key_mgmt_wpa(ssid->key_mgmt))
  2260. return;
  2261. ibss_rsn_handle_auth(wpa_s->ibss_rsn, data->rx_mgmt.frame,
  2262. data->rx_mgmt.frame_len);
  2263. }
  2264. #endif /* CONFIG_IBSS_RSN */
  2265. #ifdef CONFIG_IEEE80211R
  2266. static void ft_rx_action(struct wpa_supplicant *wpa_s, const u8 *data,
  2267. size_t len)
  2268. {
  2269. const u8 *sta_addr, *target_ap_addr;
  2270. u16 status;
  2271. wpa_hexdump(MSG_MSGDUMP, "FT: RX Action", data, len);
  2272. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME))
  2273. return; /* only SME case supported for now */
  2274. if (len < 1 + 2 * ETH_ALEN + 2)
  2275. return;
  2276. if (data[0] != 2)
  2277. return; /* Only FT Action Response is supported for now */
  2278. sta_addr = data + 1;
  2279. target_ap_addr = data + 1 + ETH_ALEN;
  2280. status = WPA_GET_LE16(data + 1 + 2 * ETH_ALEN);
  2281. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Received FT Action Response: STA "
  2282. MACSTR " TargetAP " MACSTR " status %u",
  2283. MAC2STR(sta_addr), MAC2STR(target_ap_addr), status);
  2284. if (os_memcmp(sta_addr, wpa_s->own_addr, ETH_ALEN) != 0) {
  2285. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Foreign STA Address " MACSTR
  2286. " in FT Action Response", MAC2STR(sta_addr));
  2287. return;
  2288. }
  2289. if (status) {
  2290. wpa_dbg(wpa_s, MSG_DEBUG, "FT: FT Action Response indicates "
  2291. "failure (status code %d)", status);
  2292. /* TODO: report error to FT code(?) */
  2293. return;
  2294. }
  2295. if (wpa_ft_process_response(wpa_s->wpa, data + 1 + 2 * ETH_ALEN + 2,
  2296. len - (1 + 2 * ETH_ALEN + 2), 1,
  2297. target_ap_addr, NULL, 0) < 0)
  2298. return;
  2299. #ifdef CONFIG_SME
  2300. {
  2301. struct wpa_bss *bss;
  2302. bss = wpa_bss_get_bssid(wpa_s, target_ap_addr);
  2303. if (bss)
  2304. wpa_s->sme.freq = bss->freq;
  2305. wpa_s->sme.auth_alg = WPA_AUTH_ALG_FT;
  2306. sme_associate(wpa_s, WPAS_MODE_INFRA, target_ap_addr,
  2307. WLAN_AUTH_FT);
  2308. }
  2309. #endif /* CONFIG_SME */
  2310. }
  2311. #endif /* CONFIG_IEEE80211R */
  2312. static void wpa_supplicant_event_unprot_deauth(struct wpa_supplicant *wpa_s,
  2313. struct unprot_deauth *e)
  2314. {
  2315. #ifdef CONFIG_IEEE80211W
  2316. wpa_printf(MSG_DEBUG, "Unprotected Deauthentication frame "
  2317. "dropped: " MACSTR " -> " MACSTR
  2318. " (reason code %u)",
  2319. MAC2STR(e->sa), MAC2STR(e->da), e->reason_code);
  2320. sme_event_unprot_disconnect(wpa_s, e->sa, e->da, e->reason_code);
  2321. #endif /* CONFIG_IEEE80211W */
  2322. }
  2323. static void wpa_supplicant_event_unprot_disassoc(struct wpa_supplicant *wpa_s,
  2324. struct unprot_disassoc *e)
  2325. {
  2326. #ifdef CONFIG_IEEE80211W
  2327. wpa_printf(MSG_DEBUG, "Unprotected Disassociation frame "
  2328. "dropped: " MACSTR " -> " MACSTR
  2329. " (reason code %u)",
  2330. MAC2STR(e->sa), MAC2STR(e->da), e->reason_code);
  2331. sme_event_unprot_disconnect(wpa_s, e->sa, e->da, e->reason_code);
  2332. #endif /* CONFIG_IEEE80211W */
  2333. }
  2334. static void wpas_event_disconnect(struct wpa_supplicant *wpa_s, const u8 *addr,
  2335. u16 reason_code, int locally_generated,
  2336. const u8 *ie, size_t ie_len, int deauth)
  2337. {
  2338. #ifdef CONFIG_AP
  2339. if (wpa_s->ap_iface && addr) {
  2340. hostapd_notif_disassoc(wpa_s->ap_iface->bss[0], addr);
  2341. return;
  2342. }
  2343. if (wpa_s->ap_iface) {
  2344. wpa_dbg(wpa_s, MSG_DEBUG, "Ignore deauth event in AP mode");
  2345. return;
  2346. }
  2347. #endif /* CONFIG_AP */
  2348. if (!locally_generated)
  2349. wpa_s->own_disconnect_req = 0;
  2350. wpa_supplicant_event_disassoc(wpa_s, reason_code, locally_generated);
  2351. if (((reason_code == WLAN_REASON_IEEE_802_1X_AUTH_FAILED ||
  2352. ((wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
  2353. (wpa_s->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)) &&
  2354. eapol_sm_failed(wpa_s->eapol))) &&
  2355. !wpa_s->eap_expected_failure))
  2356. wpas_auth_failed(wpa_s, "AUTH_FAILED");
  2357. #ifdef CONFIG_P2P
  2358. if (deauth && reason_code > 0) {
  2359. if (wpas_p2p_deauth_notif(wpa_s, addr, reason_code, ie, ie_len,
  2360. locally_generated) > 0) {
  2361. /*
  2362. * The interface was removed, so cannot continue
  2363. * processing any additional operations after this.
  2364. */
  2365. return;
  2366. }
  2367. }
  2368. #endif /* CONFIG_P2P */
  2369. wpa_supplicant_event_disassoc_finish(wpa_s, reason_code,
  2370. locally_generated);
  2371. }
  2372. static void wpas_event_disassoc(struct wpa_supplicant *wpa_s,
  2373. struct disassoc_info *info)
  2374. {
  2375. u16 reason_code = 0;
  2376. int locally_generated = 0;
  2377. const u8 *addr = NULL;
  2378. const u8 *ie = NULL;
  2379. size_t ie_len = 0;
  2380. wpa_dbg(wpa_s, MSG_DEBUG, "Disassociation notification");
  2381. if (info) {
  2382. addr = info->addr;
  2383. ie = info->ie;
  2384. ie_len = info->ie_len;
  2385. reason_code = info->reason_code;
  2386. locally_generated = info->locally_generated;
  2387. wpa_dbg(wpa_s, MSG_DEBUG, " * reason %u%s", reason_code,
  2388. locally_generated ? " (locally generated)" : "");
  2389. if (addr)
  2390. wpa_dbg(wpa_s, MSG_DEBUG, " * address " MACSTR,
  2391. MAC2STR(addr));
  2392. wpa_hexdump(MSG_DEBUG, "Disassociation frame IE(s)",
  2393. ie, ie_len);
  2394. }
  2395. #ifdef CONFIG_AP
  2396. if (wpa_s->ap_iface && info && info->addr) {
  2397. hostapd_notif_disassoc(wpa_s->ap_iface->bss[0], info->addr);
  2398. return;
  2399. }
  2400. if (wpa_s->ap_iface) {
  2401. wpa_dbg(wpa_s, MSG_DEBUG, "Ignore disassoc event in AP mode");
  2402. return;
  2403. }
  2404. #endif /* CONFIG_AP */
  2405. #ifdef CONFIG_P2P
  2406. if (info) {
  2407. wpas_p2p_disassoc_notif(
  2408. wpa_s, info->addr, reason_code, info->ie, info->ie_len,
  2409. locally_generated);
  2410. }
  2411. #endif /* CONFIG_P2P */
  2412. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  2413. sme_event_disassoc(wpa_s, info);
  2414. wpas_event_disconnect(wpa_s, addr, reason_code, locally_generated,
  2415. ie, ie_len, 0);
  2416. }
  2417. static void wpas_event_deauth(struct wpa_supplicant *wpa_s,
  2418. struct deauth_info *info)
  2419. {
  2420. u16 reason_code = 0;
  2421. int locally_generated = 0;
  2422. const u8 *addr = NULL;
  2423. const u8 *ie = NULL;
  2424. size_t ie_len = 0;
  2425. wpa_dbg(wpa_s, MSG_DEBUG, "Deauthentication notification");
  2426. if (info) {
  2427. addr = info->addr;
  2428. ie = info->ie;
  2429. ie_len = info->ie_len;
  2430. reason_code = info->reason_code;
  2431. locally_generated = info->locally_generated;
  2432. wpa_dbg(wpa_s, MSG_DEBUG, " * reason %u%s",
  2433. reason_code,
  2434. locally_generated ? " (locally generated)" : "");
  2435. if (addr) {
  2436. wpa_dbg(wpa_s, MSG_DEBUG, " * address " MACSTR,
  2437. MAC2STR(addr));
  2438. }
  2439. wpa_hexdump(MSG_DEBUG, "Deauthentication frame IE(s)",
  2440. ie, ie_len);
  2441. }
  2442. wpa_reset_ft_completed(wpa_s->wpa);
  2443. wpas_event_disconnect(wpa_s, addr, reason_code,
  2444. locally_generated, ie, ie_len, 1);
  2445. }
  2446. static const char * reg_init_str(enum reg_change_initiator init)
  2447. {
  2448. switch (init) {
  2449. case REGDOM_SET_BY_CORE:
  2450. return "CORE";
  2451. case REGDOM_SET_BY_USER:
  2452. return "USER";
  2453. case REGDOM_SET_BY_DRIVER:
  2454. return "DRIVER";
  2455. case REGDOM_SET_BY_COUNTRY_IE:
  2456. return "COUNTRY_IE";
  2457. case REGDOM_BEACON_HINT:
  2458. return "BEACON_HINT";
  2459. }
  2460. return "?";
  2461. }
  2462. static const char * reg_type_str(enum reg_type type)
  2463. {
  2464. switch (type) {
  2465. case REGDOM_TYPE_UNKNOWN:
  2466. return "UNKNOWN";
  2467. case REGDOM_TYPE_COUNTRY:
  2468. return "COUNTRY";
  2469. case REGDOM_TYPE_WORLD:
  2470. return "WORLD";
  2471. case REGDOM_TYPE_CUSTOM_WORLD:
  2472. return "CUSTOM_WORLD";
  2473. case REGDOM_TYPE_INTERSECTION:
  2474. return "INTERSECTION";
  2475. }
  2476. return "?";
  2477. }
  2478. static void wpa_supplicant_update_channel_list(
  2479. struct wpa_supplicant *wpa_s, struct channel_list_changed *info)
  2480. {
  2481. struct wpa_supplicant *ifs;
  2482. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_REGDOM_CHANGE "init=%s type=%s%s%s",
  2483. reg_init_str(info->initiator), reg_type_str(info->type),
  2484. info->alpha2[0] ? " alpha2=" : "",
  2485. info->alpha2[0] ? info->alpha2 : "");
  2486. if (wpa_s->drv_priv == NULL)
  2487. return; /* Ignore event during drv initialization */
  2488. free_hw_features(wpa_s);
  2489. wpa_s->hw.modes = wpa_drv_get_hw_feature_data(
  2490. wpa_s, &wpa_s->hw.num_modes, &wpa_s->hw.flags);
  2491. wpas_p2p_update_channel_list(wpa_s);
  2492. /*
  2493. * Check other interfaces to see if they share the same radio. If
  2494. * so, they get updated with this same hw mode info.
  2495. */
  2496. dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
  2497. radio_list) {
  2498. if (ifs != wpa_s) {
  2499. wpa_printf(MSG_DEBUG, "%s: Updating hw mode",
  2500. ifs->ifname);
  2501. free_hw_features(ifs);
  2502. ifs->hw.modes = wpa_drv_get_hw_feature_data(
  2503. ifs, &ifs->hw.num_modes, &ifs->hw.flags);
  2504. }
  2505. }
  2506. /* Restart sched_scan with updated channel list */
  2507. if (wpa_s->sched_scanning) {
  2508. wpa_dbg(wpa_s, MSG_DEBUG,
  2509. "Channel list changed restart sched scan.");
  2510. wpa_supplicant_cancel_sched_scan(wpa_s);
  2511. wpa_supplicant_req_scan(wpa_s, 0, 0);
  2512. }
  2513. }
  2514. static void wpas_event_rx_mgmt_action(struct wpa_supplicant *wpa_s,
  2515. const u8 *frame, size_t len, int freq,
  2516. int rssi)
  2517. {
  2518. const struct ieee80211_mgmt *mgmt;
  2519. const u8 *payload;
  2520. size_t plen;
  2521. u8 category;
  2522. if (len < IEEE80211_HDRLEN + 2)
  2523. return;
  2524. mgmt = (const struct ieee80211_mgmt *) frame;
  2525. payload = frame + IEEE80211_HDRLEN;
  2526. category = *payload++;
  2527. plen = len - IEEE80211_HDRLEN - 1;
  2528. wpa_dbg(wpa_s, MSG_DEBUG, "Received Action frame: SA=" MACSTR
  2529. " Category=%u DataLen=%d freq=%d MHz",
  2530. MAC2STR(mgmt->sa), category, (int) plen, freq);
  2531. if (category == WLAN_ACTION_WMM) {
  2532. wmm_ac_rx_action(wpa_s, mgmt->da, mgmt->sa, payload, plen);
  2533. return;
  2534. }
  2535. #ifdef CONFIG_IEEE80211R
  2536. if (category == WLAN_ACTION_FT) {
  2537. ft_rx_action(wpa_s, payload, plen);
  2538. return;
  2539. }
  2540. #endif /* CONFIG_IEEE80211R */
  2541. #ifdef CONFIG_IEEE80211W
  2542. #ifdef CONFIG_SME
  2543. if (category == WLAN_ACTION_SA_QUERY) {
  2544. sme_sa_query_rx(wpa_s, mgmt->sa, payload, plen);
  2545. return;
  2546. }
  2547. #endif /* CONFIG_SME */
  2548. #endif /* CONFIG_IEEE80211W */
  2549. #ifdef CONFIG_WNM
  2550. if (mgmt->u.action.category == WLAN_ACTION_WNM) {
  2551. ieee802_11_rx_wnm_action(wpa_s, mgmt, len);
  2552. return;
  2553. }
  2554. #endif /* CONFIG_WNM */
  2555. #ifdef CONFIG_GAS
  2556. if ((mgmt->u.action.category == WLAN_ACTION_PUBLIC ||
  2557. mgmt->u.action.category == WLAN_ACTION_PROTECTED_DUAL) &&
  2558. gas_query_rx(wpa_s->gas, mgmt->da, mgmt->sa, mgmt->bssid,
  2559. mgmt->u.action.category,
  2560. payload, plen, freq) == 0)
  2561. return;
  2562. #endif /* CONFIG_GAS */
  2563. #ifdef CONFIG_TDLS
  2564. if (category == WLAN_ACTION_PUBLIC && plen >= 4 &&
  2565. payload[0] == WLAN_TDLS_DISCOVERY_RESPONSE) {
  2566. wpa_dbg(wpa_s, MSG_DEBUG,
  2567. "TDLS: Received Discovery Response from " MACSTR,
  2568. MAC2STR(mgmt->sa));
  2569. return;
  2570. }
  2571. #endif /* CONFIG_TDLS */
  2572. #ifdef CONFIG_INTERWORKING
  2573. if (category == WLAN_ACTION_QOS && plen >= 1 &&
  2574. payload[0] == QOS_QOS_MAP_CONFIG) {
  2575. const u8 *pos = payload + 1;
  2576. size_t qlen = plen - 1;
  2577. wpa_dbg(wpa_s, MSG_DEBUG, "Interworking: Received QoS Map Configure frame from "
  2578. MACSTR, MAC2STR(mgmt->sa));
  2579. if (os_memcmp(mgmt->sa, wpa_s->bssid, ETH_ALEN) == 0 &&
  2580. qlen > 2 && pos[0] == WLAN_EID_QOS_MAP_SET &&
  2581. pos[1] <= qlen - 2 && pos[1] >= 16)
  2582. wpas_qos_map_set(wpa_s, pos + 2, pos[1]);
  2583. return;
  2584. }
  2585. #endif /* CONFIG_INTERWORKING */
  2586. if (category == WLAN_ACTION_RADIO_MEASUREMENT &&
  2587. payload[0] == WLAN_RRM_NEIGHBOR_REPORT_RESPONSE) {
  2588. wpas_rrm_process_neighbor_rep(wpa_s, payload + 1, plen - 1);
  2589. return;
  2590. }
  2591. if (category == WLAN_ACTION_RADIO_MEASUREMENT &&
  2592. payload[0] == WLAN_RRM_LINK_MEASUREMENT_REQUEST) {
  2593. wpas_rrm_handle_link_measurement_request(wpa_s, mgmt->sa,
  2594. payload + 1, plen - 1,
  2595. rssi);
  2596. return;
  2597. }
  2598. wpas_p2p_rx_action(wpa_s, mgmt->da, mgmt->sa, mgmt->bssid,
  2599. category, payload, plen, freq);
  2600. if (wpa_s->ifmsh)
  2601. mesh_mpm_action_rx(wpa_s, mgmt, len);
  2602. }
  2603. static void wpa_supplicant_notify_avoid_freq(struct wpa_supplicant *wpa_s,
  2604. union wpa_event_data *event)
  2605. {
  2606. #ifdef CONFIG_P2P
  2607. struct wpa_supplicant *ifs;
  2608. #endif /* CONFIG_P2P */
  2609. struct wpa_freq_range_list *list;
  2610. char *str = NULL;
  2611. list = &event->freq_range;
  2612. if (list->num)
  2613. str = freq_range_list_str(list);
  2614. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_AVOID_FREQ "ranges=%s",
  2615. str ? str : "");
  2616. #ifdef CONFIG_P2P
  2617. if (freq_range_list_parse(&wpa_s->global->p2p_go_avoid_freq, str)) {
  2618. wpa_dbg(wpa_s, MSG_ERROR, "%s: Failed to parse freq range",
  2619. __func__);
  2620. } else {
  2621. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Update channel list based on frequency avoid event");
  2622. wpas_p2p_update_channel_list(wpa_s);
  2623. }
  2624. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  2625. int freq;
  2626. if (!ifs->current_ssid ||
  2627. !ifs->current_ssid->p2p_group ||
  2628. (ifs->current_ssid->mode != WPAS_MODE_P2P_GO &&
  2629. ifs->current_ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION))
  2630. continue;
  2631. freq = ifs->current_ssid->frequency;
  2632. if (!freq_range_list_includes(list, freq)) {
  2633. wpa_dbg(ifs, MSG_DEBUG, "P2P GO operating frequency %d MHz in safe range",
  2634. freq);
  2635. continue;
  2636. }
  2637. wpa_dbg(ifs, MSG_DEBUG, "P2P GO operating in unsafe frequency %d MHz",
  2638. freq);
  2639. /* TODO: Consider using CSA or removing the group within
  2640. * wpa_supplicant */
  2641. wpa_msg(ifs, MSG_INFO, P2P_EVENT_REMOVE_AND_REFORM_GROUP);
  2642. }
  2643. #endif /* CONFIG_P2P */
  2644. os_free(str);
  2645. }
  2646. static void wpa_supplicant_event_assoc_auth(struct wpa_supplicant *wpa_s,
  2647. union wpa_event_data *data)
  2648. {
  2649. wpa_dbg(wpa_s, MSG_DEBUG,
  2650. "Connection authorized by device, previous state %d",
  2651. wpa_s->wpa_state);
  2652. if (wpa_s->wpa_state == WPA_ASSOCIATED) {
  2653. wpa_supplicant_cancel_auth_timeout(wpa_s);
  2654. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  2655. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  2656. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  2657. }
  2658. wpa_sm_set_rx_replay_ctr(wpa_s->wpa, data->assoc_info.key_replay_ctr);
  2659. wpa_sm_set_ptk_kck_kek(wpa_s->wpa, data->assoc_info.ptk_kck,
  2660. data->assoc_info.ptk_kck_len,
  2661. data->assoc_info.ptk_kek,
  2662. data->assoc_info.ptk_kek_len);
  2663. }
  2664. void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
  2665. union wpa_event_data *data)
  2666. {
  2667. struct wpa_supplicant *wpa_s = ctx;
  2668. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED &&
  2669. event != EVENT_INTERFACE_ENABLED &&
  2670. event != EVENT_INTERFACE_STATUS &&
  2671. event != EVENT_SCHED_SCAN_STOPPED) {
  2672. wpa_dbg(wpa_s, MSG_DEBUG,
  2673. "Ignore event %s (%d) while interface is disabled",
  2674. event_to_string(event), event);
  2675. return;
  2676. }
  2677. #ifndef CONFIG_NO_STDOUT_DEBUG
  2678. {
  2679. int level = MSG_DEBUG;
  2680. if (event == EVENT_RX_MGMT && data->rx_mgmt.frame_len >= 24) {
  2681. const struct ieee80211_hdr *hdr;
  2682. u16 fc;
  2683. hdr = (const struct ieee80211_hdr *) data->rx_mgmt.frame;
  2684. fc = le_to_host16(hdr->frame_control);
  2685. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
  2686. WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON)
  2687. level = MSG_EXCESSIVE;
  2688. }
  2689. wpa_dbg(wpa_s, level, "Event %s (%d) received",
  2690. event_to_string(event), event);
  2691. }
  2692. #endif /* CONFIG_NO_STDOUT_DEBUG */
  2693. switch (event) {
  2694. case EVENT_AUTH:
  2695. sme_event_auth(wpa_s, data);
  2696. break;
  2697. case EVENT_ASSOC:
  2698. wpa_supplicant_event_assoc(wpa_s, data);
  2699. if (data && data->assoc_info.authorized)
  2700. wpa_supplicant_event_assoc_auth(wpa_s, data);
  2701. break;
  2702. case EVENT_DISASSOC:
  2703. wpas_event_disassoc(wpa_s,
  2704. data ? &data->disassoc_info : NULL);
  2705. break;
  2706. case EVENT_DEAUTH:
  2707. wpas_event_deauth(wpa_s,
  2708. data ? &data->deauth_info : NULL);
  2709. break;
  2710. case EVENT_MICHAEL_MIC_FAILURE:
  2711. wpa_supplicant_event_michael_mic_failure(wpa_s, data);
  2712. break;
  2713. #ifndef CONFIG_NO_SCAN_PROCESSING
  2714. case EVENT_SCAN_STARTED:
  2715. os_get_reltime(&wpa_s->scan_start_time);
  2716. if (wpa_s->own_scan_requested) {
  2717. struct os_reltime diff;
  2718. os_reltime_sub(&wpa_s->scan_start_time,
  2719. &wpa_s->scan_trigger_time, &diff);
  2720. wpa_dbg(wpa_s, MSG_DEBUG, "Own scan request started a scan in %ld.%06ld seconds",
  2721. diff.sec, diff.usec);
  2722. wpa_s->own_scan_requested = 0;
  2723. wpa_s->own_scan_running = 1;
  2724. if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
  2725. wpa_s->manual_scan_use_id) {
  2726. wpa_msg_ctrl(wpa_s, MSG_INFO,
  2727. WPA_EVENT_SCAN_STARTED "id=%u",
  2728. wpa_s->manual_scan_id);
  2729. } else {
  2730. wpa_msg_ctrl(wpa_s, MSG_INFO,
  2731. WPA_EVENT_SCAN_STARTED);
  2732. }
  2733. } else {
  2734. wpa_dbg(wpa_s, MSG_DEBUG, "External program started a scan");
  2735. wpa_s->radio->external_scan_running = 1;
  2736. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_STARTED);
  2737. }
  2738. break;
  2739. case EVENT_SCAN_RESULTS:
  2740. if (os_reltime_initialized(&wpa_s->scan_start_time)) {
  2741. struct os_reltime now, diff;
  2742. os_get_reltime(&now);
  2743. os_reltime_sub(&now, &wpa_s->scan_start_time, &diff);
  2744. wpa_s->scan_start_time.sec = 0;
  2745. wpa_s->scan_start_time.usec = 0;
  2746. wpa_dbg(wpa_s, MSG_DEBUG, "Scan completed in %ld.%06ld seconds",
  2747. diff.sec, diff.usec);
  2748. }
  2749. if (wpa_supplicant_event_scan_results(wpa_s, data))
  2750. break; /* interface may have been removed */
  2751. wpa_s->own_scan_running = 0;
  2752. wpa_s->radio->external_scan_running = 0;
  2753. radio_work_check_next(wpa_s);
  2754. break;
  2755. #endif /* CONFIG_NO_SCAN_PROCESSING */
  2756. case EVENT_ASSOCINFO:
  2757. wpa_supplicant_event_associnfo(wpa_s, data);
  2758. break;
  2759. case EVENT_INTERFACE_STATUS:
  2760. wpa_supplicant_event_interface_status(wpa_s, data);
  2761. break;
  2762. case EVENT_PMKID_CANDIDATE:
  2763. wpa_supplicant_event_pmkid_candidate(wpa_s, data);
  2764. break;
  2765. #ifdef CONFIG_PEERKEY
  2766. case EVENT_STKSTART:
  2767. wpa_supplicant_event_stkstart(wpa_s, data);
  2768. break;
  2769. #endif /* CONFIG_PEERKEY */
  2770. #ifdef CONFIG_TDLS
  2771. case EVENT_TDLS:
  2772. wpa_supplicant_event_tdls(wpa_s, data);
  2773. break;
  2774. #endif /* CONFIG_TDLS */
  2775. #ifdef CONFIG_WNM
  2776. case EVENT_WNM:
  2777. wpa_supplicant_event_wnm(wpa_s, data);
  2778. break;
  2779. #endif /* CONFIG_WNM */
  2780. #ifdef CONFIG_IEEE80211R
  2781. case EVENT_FT_RESPONSE:
  2782. wpa_supplicant_event_ft_response(wpa_s, data);
  2783. break;
  2784. #endif /* CONFIG_IEEE80211R */
  2785. #ifdef CONFIG_IBSS_RSN
  2786. case EVENT_IBSS_RSN_START:
  2787. wpa_supplicant_event_ibss_rsn_start(wpa_s, data);
  2788. break;
  2789. #endif /* CONFIG_IBSS_RSN */
  2790. case EVENT_ASSOC_REJECT:
  2791. if (data->assoc_reject.bssid)
  2792. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_ASSOC_REJECT
  2793. "bssid=" MACSTR " status_code=%u",
  2794. MAC2STR(data->assoc_reject.bssid),
  2795. data->assoc_reject.status_code);
  2796. else
  2797. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_ASSOC_REJECT
  2798. "status_code=%u",
  2799. data->assoc_reject.status_code);
  2800. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  2801. sme_event_assoc_reject(wpa_s, data);
  2802. else {
  2803. const u8 *bssid = data->assoc_reject.bssid;
  2804. if (bssid == NULL || is_zero_ether_addr(bssid))
  2805. bssid = wpa_s->pending_bssid;
  2806. wpas_connection_failed(wpa_s, bssid);
  2807. wpa_supplicant_mark_disassoc(wpa_s);
  2808. }
  2809. break;
  2810. case EVENT_AUTH_TIMED_OUT:
  2811. /* It is possible to get this event from earlier connection */
  2812. if (wpa_s->current_ssid &&
  2813. wpa_s->current_ssid->mode == WPAS_MODE_MESH) {
  2814. wpa_dbg(wpa_s, MSG_DEBUG,
  2815. "Ignore AUTH_TIMED_OUT in mesh configuration");
  2816. break;
  2817. }
  2818. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  2819. sme_event_auth_timed_out(wpa_s, data);
  2820. break;
  2821. case EVENT_ASSOC_TIMED_OUT:
  2822. /* It is possible to get this event from earlier connection */
  2823. if (wpa_s->current_ssid &&
  2824. wpa_s->current_ssid->mode == WPAS_MODE_MESH) {
  2825. wpa_dbg(wpa_s, MSG_DEBUG,
  2826. "Ignore ASSOC_TIMED_OUT in mesh configuration");
  2827. break;
  2828. }
  2829. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  2830. sme_event_assoc_timed_out(wpa_s, data);
  2831. break;
  2832. case EVENT_TX_STATUS:
  2833. wpa_dbg(wpa_s, MSG_DEBUG, "EVENT_TX_STATUS dst=" MACSTR
  2834. " type=%d stype=%d",
  2835. MAC2STR(data->tx_status.dst),
  2836. data->tx_status.type, data->tx_status.stype);
  2837. #ifdef CONFIG_AP
  2838. if (wpa_s->ap_iface == NULL) {
  2839. #ifdef CONFIG_OFFCHANNEL
  2840. if (data->tx_status.type == WLAN_FC_TYPE_MGMT &&
  2841. data->tx_status.stype == WLAN_FC_STYPE_ACTION)
  2842. offchannel_send_action_tx_status(
  2843. wpa_s, data->tx_status.dst,
  2844. data->tx_status.data,
  2845. data->tx_status.data_len,
  2846. data->tx_status.ack ?
  2847. OFFCHANNEL_SEND_ACTION_SUCCESS :
  2848. OFFCHANNEL_SEND_ACTION_NO_ACK);
  2849. #endif /* CONFIG_OFFCHANNEL */
  2850. break;
  2851. }
  2852. #endif /* CONFIG_AP */
  2853. #ifdef CONFIG_OFFCHANNEL
  2854. wpa_dbg(wpa_s, MSG_DEBUG, "EVENT_TX_STATUS pending_dst="
  2855. MACSTR, MAC2STR(wpa_s->parent->pending_action_dst));
  2856. /*
  2857. * Catch TX status events for Action frames we sent via group
  2858. * interface in GO mode.
  2859. */
  2860. if (data->tx_status.type == WLAN_FC_TYPE_MGMT &&
  2861. data->tx_status.stype == WLAN_FC_STYPE_ACTION &&
  2862. os_memcmp(wpa_s->parent->pending_action_dst,
  2863. data->tx_status.dst, ETH_ALEN) == 0) {
  2864. offchannel_send_action_tx_status(
  2865. wpa_s->parent, data->tx_status.dst,
  2866. data->tx_status.data,
  2867. data->tx_status.data_len,
  2868. data->tx_status.ack ?
  2869. OFFCHANNEL_SEND_ACTION_SUCCESS :
  2870. OFFCHANNEL_SEND_ACTION_NO_ACK);
  2871. break;
  2872. }
  2873. #endif /* CONFIG_OFFCHANNEL */
  2874. #ifdef CONFIG_AP
  2875. switch (data->tx_status.type) {
  2876. case WLAN_FC_TYPE_MGMT:
  2877. ap_mgmt_tx_cb(wpa_s, data->tx_status.data,
  2878. data->tx_status.data_len,
  2879. data->tx_status.stype,
  2880. data->tx_status.ack);
  2881. break;
  2882. case WLAN_FC_TYPE_DATA:
  2883. ap_tx_status(wpa_s, data->tx_status.dst,
  2884. data->tx_status.data,
  2885. data->tx_status.data_len,
  2886. data->tx_status.ack);
  2887. break;
  2888. }
  2889. #endif /* CONFIG_AP */
  2890. break;
  2891. #ifdef CONFIG_AP
  2892. case EVENT_EAPOL_TX_STATUS:
  2893. ap_eapol_tx_status(wpa_s, data->eapol_tx_status.dst,
  2894. data->eapol_tx_status.data,
  2895. data->eapol_tx_status.data_len,
  2896. data->eapol_tx_status.ack);
  2897. break;
  2898. case EVENT_DRIVER_CLIENT_POLL_OK:
  2899. ap_client_poll_ok(wpa_s, data->client_poll.addr);
  2900. break;
  2901. case EVENT_RX_FROM_UNKNOWN:
  2902. if (wpa_s->ap_iface == NULL)
  2903. break;
  2904. ap_rx_from_unknown_sta(wpa_s, data->rx_from_unknown.addr,
  2905. data->rx_from_unknown.wds);
  2906. break;
  2907. case EVENT_CH_SWITCH:
  2908. if (!data)
  2909. break;
  2910. if (!wpa_s->ap_iface) {
  2911. wpa_dbg(wpa_s, MSG_DEBUG, "AP: Ignore channel switch "
  2912. "event in non-AP mode");
  2913. break;
  2914. }
  2915. wpas_ap_ch_switch(wpa_s, data->ch_switch.freq,
  2916. data->ch_switch.ht_enabled,
  2917. data->ch_switch.ch_offset,
  2918. data->ch_switch.ch_width,
  2919. data->ch_switch.cf1,
  2920. data->ch_switch.cf2);
  2921. break;
  2922. #ifdef NEED_AP_MLME
  2923. case EVENT_DFS_RADAR_DETECTED:
  2924. if (data)
  2925. wpas_event_dfs_radar_detected(wpa_s, &data->dfs_event);
  2926. break;
  2927. case EVENT_DFS_CAC_STARTED:
  2928. if (data)
  2929. wpas_event_dfs_cac_started(wpa_s, &data->dfs_event);
  2930. break;
  2931. case EVENT_DFS_CAC_FINISHED:
  2932. if (data)
  2933. wpas_event_dfs_cac_finished(wpa_s, &data->dfs_event);
  2934. break;
  2935. case EVENT_DFS_CAC_ABORTED:
  2936. if (data)
  2937. wpas_event_dfs_cac_aborted(wpa_s, &data->dfs_event);
  2938. break;
  2939. case EVENT_DFS_NOP_FINISHED:
  2940. if (data)
  2941. wpas_event_dfs_cac_nop_finished(wpa_s,
  2942. &data->dfs_event);
  2943. break;
  2944. #endif /* NEED_AP_MLME */
  2945. #endif /* CONFIG_AP */
  2946. case EVENT_RX_MGMT: {
  2947. u16 fc, stype;
  2948. const struct ieee80211_mgmt *mgmt;
  2949. #ifdef CONFIG_TESTING_OPTIONS
  2950. if (wpa_s->ext_mgmt_frame_handling) {
  2951. struct rx_mgmt *rx = &data->rx_mgmt;
  2952. size_t hex_len = 2 * rx->frame_len + 1;
  2953. char *hex = os_malloc(hex_len);
  2954. if (hex) {
  2955. wpa_snprintf_hex(hex, hex_len,
  2956. rx->frame, rx->frame_len);
  2957. wpa_msg(wpa_s, MSG_INFO, "MGMT-RX freq=%d datarate=%u ssi_signal=%d %s",
  2958. rx->freq, rx->datarate, rx->ssi_signal,
  2959. hex);
  2960. os_free(hex);
  2961. }
  2962. break;
  2963. }
  2964. #endif /* CONFIG_TESTING_OPTIONS */
  2965. mgmt = (const struct ieee80211_mgmt *)
  2966. data->rx_mgmt.frame;
  2967. fc = le_to_host16(mgmt->frame_control);
  2968. stype = WLAN_FC_GET_STYPE(fc);
  2969. #ifdef CONFIG_AP
  2970. if (wpa_s->ap_iface == NULL) {
  2971. #endif /* CONFIG_AP */
  2972. #ifdef CONFIG_P2P
  2973. if (stype == WLAN_FC_STYPE_PROBE_REQ &&
  2974. data->rx_mgmt.frame_len > 24) {
  2975. const u8 *src = mgmt->sa;
  2976. const u8 *ie = mgmt->u.probe_req.variable;
  2977. size_t ie_len = data->rx_mgmt.frame_len -
  2978. (mgmt->u.probe_req.variable -
  2979. data->rx_mgmt.frame);
  2980. wpas_p2p_probe_req_rx(
  2981. wpa_s, src, mgmt->da,
  2982. mgmt->bssid, ie, ie_len,
  2983. data->rx_mgmt.ssi_signal);
  2984. break;
  2985. }
  2986. #endif /* CONFIG_P2P */
  2987. #ifdef CONFIG_IBSS_RSN
  2988. if (wpa_s->current_ssid &&
  2989. wpa_s->current_ssid->mode == WPAS_MODE_IBSS &&
  2990. stype == WLAN_FC_STYPE_AUTH &&
  2991. data->rx_mgmt.frame_len >= 30) {
  2992. wpa_supplicant_event_ibss_auth(wpa_s, data);
  2993. break;
  2994. }
  2995. #endif /* CONFIG_IBSS_RSN */
  2996. if (stype == WLAN_FC_STYPE_ACTION) {
  2997. wpas_event_rx_mgmt_action(
  2998. wpa_s, data->rx_mgmt.frame,
  2999. data->rx_mgmt.frame_len,
  3000. data->rx_mgmt.freq,
  3001. data->rx_mgmt.ssi_signal);
  3002. break;
  3003. }
  3004. if (wpa_s->ifmsh) {
  3005. mesh_mpm_mgmt_rx(wpa_s, &data->rx_mgmt);
  3006. break;
  3007. }
  3008. wpa_dbg(wpa_s, MSG_DEBUG, "AP: ignore received "
  3009. "management frame in non-AP mode");
  3010. break;
  3011. #ifdef CONFIG_AP
  3012. }
  3013. if (stype == WLAN_FC_STYPE_PROBE_REQ &&
  3014. data->rx_mgmt.frame_len > 24) {
  3015. const u8 *ie = mgmt->u.probe_req.variable;
  3016. size_t ie_len = data->rx_mgmt.frame_len -
  3017. (mgmt->u.probe_req.variable -
  3018. data->rx_mgmt.frame);
  3019. wpas_notify_preq(wpa_s, mgmt->sa, mgmt->da,
  3020. mgmt->bssid, ie, ie_len,
  3021. data->rx_mgmt.ssi_signal);
  3022. }
  3023. ap_mgmt_rx(wpa_s, &data->rx_mgmt);
  3024. #endif /* CONFIG_AP */
  3025. break;
  3026. }
  3027. case EVENT_RX_PROBE_REQ:
  3028. if (data->rx_probe_req.sa == NULL ||
  3029. data->rx_probe_req.ie == NULL)
  3030. break;
  3031. #ifdef CONFIG_AP
  3032. if (wpa_s->ap_iface) {
  3033. hostapd_probe_req_rx(wpa_s->ap_iface->bss[0],
  3034. data->rx_probe_req.sa,
  3035. data->rx_probe_req.da,
  3036. data->rx_probe_req.bssid,
  3037. data->rx_probe_req.ie,
  3038. data->rx_probe_req.ie_len,
  3039. data->rx_probe_req.ssi_signal);
  3040. break;
  3041. }
  3042. #endif /* CONFIG_AP */
  3043. wpas_p2p_probe_req_rx(wpa_s, data->rx_probe_req.sa,
  3044. data->rx_probe_req.da,
  3045. data->rx_probe_req.bssid,
  3046. data->rx_probe_req.ie,
  3047. data->rx_probe_req.ie_len,
  3048. data->rx_probe_req.ssi_signal);
  3049. break;
  3050. case EVENT_REMAIN_ON_CHANNEL:
  3051. #ifdef CONFIG_OFFCHANNEL
  3052. offchannel_remain_on_channel_cb(
  3053. wpa_s, data->remain_on_channel.freq,
  3054. data->remain_on_channel.duration);
  3055. #endif /* CONFIG_OFFCHANNEL */
  3056. wpas_p2p_remain_on_channel_cb(
  3057. wpa_s, data->remain_on_channel.freq,
  3058. data->remain_on_channel.duration);
  3059. break;
  3060. case EVENT_CANCEL_REMAIN_ON_CHANNEL:
  3061. #ifdef CONFIG_OFFCHANNEL
  3062. offchannel_cancel_remain_on_channel_cb(
  3063. wpa_s, data->remain_on_channel.freq);
  3064. #endif /* CONFIG_OFFCHANNEL */
  3065. wpas_p2p_cancel_remain_on_channel_cb(
  3066. wpa_s, data->remain_on_channel.freq);
  3067. break;
  3068. case EVENT_EAPOL_RX:
  3069. wpa_supplicant_rx_eapol(wpa_s, data->eapol_rx.src,
  3070. data->eapol_rx.data,
  3071. data->eapol_rx.data_len);
  3072. break;
  3073. case EVENT_SIGNAL_CHANGE:
  3074. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_SIGNAL_CHANGE
  3075. "above=%d signal=%d noise=%d txrate=%d",
  3076. data->signal_change.above_threshold,
  3077. data->signal_change.current_signal,
  3078. data->signal_change.current_noise,
  3079. data->signal_change.current_txrate);
  3080. wpa_bss_update_level(wpa_s->current_bss,
  3081. data->signal_change.current_signal);
  3082. bgscan_notify_signal_change(
  3083. wpa_s, data->signal_change.above_threshold,
  3084. data->signal_change.current_signal,
  3085. data->signal_change.current_noise,
  3086. data->signal_change.current_txrate);
  3087. break;
  3088. case EVENT_INTERFACE_ENABLED:
  3089. wpa_dbg(wpa_s, MSG_DEBUG, "Interface was enabled");
  3090. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
  3091. wpa_supplicant_update_mac_addr(wpa_s);
  3092. if (wpa_s->p2p_mgmt) {
  3093. wpa_supplicant_set_state(wpa_s,
  3094. WPA_DISCONNECTED);
  3095. break;
  3096. }
  3097. #ifdef CONFIG_AP
  3098. if (!wpa_s->ap_iface) {
  3099. wpa_supplicant_set_state(wpa_s,
  3100. WPA_DISCONNECTED);
  3101. wpa_s->scan_req = NORMAL_SCAN_REQ;
  3102. wpa_supplicant_req_scan(wpa_s, 0, 0);
  3103. } else
  3104. wpa_supplicant_set_state(wpa_s,
  3105. WPA_COMPLETED);
  3106. #else /* CONFIG_AP */
  3107. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  3108. wpa_supplicant_req_scan(wpa_s, 0, 0);
  3109. #endif /* CONFIG_AP */
  3110. }
  3111. break;
  3112. case EVENT_INTERFACE_DISABLED:
  3113. wpa_dbg(wpa_s, MSG_DEBUG, "Interface was disabled");
  3114. #ifdef CONFIG_P2P
  3115. if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO ||
  3116. (wpa_s->current_ssid && wpa_s->current_ssid->p2p_group &&
  3117. wpa_s->current_ssid->mode == WPAS_MODE_P2P_GO)) {
  3118. /*
  3119. * Mark interface disabled if this happens to end up not
  3120. * being removed as a separate P2P group interface.
  3121. */
  3122. wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
  3123. /*
  3124. * The interface was externally disabled. Remove
  3125. * it assuming an external entity will start a
  3126. * new session if needed.
  3127. */
  3128. if (wpa_s->current_ssid &&
  3129. wpa_s->current_ssid->p2p_group)
  3130. wpas_p2p_interface_unavailable(wpa_s);
  3131. else
  3132. wpas_p2p_disconnect(wpa_s);
  3133. /*
  3134. * wpa_s instance may have been freed, so must not use
  3135. * it here anymore.
  3136. */
  3137. break;
  3138. }
  3139. if (wpa_s->p2p_scan_work && wpa_s->global->p2p &&
  3140. p2p_in_progress(wpa_s->global->p2p) > 1) {
  3141. /* This radio work will be cancelled, so clear P2P
  3142. * state as well.
  3143. */
  3144. p2p_stop_find(wpa_s->global->p2p);
  3145. }
  3146. #endif /* CONFIG_P2P */
  3147. if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  3148. /*
  3149. * Indicate disconnection to keep ctrl_iface events
  3150. * consistent.
  3151. */
  3152. wpa_supplicant_event_disassoc(
  3153. wpa_s, WLAN_REASON_DEAUTH_LEAVING, 1);
  3154. }
  3155. wpa_supplicant_mark_disassoc(wpa_s);
  3156. radio_remove_works(wpa_s, NULL, 0);
  3157. wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
  3158. break;
  3159. case EVENT_CHANNEL_LIST_CHANGED:
  3160. wpa_supplicant_update_channel_list(
  3161. wpa_s, &data->channel_list_changed);
  3162. break;
  3163. case EVENT_INTERFACE_UNAVAILABLE:
  3164. wpas_p2p_interface_unavailable(wpa_s);
  3165. break;
  3166. case EVENT_BEST_CHANNEL:
  3167. wpa_dbg(wpa_s, MSG_DEBUG, "Best channel event received "
  3168. "(%d %d %d)",
  3169. data->best_chan.freq_24, data->best_chan.freq_5,
  3170. data->best_chan.freq_overall);
  3171. wpa_s->best_24_freq = data->best_chan.freq_24;
  3172. wpa_s->best_5_freq = data->best_chan.freq_5;
  3173. wpa_s->best_overall_freq = data->best_chan.freq_overall;
  3174. wpas_p2p_update_best_channels(wpa_s, data->best_chan.freq_24,
  3175. data->best_chan.freq_5,
  3176. data->best_chan.freq_overall);
  3177. break;
  3178. case EVENT_UNPROT_DEAUTH:
  3179. wpa_supplicant_event_unprot_deauth(wpa_s,
  3180. &data->unprot_deauth);
  3181. break;
  3182. case EVENT_UNPROT_DISASSOC:
  3183. wpa_supplicant_event_unprot_disassoc(wpa_s,
  3184. &data->unprot_disassoc);
  3185. break;
  3186. case EVENT_STATION_LOW_ACK:
  3187. #ifdef CONFIG_AP
  3188. if (wpa_s->ap_iface && data)
  3189. hostapd_event_sta_low_ack(wpa_s->ap_iface->bss[0],
  3190. data->low_ack.addr);
  3191. #endif /* CONFIG_AP */
  3192. #ifdef CONFIG_TDLS
  3193. if (data)
  3194. wpa_tdls_disable_unreachable_link(wpa_s->wpa,
  3195. data->low_ack.addr);
  3196. #endif /* CONFIG_TDLS */
  3197. break;
  3198. case EVENT_IBSS_PEER_LOST:
  3199. #ifdef CONFIG_IBSS_RSN
  3200. ibss_rsn_stop(wpa_s->ibss_rsn, data->ibss_peer_lost.peer);
  3201. #endif /* CONFIG_IBSS_RSN */
  3202. break;
  3203. case EVENT_DRIVER_GTK_REKEY:
  3204. if (os_memcmp(data->driver_gtk_rekey.bssid,
  3205. wpa_s->bssid, ETH_ALEN))
  3206. break;
  3207. if (!wpa_s->wpa)
  3208. break;
  3209. wpa_sm_update_replay_ctr(wpa_s->wpa,
  3210. data->driver_gtk_rekey.replay_ctr);
  3211. break;
  3212. case EVENT_SCHED_SCAN_STOPPED:
  3213. wpa_s->pno = 0;
  3214. wpa_s->sched_scanning = 0;
  3215. wpa_supplicant_notify_scanning(wpa_s, 0);
  3216. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  3217. break;
  3218. /*
  3219. * Start a new sched scan to continue searching for more SSIDs
  3220. * either if timed out or PNO schedule scan is pending.
  3221. */
  3222. if (wpa_s->sched_scan_timed_out) {
  3223. wpa_supplicant_req_sched_scan(wpa_s);
  3224. } else if (wpa_s->pno_sched_pending) {
  3225. wpa_s->pno_sched_pending = 0;
  3226. wpas_start_pno(wpa_s);
  3227. }
  3228. break;
  3229. case EVENT_WPS_BUTTON_PUSHED:
  3230. #ifdef CONFIG_WPS
  3231. wpas_wps_start_pbc(wpa_s, NULL, 0);
  3232. #endif /* CONFIG_WPS */
  3233. break;
  3234. case EVENT_AVOID_FREQUENCIES:
  3235. wpa_supplicant_notify_avoid_freq(wpa_s, data);
  3236. break;
  3237. case EVENT_CONNECT_FAILED_REASON:
  3238. #ifdef CONFIG_AP
  3239. if (!wpa_s->ap_iface || !data)
  3240. break;
  3241. hostapd_event_connect_failed_reason(
  3242. wpa_s->ap_iface->bss[0],
  3243. data->connect_failed_reason.addr,
  3244. data->connect_failed_reason.code);
  3245. #endif /* CONFIG_AP */
  3246. break;
  3247. case EVENT_NEW_PEER_CANDIDATE:
  3248. #ifdef CONFIG_MESH
  3249. if (!wpa_s->ifmsh || !data)
  3250. break;
  3251. wpa_mesh_notify_peer(wpa_s, data->mesh_peer.peer,
  3252. data->mesh_peer.ies,
  3253. data->mesh_peer.ie_len);
  3254. #endif /* CONFIG_MESH */
  3255. break;
  3256. default:
  3257. wpa_msg(wpa_s, MSG_INFO, "Unknown event %d", event);
  3258. break;
  3259. }
  3260. }