events.c 100 KB

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