events.c 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663
  1. /*
  2. * WPA Supplicant - Driver event processing
  3. * Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "eapol_supp/eapol_supp_sm.h"
  17. #include "rsn_supp/wpa.h"
  18. #include "eloop.h"
  19. #include "config.h"
  20. #include "l2_packet/l2_packet.h"
  21. #include "wpa_supplicant_i.h"
  22. #include "driver_i.h"
  23. #include "pcsc_funcs.h"
  24. #include "rsn_supp/preauth.h"
  25. #include "rsn_supp/pmksa_cache.h"
  26. #include "common/wpa_ctrl.h"
  27. #include "eap_peer/eap.h"
  28. #include "ap/hostapd.h"
  29. #include "notify.h"
  30. #include "common/ieee802_11_defs.h"
  31. #include "blacklist.h"
  32. #include "wpas_glue.h"
  33. #include "wps_supplicant.h"
  34. #include "ibss_rsn.h"
  35. #include "sme.h"
  36. #include "bgscan.h"
  37. #include "ap.h"
  38. #include "bss.h"
  39. #include "mlme.h"
  40. #include "scan.h"
  41. static int wpa_supplicant_select_config(struct wpa_supplicant *wpa_s)
  42. {
  43. struct wpa_ssid *ssid, *old_ssid;
  44. if (wpa_s->conf->ap_scan == 1 && wpa_s->current_ssid)
  45. return 0;
  46. wpa_printf(MSG_DEBUG, "Select network based on association "
  47. "information");
  48. ssid = wpa_supplicant_get_ssid(wpa_s);
  49. if (ssid == NULL) {
  50. wpa_printf(MSG_INFO, "No network configuration found for the "
  51. "current AP");
  52. return -1;
  53. }
  54. if (ssid->disabled) {
  55. wpa_printf(MSG_DEBUG, "Selected network is disabled");
  56. return -1;
  57. }
  58. wpa_printf(MSG_DEBUG, "Network configuration found for the current "
  59. "AP");
  60. if (ssid->key_mgmt & (WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_IEEE8021X |
  61. WPA_KEY_MGMT_WPA_NONE |
  62. WPA_KEY_MGMT_FT_PSK | WPA_KEY_MGMT_FT_IEEE8021X |
  63. WPA_KEY_MGMT_PSK_SHA256 |
  64. WPA_KEY_MGMT_IEEE8021X_SHA256)) {
  65. u8 wpa_ie[80];
  66. size_t wpa_ie_len = sizeof(wpa_ie);
  67. wpa_supplicant_set_suites(wpa_s, NULL, ssid,
  68. wpa_ie, &wpa_ie_len);
  69. } else {
  70. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  71. }
  72. if (wpa_s->current_ssid && wpa_s->current_ssid != ssid)
  73. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  74. old_ssid = wpa_s->current_ssid;
  75. wpa_s->current_ssid = ssid;
  76. wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
  77. wpa_supplicant_initiate_eapol(wpa_s);
  78. if (old_ssid != wpa_s->current_ssid)
  79. wpas_notify_network_changed(wpa_s);
  80. return 0;
  81. }
  82. static void wpa_supplicant_stop_countermeasures(void *eloop_ctx,
  83. void *sock_ctx)
  84. {
  85. struct wpa_supplicant *wpa_s = eloop_ctx;
  86. if (wpa_s->countermeasures) {
  87. wpa_s->countermeasures = 0;
  88. wpa_drv_set_countermeasures(wpa_s, 0);
  89. wpa_msg(wpa_s, MSG_INFO, "WPA: TKIP countermeasures stopped");
  90. wpa_supplicant_req_scan(wpa_s, 0, 0);
  91. }
  92. }
  93. void wpa_supplicant_mark_disassoc(struct wpa_supplicant *wpa_s)
  94. {
  95. int bssid_changed;
  96. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  97. return;
  98. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  99. bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
  100. os_memset(wpa_s->bssid, 0, ETH_ALEN);
  101. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  102. wpa_s->current_bss = NULL;
  103. if (bssid_changed)
  104. wpas_notify_bssid_changed(wpa_s);
  105. eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
  106. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  107. if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt))
  108. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  109. wpa_s->ap_ies_from_associnfo = 0;
  110. }
  111. static void wpa_find_assoc_pmkid(struct wpa_supplicant *wpa_s)
  112. {
  113. struct wpa_ie_data ie;
  114. int pmksa_set = -1;
  115. size_t i;
  116. if (wpa_sm_parse_own_wpa_ie(wpa_s->wpa, &ie) < 0 ||
  117. ie.pmkid == NULL)
  118. return;
  119. for (i = 0; i < ie.num_pmkid; i++) {
  120. pmksa_set = pmksa_cache_set_current(wpa_s->wpa,
  121. ie.pmkid + i * PMKID_LEN,
  122. NULL, NULL, 0);
  123. if (pmksa_set == 0) {
  124. eapol_sm_notify_pmkid_attempt(wpa_s->eapol, 1);
  125. break;
  126. }
  127. }
  128. wpa_printf(MSG_DEBUG, "RSN: PMKID from assoc IE %sfound from PMKSA "
  129. "cache", pmksa_set == 0 ? "" : "not ");
  130. }
  131. static void wpa_supplicant_event_pmkid_candidate(struct wpa_supplicant *wpa_s,
  132. union wpa_event_data *data)
  133. {
  134. if (data == NULL) {
  135. wpa_printf(MSG_DEBUG, "RSN: No data in PMKID candidate event");
  136. return;
  137. }
  138. wpa_printf(MSG_DEBUG, "RSN: PMKID candidate event - bssid=" MACSTR
  139. " index=%d preauth=%d",
  140. MAC2STR(data->pmkid_candidate.bssid),
  141. data->pmkid_candidate.index,
  142. data->pmkid_candidate.preauth);
  143. pmksa_candidate_add(wpa_s->wpa, data->pmkid_candidate.bssid,
  144. data->pmkid_candidate.index,
  145. data->pmkid_candidate.preauth);
  146. }
  147. static int wpa_supplicant_dynamic_keys(struct wpa_supplicant *wpa_s)
  148. {
  149. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  150. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE)
  151. return 0;
  152. #ifdef IEEE8021X_EAPOL
  153. if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA &&
  154. wpa_s->current_ssid &&
  155. !(wpa_s->current_ssid->eapol_flags &
  156. (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
  157. EAPOL_FLAG_REQUIRE_KEY_BROADCAST))) {
  158. /* IEEE 802.1X, but not using dynamic WEP keys (i.e., either
  159. * plaintext or static WEP keys). */
  160. return 0;
  161. }
  162. #endif /* IEEE8021X_EAPOL */
  163. return 1;
  164. }
  165. /**
  166. * wpa_supplicant_scard_init - Initialize SIM/USIM access with PC/SC
  167. * @wpa_s: pointer to wpa_supplicant data
  168. * @ssid: Configuration data for the network
  169. * Returns: 0 on success, -1 on failure
  170. *
  171. * This function is called when starting authentication with a network that is
  172. * configured to use PC/SC for SIM/USIM access (EAP-SIM or EAP-AKA).
  173. */
  174. int wpa_supplicant_scard_init(struct wpa_supplicant *wpa_s,
  175. struct wpa_ssid *ssid)
  176. {
  177. #ifdef IEEE8021X_EAPOL
  178. int aka = 0, sim = 0, type;
  179. if (ssid->eap.pcsc == NULL || wpa_s->scard != NULL)
  180. return 0;
  181. if (ssid->eap.eap_methods == NULL) {
  182. sim = 1;
  183. aka = 1;
  184. } else {
  185. struct eap_method_type *eap = ssid->eap.eap_methods;
  186. while (eap->vendor != EAP_VENDOR_IETF ||
  187. eap->method != EAP_TYPE_NONE) {
  188. if (eap->vendor == EAP_VENDOR_IETF) {
  189. if (eap->method == EAP_TYPE_SIM)
  190. sim = 1;
  191. else if (eap->method == EAP_TYPE_AKA)
  192. aka = 1;
  193. }
  194. eap++;
  195. }
  196. }
  197. if (eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_SIM) == NULL)
  198. sim = 0;
  199. if (eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_AKA) == NULL)
  200. aka = 0;
  201. if (!sim && !aka) {
  202. wpa_printf(MSG_DEBUG, "Selected network is configured to use "
  203. "SIM, but neither EAP-SIM nor EAP-AKA are enabled");
  204. return 0;
  205. }
  206. wpa_printf(MSG_DEBUG, "Selected network is configured to use SIM "
  207. "(sim=%d aka=%d) - initialize PCSC", sim, aka);
  208. if (sim && aka)
  209. type = SCARD_TRY_BOTH;
  210. else if (aka)
  211. type = SCARD_USIM_ONLY;
  212. else
  213. type = SCARD_GSM_SIM_ONLY;
  214. wpa_s->scard = scard_init(type);
  215. if (wpa_s->scard == NULL) {
  216. wpa_printf(MSG_WARNING, "Failed to initialize SIM "
  217. "(pcsc-lite)");
  218. return -1;
  219. }
  220. wpa_sm_set_scard_ctx(wpa_s->wpa, wpa_s->scard);
  221. eapol_sm_register_scard_ctx(wpa_s->eapol, wpa_s->scard);
  222. #endif /* IEEE8021X_EAPOL */
  223. return 0;
  224. }
  225. #ifndef CONFIG_NO_SCAN_PROCESSING
  226. static int wpa_supplicant_match_privacy(struct wpa_scan_res *bss,
  227. struct wpa_ssid *ssid)
  228. {
  229. int i, privacy = 0;
  230. if (ssid->mixed_cell)
  231. return 1;
  232. #ifdef CONFIG_WPS
  233. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS)
  234. return 1;
  235. #endif /* CONFIG_WPS */
  236. for (i = 0; i < NUM_WEP_KEYS; i++) {
  237. if (ssid->wep_key_len[i]) {
  238. privacy = 1;
  239. break;
  240. }
  241. }
  242. #ifdef IEEE8021X_EAPOL
  243. if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
  244. ssid->eapol_flags & (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
  245. EAPOL_FLAG_REQUIRE_KEY_BROADCAST))
  246. privacy = 1;
  247. #endif /* IEEE8021X_EAPOL */
  248. if (bss->caps & IEEE80211_CAP_PRIVACY)
  249. return privacy;
  250. return !privacy;
  251. }
  252. static int wpa_supplicant_ssid_bss_match(struct wpa_supplicant *wpa_s,
  253. struct wpa_ssid *ssid,
  254. struct wpa_scan_res *bss)
  255. {
  256. struct wpa_ie_data ie;
  257. int proto_match = 0;
  258. const u8 *rsn_ie, *wpa_ie;
  259. int ret;
  260. ret = wpas_wps_ssid_bss_match(wpa_s, ssid, bss);
  261. if (ret >= 0)
  262. return ret;
  263. rsn_ie = wpa_scan_get_ie(bss, WLAN_EID_RSN);
  264. while ((ssid->proto & WPA_PROTO_RSN) && rsn_ie) {
  265. proto_match++;
  266. if (wpa_parse_wpa_ie(rsn_ie, 2 + rsn_ie[1], &ie)) {
  267. wpa_printf(MSG_DEBUG, " skip RSN IE - parse failed");
  268. break;
  269. }
  270. if (!(ie.proto & ssid->proto)) {
  271. wpa_printf(MSG_DEBUG, " skip RSN IE - proto "
  272. "mismatch");
  273. break;
  274. }
  275. if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
  276. wpa_printf(MSG_DEBUG, " skip RSN IE - PTK cipher "
  277. "mismatch");
  278. break;
  279. }
  280. if (!(ie.group_cipher & ssid->group_cipher)) {
  281. wpa_printf(MSG_DEBUG, " skip RSN IE - GTK cipher "
  282. "mismatch");
  283. break;
  284. }
  285. if (!(ie.key_mgmt & ssid->key_mgmt)) {
  286. wpa_printf(MSG_DEBUG, " skip RSN IE - key mgmt "
  287. "mismatch");
  288. break;
  289. }
  290. #ifdef CONFIG_IEEE80211W
  291. if (!(ie.capabilities & WPA_CAPABILITY_MFPC) &&
  292. ssid->ieee80211w == MGMT_FRAME_PROTECTION_REQUIRED) {
  293. wpa_printf(MSG_DEBUG, " skip RSN IE - no mgmt frame "
  294. "protection");
  295. break;
  296. }
  297. #endif /* CONFIG_IEEE80211W */
  298. wpa_printf(MSG_DEBUG, " selected based on RSN IE");
  299. return 1;
  300. }
  301. wpa_ie = wpa_scan_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  302. while ((ssid->proto & WPA_PROTO_WPA) && wpa_ie) {
  303. proto_match++;
  304. if (wpa_parse_wpa_ie(wpa_ie, 2 + wpa_ie[1], &ie)) {
  305. wpa_printf(MSG_DEBUG, " skip WPA IE - parse failed");
  306. break;
  307. }
  308. if (!(ie.proto & ssid->proto)) {
  309. wpa_printf(MSG_DEBUG, " skip WPA IE - proto "
  310. "mismatch");
  311. break;
  312. }
  313. if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
  314. wpa_printf(MSG_DEBUG, " skip WPA IE - PTK cipher "
  315. "mismatch");
  316. break;
  317. }
  318. if (!(ie.group_cipher & ssid->group_cipher)) {
  319. wpa_printf(MSG_DEBUG, " skip WPA IE - GTK cipher "
  320. "mismatch");
  321. break;
  322. }
  323. if (!(ie.key_mgmt & ssid->key_mgmt)) {
  324. wpa_printf(MSG_DEBUG, " skip WPA IE - key mgmt "
  325. "mismatch");
  326. break;
  327. }
  328. wpa_printf(MSG_DEBUG, " selected based on WPA IE");
  329. return 1;
  330. }
  331. if (proto_match == 0)
  332. wpa_printf(MSG_DEBUG, " skip - no WPA/RSN proto match");
  333. return 0;
  334. }
  335. static int freq_allowed(int *freqs, int freq)
  336. {
  337. int i;
  338. if (freqs == NULL)
  339. return 1;
  340. for (i = 0; freqs[i]; i++)
  341. if (freqs[i] == freq)
  342. return 1;
  343. return 0;
  344. }
  345. static struct wpa_ssid * wpa_scan_res_match(struct wpa_supplicant *wpa_s,
  346. int i, struct wpa_scan_res *bss,
  347. struct wpa_ssid *group)
  348. {
  349. const u8 *ssid_;
  350. u8 wpa_ie_len, rsn_ie_len, ssid_len;
  351. int wpa;
  352. struct wpa_blacklist *e;
  353. const u8 *ie;
  354. struct wpa_ssid *ssid;
  355. ie = wpa_scan_get_ie(bss, WLAN_EID_SSID);
  356. ssid_ = ie ? ie + 2 : (u8 *) "";
  357. ssid_len = ie ? ie[1] : 0;
  358. ie = wpa_scan_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  359. wpa_ie_len = ie ? ie[1] : 0;
  360. ie = wpa_scan_get_ie(bss, WLAN_EID_RSN);
  361. rsn_ie_len = ie ? ie[1] : 0;
  362. wpa_printf(MSG_DEBUG, "%d: " MACSTR " ssid='%s' "
  363. "wpa_ie_len=%u rsn_ie_len=%u caps=0x%x level=%d%s",
  364. i, MAC2STR(bss->bssid), wpa_ssid_txt(ssid_, ssid_len),
  365. wpa_ie_len, rsn_ie_len, bss->caps, bss->level,
  366. wpa_scan_get_vendor_ie(bss, WPS_IE_VENDOR_TYPE) ?
  367. " wps" : "");
  368. e = wpa_blacklist_get(wpa_s, bss->bssid);
  369. if (e && e->count > 1) {
  370. wpa_printf(MSG_DEBUG, " skip - blacklisted");
  371. return 0;
  372. }
  373. if (ssid_len == 0) {
  374. wpa_printf(MSG_DEBUG, " skip - SSID not known");
  375. return 0;
  376. }
  377. wpa = wpa_ie_len > 0 || rsn_ie_len > 0;
  378. for (ssid = group; ssid; ssid = ssid->pnext) {
  379. int check_ssid = wpa ? 1 : (ssid->ssid_len != 0);
  380. if (ssid->disabled) {
  381. wpa_printf(MSG_DEBUG, " skip - disabled");
  382. return 0;
  383. }
  384. #ifdef CONFIG_WPS
  385. if (wpa && ssid->ssid_len == 0 &&
  386. wpas_wps_ssid_wildcard_ok(wpa_s, ssid, bss))
  387. check_ssid = 0;
  388. if (!wpa && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
  389. /* Only allow wildcard SSID match if an AP
  390. * advertises active WPS operation that matches
  391. * with our mode. */
  392. check_ssid = 1;
  393. if (ssid->ssid_len == 0 &&
  394. wpas_wps_ssid_wildcard_ok(wpa_s, ssid, bss))
  395. check_ssid = 0;
  396. }
  397. #endif /* CONFIG_WPS */
  398. if (check_ssid &&
  399. (ssid_len != ssid->ssid_len ||
  400. os_memcmp(ssid_, ssid->ssid, ssid_len) != 0)) {
  401. wpa_printf(MSG_DEBUG, " skip - SSID mismatch");
  402. return 0;
  403. }
  404. if (ssid->bssid_set &&
  405. os_memcmp(bss->bssid, ssid->bssid, ETH_ALEN) != 0) {
  406. wpa_printf(MSG_DEBUG, " skip - BSSID mismatch");
  407. return 0;
  408. }
  409. if (wpa && !wpa_supplicant_ssid_bss_match(wpa_s, ssid, bss))
  410. return 0;
  411. if (!wpa &&
  412. !(ssid->key_mgmt & WPA_KEY_MGMT_NONE) &&
  413. !(ssid->key_mgmt & WPA_KEY_MGMT_WPS) &&
  414. !(ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)) {
  415. wpa_printf(MSG_DEBUG, " skip - non-WPA network not "
  416. "allowed");
  417. return 0;
  418. }
  419. if (!wpa && !wpa_supplicant_match_privacy(bss, ssid)) {
  420. wpa_printf(MSG_DEBUG, " skip - privacy mismatch");
  421. return 0;
  422. }
  423. if (!wpa && (bss->caps & IEEE80211_CAP_IBSS)) {
  424. wpa_printf(MSG_DEBUG, " skip - IBSS (adhoc) "
  425. "network");
  426. return 0;
  427. }
  428. if (!freq_allowed(ssid->freq_list, bss->freq)) {
  429. wpa_printf(MSG_DEBUG, " skip - frequency not "
  430. "allowed");
  431. return 0;
  432. }
  433. /* Matching configuration found */
  434. return ssid;
  435. }
  436. /* No matching configuration found */
  437. return 0;
  438. }
  439. static struct wpa_bss *
  440. wpa_supplicant_select_bss(struct wpa_supplicant *wpa_s,
  441. struct wpa_scan_results *scan_res,
  442. struct wpa_ssid *group,
  443. struct wpa_ssid **selected_ssid)
  444. {
  445. size_t i;
  446. wpa_printf(MSG_DEBUG, "Selecting BSS from priority group %d",
  447. group->priority);
  448. for (i = 0; i < scan_res->num; i++) {
  449. struct wpa_scan_res *bss = scan_res->res[i];
  450. const u8 *ie, *ssid;
  451. u8 ssid_len;
  452. *selected_ssid = wpa_scan_res_match(wpa_s, i, bss, group);
  453. if (!*selected_ssid)
  454. continue;
  455. ie = wpa_scan_get_ie(bss, WLAN_EID_SSID);
  456. ssid = ie ? ie + 2 : (u8 *) "";
  457. ssid_len = ie ? ie[1] : 0;
  458. wpa_printf(MSG_DEBUG, " selected BSS " MACSTR " ssid='%s'",
  459. MAC2STR(bss->bssid), wpa_ssid_txt(ssid, ssid_len));
  460. return wpa_bss_get(wpa_s, bss->bssid, ssid, ssid_len);
  461. }
  462. return NULL;
  463. }
  464. static struct wpa_bss *
  465. wpa_supplicant_pick_network(struct wpa_supplicant *wpa_s,
  466. struct wpa_scan_results *scan_res,
  467. struct wpa_ssid **selected_ssid)
  468. {
  469. struct wpa_bss *selected = NULL;
  470. int prio;
  471. while (selected == NULL) {
  472. for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
  473. selected = wpa_supplicant_select_bss(
  474. wpa_s, scan_res, wpa_s->conf->pssid[prio],
  475. selected_ssid);
  476. if (selected)
  477. break;
  478. }
  479. if (selected == NULL && wpa_s->blacklist) {
  480. wpa_printf(MSG_DEBUG, "No APs found - clear blacklist "
  481. "and try again");
  482. wpa_blacklist_clear(wpa_s);
  483. wpa_s->blacklist_cleared++;
  484. } else if (selected == NULL)
  485. break;
  486. }
  487. return selected;
  488. }
  489. static void wpa_supplicant_req_new_scan(struct wpa_supplicant *wpa_s,
  490. int timeout_sec, int timeout_usec)
  491. {
  492. if (!wpa_supplicant_enabled_networks(wpa_s->conf)) {
  493. /*
  494. * No networks are enabled; short-circuit request so
  495. * we don't wait timeout seconds before transitioning
  496. * to INACTIVE state.
  497. */
  498. wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
  499. return;
  500. }
  501. wpa_supplicant_req_scan(wpa_s, timeout_sec, timeout_usec);
  502. }
  503. void wpa_supplicant_connect(struct wpa_supplicant *wpa_s,
  504. struct wpa_bss *selected,
  505. struct wpa_ssid *ssid)
  506. {
  507. if (wpas_wps_scan_pbc_overlap(wpa_s, selected, ssid)) {
  508. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_OVERLAP
  509. "PBC session overlap");
  510. wpa_supplicant_req_new_scan(wpa_s, 10, 0);
  511. return;
  512. }
  513. /*
  514. * Do not trigger new association unless the BSSID has changed or if
  515. * reassociation is requested. If we are in process of associating with
  516. * the selected BSSID, do not trigger new attempt.
  517. */
  518. if (wpa_s->reassociate ||
  519. (os_memcmp(selected->bssid, wpa_s->bssid, ETH_ALEN) != 0 &&
  520. (wpa_s->wpa_state != WPA_ASSOCIATING ||
  521. os_memcmp(selected->bssid, wpa_s->pending_bssid, ETH_ALEN) !=
  522. 0))) {
  523. if (wpa_supplicant_scard_init(wpa_s, ssid)) {
  524. wpa_supplicant_req_new_scan(wpa_s, 10, 0);
  525. return;
  526. }
  527. wpa_supplicant_associate(wpa_s, selected, ssid);
  528. } else {
  529. wpa_printf(MSG_DEBUG, "Already associated with the selected "
  530. "AP");
  531. }
  532. }
  533. static struct wpa_ssid *
  534. wpa_supplicant_pick_new_network(struct wpa_supplicant *wpa_s)
  535. {
  536. int prio;
  537. struct wpa_ssid *ssid;
  538. for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
  539. for (ssid = wpa_s->conf->pssid[prio]; ssid; ssid = ssid->pnext)
  540. {
  541. if (ssid->disabled)
  542. continue;
  543. if (ssid->mode == IEEE80211_MODE_IBSS ||
  544. ssid->mode == IEEE80211_MODE_AP)
  545. return ssid;
  546. }
  547. }
  548. return NULL;
  549. }
  550. /* TODO: move the rsn_preauth_scan_result*() to be called from notify.c based
  551. * on BSS added and BSS changed events */
  552. static void wpa_supplicant_rsn_preauth_scan_results(
  553. struct wpa_supplicant *wpa_s, struct wpa_scan_results *scan_res)
  554. {
  555. int i;
  556. if (rsn_preauth_scan_results(wpa_s->wpa) < 0)
  557. return;
  558. for (i = scan_res->num - 1; i >= 0; i--) {
  559. const u8 *ssid, *rsn;
  560. struct wpa_scan_res *r;
  561. r = scan_res->res[i];
  562. ssid = wpa_scan_get_ie(r, WLAN_EID_SSID);
  563. if (ssid == NULL)
  564. continue;
  565. rsn = wpa_scan_get_ie(r, WLAN_EID_RSN);
  566. if (rsn == NULL)
  567. continue;
  568. rsn_preauth_scan_result(wpa_s->wpa, r->bssid, ssid, rsn);
  569. }
  570. }
  571. static int wpa_supplicant_need_to_roam(struct wpa_supplicant *wpa_s,
  572. struct wpa_bss *selected,
  573. struct wpa_ssid *ssid,
  574. struct wpa_scan_results *scan_res)
  575. {
  576. size_t i;
  577. struct wpa_scan_res *current_bss = NULL;
  578. int min_diff;
  579. if (wpa_s->reassociate)
  580. return 1; /* explicit request to reassociate */
  581. if (wpa_s->wpa_state < WPA_ASSOCIATED)
  582. return 1; /* we are not associated; continue */
  583. if (wpa_s->current_ssid == NULL)
  584. return 1; /* unknown current SSID */
  585. if (wpa_s->current_ssid != ssid)
  586. return 1; /* different network block */
  587. for (i = 0; i < scan_res->num; i++) {
  588. struct wpa_scan_res *res = scan_res->res[i];
  589. const u8 *ie;
  590. if (os_memcmp(res->bssid, wpa_s->bssid, ETH_ALEN) != 0)
  591. continue;
  592. ie = wpa_scan_get_ie(res, WLAN_EID_SSID);
  593. if (ie == NULL)
  594. continue;
  595. if (ie[1] != wpa_s->current_ssid->ssid_len ||
  596. os_memcmp(ie + 2, wpa_s->current_ssid->ssid, ie[1]) != 0)
  597. continue;
  598. current_bss = res;
  599. break;
  600. }
  601. if (!current_bss)
  602. return 1; /* current BSS not seen in scan results */
  603. wpa_printf(MSG_DEBUG, "Considering within-ESS reassociation");
  604. wpa_printf(MSG_DEBUG, "Current BSS: " MACSTR " level=%d",
  605. MAC2STR(current_bss->bssid), current_bss->level);
  606. wpa_printf(MSG_DEBUG, "Selected BSS: " MACSTR " level=%d",
  607. MAC2STR(selected->bssid), selected->level);
  608. if (wpa_s->current_ssid->bssid_set &&
  609. os_memcmp(selected->bssid, wpa_s->current_ssid->bssid, ETH_ALEN) ==
  610. 0) {
  611. wpa_printf(MSG_DEBUG, "Allow reassociation - selected BSS has "
  612. "preferred BSSID");
  613. return 1;
  614. }
  615. min_diff = 2;
  616. if (current_bss->level < 0) {
  617. if (current_bss->level < -85)
  618. min_diff = 1;
  619. else if (current_bss->level < -80)
  620. min_diff = 2;
  621. else if (current_bss->level < -75)
  622. min_diff = 3;
  623. else if (current_bss->level < -70)
  624. min_diff = 4;
  625. else
  626. min_diff = 5;
  627. }
  628. if (abs(current_bss->level - selected->level) < min_diff) {
  629. wpa_printf(MSG_DEBUG, "Skip roam - too small difference in "
  630. "signal level");
  631. return 0;
  632. }
  633. return 1;
  634. }
  635. static void wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
  636. union wpa_event_data *data)
  637. {
  638. struct wpa_bss *selected;
  639. struct wpa_ssid *ssid = NULL;
  640. struct wpa_scan_results *scan_res;
  641. int ap = 0;
  642. #ifdef CONFIG_AP
  643. if (wpa_s->ap_iface)
  644. ap = 1;
  645. #endif /* CONFIG_AP */
  646. wpa_supplicant_notify_scanning(wpa_s, 0);
  647. scan_res = wpa_supplicant_get_scan_results(wpa_s,
  648. data ? &data->scan_info :
  649. NULL, 1);
  650. if (scan_res == NULL) {
  651. if (wpa_s->conf->ap_scan == 2 || ap)
  652. return;
  653. wpa_printf(MSG_DEBUG, "Failed to get scan results - try "
  654. "scanning again");
  655. wpa_supplicant_req_new_scan(wpa_s, 1, 0);
  656. return;
  657. }
  658. if (wpa_s->scan_res_handler) {
  659. wpa_s->scan_res_handler(wpa_s, scan_res);
  660. wpa_s->scan_res_handler = NULL;
  661. wpa_scan_results_free(scan_res);
  662. return;
  663. }
  664. if (ap) {
  665. wpa_printf(MSG_DEBUG, "Ignore scan results in AP mode");
  666. wpa_scan_results_free(scan_res);
  667. return;
  668. }
  669. wpa_printf(MSG_DEBUG, "New scan results available");
  670. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS);
  671. wpas_notify_scan_results(wpa_s);
  672. wpas_notify_scan_done(wpa_s, 1);
  673. if ((wpa_s->conf->ap_scan == 2 && !wpas_wps_searching(wpa_s))) {
  674. wpa_scan_results_free(scan_res);
  675. return;
  676. }
  677. if (wpa_s->disconnected) {
  678. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  679. wpa_scan_results_free(scan_res);
  680. return;
  681. }
  682. if (bgscan_notify_scan(wpa_s, scan_res) == 1) {
  683. wpa_scan_results_free(scan_res);
  684. return;
  685. }
  686. wpa_supplicant_rsn_preauth_scan_results(wpa_s, scan_res);
  687. selected = wpa_supplicant_pick_network(wpa_s, scan_res, &ssid);
  688. if (selected) {
  689. int skip;
  690. skip = !wpa_supplicant_need_to_roam(wpa_s, selected, ssid,
  691. scan_res);
  692. wpa_scan_results_free(scan_res);
  693. if (skip)
  694. return;
  695. wpa_supplicant_connect(wpa_s, selected, ssid);
  696. } else {
  697. wpa_scan_results_free(scan_res);
  698. wpa_printf(MSG_DEBUG, "No suitable network found");
  699. ssid = wpa_supplicant_pick_new_network(wpa_s);
  700. if (ssid) {
  701. wpa_printf(MSG_DEBUG, "Setup a new network");
  702. wpa_supplicant_associate(wpa_s, NULL, ssid);
  703. } else {
  704. int timeout_sec = 5;
  705. int timeout_usec = 0;
  706. wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
  707. timeout_usec);
  708. }
  709. }
  710. }
  711. #endif /* CONFIG_NO_SCAN_PROCESSING */
  712. static int wpa_supplicant_event_associnfo(struct wpa_supplicant *wpa_s,
  713. union wpa_event_data *data)
  714. {
  715. int l, len, found = 0, wpa_found, rsn_found;
  716. const u8 *p;
  717. wpa_printf(MSG_DEBUG, "Association info event");
  718. if (data->assoc_info.req_ies)
  719. wpa_hexdump(MSG_DEBUG, "req_ies", data->assoc_info.req_ies,
  720. data->assoc_info.req_ies_len);
  721. if (data->assoc_info.resp_ies)
  722. wpa_hexdump(MSG_DEBUG, "resp_ies", data->assoc_info.resp_ies,
  723. data->assoc_info.resp_ies_len);
  724. if (data->assoc_info.beacon_ies)
  725. wpa_hexdump(MSG_DEBUG, "beacon_ies",
  726. data->assoc_info.beacon_ies,
  727. data->assoc_info.beacon_ies_len);
  728. if (data->assoc_info.freq)
  729. wpa_printf(MSG_DEBUG, "freq=%u MHz", data->assoc_info.freq);
  730. p = data->assoc_info.req_ies;
  731. l = data->assoc_info.req_ies_len;
  732. /* Go through the IEs and make a copy of the WPA/RSN IE, if present. */
  733. while (p && l >= 2) {
  734. len = p[1] + 2;
  735. if (len > l) {
  736. wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
  737. p, l);
  738. break;
  739. }
  740. if ((p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
  741. (os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0)) ||
  742. (p[0] == WLAN_EID_RSN && p[1] >= 2)) {
  743. if (wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, p, len))
  744. break;
  745. found = 1;
  746. wpa_find_assoc_pmkid(wpa_s);
  747. break;
  748. }
  749. l -= len;
  750. p += len;
  751. }
  752. if (!found && data->assoc_info.req_ies)
  753. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  754. #ifdef CONFIG_IEEE80211R
  755. #ifdef CONFIG_SME
  756. if (wpa_s->sme.auth_alg == WPA_AUTH_ALG_FT) {
  757. u8 bssid[ETH_ALEN];
  758. if (wpa_drv_get_bssid(wpa_s, bssid) < 0 ||
  759. wpa_ft_validate_reassoc_resp(wpa_s->wpa,
  760. data->assoc_info.resp_ies,
  761. data->assoc_info.resp_ies_len,
  762. bssid) < 0) {
  763. wpa_printf(MSG_DEBUG, "FT: Validation of "
  764. "Reassociation Response failed");
  765. wpa_supplicant_deauthenticate(
  766. wpa_s, WLAN_REASON_INVALID_IE);
  767. return -1;
  768. }
  769. }
  770. p = data->assoc_info.resp_ies;
  771. l = data->assoc_info.resp_ies_len;
  772. /* Go through the IEs and make a copy of the MDIE, if present. */
  773. while (p && l >= 2) {
  774. len = p[1] + 2;
  775. if (len > l) {
  776. wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
  777. p, l);
  778. break;
  779. }
  780. if (p[0] == WLAN_EID_MOBILITY_DOMAIN &&
  781. p[1] >= MOBILITY_DOMAIN_ID_LEN) {
  782. wpa_s->sme.ft_used = 1;
  783. os_memcpy(wpa_s->sme.mobility_domain, p + 2,
  784. MOBILITY_DOMAIN_ID_LEN);
  785. break;
  786. }
  787. l -= len;
  788. p += len;
  789. }
  790. #endif /* CONFIG_SME */
  791. wpa_sm_set_ft_params(wpa_s->wpa, data->assoc_info.resp_ies,
  792. data->assoc_info.resp_ies_len);
  793. #endif /* CONFIG_IEEE80211R */
  794. /* WPA/RSN IE from Beacon/ProbeResp */
  795. p = data->assoc_info.beacon_ies;
  796. l = data->assoc_info.beacon_ies_len;
  797. /* Go through the IEs and make a copy of the WPA/RSN IEs, if present.
  798. */
  799. wpa_found = rsn_found = 0;
  800. while (p && l >= 2) {
  801. len = p[1] + 2;
  802. if (len > l) {
  803. wpa_hexdump(MSG_DEBUG, "Truncated IE in beacon_ies",
  804. p, l);
  805. break;
  806. }
  807. if (!wpa_found &&
  808. p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
  809. os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0) {
  810. wpa_found = 1;
  811. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, p, len);
  812. }
  813. if (!rsn_found &&
  814. p[0] == WLAN_EID_RSN && p[1] >= 2) {
  815. rsn_found = 1;
  816. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, p, len);
  817. }
  818. l -= len;
  819. p += len;
  820. }
  821. if (!wpa_found && data->assoc_info.beacon_ies)
  822. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, NULL, 0);
  823. if (!rsn_found && data->assoc_info.beacon_ies)
  824. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, NULL, 0);
  825. if (wpa_found || rsn_found)
  826. wpa_s->ap_ies_from_associnfo = 1;
  827. wpa_s->assoc_freq = data->assoc_info.freq;
  828. return 0;
  829. }
  830. static void wpa_supplicant_event_assoc(struct wpa_supplicant *wpa_s,
  831. union wpa_event_data *data)
  832. {
  833. u8 bssid[ETH_ALEN];
  834. int ft_completed;
  835. int bssid_changed;
  836. struct wpa_driver_capa capa;
  837. #ifdef CONFIG_AP
  838. if (wpa_s->ap_iface) {
  839. hostapd_notif_assoc(wpa_s->ap_iface->bss[0],
  840. data->assoc_info.addr,
  841. data->assoc_info.req_ies,
  842. data->assoc_info.req_ies_len);
  843. return;
  844. }
  845. #endif /* CONFIG_AP */
  846. ft_completed = wpa_ft_is_completed(wpa_s->wpa);
  847. if (data && wpa_supplicant_event_associnfo(wpa_s, data) < 0)
  848. return;
  849. wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATED);
  850. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
  851. os_memcpy(bssid, wpa_s->bssid, ETH_ALEN);
  852. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME) ||
  853. (wpa_drv_get_bssid(wpa_s, bssid) >= 0 &&
  854. os_memcmp(bssid, wpa_s->bssid, ETH_ALEN) != 0)) {
  855. wpa_msg(wpa_s, MSG_DEBUG, "Associated to a new BSS: BSSID="
  856. MACSTR, MAC2STR(bssid));
  857. bssid_changed = os_memcmp(wpa_s->bssid, bssid, ETH_ALEN);
  858. os_memcpy(wpa_s->bssid, bssid, ETH_ALEN);
  859. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  860. if (bssid_changed)
  861. wpas_notify_bssid_changed(wpa_s);
  862. if (wpa_supplicant_dynamic_keys(wpa_s) && !ft_completed) {
  863. wpa_clear_keys(wpa_s, bssid);
  864. }
  865. if (wpa_supplicant_select_config(wpa_s) < 0) {
  866. wpa_supplicant_disassociate(
  867. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  868. return;
  869. }
  870. if (wpa_s->current_ssid) {
  871. struct wpa_bss *bss = NULL;
  872. struct wpa_ssid *ssid = wpa_s->current_ssid;
  873. if (ssid->ssid_len > 0)
  874. bss = wpa_bss_get(wpa_s, bssid,
  875. ssid->ssid, ssid->ssid_len);
  876. if (!bss)
  877. bss = wpa_bss_get_bssid(wpa_s, bssid);
  878. if (bss)
  879. wpa_s->current_bss = bss;
  880. }
  881. }
  882. #ifdef CONFIG_SME
  883. os_memcpy(wpa_s->sme.prev_bssid, bssid, ETH_ALEN);
  884. wpa_s->sme.prev_bssid_set = 1;
  885. #endif /* CONFIG_SME */
  886. wpa_msg(wpa_s, MSG_INFO, "Associated with " MACSTR, MAC2STR(bssid));
  887. if (wpa_s->current_ssid) {
  888. /* When using scanning (ap_scan=1), SIM PC/SC interface can be
  889. * initialized before association, but for other modes,
  890. * initialize PC/SC here, if the current configuration needs
  891. * smartcard or SIM/USIM. */
  892. wpa_supplicant_scard_init(wpa_s, wpa_s->current_ssid);
  893. }
  894. wpa_sm_notify_assoc(wpa_s->wpa, bssid);
  895. if (wpa_s->l2)
  896. l2_packet_notify_auth_start(wpa_s->l2);
  897. /*
  898. * Set portEnabled first to FALSE in order to get EAP state machine out
  899. * of the SUCCESS state and eapSuccess cleared. Without this, EAPOL PAE
  900. * state machine may transit to AUTHENTICATING state based on obsolete
  901. * eapSuccess and then trigger BE_AUTH to SUCCESS and PAE to
  902. * AUTHENTICATED without ever giving chance to EAP state machine to
  903. * reset the state.
  904. */
  905. if (!ft_completed) {
  906. eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
  907. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  908. }
  909. if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) || ft_completed)
  910. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  911. /* 802.1X::portControl = Auto */
  912. eapol_sm_notify_portEnabled(wpa_s->eapol, TRUE);
  913. wpa_s->eapol_received = 0;
  914. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  915. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE ||
  916. (wpa_s->current_ssid &&
  917. wpa_s->current_ssid->mode == IEEE80211_MODE_IBSS)) {
  918. wpa_supplicant_cancel_auth_timeout(wpa_s);
  919. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  920. } else if (!ft_completed) {
  921. /* Timeout for receiving the first EAPOL packet */
  922. wpa_supplicant_req_auth_timeout(wpa_s, 10, 0);
  923. }
  924. wpa_supplicant_cancel_scan(wpa_s);
  925. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
  926. wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt)) {
  927. /*
  928. * We are done; the driver will take care of RSN 4-way
  929. * handshake.
  930. */
  931. wpa_supplicant_cancel_auth_timeout(wpa_s);
  932. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  933. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  934. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  935. }
  936. if (wpa_s->pending_eapol_rx) {
  937. struct os_time now, age;
  938. os_get_time(&now);
  939. os_time_sub(&now, &wpa_s->pending_eapol_rx_time, &age);
  940. if (age.sec == 0 && age.usec < 100000 &&
  941. os_memcmp(wpa_s->pending_eapol_rx_src, bssid, ETH_ALEN) ==
  942. 0) {
  943. wpa_printf(MSG_DEBUG, "Process pending EAPOL frame "
  944. "that was received just before association "
  945. "notification");
  946. wpa_supplicant_rx_eapol(
  947. wpa_s, wpa_s->pending_eapol_rx_src,
  948. wpabuf_head(wpa_s->pending_eapol_rx),
  949. wpabuf_len(wpa_s->pending_eapol_rx));
  950. }
  951. wpabuf_free(wpa_s->pending_eapol_rx);
  952. wpa_s->pending_eapol_rx = NULL;
  953. }
  954. #ifdef CONFIG_BGSCAN
  955. if (wpa_s->current_ssid != wpa_s->bgscan_ssid) {
  956. bgscan_deinit(wpa_s);
  957. if (wpa_s->current_ssid && wpa_s->current_ssid->bgscan) {
  958. if (bgscan_init(wpa_s, wpa_s->current_ssid)) {
  959. wpa_printf(MSG_DEBUG, "Failed to initialize "
  960. "bgscan");
  961. /*
  962. * Live without bgscan; it is only used as a
  963. * roaming optimization, so the initial
  964. * connection is not affected.
  965. */
  966. } else
  967. wpa_s->bgscan_ssid = wpa_s->current_ssid;
  968. } else
  969. wpa_s->bgscan_ssid = NULL;
  970. }
  971. #endif /* CONFIG_BGSCAN */
  972. if ((wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  973. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
  974. wpa_s->current_ssid && wpa_drv_get_capa(wpa_s, &capa) == 0 &&
  975. capa.flags & WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE) {
  976. /* Set static WEP keys again */
  977. wpa_set_wep_keys(wpa_s, wpa_s->current_ssid);
  978. }
  979. }
  980. static void wpa_supplicant_event_disassoc(struct wpa_supplicant *wpa_s,
  981. u16 reason_code)
  982. {
  983. const u8 *bssid;
  984. #ifdef CONFIG_SME
  985. int authenticating;
  986. u8 prev_pending_bssid[ETH_ALEN];
  987. authenticating = wpa_s->wpa_state == WPA_AUTHENTICATING;
  988. os_memcpy(prev_pending_bssid, wpa_s->pending_bssid, ETH_ALEN);
  989. #endif /* CONFIG_SME */
  990. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  991. /*
  992. * At least Host AP driver and a Prism3 card seemed to be
  993. * generating streams of disconnected events when configuring
  994. * IBSS for WPA-None. Ignore them for now.
  995. */
  996. wpa_printf(MSG_DEBUG, "Disconnect event - ignore in "
  997. "IBSS/WPA-None mode");
  998. return;
  999. }
  1000. if (wpa_s->wpa_state == WPA_4WAY_HANDSHAKE &&
  1001. wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt)) {
  1002. wpa_msg(wpa_s, MSG_INFO, "WPA: 4-Way Handshake failed - "
  1003. "pre-shared key may be incorrect");
  1004. }
  1005. if (wpa_s->wpa_state >= WPA_ASSOCIATED)
  1006. wpa_supplicant_req_scan(wpa_s, 0, 100000);
  1007. bssid = wpa_s->bssid;
  1008. if (is_zero_ether_addr(bssid))
  1009. bssid = wpa_s->pending_bssid;
  1010. wpa_blacklist_add(wpa_s, bssid);
  1011. wpa_sm_notify_disassoc(wpa_s->wpa);
  1012. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid=" MACSTR
  1013. " reason=%d",
  1014. MAC2STR(bssid), reason_code);
  1015. if (wpa_supplicant_dynamic_keys(wpa_s)) {
  1016. wpa_printf(MSG_DEBUG, "Disconnect event - remove keys");
  1017. wpa_s->keys_cleared = 0;
  1018. wpa_clear_keys(wpa_s, wpa_s->bssid);
  1019. }
  1020. wpa_supplicant_mark_disassoc(wpa_s);
  1021. bgscan_deinit(wpa_s);
  1022. wpa_s->bgscan_ssid = NULL;
  1023. #ifdef CONFIG_SME
  1024. if (authenticating &&
  1025. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)) {
  1026. /*
  1027. * mac80211-workaround to force deauth on failed auth cmd,
  1028. * requires us to remain in authenticating state to allow the
  1029. * second authentication attempt to be continued properly.
  1030. */
  1031. wpa_printf(MSG_DEBUG, "SME: Allow pending authentication to "
  1032. "proceed after disconnection event");
  1033. wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
  1034. os_memcpy(wpa_s->pending_bssid, prev_pending_bssid, ETH_ALEN);
  1035. }
  1036. #endif /* CONFIG_SME */
  1037. }
  1038. #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
  1039. static void wpa_supplicant_delayed_mic_error_report(void *eloop_ctx,
  1040. void *sock_ctx)
  1041. {
  1042. struct wpa_supplicant *wpa_s = eloop_ctx;
  1043. if (!wpa_s->pending_mic_error_report)
  1044. return;
  1045. wpa_printf(MSG_DEBUG, "WPA: Sending pending MIC error report");
  1046. wpa_sm_key_request(wpa_s->wpa, 1, wpa_s->pending_mic_error_pairwise);
  1047. wpa_s->pending_mic_error_report = 0;
  1048. }
  1049. #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  1050. static void
  1051. wpa_supplicant_event_michael_mic_failure(struct wpa_supplicant *wpa_s,
  1052. union wpa_event_data *data)
  1053. {
  1054. int pairwise;
  1055. struct os_time t;
  1056. wpa_msg(wpa_s, MSG_WARNING, "Michael MIC failure detected");
  1057. pairwise = (data && data->michael_mic_failure.unicast);
  1058. os_get_time(&t);
  1059. if ((wpa_s->last_michael_mic_error &&
  1060. t.sec - wpa_s->last_michael_mic_error <= 60) ||
  1061. wpa_s->pending_mic_error_report) {
  1062. if (wpa_s->pending_mic_error_report) {
  1063. /*
  1064. * Send the pending MIC error report immediately since
  1065. * we are going to start countermeasures and AP better
  1066. * do the same.
  1067. */
  1068. wpa_sm_key_request(wpa_s->wpa, 1,
  1069. wpa_s->pending_mic_error_pairwise);
  1070. }
  1071. /* Send the new MIC error report immediately since we are going
  1072. * to start countermeasures and AP better do the same.
  1073. */
  1074. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  1075. /* initialize countermeasures */
  1076. wpa_s->countermeasures = 1;
  1077. wpa_msg(wpa_s, MSG_WARNING, "TKIP countermeasures started");
  1078. /*
  1079. * Need to wait for completion of request frame. We do not get
  1080. * any callback for the message completion, so just wait a
  1081. * short while and hope for the best. */
  1082. os_sleep(0, 10000);
  1083. wpa_drv_set_countermeasures(wpa_s, 1);
  1084. wpa_supplicant_deauthenticate(wpa_s,
  1085. WLAN_REASON_MICHAEL_MIC_FAILURE);
  1086. eloop_cancel_timeout(wpa_supplicant_stop_countermeasures,
  1087. wpa_s, NULL);
  1088. eloop_register_timeout(60, 0,
  1089. wpa_supplicant_stop_countermeasures,
  1090. wpa_s, NULL);
  1091. /* TODO: mark the AP rejected for 60 second. STA is
  1092. * allowed to associate with another AP.. */
  1093. } else {
  1094. #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
  1095. if (wpa_s->mic_errors_seen) {
  1096. /*
  1097. * Reduce the effectiveness of Michael MIC error
  1098. * reports as a means for attacking against TKIP if
  1099. * more than one MIC failure is noticed with the same
  1100. * PTK. We delay the transmission of the reports by a
  1101. * random time between 0 and 60 seconds in order to
  1102. * force the attacker wait 60 seconds before getting
  1103. * the information on whether a frame resulted in a MIC
  1104. * failure.
  1105. */
  1106. u8 rval[4];
  1107. int sec;
  1108. if (os_get_random(rval, sizeof(rval)) < 0)
  1109. sec = os_random() % 60;
  1110. else
  1111. sec = WPA_GET_BE32(rval) % 60;
  1112. wpa_printf(MSG_DEBUG, "WPA: Delay MIC error report %d "
  1113. "seconds", sec);
  1114. wpa_s->pending_mic_error_report = 1;
  1115. wpa_s->pending_mic_error_pairwise = pairwise;
  1116. eloop_cancel_timeout(
  1117. wpa_supplicant_delayed_mic_error_report,
  1118. wpa_s, NULL);
  1119. eloop_register_timeout(
  1120. sec, os_random() % 1000000,
  1121. wpa_supplicant_delayed_mic_error_report,
  1122. wpa_s, NULL);
  1123. } else {
  1124. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  1125. }
  1126. #else /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  1127. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  1128. #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  1129. }
  1130. wpa_s->last_michael_mic_error = t.sec;
  1131. wpa_s->mic_errors_seen++;
  1132. }
  1133. #ifdef CONFIG_TERMINATE_ONLASTIF
  1134. static int any_interfaces(struct wpa_supplicant *head)
  1135. {
  1136. struct wpa_supplicant *wpa_s;
  1137. for (wpa_s = head; wpa_s != NULL; wpa_s = wpa_s->next)
  1138. if (!wpa_s->interface_removed)
  1139. return 1;
  1140. return 0;
  1141. }
  1142. #endif /* CONFIG_TERMINATE_ONLASTIF */
  1143. static void
  1144. wpa_supplicant_event_interface_status(struct wpa_supplicant *wpa_s,
  1145. union wpa_event_data *data)
  1146. {
  1147. if (os_strcmp(wpa_s->ifname, data->interface_status.ifname) != 0)
  1148. return;
  1149. switch (data->interface_status.ievent) {
  1150. case EVENT_INTERFACE_ADDED:
  1151. if (!wpa_s->interface_removed)
  1152. break;
  1153. wpa_s->interface_removed = 0;
  1154. wpa_printf(MSG_DEBUG, "Configured interface was added.");
  1155. if (wpa_supplicant_driver_init(wpa_s) < 0) {
  1156. wpa_printf(MSG_INFO, "Failed to initialize the driver "
  1157. "after interface was added.");
  1158. }
  1159. break;
  1160. case EVENT_INTERFACE_REMOVED:
  1161. wpa_printf(MSG_DEBUG, "Configured interface was removed.");
  1162. wpa_s->interface_removed = 1;
  1163. wpa_supplicant_mark_disassoc(wpa_s);
  1164. l2_packet_deinit(wpa_s->l2);
  1165. wpa_s->l2 = NULL;
  1166. #ifdef CONFIG_TERMINATE_ONLASTIF
  1167. /* check if last interface */
  1168. if (!any_interfaces(wpa_s->global->ifaces))
  1169. eloop_terminate();
  1170. #endif /* CONFIG_TERMINATE_ONLASTIF */
  1171. break;
  1172. }
  1173. }
  1174. #ifdef CONFIG_PEERKEY
  1175. static void
  1176. wpa_supplicant_event_stkstart(struct wpa_supplicant *wpa_s,
  1177. union wpa_event_data *data)
  1178. {
  1179. if (data == NULL)
  1180. return;
  1181. wpa_sm_stkstart(wpa_s->wpa, data->stkstart.peer);
  1182. }
  1183. #endif /* CONFIG_PEERKEY */
  1184. #ifdef CONFIG_IEEE80211R
  1185. static void
  1186. wpa_supplicant_event_ft_response(struct wpa_supplicant *wpa_s,
  1187. union wpa_event_data *data)
  1188. {
  1189. if (data == NULL)
  1190. return;
  1191. if (wpa_ft_process_response(wpa_s->wpa, data->ft_ies.ies,
  1192. data->ft_ies.ies_len,
  1193. data->ft_ies.ft_action,
  1194. data->ft_ies.target_ap,
  1195. data->ft_ies.ric_ies,
  1196. data->ft_ies.ric_ies_len) < 0) {
  1197. /* TODO: prevent MLME/driver from trying to associate? */
  1198. }
  1199. }
  1200. #endif /* CONFIG_IEEE80211R */
  1201. #ifdef CONFIG_IBSS_RSN
  1202. static void wpa_supplicant_event_ibss_rsn_start(struct wpa_supplicant *wpa_s,
  1203. union wpa_event_data *data)
  1204. {
  1205. if (data == NULL)
  1206. return;
  1207. ibss_rsn_start(wpa_s->ibss_rsn, data->ibss_rsn_start.peer);
  1208. }
  1209. #endif /* CONFIG_IBSS_RSN */
  1210. #ifdef CONFIG_IEEE80211R
  1211. static void ft_rx_action(struct wpa_supplicant *wpa_s, const u8 *data,
  1212. size_t len)
  1213. {
  1214. const u8 *sta_addr, *target_ap_addr;
  1215. u16 status;
  1216. wpa_hexdump(MSG_MSGDUMP, "FT: RX Action", data, len);
  1217. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME))
  1218. return; /* only SME case supported for now */
  1219. if (len < 1 + 2 * ETH_ALEN + 2)
  1220. return;
  1221. if (data[0] != 2)
  1222. return; /* Only FT Action Response is supported for now */
  1223. sta_addr = data + 1;
  1224. target_ap_addr = data + 1 + ETH_ALEN;
  1225. status = WPA_GET_LE16(data + 1 + 2 * ETH_ALEN);
  1226. wpa_printf(MSG_DEBUG, "FT: Received FT Action Response: STA " MACSTR
  1227. " TargetAP " MACSTR " status %u",
  1228. MAC2STR(sta_addr), MAC2STR(target_ap_addr), status);
  1229. if (os_memcmp(sta_addr, wpa_s->own_addr, ETH_ALEN) != 0) {
  1230. wpa_printf(MSG_DEBUG, "FT: Foreign STA Address " MACSTR
  1231. " in FT Action Response", MAC2STR(sta_addr));
  1232. return;
  1233. }
  1234. if (status) {
  1235. wpa_printf(MSG_DEBUG, "FT: FT Action Response indicates "
  1236. "failure (status code %d)", status);
  1237. /* TODO: report error to FT code(?) */
  1238. return;
  1239. }
  1240. if (wpa_ft_process_response(wpa_s->wpa, data + 1 + 2 * ETH_ALEN + 2,
  1241. len - (1 + 2 * ETH_ALEN + 2), 1,
  1242. target_ap_addr, NULL, 0) < 0)
  1243. return;
  1244. #ifdef CONFIG_SME
  1245. {
  1246. struct wpa_bss *bss;
  1247. bss = wpa_bss_get_bssid(wpa_s, target_ap_addr);
  1248. if (bss)
  1249. wpa_s->sme.freq = bss->freq;
  1250. wpa_s->sme.auth_alg = WPA_AUTH_ALG_FT;
  1251. sme_associate(wpa_s, WPAS_MODE_INFRA, target_ap_addr,
  1252. WLAN_AUTH_FT);
  1253. }
  1254. #endif /* CONFIG_SME */
  1255. }
  1256. #endif /* CONFIG_IEEE80211R */
  1257. void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
  1258. union wpa_event_data *data)
  1259. {
  1260. struct wpa_supplicant *wpa_s = ctx;
  1261. u16 reason_code = 0;
  1262. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED &&
  1263. event != EVENT_INTERFACE_ENABLED &&
  1264. event != EVENT_INTERFACE_STATUS) {
  1265. wpa_printf(MSG_DEBUG, "Ignore event %d while interface is "
  1266. "disabled", event);
  1267. return;
  1268. }
  1269. wpa_printf(MSG_DEBUG, "Event %d received on interface %s",
  1270. event, wpa_s->ifname);
  1271. switch (event) {
  1272. case EVENT_AUTH:
  1273. sme_event_auth(wpa_s, data);
  1274. break;
  1275. case EVENT_ASSOC:
  1276. wpa_supplicant_event_assoc(wpa_s, data);
  1277. break;
  1278. case EVENT_DISASSOC:
  1279. wpa_printf(MSG_DEBUG, "Disassociation notification");
  1280. if (data) {
  1281. wpa_printf(MSG_DEBUG, " * reason %u",
  1282. data->disassoc_info.reason_code);
  1283. if (data->disassoc_info.addr)
  1284. wpa_printf(MSG_DEBUG, " * address " MACSTR,
  1285. MAC2STR(data->disassoc_info.addr));
  1286. }
  1287. #ifdef CONFIG_AP
  1288. if (wpa_s->ap_iface && data) {
  1289. hostapd_notif_disassoc(wpa_s->ap_iface->bss[0],
  1290. data->disassoc_info.addr);
  1291. break;
  1292. }
  1293. #endif /* CONFIG_AP */
  1294. if (data)
  1295. reason_code = data->deauth_info.reason_code;
  1296. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  1297. sme_event_disassoc(wpa_s, data);
  1298. /* fall through */
  1299. case EVENT_DEAUTH:
  1300. if (event == EVENT_DEAUTH) {
  1301. wpa_printf(MSG_DEBUG, "Deauthentication notification");
  1302. if (data) {
  1303. reason_code = data->deauth_info.reason_code;
  1304. wpa_printf(MSG_DEBUG, " * reason %u",
  1305. data->deauth_info.reason_code);
  1306. if (data->deauth_info.addr) {
  1307. wpa_printf(MSG_DEBUG, " * address "
  1308. MACSTR,
  1309. MAC2STR(data->deauth_info.
  1310. addr));
  1311. }
  1312. }
  1313. }
  1314. #ifdef CONFIG_AP
  1315. if (wpa_s->ap_iface && data) {
  1316. hostapd_notif_disassoc(wpa_s->ap_iface->bss[0],
  1317. data->deauth_info.addr);
  1318. break;
  1319. }
  1320. #endif /* CONFIG_AP */
  1321. wpa_supplicant_event_disassoc(wpa_s, reason_code);
  1322. break;
  1323. case EVENT_MICHAEL_MIC_FAILURE:
  1324. wpa_supplicant_event_michael_mic_failure(wpa_s, data);
  1325. break;
  1326. #ifndef CONFIG_NO_SCAN_PROCESSING
  1327. case EVENT_SCAN_RESULTS:
  1328. wpa_supplicant_event_scan_results(wpa_s, data);
  1329. break;
  1330. #endif /* CONFIG_NO_SCAN_PROCESSING */
  1331. case EVENT_ASSOCINFO:
  1332. wpa_supplicant_event_associnfo(wpa_s, data);
  1333. break;
  1334. case EVENT_INTERFACE_STATUS:
  1335. wpa_supplicant_event_interface_status(wpa_s, data);
  1336. break;
  1337. case EVENT_PMKID_CANDIDATE:
  1338. wpa_supplicant_event_pmkid_candidate(wpa_s, data);
  1339. break;
  1340. #ifdef CONFIG_PEERKEY
  1341. case EVENT_STKSTART:
  1342. wpa_supplicant_event_stkstart(wpa_s, data);
  1343. break;
  1344. #endif /* CONFIG_PEERKEY */
  1345. #ifdef CONFIG_IEEE80211R
  1346. case EVENT_FT_RESPONSE:
  1347. wpa_supplicant_event_ft_response(wpa_s, data);
  1348. break;
  1349. #endif /* CONFIG_IEEE80211R */
  1350. #ifdef CONFIG_IBSS_RSN
  1351. case EVENT_IBSS_RSN_START:
  1352. wpa_supplicant_event_ibss_rsn_start(wpa_s, data);
  1353. break;
  1354. #endif /* CONFIG_IBSS_RSN */
  1355. case EVENT_ASSOC_REJECT:
  1356. sme_event_assoc_reject(wpa_s, data);
  1357. break;
  1358. case EVENT_AUTH_TIMED_OUT:
  1359. sme_event_auth_timed_out(wpa_s, data);
  1360. break;
  1361. case EVENT_ASSOC_TIMED_OUT:
  1362. sme_event_assoc_timed_out(wpa_s, data);
  1363. break;
  1364. #ifdef CONFIG_AP
  1365. case EVENT_TX_STATUS:
  1366. if (wpa_s->ap_iface == NULL)
  1367. break;
  1368. switch (data->tx_status.type) {
  1369. case WLAN_FC_TYPE_MGMT:
  1370. ap_mgmt_tx_cb(wpa_s, data->tx_status.data,
  1371. data->tx_status.data_len,
  1372. data->tx_status.stype,
  1373. data->tx_status.ack);
  1374. break;
  1375. case WLAN_FC_TYPE_DATA:
  1376. ap_tx_status(wpa_s, data->tx_status.dst,
  1377. data->tx_status.data,
  1378. data->tx_status.data_len,
  1379. data->tx_status.ack);
  1380. break;
  1381. }
  1382. break;
  1383. case EVENT_RX_FROM_UNKNOWN:
  1384. if (wpa_s->ap_iface == NULL)
  1385. break;
  1386. ap_rx_from_unknown_sta(wpa_s, data->rx_from_unknown.frame,
  1387. data->rx_from_unknown.len);
  1388. break;
  1389. case EVENT_RX_MGMT:
  1390. if (wpa_s->ap_iface == NULL)
  1391. break;
  1392. ap_mgmt_rx(wpa_s, &data->rx_mgmt);
  1393. break;
  1394. #endif /* CONFIG_AP */
  1395. case EVENT_RX_ACTION:
  1396. wpa_printf(MSG_DEBUG, "Received Action frame: SA=" MACSTR
  1397. " Category=%u DataLen=%d freq=%d MHz",
  1398. MAC2STR(data->rx_action.sa),
  1399. data->rx_action.category, (int) data->rx_action.len,
  1400. data->rx_action.freq);
  1401. #ifdef CONFIG_IEEE80211R
  1402. if (data->rx_action.category == WLAN_ACTION_FT) {
  1403. ft_rx_action(wpa_s, data->rx_action.data,
  1404. data->rx_action.len);
  1405. break;
  1406. }
  1407. #endif /* CONFIG_IEEE80211R */
  1408. break;
  1409. #ifdef CONFIG_CLIENT_MLME
  1410. case EVENT_MLME_RX: {
  1411. struct ieee80211_rx_status rx_status;
  1412. os_memset(&rx_status, 0, sizeof(rx_status));
  1413. rx_status.freq = data->mlme_rx.freq;
  1414. rx_status.channel = data->mlme_rx.channel;
  1415. rx_status.ssi = data->mlme_rx.ssi;
  1416. ieee80211_sta_rx(wpa_s, data->mlme_rx.buf, data->mlme_rx.len,
  1417. &rx_status);
  1418. break;
  1419. }
  1420. #endif /* CONFIG_CLIENT_MLME */
  1421. case EVENT_EAPOL_RX:
  1422. wpa_supplicant_rx_eapol(wpa_s, data->eapol_rx.src,
  1423. data->eapol_rx.data,
  1424. data->eapol_rx.data_len);
  1425. break;
  1426. case EVENT_SIGNAL_CHANGE:
  1427. bgscan_notify_signal_change(
  1428. wpa_s, data->signal_change.above_threshold,
  1429. data->signal_change.current_signal);
  1430. break;
  1431. case EVENT_INTERFACE_ENABLED:
  1432. wpa_printf(MSG_DEBUG, "Interface was enabled");
  1433. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
  1434. wpa_supplicant_set_state(wpa_s,
  1435. WPA_DISCONNECTED);
  1436. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1437. }
  1438. break;
  1439. case EVENT_INTERFACE_DISABLED:
  1440. wpa_printf(MSG_DEBUG, "Interface was disabled");
  1441. wpa_supplicant_mark_disassoc(wpa_s);
  1442. wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
  1443. break;
  1444. default:
  1445. wpa_printf(MSG_INFO, "Unknown event %d", event);
  1446. break;
  1447. }
  1448. }