events.c 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973
  1. /*
  2. * WPA Supplicant - Driver event processing
  3. * Copyright (c) 2003-2012, 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. static int wpas_temp_disabled(struct wpa_supplicant *wpa_s,
  44. struct wpa_ssid *ssid)
  45. {
  46. struct os_time now;
  47. if (ssid == NULL || ssid->disabled_until.sec == 0)
  48. return 0;
  49. os_get_time(&now);
  50. if (ssid->disabled_until.sec > now.sec)
  51. return ssid->disabled_until.sec - now.sec;
  52. wpas_clear_temp_disabled(wpa_s, ssid, 0);
  53. return 0;
  54. }
  55. static int wpa_supplicant_select_config(struct wpa_supplicant *wpa_s)
  56. {
  57. struct wpa_ssid *ssid, *old_ssid;
  58. int res;
  59. if (wpa_s->conf->ap_scan == 1 && wpa_s->current_ssid)
  60. return 0;
  61. wpa_dbg(wpa_s, MSG_DEBUG, "Select network based on association "
  62. "information");
  63. ssid = wpa_supplicant_get_ssid(wpa_s);
  64. if (ssid == NULL) {
  65. wpa_msg(wpa_s, MSG_INFO,
  66. "No network configuration found for the current AP");
  67. return -1;
  68. }
  69. if (wpas_network_disabled(wpa_s, ssid)) {
  70. wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is disabled");
  71. return -1;
  72. }
  73. if (disallowed_bssid(wpa_s, wpa_s->bssid) ||
  74. disallowed_ssid(wpa_s, ssid->ssid, ssid->ssid_len)) {
  75. wpa_dbg(wpa_s, MSG_DEBUG, "Selected BSS is disallowed");
  76. return -1;
  77. }
  78. res = wpas_temp_disabled(wpa_s, ssid);
  79. if (res > 0) {
  80. wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is temporarily "
  81. "disabled for %d second(s)", res);
  82. return -1;
  83. }
  84. wpa_dbg(wpa_s, MSG_DEBUG, "Network configuration found for the "
  85. "current AP");
  86. if (wpa_key_mgmt_wpa_any(ssid->key_mgmt)) {
  87. u8 wpa_ie[80];
  88. size_t wpa_ie_len = sizeof(wpa_ie);
  89. wpa_supplicant_set_suites(wpa_s, NULL, ssid,
  90. wpa_ie, &wpa_ie_len);
  91. } else {
  92. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  93. }
  94. if (wpa_s->current_ssid && wpa_s->current_ssid != ssid)
  95. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  96. old_ssid = wpa_s->current_ssid;
  97. wpa_s->current_ssid = ssid;
  98. wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
  99. wpa_supplicant_initiate_eapol(wpa_s);
  100. if (old_ssid != wpa_s->current_ssid)
  101. wpas_notify_network_changed(wpa_s);
  102. return 0;
  103. }
  104. void wpa_supplicant_stop_countermeasures(void *eloop_ctx, void *sock_ctx)
  105. {
  106. struct wpa_supplicant *wpa_s = eloop_ctx;
  107. if (wpa_s->countermeasures) {
  108. wpa_s->countermeasures = 0;
  109. wpa_drv_set_countermeasures(wpa_s, 0);
  110. wpa_msg(wpa_s, MSG_INFO, "WPA: TKIP countermeasures stopped");
  111. wpa_supplicant_req_scan(wpa_s, 0, 0);
  112. }
  113. }
  114. void wpa_supplicant_mark_disassoc(struct wpa_supplicant *wpa_s)
  115. {
  116. int bssid_changed;
  117. wnm_bss_keep_alive_deinit(wpa_s);
  118. #ifdef CONFIG_IBSS_RSN
  119. ibss_rsn_deinit(wpa_s->ibss_rsn);
  120. wpa_s->ibss_rsn = NULL;
  121. #endif /* CONFIG_IBSS_RSN */
  122. #ifdef CONFIG_AP
  123. wpa_supplicant_ap_deinit(wpa_s);
  124. #endif /* CONFIG_AP */
  125. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  126. return;
  127. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  128. bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
  129. os_memset(wpa_s->bssid, 0, ETH_ALEN);
  130. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  131. #ifdef CONFIG_SME
  132. wpa_s->sme.prev_bssid_set = 0;
  133. #endif /* CONFIG_SME */
  134. #ifdef CONFIG_P2P
  135. os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
  136. #endif /* CONFIG_P2P */
  137. wpa_s->current_bss = NULL;
  138. wpa_s->assoc_freq = 0;
  139. #ifdef CONFIG_IEEE80211R
  140. #ifdef CONFIG_SME
  141. if (wpa_s->sme.ft_ies)
  142. sme_update_ft_ies(wpa_s, NULL, NULL, 0);
  143. #endif /* CONFIG_SME */
  144. #endif /* CONFIG_IEEE80211R */
  145. if (bssid_changed)
  146. wpas_notify_bssid_changed(wpa_s);
  147. eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
  148. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  149. if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt))
  150. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  151. wpa_s->ap_ies_from_associnfo = 0;
  152. wpa_s->current_ssid = NULL;
  153. wpa_s->key_mgmt = 0;
  154. }
  155. static void wpa_find_assoc_pmkid(struct wpa_supplicant *wpa_s)
  156. {
  157. struct wpa_ie_data ie;
  158. int pmksa_set = -1;
  159. size_t i;
  160. if (wpa_sm_parse_own_wpa_ie(wpa_s->wpa, &ie) < 0 ||
  161. ie.pmkid == NULL)
  162. return;
  163. for (i = 0; i < ie.num_pmkid; i++) {
  164. pmksa_set = pmksa_cache_set_current(wpa_s->wpa,
  165. ie.pmkid + i * PMKID_LEN,
  166. NULL, NULL, 0);
  167. if (pmksa_set == 0) {
  168. eapol_sm_notify_pmkid_attempt(wpa_s->eapol, 1);
  169. break;
  170. }
  171. }
  172. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: PMKID from assoc IE %sfound from "
  173. "PMKSA cache", pmksa_set == 0 ? "" : "not ");
  174. }
  175. static void wpa_supplicant_event_pmkid_candidate(struct wpa_supplicant *wpa_s,
  176. union wpa_event_data *data)
  177. {
  178. if (data == NULL) {
  179. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: No data in PMKID candidate "
  180. "event");
  181. return;
  182. }
  183. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: PMKID candidate event - bssid=" MACSTR
  184. " index=%d preauth=%d",
  185. MAC2STR(data->pmkid_candidate.bssid),
  186. data->pmkid_candidate.index,
  187. data->pmkid_candidate.preauth);
  188. pmksa_candidate_add(wpa_s->wpa, data->pmkid_candidate.bssid,
  189. data->pmkid_candidate.index,
  190. data->pmkid_candidate.preauth);
  191. }
  192. static int wpa_supplicant_dynamic_keys(struct wpa_supplicant *wpa_s)
  193. {
  194. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  195. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE)
  196. return 0;
  197. #ifdef IEEE8021X_EAPOL
  198. if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA &&
  199. wpa_s->current_ssid &&
  200. !(wpa_s->current_ssid->eapol_flags &
  201. (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
  202. EAPOL_FLAG_REQUIRE_KEY_BROADCAST))) {
  203. /* IEEE 802.1X, but not using dynamic WEP keys (i.e., either
  204. * plaintext or static WEP keys). */
  205. return 0;
  206. }
  207. #endif /* IEEE8021X_EAPOL */
  208. return 1;
  209. }
  210. /**
  211. * wpa_supplicant_scard_init - Initialize SIM/USIM access with PC/SC
  212. * @wpa_s: pointer to wpa_supplicant data
  213. * @ssid: Configuration data for the network
  214. * Returns: 0 on success, -1 on failure
  215. *
  216. * This function is called when starting authentication with a network that is
  217. * configured to use PC/SC for SIM/USIM access (EAP-SIM or EAP-AKA).
  218. */
  219. int wpa_supplicant_scard_init(struct wpa_supplicant *wpa_s,
  220. struct wpa_ssid *ssid)
  221. {
  222. #ifdef IEEE8021X_EAPOL
  223. #ifdef PCSC_FUNCS
  224. int aka = 0, sim = 0, type;
  225. if (ssid->eap.pcsc == NULL || wpa_s->scard != NULL)
  226. return 0;
  227. if (ssid->eap.eap_methods == NULL) {
  228. sim = 1;
  229. aka = 1;
  230. } else {
  231. struct eap_method_type *eap = ssid->eap.eap_methods;
  232. while (eap->vendor != EAP_VENDOR_IETF ||
  233. eap->method != EAP_TYPE_NONE) {
  234. if (eap->vendor == EAP_VENDOR_IETF) {
  235. if (eap->method == EAP_TYPE_SIM)
  236. sim = 1;
  237. else if (eap->method == EAP_TYPE_AKA ||
  238. eap->method == EAP_TYPE_AKA_PRIME)
  239. aka = 1;
  240. }
  241. eap++;
  242. }
  243. }
  244. if (eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_SIM) == NULL)
  245. sim = 0;
  246. if (eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_AKA) == NULL &&
  247. eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_AKA_PRIME) ==
  248. NULL)
  249. aka = 0;
  250. if (!sim && !aka) {
  251. wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is configured to "
  252. "use SIM, but neither EAP-SIM nor EAP-AKA are "
  253. "enabled");
  254. return 0;
  255. }
  256. wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is configured to use SIM "
  257. "(sim=%d aka=%d) - initialize PCSC", sim, aka);
  258. if (sim && aka)
  259. type = SCARD_TRY_BOTH;
  260. else if (aka)
  261. type = SCARD_USIM_ONLY;
  262. else
  263. type = SCARD_GSM_SIM_ONLY;
  264. wpa_s->scard = scard_init(type, NULL);
  265. if (wpa_s->scard == NULL) {
  266. wpa_msg(wpa_s, MSG_WARNING, "Failed to initialize SIM "
  267. "(pcsc-lite)");
  268. return -1;
  269. }
  270. wpa_sm_set_scard_ctx(wpa_s->wpa, wpa_s->scard);
  271. eapol_sm_register_scard_ctx(wpa_s->eapol, wpa_s->scard);
  272. #endif /* PCSC_FUNCS */
  273. #endif /* IEEE8021X_EAPOL */
  274. return 0;
  275. }
  276. #ifndef CONFIG_NO_SCAN_PROCESSING
  277. static int wpa_supplicant_match_privacy(struct wpa_bss *bss,
  278. struct wpa_ssid *ssid)
  279. {
  280. int i, privacy = 0;
  281. if (ssid->mixed_cell)
  282. return 1;
  283. #ifdef CONFIG_WPS
  284. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS)
  285. return 1;
  286. #endif /* CONFIG_WPS */
  287. for (i = 0; i < NUM_WEP_KEYS; i++) {
  288. if (ssid->wep_key_len[i]) {
  289. privacy = 1;
  290. break;
  291. }
  292. }
  293. #ifdef IEEE8021X_EAPOL
  294. if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
  295. ssid->eapol_flags & (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
  296. EAPOL_FLAG_REQUIRE_KEY_BROADCAST))
  297. privacy = 1;
  298. #endif /* IEEE8021X_EAPOL */
  299. if (wpa_key_mgmt_wpa(ssid->key_mgmt))
  300. privacy = 1;
  301. if (bss->caps & IEEE80211_CAP_PRIVACY)
  302. return privacy;
  303. return !privacy;
  304. }
  305. static int wpa_supplicant_ssid_bss_match(struct wpa_supplicant *wpa_s,
  306. struct wpa_ssid *ssid,
  307. struct wpa_bss *bss)
  308. {
  309. struct wpa_ie_data ie;
  310. int proto_match = 0;
  311. const u8 *rsn_ie, *wpa_ie;
  312. int ret;
  313. int wep_ok;
  314. ret = wpas_wps_ssid_bss_match(wpa_s, ssid, bss);
  315. if (ret >= 0)
  316. return ret;
  317. /* Allow TSN if local configuration accepts WEP use without WPA/WPA2 */
  318. wep_ok = !wpa_key_mgmt_wpa(ssid->key_mgmt) &&
  319. (((ssid->key_mgmt & WPA_KEY_MGMT_NONE) &&
  320. ssid->wep_key_len[ssid->wep_tx_keyidx] > 0) ||
  321. (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA));
  322. rsn_ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  323. while ((ssid->proto & WPA_PROTO_RSN) && rsn_ie) {
  324. proto_match++;
  325. if (wpa_parse_wpa_ie(rsn_ie, 2 + rsn_ie[1], &ie)) {
  326. wpa_dbg(wpa_s, MSG_DEBUG, " skip RSN IE - parse "
  327. "failed");
  328. break;
  329. }
  330. if (wep_ok &&
  331. (ie.group_cipher & (WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)))
  332. {
  333. wpa_dbg(wpa_s, MSG_DEBUG, " selected based on TSN "
  334. "in RSN IE");
  335. return 1;
  336. }
  337. if (!(ie.proto & ssid->proto)) {
  338. wpa_dbg(wpa_s, MSG_DEBUG, " skip RSN IE - proto "
  339. "mismatch");
  340. break;
  341. }
  342. if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
  343. wpa_dbg(wpa_s, MSG_DEBUG, " skip RSN IE - PTK "
  344. "cipher mismatch");
  345. break;
  346. }
  347. if (!(ie.group_cipher & ssid->group_cipher)) {
  348. wpa_dbg(wpa_s, MSG_DEBUG, " skip RSN IE - GTK "
  349. "cipher mismatch");
  350. break;
  351. }
  352. if (!(ie.key_mgmt & ssid->key_mgmt)) {
  353. wpa_dbg(wpa_s, MSG_DEBUG, " skip RSN IE - key mgmt "
  354. "mismatch");
  355. break;
  356. }
  357. #ifdef CONFIG_IEEE80211W
  358. if (!(ie.capabilities & WPA_CAPABILITY_MFPC) &&
  359. ssid->ieee80211w == MGMT_FRAME_PROTECTION_REQUIRED) {
  360. wpa_dbg(wpa_s, MSG_DEBUG, " skip RSN IE - no mgmt "
  361. "frame protection");
  362. break;
  363. }
  364. #endif /* CONFIG_IEEE80211W */
  365. wpa_dbg(wpa_s, MSG_DEBUG, " selected based on RSN IE");
  366. return 1;
  367. }
  368. wpa_ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  369. while ((ssid->proto & WPA_PROTO_WPA) && wpa_ie) {
  370. proto_match++;
  371. if (wpa_parse_wpa_ie(wpa_ie, 2 + wpa_ie[1], &ie)) {
  372. wpa_dbg(wpa_s, MSG_DEBUG, " skip WPA IE - parse "
  373. "failed");
  374. break;
  375. }
  376. if (wep_ok &&
  377. (ie.group_cipher & (WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)))
  378. {
  379. wpa_dbg(wpa_s, MSG_DEBUG, " selected based on TSN "
  380. "in WPA IE");
  381. return 1;
  382. }
  383. if (!(ie.proto & ssid->proto)) {
  384. wpa_dbg(wpa_s, MSG_DEBUG, " skip WPA IE - proto "
  385. "mismatch");
  386. break;
  387. }
  388. if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
  389. wpa_dbg(wpa_s, MSG_DEBUG, " skip WPA IE - PTK "
  390. "cipher mismatch");
  391. break;
  392. }
  393. if (!(ie.group_cipher & ssid->group_cipher)) {
  394. wpa_dbg(wpa_s, MSG_DEBUG, " skip WPA IE - GTK "
  395. "cipher mismatch");
  396. break;
  397. }
  398. if (!(ie.key_mgmt & ssid->key_mgmt)) {
  399. wpa_dbg(wpa_s, MSG_DEBUG, " skip WPA IE - key mgmt "
  400. "mismatch");
  401. break;
  402. }
  403. wpa_dbg(wpa_s, MSG_DEBUG, " selected based on WPA IE");
  404. return 1;
  405. }
  406. if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) && !wpa_ie &&
  407. !rsn_ie) {
  408. wpa_dbg(wpa_s, MSG_DEBUG, " allow for non-WPA IEEE 802.1X");
  409. return 1;
  410. }
  411. if ((ssid->proto & (WPA_PROTO_WPA | WPA_PROTO_RSN)) &&
  412. wpa_key_mgmt_wpa(ssid->key_mgmt) && proto_match == 0) {
  413. wpa_dbg(wpa_s, MSG_DEBUG, " skip - no WPA/RSN proto match");
  414. return 0;
  415. }
  416. if (!wpa_key_mgmt_wpa(ssid->key_mgmt)) {
  417. wpa_dbg(wpa_s, MSG_DEBUG, " allow in non-WPA/WPA2");
  418. return 1;
  419. }
  420. wpa_dbg(wpa_s, MSG_DEBUG, " reject due to mismatch with "
  421. "WPA/WPA2");
  422. return 0;
  423. }
  424. static int freq_allowed(int *freqs, int freq)
  425. {
  426. int i;
  427. if (freqs == NULL)
  428. return 1;
  429. for (i = 0; freqs[i]; i++)
  430. if (freqs[i] == freq)
  431. return 1;
  432. return 0;
  433. }
  434. static int ht_supported(const struct hostapd_hw_modes *mode)
  435. {
  436. if (!(mode->flags & HOSTAPD_MODE_FLAG_HT_INFO_KNOWN)) {
  437. /*
  438. * The driver did not indicate whether it supports HT. Assume
  439. * it does to avoid connection issues.
  440. */
  441. return 1;
  442. }
  443. /*
  444. * IEEE Std 802.11n-2009 20.1.1:
  445. * An HT non-AP STA shall support all EQM rates for one spatial stream.
  446. */
  447. return mode->mcs_set[0] == 0xff;
  448. }
  449. static int rate_match(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  450. {
  451. const struct hostapd_hw_modes *mode = NULL, *modes;
  452. const u8 scan_ie[2] = { WLAN_EID_SUPP_RATES, WLAN_EID_EXT_SUPP_RATES };
  453. const u8 *rate_ie;
  454. int i, j, k;
  455. if (bss->freq == 0)
  456. return 1; /* Cannot do matching without knowing band */
  457. modes = wpa_s->hw.modes;
  458. if (modes == NULL) {
  459. /*
  460. * The driver does not provide any additional information
  461. * about the utilized hardware, so allow the connection attempt
  462. * to continue.
  463. */
  464. return 1;
  465. }
  466. for (i = 0; i < wpa_s->hw.num_modes; i++) {
  467. for (j = 0; j < modes[i].num_channels; j++) {
  468. int freq = modes[i].channels[j].freq;
  469. if (freq == bss->freq) {
  470. if (mode &&
  471. mode->mode == HOSTAPD_MODE_IEEE80211G)
  472. break; /* do not allow 802.11b replace
  473. * 802.11g */
  474. mode = &modes[i];
  475. break;
  476. }
  477. }
  478. }
  479. if (mode == NULL)
  480. return 0;
  481. for (i = 0; i < (int) sizeof(scan_ie); i++) {
  482. rate_ie = wpa_bss_get_ie(bss, scan_ie[i]);
  483. if (rate_ie == NULL)
  484. continue;
  485. for (j = 2; j < rate_ie[1] + 2; j++) {
  486. int flagged = !!(rate_ie[j] & 0x80);
  487. int r = (rate_ie[j] & 0x7f) * 5;
  488. /*
  489. * IEEE Std 802.11n-2009 7.3.2.2:
  490. * The new BSS Membership selector value is encoded
  491. * like a legacy basic rate, but it is not a rate and
  492. * only indicates if the BSS members are required to
  493. * support the mandatory features of Clause 20 [HT PHY]
  494. * in order to join the BSS.
  495. */
  496. if (flagged && ((rate_ie[j] & 0x7f) ==
  497. BSS_MEMBERSHIP_SELECTOR_HT_PHY)) {
  498. if (!ht_supported(mode)) {
  499. wpa_dbg(wpa_s, MSG_DEBUG,
  500. " hardware does not support "
  501. "HT PHY");
  502. return 0;
  503. }
  504. continue;
  505. }
  506. if (!flagged)
  507. continue;
  508. /* check for legacy basic rates */
  509. for (k = 0; k < mode->num_rates; k++) {
  510. if (mode->rates[k] == r)
  511. break;
  512. }
  513. if (k == mode->num_rates) {
  514. /*
  515. * IEEE Std 802.11-2007 7.3.2.2 demands that in
  516. * order to join a BSS all required rates
  517. * have to be supported by the hardware.
  518. */
  519. wpa_dbg(wpa_s, MSG_DEBUG, " hardware does "
  520. "not support required rate %d.%d Mbps",
  521. r / 10, r % 10);
  522. return 0;
  523. }
  524. }
  525. }
  526. return 1;
  527. }
  528. static struct wpa_ssid * wpa_scan_res_match(struct wpa_supplicant *wpa_s,
  529. int i, struct wpa_bss *bss,
  530. struct wpa_ssid *group)
  531. {
  532. u8 wpa_ie_len, rsn_ie_len;
  533. int wpa;
  534. struct wpa_blacklist *e;
  535. const u8 *ie;
  536. struct wpa_ssid *ssid;
  537. ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  538. wpa_ie_len = ie ? ie[1] : 0;
  539. ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  540. rsn_ie_len = ie ? ie[1] : 0;
  541. wpa_dbg(wpa_s, MSG_DEBUG, "%d: " MACSTR " ssid='%s' "
  542. "wpa_ie_len=%u rsn_ie_len=%u caps=0x%x level=%d%s",
  543. i, MAC2STR(bss->bssid), wpa_ssid_txt(bss->ssid, bss->ssid_len),
  544. wpa_ie_len, rsn_ie_len, bss->caps, bss->level,
  545. wpa_bss_get_vendor_ie(bss, WPS_IE_VENDOR_TYPE) ? " wps" : "");
  546. e = wpa_blacklist_get(wpa_s, bss->bssid);
  547. if (e) {
  548. int limit = 1;
  549. if (wpa_supplicant_enabled_networks(wpa_s) == 1) {
  550. /*
  551. * When only a single network is enabled, we can
  552. * trigger blacklisting on the first failure. This
  553. * should not be done with multiple enabled networks to
  554. * avoid getting forced to move into a worse ESS on
  555. * single error if there are no other BSSes of the
  556. * current ESS.
  557. */
  558. limit = 0;
  559. }
  560. if (e->count > limit) {
  561. wpa_dbg(wpa_s, MSG_DEBUG, " skip - blacklisted "
  562. "(count=%d limit=%d)", e->count, limit);
  563. return NULL;
  564. }
  565. }
  566. if (bss->ssid_len == 0) {
  567. wpa_dbg(wpa_s, MSG_DEBUG, " skip - SSID not known");
  568. return NULL;
  569. }
  570. if (disallowed_bssid(wpa_s, bss->bssid)) {
  571. wpa_dbg(wpa_s, MSG_DEBUG, " skip - BSSID disallowed");
  572. return NULL;
  573. }
  574. if (disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len)) {
  575. wpa_dbg(wpa_s, MSG_DEBUG, " skip - SSID disallowed");
  576. return NULL;
  577. }
  578. wpa = wpa_ie_len > 0 || rsn_ie_len > 0;
  579. for (ssid = group; ssid; ssid = ssid->pnext) {
  580. int check_ssid = wpa ? 1 : (ssid->ssid_len != 0);
  581. int res;
  582. if (wpas_network_disabled(wpa_s, ssid)) {
  583. wpa_dbg(wpa_s, MSG_DEBUG, " skip - disabled");
  584. continue;
  585. }
  586. res = wpas_temp_disabled(wpa_s, ssid);
  587. if (res > 0) {
  588. wpa_dbg(wpa_s, MSG_DEBUG, " skip - disabled "
  589. "temporarily for %d second(s)", res);
  590. continue;
  591. }
  592. #ifdef CONFIG_WPS
  593. if ((ssid->key_mgmt & WPA_KEY_MGMT_WPS) && e && e->count > 0) {
  594. wpa_dbg(wpa_s, MSG_DEBUG, " skip - blacklisted "
  595. "(WPS)");
  596. continue;
  597. }
  598. if (wpa && ssid->ssid_len == 0 &&
  599. wpas_wps_ssid_wildcard_ok(wpa_s, ssid, bss))
  600. check_ssid = 0;
  601. if (!wpa && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
  602. /* Only allow wildcard SSID match if an AP
  603. * advertises active WPS operation that matches
  604. * with our mode. */
  605. check_ssid = 1;
  606. if (ssid->ssid_len == 0 &&
  607. wpas_wps_ssid_wildcard_ok(wpa_s, ssid, bss))
  608. check_ssid = 0;
  609. }
  610. #endif /* CONFIG_WPS */
  611. if (ssid->bssid_set && ssid->ssid_len == 0 &&
  612. os_memcmp(bss->bssid, ssid->bssid, ETH_ALEN) == 0)
  613. check_ssid = 0;
  614. if (check_ssid &&
  615. (bss->ssid_len != ssid->ssid_len ||
  616. os_memcmp(bss->ssid, ssid->ssid, bss->ssid_len) != 0)) {
  617. wpa_dbg(wpa_s, MSG_DEBUG, " skip - SSID mismatch");
  618. continue;
  619. }
  620. if (ssid->bssid_set &&
  621. os_memcmp(bss->bssid, ssid->bssid, ETH_ALEN) != 0) {
  622. wpa_dbg(wpa_s, MSG_DEBUG, " skip - BSSID mismatch");
  623. continue;
  624. }
  625. if (!wpa_supplicant_ssid_bss_match(wpa_s, ssid, bss))
  626. continue;
  627. if (!wpa &&
  628. !(ssid->key_mgmt & WPA_KEY_MGMT_NONE) &&
  629. !(ssid->key_mgmt & WPA_KEY_MGMT_WPS) &&
  630. !(ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)) {
  631. wpa_dbg(wpa_s, MSG_DEBUG, " skip - non-WPA network "
  632. "not allowed");
  633. continue;
  634. }
  635. if (!wpa_supplicant_match_privacy(bss, ssid)) {
  636. wpa_dbg(wpa_s, MSG_DEBUG, " skip - privacy "
  637. "mismatch");
  638. continue;
  639. }
  640. if (bss->caps & IEEE80211_CAP_IBSS) {
  641. wpa_dbg(wpa_s, MSG_DEBUG, " skip - IBSS (adhoc) "
  642. "network");
  643. continue;
  644. }
  645. if (!freq_allowed(ssid->freq_list, bss->freq)) {
  646. wpa_dbg(wpa_s, MSG_DEBUG, " skip - frequency not "
  647. "allowed");
  648. continue;
  649. }
  650. if (!rate_match(wpa_s, bss)) {
  651. wpa_dbg(wpa_s, MSG_DEBUG, " skip - rate sets do "
  652. "not match");
  653. continue;
  654. }
  655. #ifdef CONFIG_P2P
  656. /*
  657. * TODO: skip the AP if its P2P IE has Group Formation
  658. * bit set in the P2P Group Capability Bitmap and we
  659. * are not in Group Formation with that device.
  660. */
  661. #endif /* CONFIG_P2P */
  662. /* Matching configuration found */
  663. return ssid;
  664. }
  665. /* No matching configuration found */
  666. return NULL;
  667. }
  668. static struct wpa_bss *
  669. wpa_supplicant_select_bss(struct wpa_supplicant *wpa_s,
  670. struct wpa_ssid *group,
  671. struct wpa_ssid **selected_ssid)
  672. {
  673. unsigned int i;
  674. wpa_dbg(wpa_s, MSG_DEBUG, "Selecting BSS from priority group %d",
  675. group->priority);
  676. for (i = 0; i < wpa_s->last_scan_res_used; i++) {
  677. struct wpa_bss *bss = wpa_s->last_scan_res[i];
  678. *selected_ssid = wpa_scan_res_match(wpa_s, i, bss, group);
  679. if (!*selected_ssid)
  680. continue;
  681. wpa_dbg(wpa_s, MSG_DEBUG, " selected BSS " MACSTR
  682. " ssid='%s'",
  683. MAC2STR(bss->bssid),
  684. wpa_ssid_txt(bss->ssid, bss->ssid_len));
  685. return bss;
  686. }
  687. return NULL;
  688. }
  689. static struct wpa_bss *
  690. wpa_supplicant_pick_network(struct wpa_supplicant *wpa_s,
  691. struct wpa_ssid **selected_ssid)
  692. {
  693. struct wpa_bss *selected = NULL;
  694. int prio;
  695. if (wpa_s->last_scan_res == NULL ||
  696. wpa_s->last_scan_res_used == 0)
  697. return NULL; /* no scan results from last update */
  698. while (selected == NULL) {
  699. for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
  700. selected = wpa_supplicant_select_bss(
  701. wpa_s, wpa_s->conf->pssid[prio],
  702. selected_ssid);
  703. if (selected)
  704. break;
  705. }
  706. if (selected == NULL && wpa_s->blacklist &&
  707. !wpa_s->countermeasures) {
  708. wpa_dbg(wpa_s, MSG_DEBUG, "No APs found - clear "
  709. "blacklist and try again");
  710. wpa_blacklist_clear(wpa_s);
  711. wpa_s->blacklist_cleared++;
  712. } else if (selected == NULL)
  713. break;
  714. }
  715. return selected;
  716. }
  717. static void wpa_supplicant_req_new_scan(struct wpa_supplicant *wpa_s,
  718. int timeout_sec, int timeout_usec)
  719. {
  720. if (!wpa_supplicant_enabled_networks(wpa_s)) {
  721. /*
  722. * No networks are enabled; short-circuit request so
  723. * we don't wait timeout seconds before transitioning
  724. * to INACTIVE state.
  725. */
  726. wpa_dbg(wpa_s, MSG_DEBUG, "Short-circuit new scan request "
  727. "since there are no enabled networks");
  728. wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
  729. #ifdef CONFIG_P2P
  730. wpa_s->sta_scan_pending = 0;
  731. #endif /* CONFIG_P2P */
  732. return;
  733. }
  734. wpa_supplicant_req_scan(wpa_s, timeout_sec, timeout_usec);
  735. }
  736. int wpa_supplicant_connect(struct wpa_supplicant *wpa_s,
  737. struct wpa_bss *selected,
  738. struct wpa_ssid *ssid)
  739. {
  740. if (wpas_wps_scan_pbc_overlap(wpa_s, selected, ssid)) {
  741. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_OVERLAP
  742. "PBC session overlap");
  743. #ifdef CONFIG_P2P
  744. if (wpas_p2p_notif_pbc_overlap(wpa_s) == 1)
  745. return -1;
  746. #endif /* CONFIG_P2P */
  747. #ifdef CONFIG_WPS
  748. wpas_wps_cancel(wpa_s);
  749. #endif /* CONFIG_WPS */
  750. return -1;
  751. }
  752. /*
  753. * Do not trigger new association unless the BSSID has changed or if
  754. * reassociation is requested. If we are in process of associating with
  755. * the selected BSSID, do not trigger new attempt.
  756. */
  757. if (wpa_s->reassociate ||
  758. (os_memcmp(selected->bssid, wpa_s->bssid, ETH_ALEN) != 0 &&
  759. ((wpa_s->wpa_state != WPA_ASSOCIATING &&
  760. wpa_s->wpa_state != WPA_AUTHENTICATING) ||
  761. os_memcmp(selected->bssid, wpa_s->pending_bssid, ETH_ALEN) !=
  762. 0))) {
  763. if (wpa_supplicant_scard_init(wpa_s, ssid)) {
  764. wpa_supplicant_req_new_scan(wpa_s, 10, 0);
  765. return 0;
  766. }
  767. wpa_msg(wpa_s, MSG_DEBUG, "Request association: "
  768. "reassociate: %d selected: "MACSTR " bssid: " MACSTR
  769. " pending: " MACSTR " wpa_state: %s",
  770. wpa_s->reassociate, MAC2STR(selected->bssid),
  771. MAC2STR(wpa_s->bssid), MAC2STR(wpa_s->pending_bssid),
  772. wpa_supplicant_state_txt(wpa_s->wpa_state));
  773. wpa_supplicant_associate(wpa_s, selected, ssid);
  774. } else {
  775. wpa_dbg(wpa_s, MSG_DEBUG, "Already associated with the "
  776. "selected AP");
  777. }
  778. return 0;
  779. }
  780. static struct wpa_ssid *
  781. wpa_supplicant_pick_new_network(struct wpa_supplicant *wpa_s)
  782. {
  783. int prio;
  784. struct wpa_ssid *ssid;
  785. for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
  786. for (ssid = wpa_s->conf->pssid[prio]; ssid; ssid = ssid->pnext)
  787. {
  788. if (wpas_network_disabled(wpa_s, ssid))
  789. continue;
  790. if (ssid->mode == IEEE80211_MODE_IBSS ||
  791. ssid->mode == IEEE80211_MODE_AP)
  792. return ssid;
  793. }
  794. }
  795. return NULL;
  796. }
  797. /* TODO: move the rsn_preauth_scan_result*() to be called from notify.c based
  798. * on BSS added and BSS changed events */
  799. static void wpa_supplicant_rsn_preauth_scan_results(
  800. struct wpa_supplicant *wpa_s)
  801. {
  802. struct wpa_bss *bss;
  803. if (rsn_preauth_scan_results(wpa_s->wpa) < 0)
  804. return;
  805. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  806. const u8 *ssid, *rsn;
  807. ssid = wpa_bss_get_ie(bss, WLAN_EID_SSID);
  808. if (ssid == NULL)
  809. continue;
  810. rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  811. if (rsn == NULL)
  812. continue;
  813. rsn_preauth_scan_result(wpa_s->wpa, bss->bssid, ssid, rsn);
  814. }
  815. }
  816. static int wpa_supplicant_need_to_roam(struct wpa_supplicant *wpa_s,
  817. struct wpa_bss *selected,
  818. struct wpa_ssid *ssid)
  819. {
  820. struct wpa_bss *current_bss = NULL;
  821. int min_diff;
  822. if (wpa_s->reassociate)
  823. return 1; /* explicit request to reassociate */
  824. if (wpa_s->wpa_state < WPA_ASSOCIATED)
  825. return 1; /* we are not associated; continue */
  826. if (wpa_s->current_ssid == NULL)
  827. return 1; /* unknown current SSID */
  828. if (wpa_s->current_ssid != ssid)
  829. return 1; /* different network block */
  830. if (wpas_driver_bss_selection(wpa_s))
  831. return 0; /* Driver-based roaming */
  832. if (wpa_s->current_ssid->ssid)
  833. current_bss = wpa_bss_get(wpa_s, wpa_s->bssid,
  834. wpa_s->current_ssid->ssid,
  835. wpa_s->current_ssid->ssid_len);
  836. if (!current_bss)
  837. current_bss = wpa_bss_get_bssid(wpa_s, wpa_s->bssid);
  838. if (!current_bss)
  839. return 1; /* current BSS not seen in scan results */
  840. if (current_bss == selected)
  841. return 0;
  842. if (selected->last_update_idx > current_bss->last_update_idx)
  843. return 1; /* current BSS not seen in the last scan */
  844. #ifndef CONFIG_NO_ROAMING
  845. wpa_dbg(wpa_s, MSG_DEBUG, "Considering within-ESS reassociation");
  846. wpa_dbg(wpa_s, MSG_DEBUG, "Current BSS: " MACSTR " level=%d",
  847. MAC2STR(current_bss->bssid), current_bss->level);
  848. wpa_dbg(wpa_s, MSG_DEBUG, "Selected BSS: " MACSTR " level=%d",
  849. MAC2STR(selected->bssid), selected->level);
  850. if (wpa_s->current_ssid->bssid_set &&
  851. os_memcmp(selected->bssid, wpa_s->current_ssid->bssid, ETH_ALEN) ==
  852. 0) {
  853. wpa_dbg(wpa_s, MSG_DEBUG, "Allow reassociation - selected BSS "
  854. "has preferred BSSID");
  855. return 1;
  856. }
  857. min_diff = 2;
  858. if (current_bss->level < 0) {
  859. if (current_bss->level < -85)
  860. min_diff = 1;
  861. else if (current_bss->level < -80)
  862. min_diff = 2;
  863. else if (current_bss->level < -75)
  864. min_diff = 3;
  865. else if (current_bss->level < -70)
  866. min_diff = 4;
  867. else
  868. min_diff = 5;
  869. }
  870. if (abs(current_bss->level - selected->level) < min_diff) {
  871. wpa_dbg(wpa_s, MSG_DEBUG, "Skip roam - too small difference "
  872. "in signal level");
  873. return 0;
  874. }
  875. return 1;
  876. #else /* CONFIG_NO_ROAMING */
  877. return 0;
  878. #endif /* CONFIG_NO_ROAMING */
  879. }
  880. /* Return != 0 if no scan results could be fetched or if scan results should not
  881. * be shared with other virtual interfaces. */
  882. static int _wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
  883. union wpa_event_data *data)
  884. {
  885. struct wpa_scan_results *scan_res;
  886. int ap = 0;
  887. #ifndef CONFIG_NO_RANDOM_POOL
  888. size_t i, num;
  889. #endif /* CONFIG_NO_RANDOM_POOL */
  890. #ifdef CONFIG_AP
  891. if (wpa_s->ap_iface)
  892. ap = 1;
  893. #endif /* CONFIG_AP */
  894. wpa_supplicant_notify_scanning(wpa_s, 0);
  895. #ifdef CONFIG_P2P
  896. if (wpa_s->global->p2p_cb_on_scan_complete &&
  897. !wpa_s->global->p2p_disabled &&
  898. wpa_s->global->p2p != NULL && !wpa_s->sta_scan_pending &&
  899. !wpa_s->scan_res_handler) {
  900. wpa_s->global->p2p_cb_on_scan_complete = 0;
  901. if (p2p_other_scan_completed(wpa_s->global->p2p) == 1) {
  902. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Pending P2P operation "
  903. "stopped scan processing");
  904. wpa_s->sta_scan_pending = 1;
  905. wpa_supplicant_req_scan(wpa_s, 5, 0);
  906. return -1;
  907. }
  908. }
  909. wpa_s->sta_scan_pending = 0;
  910. #endif /* CONFIG_P2P */
  911. scan_res = wpa_supplicant_get_scan_results(wpa_s,
  912. data ? &data->scan_info :
  913. NULL, 1);
  914. if (scan_res == NULL) {
  915. if (wpa_s->conf->ap_scan == 2 || ap)
  916. return -1;
  917. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to get scan results - try "
  918. "scanning again");
  919. wpa_supplicant_req_new_scan(wpa_s, 1, 0);
  920. return -1;
  921. }
  922. #ifndef CONFIG_NO_RANDOM_POOL
  923. num = scan_res->num;
  924. if (num > 10)
  925. num = 10;
  926. for (i = 0; i < num; i++) {
  927. u8 buf[5];
  928. struct wpa_scan_res *res = scan_res->res[i];
  929. buf[0] = res->bssid[5];
  930. buf[1] = res->qual & 0xff;
  931. buf[2] = res->noise & 0xff;
  932. buf[3] = res->level & 0xff;
  933. buf[4] = res->tsf & 0xff;
  934. random_add_randomness(buf, sizeof(buf));
  935. }
  936. #endif /* CONFIG_NO_RANDOM_POOL */
  937. if (wpa_s->scan_res_handler) {
  938. void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
  939. struct wpa_scan_results *scan_res);
  940. scan_res_handler = wpa_s->scan_res_handler;
  941. wpa_s->scan_res_handler = NULL;
  942. scan_res_handler(wpa_s, scan_res);
  943. wpa_scan_results_free(scan_res);
  944. return -2;
  945. }
  946. if (ap) {
  947. wpa_dbg(wpa_s, MSG_DEBUG, "Ignore scan results in AP mode");
  948. #ifdef CONFIG_AP
  949. if (wpa_s->ap_iface->scan_cb)
  950. wpa_s->ap_iface->scan_cb(wpa_s->ap_iface);
  951. #endif /* CONFIG_AP */
  952. wpa_scan_results_free(scan_res);
  953. return 0;
  954. }
  955. wpa_dbg(wpa_s, MSG_DEBUG, "New scan results available");
  956. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS);
  957. wpas_notify_scan_results(wpa_s);
  958. wpas_notify_scan_done(wpa_s, 1);
  959. if (sme_proc_obss_scan(wpa_s) > 0) {
  960. wpa_scan_results_free(scan_res);
  961. return 0;
  962. }
  963. if ((wpa_s->conf->ap_scan == 2 && !wpas_wps_searching(wpa_s))) {
  964. wpa_scan_results_free(scan_res);
  965. return 0;
  966. }
  967. if (autoscan_notify_scan(wpa_s, scan_res)) {
  968. wpa_scan_results_free(scan_res);
  969. return 0;
  970. }
  971. if (wpa_s->disconnected) {
  972. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  973. wpa_scan_results_free(scan_res);
  974. return 0;
  975. }
  976. if (!wpas_driver_bss_selection(wpa_s) &&
  977. bgscan_notify_scan(wpa_s, scan_res) == 1) {
  978. wpa_scan_results_free(scan_res);
  979. return 0;
  980. }
  981. wpas_wps_update_ap_info(wpa_s, scan_res);
  982. wpa_scan_results_free(scan_res);
  983. return wpas_select_network_from_last_scan(wpa_s);
  984. }
  985. int wpas_select_network_from_last_scan(struct wpa_supplicant *wpa_s)
  986. {
  987. struct wpa_bss *selected;
  988. struct wpa_ssid *ssid = NULL;
  989. selected = wpa_supplicant_pick_network(wpa_s, &ssid);
  990. if (selected) {
  991. int skip;
  992. skip = !wpa_supplicant_need_to_roam(wpa_s, selected, ssid);
  993. if (skip) {
  994. wpa_supplicant_rsn_preauth_scan_results(wpa_s);
  995. return 0;
  996. }
  997. if (wpa_supplicant_connect(wpa_s, selected, ssid) < 0) {
  998. wpa_dbg(wpa_s, MSG_DEBUG, "Connect failed");
  999. return -1;
  1000. }
  1001. wpa_supplicant_rsn_preauth_scan_results(wpa_s);
  1002. /*
  1003. * Do not notify other virtual radios of scan results since we do not
  1004. * want them to start other associations at the same time.
  1005. */
  1006. return 1;
  1007. } else {
  1008. wpa_dbg(wpa_s, MSG_DEBUG, "No suitable network found");
  1009. ssid = wpa_supplicant_pick_new_network(wpa_s);
  1010. if (ssid) {
  1011. wpa_dbg(wpa_s, MSG_DEBUG, "Setup a new network");
  1012. wpa_supplicant_associate(wpa_s, NULL, ssid);
  1013. wpa_supplicant_rsn_preauth_scan_results(wpa_s);
  1014. } else {
  1015. int timeout_sec = wpa_s->scan_interval;
  1016. int timeout_usec = 0;
  1017. #ifdef CONFIG_P2P
  1018. if (wpas_p2p_scan_no_go_seen(wpa_s) == 1)
  1019. return 0;
  1020. if (wpa_s->p2p_in_provisioning) {
  1021. /*
  1022. * Use shorter wait during P2P Provisioning
  1023. * state to speed up group formation.
  1024. */
  1025. timeout_sec = 0;
  1026. timeout_usec = 250000;
  1027. wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
  1028. timeout_usec);
  1029. return 0;
  1030. }
  1031. #endif /* CONFIG_P2P */
  1032. #ifdef CONFIG_INTERWORKING
  1033. if (wpa_s->conf->auto_interworking &&
  1034. wpa_s->conf->interworking &&
  1035. wpa_s->conf->cred) {
  1036. wpa_dbg(wpa_s, MSG_DEBUG, "Interworking: "
  1037. "start ANQP fetch since no matching "
  1038. "networks found");
  1039. wpa_s->network_select = 1;
  1040. wpa_s->auto_network_select = 1;
  1041. interworking_start_fetch_anqp(wpa_s);
  1042. return 1;
  1043. }
  1044. #endif /* CONFIG_INTERWORKING */
  1045. if (wpa_supplicant_req_sched_scan(wpa_s))
  1046. wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
  1047. timeout_usec);
  1048. }
  1049. }
  1050. return 0;
  1051. }
  1052. static void wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
  1053. union wpa_event_data *data)
  1054. {
  1055. const char *rn, *rn2;
  1056. struct wpa_supplicant *ifs;
  1057. if (_wpa_supplicant_event_scan_results(wpa_s, data) != 0) {
  1058. /*
  1059. * If no scan results could be fetched, then no need to
  1060. * notify those interfaces that did not actually request
  1061. * this scan. Similarly, if scan results started a new operation on this
  1062. * interface, do not notify other interfaces to avoid concurrent
  1063. * operations during a connection attempt.
  1064. */
  1065. return;
  1066. }
  1067. /*
  1068. * Check other interfaces to see if they have the same radio-name. If
  1069. * so, they get updated with this same scan info.
  1070. */
  1071. if (!wpa_s->driver->get_radio_name)
  1072. return;
  1073. rn = wpa_s->driver->get_radio_name(wpa_s->drv_priv);
  1074. if (rn == NULL || rn[0] == '\0')
  1075. return;
  1076. wpa_dbg(wpa_s, MSG_DEBUG, "Checking for other virtual interfaces "
  1077. "sharing same radio (%s) in event_scan_results", rn);
  1078. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  1079. if (ifs == wpa_s || !ifs->driver->get_radio_name)
  1080. continue;
  1081. rn2 = ifs->driver->get_radio_name(ifs->drv_priv);
  1082. if (rn2 && os_strcmp(rn, rn2) == 0) {
  1083. wpa_printf(MSG_DEBUG, "%s: Updating scan results from "
  1084. "sibling", ifs->ifname);
  1085. _wpa_supplicant_event_scan_results(ifs, data);
  1086. }
  1087. }
  1088. }
  1089. #endif /* CONFIG_NO_SCAN_PROCESSING */
  1090. #ifdef CONFIG_WNM
  1091. static void wnm_bss_keep_alive(void *eloop_ctx, void *sock_ctx)
  1092. {
  1093. struct wpa_supplicant *wpa_s = eloop_ctx;
  1094. if (wpa_s->wpa_state < WPA_ASSOCIATED)
  1095. return;
  1096. wpa_printf(MSG_DEBUG, "WNM: Send keep-alive to AP " MACSTR,
  1097. MAC2STR(wpa_s->bssid));
  1098. /* TODO: could skip this if normal data traffic has been sent */
  1099. /* TODO: Consider using some more appropriate data frame for this */
  1100. if (wpa_s->l2)
  1101. l2_packet_send(wpa_s->l2, wpa_s->bssid, 0x0800, (u8 *) "", 0);
  1102. #ifdef CONFIG_SME
  1103. if (wpa_s->sme.bss_max_idle_period) {
  1104. unsigned int msec;
  1105. msec = wpa_s->sme.bss_max_idle_period * 1024; /* times 1000 */
  1106. if (msec > 100)
  1107. msec -= 100;
  1108. eloop_register_timeout(msec / 1000, msec % 1000 * 1000,
  1109. wnm_bss_keep_alive, wpa_s, NULL);
  1110. }
  1111. #endif /* CONFIG_SME */
  1112. }
  1113. static void wnm_process_assoc_resp(struct wpa_supplicant *wpa_s,
  1114. const u8 *ies, size_t ies_len)
  1115. {
  1116. struct ieee802_11_elems elems;
  1117. if (ies == NULL)
  1118. return;
  1119. if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed)
  1120. return;
  1121. #ifdef CONFIG_SME
  1122. if (elems.bss_max_idle_period) {
  1123. unsigned int msec;
  1124. wpa_s->sme.bss_max_idle_period =
  1125. WPA_GET_LE16(elems.bss_max_idle_period);
  1126. wpa_printf(MSG_DEBUG, "WNM: BSS Max Idle Period: %u (* 1000 "
  1127. "TU)%s", wpa_s->sme.bss_max_idle_period,
  1128. (elems.bss_max_idle_period[2] & 0x01) ?
  1129. " (protected keep-live required)" : "");
  1130. if (wpa_s->sme.bss_max_idle_period == 0)
  1131. wpa_s->sme.bss_max_idle_period = 1;
  1132. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) {
  1133. eloop_cancel_timeout(wnm_bss_keep_alive, wpa_s, NULL);
  1134. /* msec times 1000 */
  1135. msec = wpa_s->sme.bss_max_idle_period * 1024;
  1136. if (msec > 100)
  1137. msec -= 100;
  1138. eloop_register_timeout(msec / 1000, msec % 1000 * 1000,
  1139. wnm_bss_keep_alive, wpa_s,
  1140. NULL);
  1141. }
  1142. }
  1143. #endif /* CONFIG_SME */
  1144. }
  1145. #endif /* CONFIG_WNM */
  1146. void wnm_bss_keep_alive_deinit(struct wpa_supplicant *wpa_s)
  1147. {
  1148. #ifdef CONFIG_WNM
  1149. eloop_cancel_timeout(wnm_bss_keep_alive, wpa_s, NULL);
  1150. #endif /* CONFIG_WNM */
  1151. }
  1152. static int wpa_supplicant_event_associnfo(struct wpa_supplicant *wpa_s,
  1153. union wpa_event_data *data)
  1154. {
  1155. int l, len, found = 0, wpa_found, rsn_found;
  1156. const u8 *p;
  1157. wpa_dbg(wpa_s, MSG_DEBUG, "Association info event");
  1158. if (data->assoc_info.req_ies)
  1159. wpa_hexdump(MSG_DEBUG, "req_ies", data->assoc_info.req_ies,
  1160. data->assoc_info.req_ies_len);
  1161. if (data->assoc_info.resp_ies) {
  1162. wpa_hexdump(MSG_DEBUG, "resp_ies", data->assoc_info.resp_ies,
  1163. data->assoc_info.resp_ies_len);
  1164. #ifdef CONFIG_TDLS
  1165. wpa_tdls_assoc_resp_ies(wpa_s->wpa, data->assoc_info.resp_ies,
  1166. data->assoc_info.resp_ies_len);
  1167. #endif /* CONFIG_TDLS */
  1168. #ifdef CONFIG_WNM
  1169. wnm_process_assoc_resp(wpa_s, data->assoc_info.resp_ies,
  1170. data->assoc_info.resp_ies_len);
  1171. #endif /* CONFIG_WNM */
  1172. }
  1173. if (data->assoc_info.beacon_ies)
  1174. wpa_hexdump(MSG_DEBUG, "beacon_ies",
  1175. data->assoc_info.beacon_ies,
  1176. data->assoc_info.beacon_ies_len);
  1177. if (data->assoc_info.freq)
  1178. wpa_dbg(wpa_s, MSG_DEBUG, "freq=%u MHz",
  1179. data->assoc_info.freq);
  1180. p = data->assoc_info.req_ies;
  1181. l = data->assoc_info.req_ies_len;
  1182. /* Go through the IEs and make a copy of the WPA/RSN IE, if present. */
  1183. while (p && l >= 2) {
  1184. len = p[1] + 2;
  1185. if (len > l) {
  1186. wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
  1187. p, l);
  1188. break;
  1189. }
  1190. if ((p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
  1191. (os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0)) ||
  1192. (p[0] == WLAN_EID_RSN && p[1] >= 2)) {
  1193. if (wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, p, len))
  1194. break;
  1195. found = 1;
  1196. wpa_find_assoc_pmkid(wpa_s);
  1197. break;
  1198. }
  1199. l -= len;
  1200. p += len;
  1201. }
  1202. if (!found && data->assoc_info.req_ies)
  1203. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  1204. #ifdef CONFIG_IEEE80211R
  1205. #ifdef CONFIG_SME
  1206. if (wpa_s->sme.auth_alg == WPA_AUTH_ALG_FT) {
  1207. u8 bssid[ETH_ALEN];
  1208. if (wpa_drv_get_bssid(wpa_s, bssid) < 0 ||
  1209. wpa_ft_validate_reassoc_resp(wpa_s->wpa,
  1210. data->assoc_info.resp_ies,
  1211. data->assoc_info.resp_ies_len,
  1212. bssid) < 0) {
  1213. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Validation of "
  1214. "Reassociation Response failed");
  1215. wpa_supplicant_deauthenticate(
  1216. wpa_s, WLAN_REASON_INVALID_IE);
  1217. return -1;
  1218. }
  1219. }
  1220. p = data->assoc_info.resp_ies;
  1221. l = data->assoc_info.resp_ies_len;
  1222. #ifdef CONFIG_WPS_STRICT
  1223. if (p && wpa_s->current_ssid &&
  1224. wpa_s->current_ssid->key_mgmt == WPA_KEY_MGMT_WPS) {
  1225. struct wpabuf *wps;
  1226. wps = ieee802_11_vendor_ie_concat(p, l, WPS_IE_VENDOR_TYPE);
  1227. if (wps == NULL) {
  1228. wpa_msg(wpa_s, MSG_INFO, "WPS-STRICT: AP did not "
  1229. "include WPS IE in (Re)Association Response");
  1230. return -1;
  1231. }
  1232. if (wps_validate_assoc_resp(wps) < 0) {
  1233. wpabuf_free(wps);
  1234. wpa_supplicant_deauthenticate(
  1235. wpa_s, WLAN_REASON_INVALID_IE);
  1236. return -1;
  1237. }
  1238. wpabuf_free(wps);
  1239. }
  1240. #endif /* CONFIG_WPS_STRICT */
  1241. /* Go through the IEs and make a copy of the MDIE, if present. */
  1242. while (p && l >= 2) {
  1243. len = p[1] + 2;
  1244. if (len > l) {
  1245. wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
  1246. p, l);
  1247. break;
  1248. }
  1249. if (p[0] == WLAN_EID_MOBILITY_DOMAIN &&
  1250. p[1] >= MOBILITY_DOMAIN_ID_LEN) {
  1251. wpa_s->sme.ft_used = 1;
  1252. os_memcpy(wpa_s->sme.mobility_domain, p + 2,
  1253. MOBILITY_DOMAIN_ID_LEN);
  1254. break;
  1255. }
  1256. l -= len;
  1257. p += len;
  1258. }
  1259. #endif /* CONFIG_SME */
  1260. wpa_sm_set_ft_params(wpa_s->wpa, data->assoc_info.resp_ies,
  1261. data->assoc_info.resp_ies_len);
  1262. #endif /* CONFIG_IEEE80211R */
  1263. /* WPA/RSN IE from Beacon/ProbeResp */
  1264. p = data->assoc_info.beacon_ies;
  1265. l = data->assoc_info.beacon_ies_len;
  1266. /* Go through the IEs and make a copy of the WPA/RSN IEs, if present.
  1267. */
  1268. wpa_found = rsn_found = 0;
  1269. while (p && l >= 2) {
  1270. len = p[1] + 2;
  1271. if (len > l) {
  1272. wpa_hexdump(MSG_DEBUG, "Truncated IE in beacon_ies",
  1273. p, l);
  1274. break;
  1275. }
  1276. if (!wpa_found &&
  1277. p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
  1278. os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0) {
  1279. wpa_found = 1;
  1280. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, p, len);
  1281. }
  1282. if (!rsn_found &&
  1283. p[0] == WLAN_EID_RSN && p[1] >= 2) {
  1284. rsn_found = 1;
  1285. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, p, len);
  1286. }
  1287. l -= len;
  1288. p += len;
  1289. }
  1290. if (!wpa_found && data->assoc_info.beacon_ies)
  1291. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, NULL, 0);
  1292. if (!rsn_found && data->assoc_info.beacon_ies)
  1293. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, NULL, 0);
  1294. if (wpa_found || rsn_found)
  1295. wpa_s->ap_ies_from_associnfo = 1;
  1296. if (wpa_s->assoc_freq && data->assoc_info.freq &&
  1297. wpa_s->assoc_freq != data->assoc_info.freq) {
  1298. wpa_printf(MSG_DEBUG, "Operating frequency changed from "
  1299. "%u to %u MHz",
  1300. wpa_s->assoc_freq, data->assoc_info.freq);
  1301. wpa_supplicant_update_scan_results(wpa_s);
  1302. }
  1303. wpa_s->assoc_freq = data->assoc_info.freq;
  1304. return 0;
  1305. }
  1306. static struct wpa_bss * wpa_supplicant_get_new_bss(
  1307. struct wpa_supplicant *wpa_s, const u8 *bssid)
  1308. {
  1309. struct wpa_bss *bss = NULL;
  1310. struct wpa_ssid *ssid = wpa_s->current_ssid;
  1311. if (ssid->ssid_len > 0)
  1312. bss = wpa_bss_get(wpa_s, bssid, ssid->ssid, ssid->ssid_len);
  1313. if (!bss)
  1314. bss = wpa_bss_get_bssid(wpa_s, bssid);
  1315. return bss;
  1316. }
  1317. static int wpa_supplicant_assoc_update_ie(struct wpa_supplicant *wpa_s)
  1318. {
  1319. const u8 *bss_wpa = NULL, *bss_rsn = NULL;
  1320. if (!wpa_s->current_bss || !wpa_s->current_ssid)
  1321. return -1;
  1322. if (!wpa_key_mgmt_wpa_any(wpa_s->current_ssid->key_mgmt))
  1323. return 0;
  1324. bss_wpa = wpa_bss_get_vendor_ie(wpa_s->current_bss,
  1325. WPA_IE_VENDOR_TYPE);
  1326. bss_rsn = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_RSN);
  1327. if (wpa_sm_set_ap_wpa_ie(wpa_s->wpa, bss_wpa,
  1328. bss_wpa ? 2 + bss_wpa[1] : 0) ||
  1329. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, bss_rsn,
  1330. bss_rsn ? 2 + bss_rsn[1] : 0))
  1331. return -1;
  1332. return 0;
  1333. }
  1334. static void wpa_supplicant_event_assoc(struct wpa_supplicant *wpa_s,
  1335. union wpa_event_data *data)
  1336. {
  1337. u8 bssid[ETH_ALEN];
  1338. int ft_completed;
  1339. struct wpa_driver_capa capa;
  1340. #ifdef CONFIG_AP
  1341. if (wpa_s->ap_iface) {
  1342. hostapd_notif_assoc(wpa_s->ap_iface->bss[0],
  1343. data->assoc_info.addr,
  1344. data->assoc_info.req_ies,
  1345. data->assoc_info.req_ies_len,
  1346. data->assoc_info.reassoc);
  1347. return;
  1348. }
  1349. #endif /* CONFIG_AP */
  1350. ft_completed = wpa_ft_is_completed(wpa_s->wpa);
  1351. if (data && wpa_supplicant_event_associnfo(wpa_s, data) < 0)
  1352. return;
  1353. if (wpa_drv_get_bssid(wpa_s, bssid) < 0) {
  1354. wpa_dbg(wpa_s, MSG_ERROR, "Failed to get BSSID");
  1355. wpa_supplicant_deauthenticate(
  1356. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1357. return;
  1358. }
  1359. wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATED);
  1360. if (os_memcmp(bssid, wpa_s->bssid, ETH_ALEN) != 0) {
  1361. wpa_dbg(wpa_s, MSG_DEBUG, "Associated to a new BSS: BSSID="
  1362. MACSTR, MAC2STR(bssid));
  1363. random_add_randomness(bssid, ETH_ALEN);
  1364. os_memcpy(wpa_s->bssid, bssid, ETH_ALEN);
  1365. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  1366. wpas_notify_bssid_changed(wpa_s);
  1367. if (wpa_supplicant_dynamic_keys(wpa_s) && !ft_completed) {
  1368. wpa_clear_keys(wpa_s, bssid);
  1369. }
  1370. if (wpa_supplicant_select_config(wpa_s) < 0) {
  1371. wpa_supplicant_deauthenticate(
  1372. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1373. return;
  1374. }
  1375. if (wpa_s->current_ssid) {
  1376. struct wpa_bss *bss = NULL;
  1377. bss = wpa_supplicant_get_new_bss(wpa_s, bssid);
  1378. if (!bss) {
  1379. wpa_supplicant_update_scan_results(wpa_s);
  1380. /* Get the BSS from the new scan results */
  1381. bss = wpa_supplicant_get_new_bss(wpa_s, bssid);
  1382. }
  1383. if (bss)
  1384. wpa_s->current_bss = bss;
  1385. }
  1386. if (wpa_s->conf->ap_scan == 1 &&
  1387. wpa_s->drv_flags & WPA_DRIVER_FLAGS_BSS_SELECTION) {
  1388. if (wpa_supplicant_assoc_update_ie(wpa_s) < 0)
  1389. wpa_msg(wpa_s, MSG_WARNING,
  1390. "WPA/RSN IEs not updated");
  1391. }
  1392. }
  1393. #ifdef CONFIG_SME
  1394. os_memcpy(wpa_s->sme.prev_bssid, bssid, ETH_ALEN);
  1395. wpa_s->sme.prev_bssid_set = 1;
  1396. #endif /* CONFIG_SME */
  1397. wpa_msg(wpa_s, MSG_INFO, "Associated with " MACSTR, MAC2STR(bssid));
  1398. if (wpa_s->current_ssid) {
  1399. /* When using scanning (ap_scan=1), SIM PC/SC interface can be
  1400. * initialized before association, but for other modes,
  1401. * initialize PC/SC here, if the current configuration needs
  1402. * smartcard or SIM/USIM. */
  1403. wpa_supplicant_scard_init(wpa_s, wpa_s->current_ssid);
  1404. }
  1405. wpa_sm_notify_assoc(wpa_s->wpa, bssid);
  1406. if (wpa_s->l2)
  1407. l2_packet_notify_auth_start(wpa_s->l2);
  1408. /*
  1409. * Set portEnabled first to FALSE in order to get EAP state machine out
  1410. * of the SUCCESS state and eapSuccess cleared. Without this, EAPOL PAE
  1411. * state machine may transit to AUTHENTICATING state based on obsolete
  1412. * eapSuccess and then trigger BE_AUTH to SUCCESS and PAE to
  1413. * AUTHENTICATED without ever giving chance to EAP state machine to
  1414. * reset the state.
  1415. */
  1416. if (!ft_completed) {
  1417. eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
  1418. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  1419. }
  1420. if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) || ft_completed)
  1421. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  1422. /* 802.1X::portControl = Auto */
  1423. eapol_sm_notify_portEnabled(wpa_s->eapol, TRUE);
  1424. wpa_s->eapol_received = 0;
  1425. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  1426. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE ||
  1427. (wpa_s->current_ssid &&
  1428. wpa_s->current_ssid->mode == IEEE80211_MODE_IBSS)) {
  1429. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1430. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  1431. } else if (!ft_completed) {
  1432. /* Timeout for receiving the first EAPOL packet */
  1433. wpa_supplicant_req_auth_timeout(wpa_s, 10, 0);
  1434. }
  1435. wpa_supplicant_cancel_scan(wpa_s);
  1436. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
  1437. wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt)) {
  1438. /*
  1439. * We are done; the driver will take care of RSN 4-way
  1440. * handshake.
  1441. */
  1442. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1443. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  1444. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  1445. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  1446. } else if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
  1447. wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
  1448. /*
  1449. * The driver will take care of RSN 4-way handshake, so we need
  1450. * to allow EAPOL supplicant to complete its work without
  1451. * waiting for WPA supplicant.
  1452. */
  1453. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  1454. } else if (ft_completed) {
  1455. /*
  1456. * FT protocol completed - make sure EAPOL state machine ends
  1457. * up in authenticated.
  1458. */
  1459. wpa_supplicant_cancel_auth_timeout(wpa_s);
  1460. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  1461. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  1462. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  1463. }
  1464. if (wpa_s->pending_eapol_rx) {
  1465. struct os_time now, age;
  1466. os_get_time(&now);
  1467. os_time_sub(&now, &wpa_s->pending_eapol_rx_time, &age);
  1468. if (age.sec == 0 && age.usec < 100000 &&
  1469. os_memcmp(wpa_s->pending_eapol_rx_src, bssid, ETH_ALEN) ==
  1470. 0) {
  1471. wpa_dbg(wpa_s, MSG_DEBUG, "Process pending EAPOL "
  1472. "frame that was received just before "
  1473. "association notification");
  1474. wpa_supplicant_rx_eapol(
  1475. wpa_s, wpa_s->pending_eapol_rx_src,
  1476. wpabuf_head(wpa_s->pending_eapol_rx),
  1477. wpabuf_len(wpa_s->pending_eapol_rx));
  1478. }
  1479. wpabuf_free(wpa_s->pending_eapol_rx);
  1480. wpa_s->pending_eapol_rx = NULL;
  1481. }
  1482. if ((wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  1483. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
  1484. wpa_s->current_ssid && wpa_drv_get_capa(wpa_s, &capa) == 0 &&
  1485. capa.flags & WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE) {
  1486. /* Set static WEP keys again */
  1487. wpa_set_wep_keys(wpa_s, wpa_s->current_ssid);
  1488. }
  1489. #ifdef CONFIG_IBSS_RSN
  1490. if (wpa_s->current_ssid &&
  1491. wpa_s->current_ssid->mode == WPAS_MODE_IBSS &&
  1492. wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
  1493. wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE &&
  1494. wpa_s->ibss_rsn == NULL) {
  1495. wpa_s->ibss_rsn = ibss_rsn_init(wpa_s);
  1496. if (!wpa_s->ibss_rsn) {
  1497. wpa_msg(wpa_s, MSG_INFO, "Failed to init IBSS RSN");
  1498. wpa_supplicant_deauthenticate(
  1499. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  1500. return;
  1501. }
  1502. ibss_rsn_set_psk(wpa_s->ibss_rsn, wpa_s->current_ssid->psk);
  1503. }
  1504. #endif /* CONFIG_IBSS_RSN */
  1505. wpas_wps_notify_assoc(wpa_s, bssid);
  1506. }
  1507. static int disconnect_reason_recoverable(u16 reason_code)
  1508. {
  1509. return reason_code == WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY ||
  1510. reason_code == WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA ||
  1511. reason_code == WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA;
  1512. }
  1513. static void wpa_supplicant_event_disassoc(struct wpa_supplicant *wpa_s,
  1514. u16 reason_code,
  1515. int locally_generated)
  1516. {
  1517. const u8 *bssid;
  1518. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  1519. /*
  1520. * At least Host AP driver and a Prism3 card seemed to be
  1521. * generating streams of disconnected events when configuring
  1522. * IBSS for WPA-None. Ignore them for now.
  1523. */
  1524. return;
  1525. }
  1526. bssid = wpa_s->bssid;
  1527. if (is_zero_ether_addr(bssid))
  1528. bssid = wpa_s->pending_bssid;
  1529. if (!is_zero_ether_addr(bssid) ||
  1530. wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  1531. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid=" MACSTR
  1532. " reason=%d%s",
  1533. MAC2STR(bssid), reason_code,
  1534. locally_generated ? " locally_generated=1" : "");
  1535. }
  1536. }
  1537. static int could_be_psk_mismatch(struct wpa_supplicant *wpa_s, u16 reason_code,
  1538. int locally_generated)
  1539. {
  1540. if (wpa_s->wpa_state != WPA_4WAY_HANDSHAKE ||
  1541. !wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt))
  1542. return 0; /* Not in 4-way handshake with PSK */
  1543. /*
  1544. * It looks like connection was lost while trying to go through PSK
  1545. * 4-way handshake. Filter out known disconnection cases that are caused
  1546. * by something else than PSK mismatch to avoid confusing reports.
  1547. */
  1548. if (locally_generated) {
  1549. if (reason_code == WLAN_REASON_IE_IN_4WAY_DIFFERS)
  1550. return 0;
  1551. }
  1552. return 1;
  1553. }
  1554. static void wpa_supplicant_event_disassoc_finish(struct wpa_supplicant *wpa_s,
  1555. u16 reason_code,
  1556. int locally_generated)
  1557. {
  1558. const u8 *bssid;
  1559. int authenticating;
  1560. u8 prev_pending_bssid[ETH_ALEN];
  1561. struct wpa_bss *fast_reconnect = NULL;
  1562. struct wpa_ssid *fast_reconnect_ssid = NULL;
  1563. struct wpa_ssid *last_ssid;
  1564. authenticating = wpa_s->wpa_state == WPA_AUTHENTICATING;
  1565. os_memcpy(prev_pending_bssid, wpa_s->pending_bssid, ETH_ALEN);
  1566. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  1567. /*
  1568. * At least Host AP driver and a Prism3 card seemed to be
  1569. * generating streams of disconnected events when configuring
  1570. * IBSS for WPA-None. Ignore them for now.
  1571. */
  1572. wpa_dbg(wpa_s, MSG_DEBUG, "Disconnect event - ignore in "
  1573. "IBSS/WPA-None mode");
  1574. return;
  1575. }
  1576. if (could_be_psk_mismatch(wpa_s, reason_code, locally_generated)) {
  1577. wpa_msg(wpa_s, MSG_INFO, "WPA: 4-Way Handshake failed - "
  1578. "pre-shared key may be incorrect");
  1579. wpas_auth_failed(wpa_s);
  1580. }
  1581. if (!wpa_s->auto_reconnect_disabled ||
  1582. wpa_s->key_mgmt == WPA_KEY_MGMT_WPS) {
  1583. wpa_dbg(wpa_s, MSG_DEBUG, "Auto connect enabled: try to "
  1584. "reconnect (wps=%d wpa_state=%d)",
  1585. wpa_s->key_mgmt == WPA_KEY_MGMT_WPS,
  1586. wpa_s->wpa_state);
  1587. if (wpa_s->wpa_state == WPA_COMPLETED &&
  1588. wpa_s->current_ssid &&
  1589. wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
  1590. !locally_generated &&
  1591. disconnect_reason_recoverable(reason_code)) {
  1592. /*
  1593. * It looks like the AP has dropped association with
  1594. * us, but could allow us to get back in. Try to
  1595. * reconnect to the same BSS without full scan to save
  1596. * time for some common cases.
  1597. */
  1598. fast_reconnect = wpa_s->current_bss;
  1599. fast_reconnect_ssid = wpa_s->current_ssid;
  1600. } else if (wpa_s->wpa_state >= WPA_ASSOCIATING)
  1601. wpa_supplicant_req_scan(wpa_s, 0, 100000);
  1602. else
  1603. wpa_dbg(wpa_s, MSG_DEBUG, "Do not request new "
  1604. "immediate scan");
  1605. } else {
  1606. wpa_dbg(wpa_s, MSG_DEBUG, "Auto connect disabled: do not "
  1607. "try to re-connect");
  1608. wpa_s->reassociate = 0;
  1609. wpa_s->disconnected = 1;
  1610. wpa_supplicant_cancel_sched_scan(wpa_s);
  1611. }
  1612. bssid = wpa_s->bssid;
  1613. if (is_zero_ether_addr(bssid))
  1614. bssid = wpa_s->pending_bssid;
  1615. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  1616. wpas_connection_failed(wpa_s, bssid);
  1617. wpa_sm_notify_disassoc(wpa_s->wpa);
  1618. if (locally_generated)
  1619. wpa_s->disconnect_reason = -reason_code;
  1620. else
  1621. wpa_s->disconnect_reason = reason_code;
  1622. wpas_notify_disconnect_reason(wpa_s);
  1623. if (wpa_supplicant_dynamic_keys(wpa_s)) {
  1624. wpa_dbg(wpa_s, MSG_DEBUG, "Disconnect event - remove keys");
  1625. wpa_s->keys_cleared = 0;
  1626. wpa_clear_keys(wpa_s, wpa_s->bssid);
  1627. }
  1628. last_ssid = wpa_s->current_ssid;
  1629. wpa_supplicant_mark_disassoc(wpa_s);
  1630. if (authenticating && (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)) {
  1631. sme_disassoc_while_authenticating(wpa_s, prev_pending_bssid);
  1632. wpa_s->current_ssid = last_ssid;
  1633. }
  1634. if (fast_reconnect) {
  1635. #ifndef CONFIG_NO_SCAN_PROCESSING
  1636. wpa_dbg(wpa_s, MSG_DEBUG, "Try to reconnect to the same BSS");
  1637. if (wpa_supplicant_connect(wpa_s, fast_reconnect,
  1638. fast_reconnect_ssid) < 0) {
  1639. /* Recover through full scan */
  1640. wpa_supplicant_req_scan(wpa_s, 0, 100000);
  1641. }
  1642. #endif /* CONFIG_NO_SCAN_PROCESSING */
  1643. }
  1644. }
  1645. #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
  1646. void wpa_supplicant_delayed_mic_error_report(void *eloop_ctx, void *sock_ctx)
  1647. {
  1648. struct wpa_supplicant *wpa_s = eloop_ctx;
  1649. if (!wpa_s->pending_mic_error_report)
  1650. return;
  1651. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Sending pending MIC error report");
  1652. wpa_sm_key_request(wpa_s->wpa, 1, wpa_s->pending_mic_error_pairwise);
  1653. wpa_s->pending_mic_error_report = 0;
  1654. }
  1655. #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  1656. static void
  1657. wpa_supplicant_event_michael_mic_failure(struct wpa_supplicant *wpa_s,
  1658. union wpa_event_data *data)
  1659. {
  1660. int pairwise;
  1661. struct os_time t;
  1662. wpa_msg(wpa_s, MSG_WARNING, "Michael MIC failure detected");
  1663. pairwise = (data && data->michael_mic_failure.unicast);
  1664. os_get_time(&t);
  1665. if ((wpa_s->last_michael_mic_error &&
  1666. t.sec - wpa_s->last_michael_mic_error <= 60) ||
  1667. wpa_s->pending_mic_error_report) {
  1668. if (wpa_s->pending_mic_error_report) {
  1669. /*
  1670. * Send the pending MIC error report immediately since
  1671. * we are going to start countermeasures and AP better
  1672. * do the same.
  1673. */
  1674. wpa_sm_key_request(wpa_s->wpa, 1,
  1675. wpa_s->pending_mic_error_pairwise);
  1676. }
  1677. /* Send the new MIC error report immediately since we are going
  1678. * to start countermeasures and AP better do the same.
  1679. */
  1680. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  1681. /* initialize countermeasures */
  1682. wpa_s->countermeasures = 1;
  1683. wpa_blacklist_add(wpa_s, wpa_s->bssid);
  1684. wpa_msg(wpa_s, MSG_WARNING, "TKIP countermeasures started");
  1685. /*
  1686. * Need to wait for completion of request frame. We do not get
  1687. * any callback for the message completion, so just wait a
  1688. * short while and hope for the best. */
  1689. os_sleep(0, 10000);
  1690. wpa_drv_set_countermeasures(wpa_s, 1);
  1691. wpa_supplicant_deauthenticate(wpa_s,
  1692. WLAN_REASON_MICHAEL_MIC_FAILURE);
  1693. eloop_cancel_timeout(wpa_supplicant_stop_countermeasures,
  1694. wpa_s, NULL);
  1695. eloop_register_timeout(60, 0,
  1696. wpa_supplicant_stop_countermeasures,
  1697. wpa_s, NULL);
  1698. /* TODO: mark the AP rejected for 60 second. STA is
  1699. * allowed to associate with another AP.. */
  1700. } else {
  1701. #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
  1702. if (wpa_s->mic_errors_seen) {
  1703. /*
  1704. * Reduce the effectiveness of Michael MIC error
  1705. * reports as a means for attacking against TKIP if
  1706. * more than one MIC failure is noticed with the same
  1707. * PTK. We delay the transmission of the reports by a
  1708. * random time between 0 and 60 seconds in order to
  1709. * force the attacker wait 60 seconds before getting
  1710. * the information on whether a frame resulted in a MIC
  1711. * failure.
  1712. */
  1713. u8 rval[4];
  1714. int sec;
  1715. if (os_get_random(rval, sizeof(rval)) < 0)
  1716. sec = os_random() % 60;
  1717. else
  1718. sec = WPA_GET_BE32(rval) % 60;
  1719. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Delay MIC error "
  1720. "report %d seconds", sec);
  1721. wpa_s->pending_mic_error_report = 1;
  1722. wpa_s->pending_mic_error_pairwise = pairwise;
  1723. eloop_cancel_timeout(
  1724. wpa_supplicant_delayed_mic_error_report,
  1725. wpa_s, NULL);
  1726. eloop_register_timeout(
  1727. sec, os_random() % 1000000,
  1728. wpa_supplicant_delayed_mic_error_report,
  1729. wpa_s, NULL);
  1730. } else {
  1731. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  1732. }
  1733. #else /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  1734. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  1735. #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  1736. }
  1737. wpa_s->last_michael_mic_error = t.sec;
  1738. wpa_s->mic_errors_seen++;
  1739. }
  1740. #ifdef CONFIG_TERMINATE_ONLASTIF
  1741. static int any_interfaces(struct wpa_supplicant *head)
  1742. {
  1743. struct wpa_supplicant *wpa_s;
  1744. for (wpa_s = head; wpa_s != NULL; wpa_s = wpa_s->next)
  1745. if (!wpa_s->interface_removed)
  1746. return 1;
  1747. return 0;
  1748. }
  1749. #endif /* CONFIG_TERMINATE_ONLASTIF */
  1750. static void
  1751. wpa_supplicant_event_interface_status(struct wpa_supplicant *wpa_s,
  1752. union wpa_event_data *data)
  1753. {
  1754. if (os_strcmp(wpa_s->ifname, data->interface_status.ifname) != 0)
  1755. return;
  1756. switch (data->interface_status.ievent) {
  1757. case EVENT_INTERFACE_ADDED:
  1758. if (!wpa_s->interface_removed)
  1759. break;
  1760. wpa_s->interface_removed = 0;
  1761. wpa_dbg(wpa_s, MSG_DEBUG, "Configured interface was added");
  1762. if (wpa_supplicant_driver_init(wpa_s) < 0) {
  1763. wpa_msg(wpa_s, MSG_INFO, "Failed to initialize the "
  1764. "driver after interface was added");
  1765. }
  1766. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  1767. break;
  1768. case EVENT_INTERFACE_REMOVED:
  1769. wpa_dbg(wpa_s, MSG_DEBUG, "Configured interface was removed");
  1770. wpa_s->interface_removed = 1;
  1771. wpa_supplicant_mark_disassoc(wpa_s);
  1772. wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
  1773. l2_packet_deinit(wpa_s->l2);
  1774. wpa_s->l2 = NULL;
  1775. #ifdef CONFIG_IBSS_RSN
  1776. ibss_rsn_deinit(wpa_s->ibss_rsn);
  1777. wpa_s->ibss_rsn = NULL;
  1778. #endif /* CONFIG_IBSS_RSN */
  1779. #ifdef CONFIG_TERMINATE_ONLASTIF
  1780. /* check if last interface */
  1781. if (!any_interfaces(wpa_s->global->ifaces))
  1782. eloop_terminate();
  1783. #endif /* CONFIG_TERMINATE_ONLASTIF */
  1784. break;
  1785. }
  1786. }
  1787. #ifdef CONFIG_PEERKEY
  1788. static void
  1789. wpa_supplicant_event_stkstart(struct wpa_supplicant *wpa_s,
  1790. union wpa_event_data *data)
  1791. {
  1792. if (data == NULL)
  1793. return;
  1794. wpa_sm_stkstart(wpa_s->wpa, data->stkstart.peer);
  1795. }
  1796. #endif /* CONFIG_PEERKEY */
  1797. #ifdef CONFIG_TDLS
  1798. static void wpa_supplicant_event_tdls(struct wpa_supplicant *wpa_s,
  1799. union wpa_event_data *data)
  1800. {
  1801. if (data == NULL)
  1802. return;
  1803. switch (data->tdls.oper) {
  1804. case TDLS_REQUEST_SETUP:
  1805. wpa_tdls_start(wpa_s->wpa, data->tdls.peer);
  1806. break;
  1807. case TDLS_REQUEST_TEARDOWN:
  1808. wpa_tdls_send_teardown(wpa_s->wpa, data->tdls.peer,
  1809. data->tdls.reason_code);
  1810. break;
  1811. }
  1812. }
  1813. #endif /* CONFIG_TDLS */
  1814. #ifdef CONFIG_IEEE80211V
  1815. static void wpa_supplicant_event_wnm(struct wpa_supplicant *wpa_s,
  1816. union wpa_event_data *data)
  1817. {
  1818. if (data == NULL)
  1819. return;
  1820. switch (data->wnm.oper) {
  1821. case WNM_OPER_SLEEP:
  1822. wpa_printf(MSG_DEBUG, "Start sending WNM-Sleep Request "
  1823. "(action=%d, intval=%d)",
  1824. data->wnm.sleep_action, data->wnm.sleep_intval);
  1825. ieee802_11_send_wnmsleep_req(wpa_s, data->wnm.sleep_action,
  1826. data->wnm.sleep_intval);
  1827. break;
  1828. }
  1829. }
  1830. #endif /* CONFIG_IEEE80211V */
  1831. #ifdef CONFIG_IEEE80211R
  1832. static void
  1833. wpa_supplicant_event_ft_response(struct wpa_supplicant *wpa_s,
  1834. union wpa_event_data *data)
  1835. {
  1836. if (data == NULL)
  1837. return;
  1838. if (wpa_ft_process_response(wpa_s->wpa, data->ft_ies.ies,
  1839. data->ft_ies.ies_len,
  1840. data->ft_ies.ft_action,
  1841. data->ft_ies.target_ap,
  1842. data->ft_ies.ric_ies,
  1843. data->ft_ies.ric_ies_len) < 0) {
  1844. /* TODO: prevent MLME/driver from trying to associate? */
  1845. }
  1846. }
  1847. #endif /* CONFIG_IEEE80211R */
  1848. #ifdef CONFIG_IBSS_RSN
  1849. static void wpa_supplicant_event_ibss_rsn_start(struct wpa_supplicant *wpa_s,
  1850. union wpa_event_data *data)
  1851. {
  1852. struct wpa_ssid *ssid;
  1853. if (wpa_s->wpa_state < WPA_ASSOCIATED)
  1854. return;
  1855. if (data == NULL)
  1856. return;
  1857. ssid = wpa_s->current_ssid;
  1858. if (ssid == NULL)
  1859. return;
  1860. if (ssid->mode != WPAS_MODE_IBSS || !wpa_key_mgmt_wpa(ssid->key_mgmt))
  1861. return;
  1862. ibss_rsn_start(wpa_s->ibss_rsn, data->ibss_rsn_start.peer);
  1863. }
  1864. #endif /* CONFIG_IBSS_RSN */
  1865. #ifdef CONFIG_IEEE80211R
  1866. static void ft_rx_action(struct wpa_supplicant *wpa_s, const u8 *data,
  1867. size_t len)
  1868. {
  1869. const u8 *sta_addr, *target_ap_addr;
  1870. u16 status;
  1871. wpa_hexdump(MSG_MSGDUMP, "FT: RX Action", data, len);
  1872. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME))
  1873. return; /* only SME case supported for now */
  1874. if (len < 1 + 2 * ETH_ALEN + 2)
  1875. return;
  1876. if (data[0] != 2)
  1877. return; /* Only FT Action Response is supported for now */
  1878. sta_addr = data + 1;
  1879. target_ap_addr = data + 1 + ETH_ALEN;
  1880. status = WPA_GET_LE16(data + 1 + 2 * ETH_ALEN);
  1881. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Received FT Action Response: STA "
  1882. MACSTR " TargetAP " MACSTR " status %u",
  1883. MAC2STR(sta_addr), MAC2STR(target_ap_addr), status);
  1884. if (os_memcmp(sta_addr, wpa_s->own_addr, ETH_ALEN) != 0) {
  1885. wpa_dbg(wpa_s, MSG_DEBUG, "FT: Foreign STA Address " MACSTR
  1886. " in FT Action Response", MAC2STR(sta_addr));
  1887. return;
  1888. }
  1889. if (status) {
  1890. wpa_dbg(wpa_s, MSG_DEBUG, "FT: FT Action Response indicates "
  1891. "failure (status code %d)", status);
  1892. /* TODO: report error to FT code(?) */
  1893. return;
  1894. }
  1895. if (wpa_ft_process_response(wpa_s->wpa, data + 1 + 2 * ETH_ALEN + 2,
  1896. len - (1 + 2 * ETH_ALEN + 2), 1,
  1897. target_ap_addr, NULL, 0) < 0)
  1898. return;
  1899. #ifdef CONFIG_SME
  1900. {
  1901. struct wpa_bss *bss;
  1902. bss = wpa_bss_get_bssid(wpa_s, target_ap_addr);
  1903. if (bss)
  1904. wpa_s->sme.freq = bss->freq;
  1905. wpa_s->sme.auth_alg = WPA_AUTH_ALG_FT;
  1906. sme_associate(wpa_s, WPAS_MODE_INFRA, target_ap_addr,
  1907. WLAN_AUTH_FT);
  1908. }
  1909. #endif /* CONFIG_SME */
  1910. }
  1911. #endif /* CONFIG_IEEE80211R */
  1912. static void wpa_supplicant_event_unprot_deauth(struct wpa_supplicant *wpa_s,
  1913. struct unprot_deauth *e)
  1914. {
  1915. #ifdef CONFIG_IEEE80211W
  1916. wpa_printf(MSG_DEBUG, "Unprotected Deauthentication frame "
  1917. "dropped: " MACSTR " -> " MACSTR
  1918. " (reason code %u)",
  1919. MAC2STR(e->sa), MAC2STR(e->da), e->reason_code);
  1920. sme_event_unprot_disconnect(wpa_s, e->sa, e->da, e->reason_code);
  1921. #endif /* CONFIG_IEEE80211W */
  1922. }
  1923. static void wpa_supplicant_event_unprot_disassoc(struct wpa_supplicant *wpa_s,
  1924. struct unprot_disassoc *e)
  1925. {
  1926. #ifdef CONFIG_IEEE80211W
  1927. wpa_printf(MSG_DEBUG, "Unprotected Disassociation frame "
  1928. "dropped: " MACSTR " -> " MACSTR
  1929. " (reason code %u)",
  1930. MAC2STR(e->sa), MAC2STR(e->da), e->reason_code);
  1931. sme_event_unprot_disconnect(wpa_s, e->sa, e->da, e->reason_code);
  1932. #endif /* CONFIG_IEEE80211W */
  1933. }
  1934. static void wnm_action_rx(struct wpa_supplicant *wpa_s, struct rx_action *rx)
  1935. {
  1936. u8 action, mode;
  1937. const u8 *pos, *end;
  1938. if (rx->data == NULL || rx->len == 0)
  1939. return;
  1940. pos = rx->data;
  1941. end = pos + rx->len;
  1942. action = *pos++;
  1943. wpa_printf(MSG_DEBUG, "WNM: RX action %u from " MACSTR,
  1944. action, MAC2STR(rx->sa));
  1945. switch (action) {
  1946. case WNM_BSS_TRANS_MGMT_REQ:
  1947. if (pos + 5 > end)
  1948. break;
  1949. wpa_printf(MSG_DEBUG, "WNM: BSS Transition Management "
  1950. "Request: dialog_token=%u request_mode=0x%x "
  1951. "disassoc_timer=%u validity_interval=%u",
  1952. pos[0], pos[1], WPA_GET_LE16(pos + 2), pos[4]);
  1953. mode = pos[1];
  1954. pos += 5;
  1955. if (mode & 0x08)
  1956. pos += 12; /* BSS Termination Duration */
  1957. if (mode & 0x10) {
  1958. char url[256];
  1959. if (pos + 1 > end || pos + 1 + pos[0] > end) {
  1960. wpa_printf(MSG_DEBUG, "WNM: Invalid BSS "
  1961. "Transition Management Request "
  1962. "(URL)");
  1963. break;
  1964. }
  1965. os_memcpy(url, pos + 1, pos[0]);
  1966. url[pos[0]] = '\0';
  1967. wpa_msg(wpa_s, MSG_INFO, "WNM: ESS Disassociation "
  1968. "Imminent - session_info_url=%s", url);
  1969. }
  1970. break;
  1971. }
  1972. }
  1973. void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
  1974. union wpa_event_data *data)
  1975. {
  1976. struct wpa_supplicant *wpa_s = ctx;
  1977. u16 reason_code = 0;
  1978. int locally_generated = 0;
  1979. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED &&
  1980. event != EVENT_INTERFACE_ENABLED &&
  1981. event != EVENT_INTERFACE_STATUS &&
  1982. event != EVENT_SCHED_SCAN_STOPPED) {
  1983. wpa_dbg(wpa_s, MSG_DEBUG,
  1984. "Ignore event %s (%d) while interface is disabled",
  1985. event_to_string(event), event);
  1986. return;
  1987. }
  1988. #ifndef CONFIG_NO_STDOUT_DEBUG
  1989. {
  1990. int level = MSG_DEBUG;
  1991. if (event == EVENT_RX_MGMT && data->rx_mgmt.frame_len >= 24) {
  1992. const struct ieee80211_hdr *hdr;
  1993. u16 fc;
  1994. hdr = (const struct ieee80211_hdr *) data->rx_mgmt.frame;
  1995. fc = le_to_host16(hdr->frame_control);
  1996. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
  1997. WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON)
  1998. level = MSG_EXCESSIVE;
  1999. }
  2000. wpa_dbg(wpa_s, level, "Event %s (%d) received",
  2001. event_to_string(event), event);
  2002. }
  2003. #endif /* CONFIG_NO_STDOUT_DEBUG */
  2004. switch (event) {
  2005. case EVENT_AUTH:
  2006. sme_event_auth(wpa_s, data);
  2007. break;
  2008. case EVENT_ASSOC:
  2009. wpa_supplicant_event_assoc(wpa_s, data);
  2010. break;
  2011. case EVENT_DISASSOC:
  2012. wpa_dbg(wpa_s, MSG_DEBUG, "Disassociation notification");
  2013. if (data) {
  2014. wpa_dbg(wpa_s, MSG_DEBUG, " * reason %u%s",
  2015. data->disassoc_info.reason_code,
  2016. data->disassoc_info.locally_generated ?
  2017. " (locally generated)" : "");
  2018. if (data->disassoc_info.addr)
  2019. wpa_dbg(wpa_s, MSG_DEBUG, " * address " MACSTR,
  2020. MAC2STR(data->disassoc_info.addr));
  2021. }
  2022. #ifdef CONFIG_AP
  2023. if (wpa_s->ap_iface && data && data->disassoc_info.addr) {
  2024. hostapd_notif_disassoc(wpa_s->ap_iface->bss[0],
  2025. data->disassoc_info.addr);
  2026. break;
  2027. }
  2028. if (wpa_s->ap_iface) {
  2029. wpa_dbg(wpa_s, MSG_DEBUG, "Ignore disassoc event in "
  2030. "AP mode");
  2031. break;
  2032. }
  2033. #endif /* CONFIG_AP */
  2034. if (data) {
  2035. reason_code = data->disassoc_info.reason_code;
  2036. locally_generated =
  2037. data->disassoc_info.locally_generated;
  2038. wpa_hexdump(MSG_DEBUG, "Disassociation frame IE(s)",
  2039. data->disassoc_info.ie,
  2040. data->disassoc_info.ie_len);
  2041. #ifdef CONFIG_P2P
  2042. wpas_p2p_disassoc_notif(
  2043. wpa_s, data->disassoc_info.addr, reason_code,
  2044. data->disassoc_info.ie,
  2045. data->disassoc_info.ie_len,
  2046. locally_generated);
  2047. #endif /* CONFIG_P2P */
  2048. }
  2049. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  2050. sme_event_disassoc(wpa_s, data);
  2051. /* fall through */
  2052. case EVENT_DEAUTH:
  2053. if (event == EVENT_DEAUTH) {
  2054. wpa_dbg(wpa_s, MSG_DEBUG,
  2055. "Deauthentication notification");
  2056. if (data) {
  2057. reason_code = data->deauth_info.reason_code;
  2058. locally_generated =
  2059. data->deauth_info.locally_generated;
  2060. wpa_dbg(wpa_s, MSG_DEBUG, " * reason %u%s",
  2061. data->deauth_info.reason_code,
  2062. data->deauth_info.locally_generated ?
  2063. " (locally generated)" : "");
  2064. if (data->deauth_info.addr) {
  2065. wpa_dbg(wpa_s, MSG_DEBUG, " * address "
  2066. MACSTR,
  2067. MAC2STR(data->deauth_info.
  2068. addr));
  2069. }
  2070. wpa_hexdump(MSG_DEBUG,
  2071. "Deauthentication frame IE(s)",
  2072. data->deauth_info.ie,
  2073. data->deauth_info.ie_len);
  2074. }
  2075. }
  2076. #ifdef CONFIG_AP
  2077. if (wpa_s->ap_iface && data && data->deauth_info.addr) {
  2078. hostapd_notif_disassoc(wpa_s->ap_iface->bss[0],
  2079. data->deauth_info.addr);
  2080. break;
  2081. }
  2082. if (wpa_s->ap_iface) {
  2083. wpa_dbg(wpa_s, MSG_DEBUG, "Ignore deauth event in "
  2084. "AP mode");
  2085. break;
  2086. }
  2087. #endif /* CONFIG_AP */
  2088. wpa_supplicant_event_disassoc(wpa_s, reason_code,
  2089. locally_generated);
  2090. if (reason_code == WLAN_REASON_IEEE_802_1X_AUTH_FAILED ||
  2091. ((wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
  2092. (wpa_s->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)) &&
  2093. eapol_sm_failed(wpa_s->eapol)))
  2094. wpas_auth_failed(wpa_s);
  2095. #ifdef CONFIG_P2P
  2096. if (event == EVENT_DEAUTH && data) {
  2097. if (wpas_p2p_deauth_notif(wpa_s,
  2098. data->deauth_info.addr,
  2099. reason_code,
  2100. data->deauth_info.ie,
  2101. data->deauth_info.ie_len,
  2102. locally_generated) > 0) {
  2103. /*
  2104. * The interface was removed, so cannot
  2105. * continue processing any additional
  2106. * operations after this.
  2107. */
  2108. break;
  2109. }
  2110. }
  2111. #endif /* CONFIG_P2P */
  2112. wpa_supplicant_event_disassoc_finish(wpa_s, reason_code,
  2113. locally_generated);
  2114. break;
  2115. case EVENT_MICHAEL_MIC_FAILURE:
  2116. wpa_supplicant_event_michael_mic_failure(wpa_s, data);
  2117. break;
  2118. #ifndef CONFIG_NO_SCAN_PROCESSING
  2119. case EVENT_SCAN_RESULTS:
  2120. wpa_supplicant_event_scan_results(wpa_s, data);
  2121. #ifdef CONFIG_P2P
  2122. if (wpa_s->global->p2p_cb_on_scan_complete && !wpa_s->global->p2p_disabled &&
  2123. wpa_s->global->p2p != NULL &&
  2124. wpa_s->wpa_state != WPA_AUTHENTICATING &&
  2125. wpa_s->wpa_state != WPA_ASSOCIATING) {
  2126. wpa_s->global->p2p_cb_on_scan_complete = 0;
  2127. if (p2p_other_scan_completed(wpa_s->global->p2p) == 1) {
  2128. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Pending P2P operation "
  2129. "continued after scan result processing");
  2130. }
  2131. }
  2132. #endif /* CONFIG_P2P */
  2133. break;
  2134. #endif /* CONFIG_NO_SCAN_PROCESSING */
  2135. case EVENT_ASSOCINFO:
  2136. wpa_supplicant_event_associnfo(wpa_s, data);
  2137. break;
  2138. case EVENT_INTERFACE_STATUS:
  2139. wpa_supplicant_event_interface_status(wpa_s, data);
  2140. break;
  2141. case EVENT_PMKID_CANDIDATE:
  2142. wpa_supplicant_event_pmkid_candidate(wpa_s, data);
  2143. break;
  2144. #ifdef CONFIG_PEERKEY
  2145. case EVENT_STKSTART:
  2146. wpa_supplicant_event_stkstart(wpa_s, data);
  2147. break;
  2148. #endif /* CONFIG_PEERKEY */
  2149. #ifdef CONFIG_TDLS
  2150. case EVENT_TDLS:
  2151. wpa_supplicant_event_tdls(wpa_s, data);
  2152. break;
  2153. #endif /* CONFIG_TDLS */
  2154. #ifdef CONFIG_IEEE80211V
  2155. case EVENT_WNM:
  2156. wpa_supplicant_event_wnm(wpa_s, data);
  2157. break;
  2158. #endif /* CONFIG_IEEE80211V */
  2159. #ifdef CONFIG_IEEE80211R
  2160. case EVENT_FT_RESPONSE:
  2161. wpa_supplicant_event_ft_response(wpa_s, data);
  2162. break;
  2163. #endif /* CONFIG_IEEE80211R */
  2164. #ifdef CONFIG_IBSS_RSN
  2165. case EVENT_IBSS_RSN_START:
  2166. wpa_supplicant_event_ibss_rsn_start(wpa_s, data);
  2167. break;
  2168. #endif /* CONFIG_IBSS_RSN */
  2169. case EVENT_ASSOC_REJECT:
  2170. if (data->assoc_reject.bssid)
  2171. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_ASSOC_REJECT
  2172. "bssid=" MACSTR " status_code=%u",
  2173. MAC2STR(data->assoc_reject.bssid),
  2174. data->assoc_reject.status_code);
  2175. else
  2176. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_ASSOC_REJECT
  2177. "status_code=%u",
  2178. data->assoc_reject.status_code);
  2179. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  2180. sme_event_assoc_reject(wpa_s, data);
  2181. else {
  2182. const u8 *bssid = data->assoc_reject.bssid;
  2183. if (bssid == NULL || is_zero_ether_addr(bssid))
  2184. bssid = wpa_s->pending_bssid;
  2185. wpas_connection_failed(wpa_s, bssid);
  2186. wpa_supplicant_mark_disassoc(wpa_s);
  2187. }
  2188. break;
  2189. case EVENT_AUTH_TIMED_OUT:
  2190. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  2191. sme_event_auth_timed_out(wpa_s, data);
  2192. break;
  2193. case EVENT_ASSOC_TIMED_OUT:
  2194. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  2195. sme_event_assoc_timed_out(wpa_s, data);
  2196. break;
  2197. case EVENT_TX_STATUS:
  2198. wpa_dbg(wpa_s, MSG_DEBUG, "EVENT_TX_STATUS dst=" MACSTR
  2199. " type=%d stype=%d",
  2200. MAC2STR(data->tx_status.dst),
  2201. data->tx_status.type, data->tx_status.stype);
  2202. #ifdef CONFIG_AP
  2203. if (wpa_s->ap_iface == NULL) {
  2204. #ifdef CONFIG_OFFCHANNEL
  2205. if (data->tx_status.type == WLAN_FC_TYPE_MGMT &&
  2206. data->tx_status.stype == WLAN_FC_STYPE_ACTION)
  2207. offchannel_send_action_tx_status(
  2208. wpa_s, data->tx_status.dst,
  2209. data->tx_status.data,
  2210. data->tx_status.data_len,
  2211. data->tx_status.ack ?
  2212. OFFCHANNEL_SEND_ACTION_SUCCESS :
  2213. OFFCHANNEL_SEND_ACTION_NO_ACK);
  2214. #endif /* CONFIG_OFFCHANNEL */
  2215. break;
  2216. }
  2217. #endif /* CONFIG_AP */
  2218. #ifdef CONFIG_OFFCHANNEL
  2219. wpa_dbg(wpa_s, MSG_DEBUG, "EVENT_TX_STATUS pending_dst="
  2220. MACSTR, MAC2STR(wpa_s->parent->pending_action_dst));
  2221. /*
  2222. * Catch TX status events for Action frames we sent via group
  2223. * interface in GO mode.
  2224. */
  2225. if (data->tx_status.type == WLAN_FC_TYPE_MGMT &&
  2226. data->tx_status.stype == WLAN_FC_STYPE_ACTION &&
  2227. os_memcmp(wpa_s->parent->pending_action_dst,
  2228. data->tx_status.dst, ETH_ALEN) == 0) {
  2229. offchannel_send_action_tx_status(
  2230. wpa_s->parent, data->tx_status.dst,
  2231. data->tx_status.data,
  2232. data->tx_status.data_len,
  2233. data->tx_status.ack ?
  2234. OFFCHANNEL_SEND_ACTION_SUCCESS :
  2235. OFFCHANNEL_SEND_ACTION_NO_ACK);
  2236. break;
  2237. }
  2238. #endif /* CONFIG_OFFCHANNEL */
  2239. #ifdef CONFIG_AP
  2240. switch (data->tx_status.type) {
  2241. case WLAN_FC_TYPE_MGMT:
  2242. ap_mgmt_tx_cb(wpa_s, data->tx_status.data,
  2243. data->tx_status.data_len,
  2244. data->tx_status.stype,
  2245. data->tx_status.ack);
  2246. break;
  2247. case WLAN_FC_TYPE_DATA:
  2248. ap_tx_status(wpa_s, data->tx_status.dst,
  2249. data->tx_status.data,
  2250. data->tx_status.data_len,
  2251. data->tx_status.ack);
  2252. break;
  2253. }
  2254. #endif /* CONFIG_AP */
  2255. break;
  2256. #ifdef CONFIG_AP
  2257. case EVENT_EAPOL_TX_STATUS:
  2258. ap_eapol_tx_status(wpa_s, data->eapol_tx_status.dst,
  2259. data->eapol_tx_status.data,
  2260. data->eapol_tx_status.data_len,
  2261. data->eapol_tx_status.ack);
  2262. break;
  2263. case EVENT_DRIVER_CLIENT_POLL_OK:
  2264. ap_client_poll_ok(wpa_s, data->client_poll.addr);
  2265. break;
  2266. case EVENT_RX_FROM_UNKNOWN:
  2267. if (wpa_s->ap_iface == NULL)
  2268. break;
  2269. ap_rx_from_unknown_sta(wpa_s, data->rx_from_unknown.addr,
  2270. data->rx_from_unknown.wds);
  2271. break;
  2272. case EVENT_CH_SWITCH:
  2273. if (!data)
  2274. break;
  2275. if (!wpa_s->ap_iface) {
  2276. wpa_dbg(wpa_s, MSG_DEBUG, "AP: Ignore channel switch "
  2277. "event in non-AP mode");
  2278. break;
  2279. }
  2280. #ifdef CONFIG_AP
  2281. wpas_ap_ch_switch(wpa_s, data->ch_switch.freq,
  2282. data->ch_switch.ht_enabled,
  2283. data->ch_switch.ch_offset);
  2284. #endif /* CONFIG_AP */
  2285. break;
  2286. case EVENT_RX_MGMT: {
  2287. u16 fc, stype;
  2288. const struct ieee80211_mgmt *mgmt;
  2289. mgmt = (const struct ieee80211_mgmt *)
  2290. data->rx_mgmt.frame;
  2291. fc = le_to_host16(mgmt->frame_control);
  2292. stype = WLAN_FC_GET_STYPE(fc);
  2293. if (wpa_s->ap_iface == NULL) {
  2294. #ifdef CONFIG_P2P
  2295. if (stype == WLAN_FC_STYPE_PROBE_REQ &&
  2296. data->rx_mgmt.frame_len > 24) {
  2297. const u8 *src = mgmt->sa;
  2298. const u8 *ie = mgmt->u.probe_req.variable;
  2299. size_t ie_len = data->rx_mgmt.frame_len -
  2300. (mgmt->u.probe_req.variable -
  2301. data->rx_mgmt.frame);
  2302. wpas_p2p_probe_req_rx(
  2303. wpa_s, src, mgmt->da,
  2304. mgmt->bssid, ie, ie_len,
  2305. data->rx_mgmt.ssi_signal);
  2306. break;
  2307. }
  2308. #endif /* CONFIG_P2P */
  2309. wpa_dbg(wpa_s, MSG_DEBUG, "AP: ignore received "
  2310. "management frame in non-AP mode");
  2311. break;
  2312. }
  2313. if (stype == WLAN_FC_STYPE_PROBE_REQ &&
  2314. data->rx_mgmt.frame_len > 24) {
  2315. const u8 *ie = mgmt->u.probe_req.variable;
  2316. size_t ie_len = data->rx_mgmt.frame_len -
  2317. (mgmt->u.probe_req.variable -
  2318. data->rx_mgmt.frame);
  2319. wpas_notify_preq(wpa_s, mgmt->sa, mgmt->da,
  2320. mgmt->bssid, ie, ie_len,
  2321. data->rx_mgmt.ssi_signal);
  2322. }
  2323. ap_mgmt_rx(wpa_s, &data->rx_mgmt);
  2324. break;
  2325. }
  2326. #endif /* CONFIG_AP */
  2327. case EVENT_RX_ACTION:
  2328. wpa_dbg(wpa_s, MSG_DEBUG, "Received Action frame: SA=" MACSTR
  2329. " Category=%u DataLen=%d freq=%d MHz",
  2330. MAC2STR(data->rx_action.sa),
  2331. data->rx_action.category, (int) data->rx_action.len,
  2332. data->rx_action.freq);
  2333. #ifdef CONFIG_IEEE80211R
  2334. if (data->rx_action.category == WLAN_ACTION_FT) {
  2335. ft_rx_action(wpa_s, data->rx_action.data,
  2336. data->rx_action.len);
  2337. break;
  2338. }
  2339. #endif /* CONFIG_IEEE80211R */
  2340. #ifdef CONFIG_IEEE80211W
  2341. #ifdef CONFIG_SME
  2342. if (data->rx_action.category == WLAN_ACTION_SA_QUERY) {
  2343. sme_sa_query_rx(wpa_s, data->rx_action.sa,
  2344. data->rx_action.data,
  2345. data->rx_action.len);
  2346. break;
  2347. }
  2348. #endif /* CONFIG_SME */
  2349. #endif /* CONFIG_IEEE80211W */
  2350. #ifdef CONFIG_IEEE80211V
  2351. if (data->rx_action.category == WLAN_ACTION_WNM) {
  2352. ieee802_11_rx_wnm_action(wpa_s, &data->rx_action);
  2353. break;
  2354. }
  2355. #endif /* CONFIG_IEEE80211V */
  2356. #ifdef CONFIG_GAS
  2357. if (data->rx_action.category == WLAN_ACTION_PUBLIC &&
  2358. gas_query_rx(wpa_s->gas, data->rx_action.da,
  2359. data->rx_action.sa, data->rx_action.bssid,
  2360. data->rx_action.data, data->rx_action.len,
  2361. data->rx_action.freq) == 0)
  2362. break;
  2363. #endif /* CONFIG_GAS */
  2364. if (data->rx_action.category == WLAN_ACTION_WNM) {
  2365. wnm_action_rx(wpa_s, &data->rx_action);
  2366. break;
  2367. }
  2368. #ifdef CONFIG_TDLS
  2369. if (data->rx_action.category == WLAN_ACTION_PUBLIC &&
  2370. data->rx_action.len >= 4 &&
  2371. data->rx_action.data[0] == WLAN_TDLS_DISCOVERY_RESPONSE) {
  2372. wpa_dbg(wpa_s, MSG_DEBUG, "TDLS: Received Discovery "
  2373. "Response from " MACSTR,
  2374. MAC2STR(data->rx_action.sa));
  2375. break;
  2376. }
  2377. #endif /* CONFIG_TDLS */
  2378. #ifdef CONFIG_P2P
  2379. wpas_p2p_rx_action(wpa_s, data->rx_action.da,
  2380. data->rx_action.sa,
  2381. data->rx_action.bssid,
  2382. data->rx_action.category,
  2383. data->rx_action.data,
  2384. data->rx_action.len, data->rx_action.freq);
  2385. #endif /* CONFIG_P2P */
  2386. break;
  2387. case EVENT_RX_PROBE_REQ:
  2388. if (data->rx_probe_req.sa == NULL ||
  2389. data->rx_probe_req.ie == NULL)
  2390. break;
  2391. #ifdef CONFIG_AP
  2392. if (wpa_s->ap_iface) {
  2393. hostapd_probe_req_rx(wpa_s->ap_iface->bss[0],
  2394. data->rx_probe_req.sa,
  2395. data->rx_probe_req.da,
  2396. data->rx_probe_req.bssid,
  2397. data->rx_probe_req.ie,
  2398. data->rx_probe_req.ie_len,
  2399. data->rx_probe_req.ssi_signal);
  2400. break;
  2401. }
  2402. #endif /* CONFIG_AP */
  2403. #ifdef CONFIG_P2P
  2404. wpas_p2p_probe_req_rx(wpa_s, data->rx_probe_req.sa,
  2405. data->rx_probe_req.da,
  2406. data->rx_probe_req.bssid,
  2407. data->rx_probe_req.ie,
  2408. data->rx_probe_req.ie_len,
  2409. data->rx_probe_req.ssi_signal);
  2410. #endif /* CONFIG_P2P */
  2411. break;
  2412. case EVENT_REMAIN_ON_CHANNEL:
  2413. #ifdef CONFIG_OFFCHANNEL
  2414. offchannel_remain_on_channel_cb(
  2415. wpa_s, data->remain_on_channel.freq,
  2416. data->remain_on_channel.duration);
  2417. #endif /* CONFIG_OFFCHANNEL */
  2418. #ifdef CONFIG_P2P
  2419. wpas_p2p_remain_on_channel_cb(
  2420. wpa_s, data->remain_on_channel.freq,
  2421. data->remain_on_channel.duration);
  2422. #endif /* CONFIG_P2P */
  2423. break;
  2424. case EVENT_CANCEL_REMAIN_ON_CHANNEL:
  2425. #ifdef CONFIG_OFFCHANNEL
  2426. offchannel_cancel_remain_on_channel_cb(
  2427. wpa_s, data->remain_on_channel.freq);
  2428. #endif /* CONFIG_OFFCHANNEL */
  2429. #ifdef CONFIG_P2P
  2430. wpas_p2p_cancel_remain_on_channel_cb(
  2431. wpa_s, data->remain_on_channel.freq);
  2432. #endif /* CONFIG_P2P */
  2433. break;
  2434. #ifdef CONFIG_P2P
  2435. case EVENT_P2P_DEV_FOUND: {
  2436. struct p2p_peer_info peer_info;
  2437. os_memset(&peer_info, 0, sizeof(peer_info));
  2438. if (data->p2p_dev_found.dev_addr)
  2439. os_memcpy(peer_info.p2p_device_addr,
  2440. data->p2p_dev_found.dev_addr, ETH_ALEN);
  2441. if (data->p2p_dev_found.pri_dev_type)
  2442. os_memcpy(peer_info.pri_dev_type,
  2443. data->p2p_dev_found.pri_dev_type,
  2444. sizeof(peer_info.pri_dev_type));
  2445. if (data->p2p_dev_found.dev_name)
  2446. os_strlcpy(peer_info.device_name,
  2447. data->p2p_dev_found.dev_name,
  2448. sizeof(peer_info.device_name));
  2449. peer_info.config_methods = data->p2p_dev_found.config_methods;
  2450. peer_info.dev_capab = data->p2p_dev_found.dev_capab;
  2451. peer_info.group_capab = data->p2p_dev_found.group_capab;
  2452. /*
  2453. * FIX: new_device=1 is not necessarily correct. We should
  2454. * maintain a P2P peer database in wpa_supplicant and update
  2455. * this information based on whether the peer is truly new.
  2456. */
  2457. wpas_dev_found(wpa_s, data->p2p_dev_found.addr, &peer_info, 1);
  2458. break;
  2459. }
  2460. case EVENT_P2P_GO_NEG_REQ_RX:
  2461. wpas_go_neg_req_rx(wpa_s, data->p2p_go_neg_req_rx.src,
  2462. data->p2p_go_neg_req_rx.dev_passwd_id);
  2463. break;
  2464. case EVENT_P2P_GO_NEG_COMPLETED:
  2465. wpas_go_neg_completed(wpa_s, data->p2p_go_neg_completed.res);
  2466. break;
  2467. case EVENT_P2P_PROV_DISC_REQUEST:
  2468. wpas_prov_disc_req(wpa_s, data->p2p_prov_disc_req.peer,
  2469. data->p2p_prov_disc_req.config_methods,
  2470. data->p2p_prov_disc_req.dev_addr,
  2471. data->p2p_prov_disc_req.pri_dev_type,
  2472. data->p2p_prov_disc_req.dev_name,
  2473. data->p2p_prov_disc_req.supp_config_methods,
  2474. data->p2p_prov_disc_req.dev_capab,
  2475. data->p2p_prov_disc_req.group_capab,
  2476. NULL, 0);
  2477. break;
  2478. case EVENT_P2P_PROV_DISC_RESPONSE:
  2479. wpas_prov_disc_resp(wpa_s, data->p2p_prov_disc_resp.peer,
  2480. data->p2p_prov_disc_resp.config_methods);
  2481. break;
  2482. case EVENT_P2P_SD_REQUEST:
  2483. wpas_sd_request(wpa_s, data->p2p_sd_req.freq,
  2484. data->p2p_sd_req.sa,
  2485. data->p2p_sd_req.dialog_token,
  2486. data->p2p_sd_req.update_indic,
  2487. data->p2p_sd_req.tlvs,
  2488. data->p2p_sd_req.tlvs_len);
  2489. break;
  2490. case EVENT_P2P_SD_RESPONSE:
  2491. wpas_sd_response(wpa_s, data->p2p_sd_resp.sa,
  2492. data->p2p_sd_resp.update_indic,
  2493. data->p2p_sd_resp.tlvs,
  2494. data->p2p_sd_resp.tlvs_len);
  2495. break;
  2496. #endif /* CONFIG_P2P */
  2497. case EVENT_EAPOL_RX:
  2498. wpa_supplicant_rx_eapol(wpa_s, data->eapol_rx.src,
  2499. data->eapol_rx.data,
  2500. data->eapol_rx.data_len);
  2501. break;
  2502. case EVENT_SIGNAL_CHANGE:
  2503. bgscan_notify_signal_change(
  2504. wpa_s, data->signal_change.above_threshold,
  2505. data->signal_change.current_signal,
  2506. data->signal_change.current_noise,
  2507. data->signal_change.current_txrate);
  2508. break;
  2509. case EVENT_INTERFACE_ENABLED:
  2510. wpa_dbg(wpa_s, MSG_DEBUG, "Interface was enabled");
  2511. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
  2512. wpa_supplicant_update_mac_addr(wpa_s);
  2513. #ifdef CONFIG_AP
  2514. if (!wpa_s->ap_iface) {
  2515. wpa_supplicant_set_state(wpa_s,
  2516. WPA_DISCONNECTED);
  2517. wpa_supplicant_req_scan(wpa_s, 0, 0);
  2518. } else
  2519. wpa_supplicant_set_state(wpa_s,
  2520. WPA_COMPLETED);
  2521. #else /* CONFIG_AP */
  2522. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  2523. wpa_supplicant_req_scan(wpa_s, 0, 0);
  2524. #endif /* CONFIG_AP */
  2525. }
  2526. break;
  2527. case EVENT_INTERFACE_DISABLED:
  2528. wpa_dbg(wpa_s, MSG_DEBUG, "Interface was disabled");
  2529. wpa_supplicant_mark_disassoc(wpa_s);
  2530. wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
  2531. break;
  2532. case EVENT_CHANNEL_LIST_CHANGED:
  2533. if (wpa_s->drv_priv == NULL)
  2534. break; /* Ignore event during drv initialization */
  2535. free_hw_features(wpa_s);
  2536. wpa_s->hw.modes = wpa_drv_get_hw_feature_data(
  2537. wpa_s, &wpa_s->hw.num_modes, &wpa_s->hw.flags);
  2538. #ifdef CONFIG_P2P
  2539. wpas_p2p_update_channel_list(wpa_s);
  2540. #endif /* CONFIG_P2P */
  2541. break;
  2542. case EVENT_INTERFACE_UNAVAILABLE:
  2543. #ifdef CONFIG_P2P
  2544. wpas_p2p_interface_unavailable(wpa_s);
  2545. #endif /* CONFIG_P2P */
  2546. break;
  2547. case EVENT_BEST_CHANNEL:
  2548. wpa_dbg(wpa_s, MSG_DEBUG, "Best channel event received "
  2549. "(%d %d %d)",
  2550. data->best_chan.freq_24, data->best_chan.freq_5,
  2551. data->best_chan.freq_overall);
  2552. wpa_s->best_24_freq = data->best_chan.freq_24;
  2553. wpa_s->best_5_freq = data->best_chan.freq_5;
  2554. wpa_s->best_overall_freq = data->best_chan.freq_overall;
  2555. #ifdef CONFIG_P2P
  2556. wpas_p2p_update_best_channels(wpa_s, data->best_chan.freq_24,
  2557. data->best_chan.freq_5,
  2558. data->best_chan.freq_overall);
  2559. #endif /* CONFIG_P2P */
  2560. break;
  2561. case EVENT_UNPROT_DEAUTH:
  2562. wpa_supplicant_event_unprot_deauth(wpa_s,
  2563. &data->unprot_deauth);
  2564. break;
  2565. case EVENT_UNPROT_DISASSOC:
  2566. wpa_supplicant_event_unprot_disassoc(wpa_s,
  2567. &data->unprot_disassoc);
  2568. break;
  2569. case EVENT_STATION_LOW_ACK:
  2570. #ifdef CONFIG_AP
  2571. if (wpa_s->ap_iface && data)
  2572. hostapd_event_sta_low_ack(wpa_s->ap_iface->bss[0],
  2573. data->low_ack.addr);
  2574. #endif /* CONFIG_AP */
  2575. #ifdef CONFIG_TDLS
  2576. if (data)
  2577. wpa_tdls_disable_link(wpa_s->wpa, data->low_ack.addr);
  2578. #endif /* CONFIG_TDLS */
  2579. break;
  2580. case EVENT_IBSS_PEER_LOST:
  2581. #ifdef CONFIG_IBSS_RSN
  2582. ibss_rsn_stop(wpa_s->ibss_rsn, data->ibss_peer_lost.peer);
  2583. #endif /* CONFIG_IBSS_RSN */
  2584. break;
  2585. case EVENT_DRIVER_GTK_REKEY:
  2586. if (os_memcmp(data->driver_gtk_rekey.bssid,
  2587. wpa_s->bssid, ETH_ALEN))
  2588. break;
  2589. if (!wpa_s->wpa)
  2590. break;
  2591. wpa_sm_update_replay_ctr(wpa_s->wpa,
  2592. data->driver_gtk_rekey.replay_ctr);
  2593. break;
  2594. case EVENT_SCHED_SCAN_STOPPED:
  2595. wpa_s->sched_scanning = 0;
  2596. wpa_supplicant_notify_scanning(wpa_s, 0);
  2597. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  2598. break;
  2599. /*
  2600. * If we timed out, start a new sched scan to continue
  2601. * searching for more SSIDs.
  2602. */
  2603. if (wpa_s->sched_scan_timed_out)
  2604. wpa_supplicant_req_sched_scan(wpa_s);
  2605. break;
  2606. case EVENT_WPS_BUTTON_PUSHED:
  2607. #ifdef CONFIG_WPS
  2608. wpas_wps_start_pbc(wpa_s, NULL, 0);
  2609. #endif /* CONFIG_WPS */
  2610. break;
  2611. default:
  2612. wpa_msg(wpa_s, MSG_INFO, "Unknown event %d", event);
  2613. break;
  2614. }
  2615. }