events.c 107 KB

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