events.c 94 KB

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