events.c 45 KB

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