events.c 96 KB

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