events.c 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685
  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. /* Matching configuration found */
  435. return ssid;
  436. }
  437. /* No matching configuration found */
  438. return 0;
  439. }
  440. static struct wpa_bss *
  441. wpa_supplicant_select_bss(struct wpa_supplicant *wpa_s,
  442. struct wpa_scan_results *scan_res,
  443. struct wpa_ssid *group,
  444. struct wpa_ssid **selected_ssid)
  445. {
  446. size_t i;
  447. wpa_printf(MSG_DEBUG, "Selecting BSS from priority group %d",
  448. group->priority);
  449. for (i = 0; i < scan_res->num; i++) {
  450. struct wpa_scan_res *bss = scan_res->res[i];
  451. const u8 *ie, *ssid;
  452. u8 ssid_len;
  453. *selected_ssid = wpa_scan_res_match(wpa_s, i, bss, group);
  454. if (!*selected_ssid)
  455. continue;
  456. ie = wpa_scan_get_ie(bss, WLAN_EID_SSID);
  457. ssid = ie ? ie + 2 : (u8 *) "";
  458. ssid_len = ie ? ie[1] : 0;
  459. wpa_printf(MSG_DEBUG, " selected BSS " MACSTR " ssid='%s'",
  460. MAC2STR(bss->bssid), wpa_ssid_txt(ssid, ssid_len));
  461. return wpa_bss_get(wpa_s, bss->bssid, ssid, ssid_len);
  462. }
  463. return NULL;
  464. }
  465. static struct wpa_bss *
  466. wpa_supplicant_pick_network(struct wpa_supplicant *wpa_s,
  467. struct wpa_scan_results *scan_res,
  468. struct wpa_ssid **selected_ssid)
  469. {
  470. struct wpa_bss *selected = NULL;
  471. int prio;
  472. while (selected == NULL) {
  473. for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
  474. selected = wpa_supplicant_select_bss(
  475. wpa_s, scan_res, wpa_s->conf->pssid[prio],
  476. selected_ssid);
  477. if (selected)
  478. break;
  479. }
  480. if (selected == NULL && wpa_s->blacklist) {
  481. wpa_printf(MSG_DEBUG, "No APs found - clear blacklist "
  482. "and try again");
  483. wpa_blacklist_clear(wpa_s);
  484. wpa_s->blacklist_cleared++;
  485. } else if (selected == NULL)
  486. break;
  487. }
  488. return selected;
  489. }
  490. static void wpa_supplicant_req_new_scan(struct wpa_supplicant *wpa_s,
  491. int timeout_sec, int timeout_usec)
  492. {
  493. if (!wpa_supplicant_enabled_networks(wpa_s->conf)) {
  494. /*
  495. * No networks are enabled; short-circuit request so
  496. * we don't wait timeout seconds before transitioning
  497. * to INACTIVE state.
  498. */
  499. wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
  500. return;
  501. }
  502. wpa_supplicant_req_scan(wpa_s, timeout_sec, timeout_usec);
  503. }
  504. void wpa_supplicant_connect(struct wpa_supplicant *wpa_s,
  505. struct wpa_bss *selected,
  506. struct wpa_ssid *ssid)
  507. {
  508. if (wpas_wps_scan_pbc_overlap(wpa_s, selected, ssid)) {
  509. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_OVERLAP
  510. "PBC session overlap");
  511. wpa_supplicant_req_new_scan(wpa_s, 10, 0);
  512. return;
  513. }
  514. /*
  515. * Do not trigger new association unless the BSSID has changed or if
  516. * reassociation is requested. If we are in process of associating with
  517. * the selected BSSID, do not trigger new attempt.
  518. */
  519. if (wpa_s->reassociate ||
  520. (os_memcmp(selected->bssid, wpa_s->bssid, ETH_ALEN) != 0 &&
  521. (wpa_s->wpa_state != WPA_ASSOCIATING ||
  522. os_memcmp(selected->bssid, wpa_s->pending_bssid, ETH_ALEN) !=
  523. 0))) {
  524. if (wpa_supplicant_scard_init(wpa_s, ssid)) {
  525. wpa_supplicant_req_new_scan(wpa_s, 10, 0);
  526. return;
  527. }
  528. wpa_supplicant_associate(wpa_s, selected, ssid);
  529. } else {
  530. wpa_printf(MSG_DEBUG, "Already associated with the selected "
  531. "AP");
  532. }
  533. }
  534. static struct wpa_ssid *
  535. wpa_supplicant_pick_new_network(struct wpa_supplicant *wpa_s)
  536. {
  537. int prio;
  538. struct wpa_ssid *ssid;
  539. for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
  540. for (ssid = wpa_s->conf->pssid[prio]; ssid; ssid = ssid->pnext)
  541. {
  542. if (ssid->disabled)
  543. continue;
  544. if (ssid->mode == IEEE80211_MODE_IBSS ||
  545. ssid->mode == IEEE80211_MODE_AP)
  546. return ssid;
  547. }
  548. }
  549. return NULL;
  550. }
  551. /* TODO: move the rsn_preauth_scan_result*() to be called from notify.c based
  552. * on BSS added and BSS changed events */
  553. static void wpa_supplicant_rsn_preauth_scan_results(
  554. struct wpa_supplicant *wpa_s, struct wpa_scan_results *scan_res)
  555. {
  556. int i;
  557. if (rsn_preauth_scan_results(wpa_s->wpa) < 0)
  558. return;
  559. for (i = scan_res->num - 1; i >= 0; i--) {
  560. const u8 *ssid, *rsn;
  561. struct wpa_scan_res *r;
  562. r = scan_res->res[i];
  563. ssid = wpa_scan_get_ie(r, WLAN_EID_SSID);
  564. if (ssid == NULL)
  565. continue;
  566. rsn = wpa_scan_get_ie(r, WLAN_EID_RSN);
  567. if (rsn == NULL)
  568. continue;
  569. rsn_preauth_scan_result(wpa_s->wpa, r->bssid, ssid, rsn);
  570. }
  571. }
  572. static int wpa_supplicant_need_to_roam(struct wpa_supplicant *wpa_s,
  573. struct wpa_bss *selected,
  574. struct wpa_ssid *ssid,
  575. struct wpa_scan_results *scan_res)
  576. {
  577. size_t i;
  578. struct wpa_scan_res *current_bss = NULL;
  579. int min_diff;
  580. if (wpa_s->reassociate)
  581. return 1; /* explicit request to reassociate */
  582. if (wpa_s->wpa_state < WPA_ASSOCIATED)
  583. return 1; /* we are not associated; continue */
  584. if (wpa_s->current_ssid == NULL)
  585. return 1; /* unknown current SSID */
  586. if (wpa_s->current_ssid != ssid)
  587. return 1; /* different network block */
  588. for (i = 0; i < scan_res->num; i++) {
  589. struct wpa_scan_res *res = scan_res->res[i];
  590. const u8 *ie;
  591. if (os_memcmp(res->bssid, wpa_s->bssid, ETH_ALEN) != 0)
  592. continue;
  593. ie = wpa_scan_get_ie(res, WLAN_EID_SSID);
  594. if (ie == NULL)
  595. continue;
  596. if (ie[1] != wpa_s->current_ssid->ssid_len ||
  597. os_memcmp(ie + 2, wpa_s->current_ssid->ssid, ie[1]) != 0)
  598. continue;
  599. current_bss = res;
  600. break;
  601. }
  602. if (!current_bss)
  603. return 1; /* current BSS not seen in scan results */
  604. wpa_printf(MSG_DEBUG, "Considering within-ESS reassociation");
  605. wpa_printf(MSG_DEBUG, "Current BSS: " MACSTR " level=%d",
  606. MAC2STR(current_bss->bssid), current_bss->level);
  607. wpa_printf(MSG_DEBUG, "Selected BSS: " MACSTR " level=%d",
  608. MAC2STR(selected->bssid), selected->level);
  609. if (wpa_s->current_ssid->bssid_set &&
  610. os_memcmp(selected->bssid, wpa_s->current_ssid->bssid, ETH_ALEN) ==
  611. 0) {
  612. wpa_printf(MSG_DEBUG, "Allow reassociation - selected BSS has "
  613. "preferred BSSID");
  614. return 1;
  615. }
  616. min_diff = 2;
  617. if (current_bss->level < 0) {
  618. if (current_bss->level < -85)
  619. min_diff = 1;
  620. else if (current_bss->level < -80)
  621. min_diff = 2;
  622. else if (current_bss->level < -75)
  623. min_diff = 3;
  624. else if (current_bss->level < -70)
  625. min_diff = 4;
  626. else
  627. min_diff = 5;
  628. }
  629. if (abs(current_bss->level - selected->level) < min_diff) {
  630. wpa_printf(MSG_DEBUG, "Skip roam - too small difference in "
  631. "signal level");
  632. return 0;
  633. }
  634. return 1;
  635. }
  636. static void wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
  637. union wpa_event_data *data)
  638. {
  639. struct wpa_bss *selected;
  640. struct wpa_ssid *ssid = NULL;
  641. struct wpa_scan_results *scan_res;
  642. int ap = 0;
  643. #ifdef CONFIG_AP
  644. if (wpa_s->ap_iface)
  645. ap = 1;
  646. #endif /* CONFIG_AP */
  647. wpa_supplicant_notify_scanning(wpa_s, 0);
  648. scan_res = wpa_supplicant_get_scan_results(wpa_s,
  649. data ? &data->scan_info :
  650. NULL, 1);
  651. if (scan_res == NULL) {
  652. if (wpa_s->conf->ap_scan == 2 || ap)
  653. return;
  654. wpa_printf(MSG_DEBUG, "Failed to get scan results - try "
  655. "scanning again");
  656. wpa_supplicant_req_new_scan(wpa_s, 1, 0);
  657. return;
  658. }
  659. if (wpa_s->scan_res_handler) {
  660. wpa_s->scan_res_handler(wpa_s, scan_res);
  661. wpa_s->scan_res_handler = NULL;
  662. wpa_scan_results_free(scan_res);
  663. return;
  664. }
  665. if (ap) {
  666. wpa_printf(MSG_DEBUG, "Ignore scan results in AP mode");
  667. wpa_scan_results_free(scan_res);
  668. return;
  669. }
  670. wpa_printf(MSG_DEBUG, "New scan results available");
  671. wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS);
  672. wpas_notify_scan_results(wpa_s);
  673. wpas_notify_scan_done(wpa_s, 1);
  674. if ((wpa_s->conf->ap_scan == 2 && !wpas_wps_searching(wpa_s))) {
  675. wpa_scan_results_free(scan_res);
  676. return;
  677. }
  678. if (wpa_s->disconnected) {
  679. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  680. wpa_scan_results_free(scan_res);
  681. return;
  682. }
  683. if (bgscan_notify_scan(wpa_s, scan_res) == 1) {
  684. wpa_scan_results_free(scan_res);
  685. return;
  686. }
  687. wpa_supplicant_rsn_preauth_scan_results(wpa_s, scan_res);
  688. selected = wpa_supplicant_pick_network(wpa_s, scan_res, &ssid);
  689. if (selected) {
  690. int skip;
  691. skip = !wpa_supplicant_need_to_roam(wpa_s, selected, ssid,
  692. scan_res);
  693. wpa_scan_results_free(scan_res);
  694. if (skip)
  695. return;
  696. wpa_supplicant_connect(wpa_s, selected, ssid);
  697. } else {
  698. wpa_scan_results_free(scan_res);
  699. wpa_printf(MSG_DEBUG, "No suitable network found");
  700. ssid = wpa_supplicant_pick_new_network(wpa_s);
  701. if (ssid) {
  702. wpa_printf(MSG_DEBUG, "Setup a new network");
  703. wpa_supplicant_associate(wpa_s, NULL, ssid);
  704. } else {
  705. int timeout_sec = 5;
  706. int timeout_usec = 0;
  707. wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
  708. timeout_usec);
  709. }
  710. }
  711. }
  712. #endif /* CONFIG_NO_SCAN_PROCESSING */
  713. static int wpa_supplicant_event_associnfo(struct wpa_supplicant *wpa_s,
  714. union wpa_event_data *data)
  715. {
  716. int l, len, found = 0, wpa_found, rsn_found;
  717. const u8 *p;
  718. wpa_printf(MSG_DEBUG, "Association info event");
  719. if (data->assoc_info.req_ies)
  720. wpa_hexdump(MSG_DEBUG, "req_ies", data->assoc_info.req_ies,
  721. data->assoc_info.req_ies_len);
  722. if (data->assoc_info.resp_ies)
  723. wpa_hexdump(MSG_DEBUG, "resp_ies", data->assoc_info.resp_ies,
  724. data->assoc_info.resp_ies_len);
  725. if (data->assoc_info.beacon_ies)
  726. wpa_hexdump(MSG_DEBUG, "beacon_ies",
  727. data->assoc_info.beacon_ies,
  728. data->assoc_info.beacon_ies_len);
  729. if (data->assoc_info.freq)
  730. wpa_printf(MSG_DEBUG, "freq=%u MHz", data->assoc_info.freq);
  731. p = data->assoc_info.req_ies;
  732. l = data->assoc_info.req_ies_len;
  733. /* Go through the IEs and make a copy of the WPA/RSN IE, if present. */
  734. while (p && l >= 2) {
  735. len = p[1] + 2;
  736. if (len > l) {
  737. wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
  738. p, l);
  739. break;
  740. }
  741. if ((p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
  742. (os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0)) ||
  743. (p[0] == WLAN_EID_RSN && p[1] >= 2)) {
  744. if (wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, p, len))
  745. break;
  746. found = 1;
  747. wpa_find_assoc_pmkid(wpa_s);
  748. break;
  749. }
  750. l -= len;
  751. p += len;
  752. }
  753. if (!found && data->assoc_info.req_ies)
  754. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  755. #ifdef CONFIG_IEEE80211R
  756. #ifdef CONFIG_SME
  757. if (wpa_s->sme.auth_alg == WPA_AUTH_ALG_FT) {
  758. u8 bssid[ETH_ALEN];
  759. if (wpa_drv_get_bssid(wpa_s, bssid) < 0 ||
  760. wpa_ft_validate_reassoc_resp(wpa_s->wpa,
  761. data->assoc_info.resp_ies,
  762. data->assoc_info.resp_ies_len,
  763. bssid) < 0) {
  764. wpa_printf(MSG_DEBUG, "FT: Validation of "
  765. "Reassociation Response failed");
  766. wpa_supplicant_deauthenticate(
  767. wpa_s, WLAN_REASON_INVALID_IE);
  768. return -1;
  769. }
  770. }
  771. p = data->assoc_info.resp_ies;
  772. l = data->assoc_info.resp_ies_len;
  773. #ifdef CONFIG_WPS_STRICT
  774. if (wpa_s->current_ssid &&
  775. wpa_s->current_ssid->key_mgmt == WPA_KEY_MGMT_WPS) {
  776. struct wpabuf *wps;
  777. wps = ieee802_11_vendor_ie_concat(p, l, WPS_IE_VENDOR_TYPE);
  778. if (wps == NULL) {
  779. wpa_printf(MSG_INFO, "WPS-STRICT: AP did not include "
  780. "WPS IE in (Re)Association Response");
  781. return -1;
  782. }
  783. if (wps_validate_assoc_resp(wps) < 0) {
  784. wpabuf_free(wps);
  785. wpa_supplicant_deauthenticate(
  786. wpa_s, WLAN_REASON_INVALID_IE);
  787. return -1;
  788. }
  789. wpabuf_free(wps);
  790. }
  791. #endif /* CONFIG_WPS_STRICT */
  792. /* Go through the IEs and make a copy of the MDIE, if present. */
  793. while (p && l >= 2) {
  794. len = p[1] + 2;
  795. if (len > l) {
  796. wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
  797. p, l);
  798. break;
  799. }
  800. if (p[0] == WLAN_EID_MOBILITY_DOMAIN &&
  801. p[1] >= MOBILITY_DOMAIN_ID_LEN) {
  802. wpa_s->sme.ft_used = 1;
  803. os_memcpy(wpa_s->sme.mobility_domain, p + 2,
  804. MOBILITY_DOMAIN_ID_LEN);
  805. break;
  806. }
  807. l -= len;
  808. p += len;
  809. }
  810. #endif /* CONFIG_SME */
  811. wpa_sm_set_ft_params(wpa_s->wpa, data->assoc_info.resp_ies,
  812. data->assoc_info.resp_ies_len);
  813. #endif /* CONFIG_IEEE80211R */
  814. /* WPA/RSN IE from Beacon/ProbeResp */
  815. p = data->assoc_info.beacon_ies;
  816. l = data->assoc_info.beacon_ies_len;
  817. /* Go through the IEs and make a copy of the WPA/RSN IEs, if present.
  818. */
  819. wpa_found = rsn_found = 0;
  820. while (p && l >= 2) {
  821. len = p[1] + 2;
  822. if (len > l) {
  823. wpa_hexdump(MSG_DEBUG, "Truncated IE in beacon_ies",
  824. p, l);
  825. break;
  826. }
  827. if (!wpa_found &&
  828. p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
  829. os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0) {
  830. wpa_found = 1;
  831. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, p, len);
  832. }
  833. if (!rsn_found &&
  834. p[0] == WLAN_EID_RSN && p[1] >= 2) {
  835. rsn_found = 1;
  836. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, p, len);
  837. }
  838. l -= len;
  839. p += len;
  840. }
  841. if (!wpa_found && data->assoc_info.beacon_ies)
  842. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, NULL, 0);
  843. if (!rsn_found && data->assoc_info.beacon_ies)
  844. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, NULL, 0);
  845. if (wpa_found || rsn_found)
  846. wpa_s->ap_ies_from_associnfo = 1;
  847. wpa_s->assoc_freq = data->assoc_info.freq;
  848. return 0;
  849. }
  850. static void wpa_supplicant_event_assoc(struct wpa_supplicant *wpa_s,
  851. union wpa_event_data *data)
  852. {
  853. u8 bssid[ETH_ALEN];
  854. int ft_completed;
  855. int bssid_changed;
  856. struct wpa_driver_capa capa;
  857. #ifdef CONFIG_AP
  858. if (wpa_s->ap_iface) {
  859. hostapd_notif_assoc(wpa_s->ap_iface->bss[0],
  860. data->assoc_info.addr,
  861. data->assoc_info.req_ies,
  862. data->assoc_info.req_ies_len);
  863. return;
  864. }
  865. #endif /* CONFIG_AP */
  866. ft_completed = wpa_ft_is_completed(wpa_s->wpa);
  867. if (data && wpa_supplicant_event_associnfo(wpa_s, data) < 0)
  868. return;
  869. wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATED);
  870. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
  871. os_memcpy(bssid, wpa_s->bssid, ETH_ALEN);
  872. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME) ||
  873. (wpa_drv_get_bssid(wpa_s, bssid) >= 0 &&
  874. os_memcmp(bssid, wpa_s->bssid, ETH_ALEN) != 0)) {
  875. wpa_msg(wpa_s, MSG_DEBUG, "Associated to a new BSS: BSSID="
  876. MACSTR, MAC2STR(bssid));
  877. bssid_changed = os_memcmp(wpa_s->bssid, bssid, ETH_ALEN);
  878. os_memcpy(wpa_s->bssid, bssid, ETH_ALEN);
  879. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  880. if (bssid_changed)
  881. wpas_notify_bssid_changed(wpa_s);
  882. if (wpa_supplicant_dynamic_keys(wpa_s) && !ft_completed) {
  883. wpa_clear_keys(wpa_s, bssid);
  884. }
  885. if (wpa_supplicant_select_config(wpa_s) < 0) {
  886. wpa_supplicant_disassociate(
  887. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  888. return;
  889. }
  890. if (wpa_s->current_ssid) {
  891. struct wpa_bss *bss = NULL;
  892. struct wpa_ssid *ssid = wpa_s->current_ssid;
  893. if (ssid->ssid_len > 0)
  894. bss = wpa_bss_get(wpa_s, bssid,
  895. ssid->ssid, ssid->ssid_len);
  896. if (!bss)
  897. bss = wpa_bss_get_bssid(wpa_s, bssid);
  898. if (bss)
  899. wpa_s->current_bss = bss;
  900. }
  901. }
  902. #ifdef CONFIG_SME
  903. os_memcpy(wpa_s->sme.prev_bssid, bssid, ETH_ALEN);
  904. wpa_s->sme.prev_bssid_set = 1;
  905. #endif /* CONFIG_SME */
  906. wpa_msg(wpa_s, MSG_INFO, "Associated with " MACSTR, MAC2STR(bssid));
  907. if (wpa_s->current_ssid) {
  908. /* When using scanning (ap_scan=1), SIM PC/SC interface can be
  909. * initialized before association, but for other modes,
  910. * initialize PC/SC here, if the current configuration needs
  911. * smartcard or SIM/USIM. */
  912. wpa_supplicant_scard_init(wpa_s, wpa_s->current_ssid);
  913. }
  914. wpa_sm_notify_assoc(wpa_s->wpa, bssid);
  915. if (wpa_s->l2)
  916. l2_packet_notify_auth_start(wpa_s->l2);
  917. /*
  918. * Set portEnabled first to FALSE in order to get EAP state machine out
  919. * of the SUCCESS state and eapSuccess cleared. Without this, EAPOL PAE
  920. * state machine may transit to AUTHENTICATING state based on obsolete
  921. * eapSuccess and then trigger BE_AUTH to SUCCESS and PAE to
  922. * AUTHENTICATED without ever giving chance to EAP state machine to
  923. * reset the state.
  924. */
  925. if (!ft_completed) {
  926. eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
  927. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  928. }
  929. if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) || ft_completed)
  930. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  931. /* 802.1X::portControl = Auto */
  932. eapol_sm_notify_portEnabled(wpa_s->eapol, TRUE);
  933. wpa_s->eapol_received = 0;
  934. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  935. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE ||
  936. (wpa_s->current_ssid &&
  937. wpa_s->current_ssid->mode == IEEE80211_MODE_IBSS)) {
  938. wpa_supplicant_cancel_auth_timeout(wpa_s);
  939. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  940. } else if (!ft_completed) {
  941. /* Timeout for receiving the first EAPOL packet */
  942. wpa_supplicant_req_auth_timeout(wpa_s, 10, 0);
  943. }
  944. wpa_supplicant_cancel_scan(wpa_s);
  945. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
  946. wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt)) {
  947. /*
  948. * We are done; the driver will take care of RSN 4-way
  949. * handshake.
  950. */
  951. wpa_supplicant_cancel_auth_timeout(wpa_s);
  952. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  953. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  954. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  955. }
  956. if (wpa_s->pending_eapol_rx) {
  957. struct os_time now, age;
  958. os_get_time(&now);
  959. os_time_sub(&now, &wpa_s->pending_eapol_rx_time, &age);
  960. if (age.sec == 0 && age.usec < 100000 &&
  961. os_memcmp(wpa_s->pending_eapol_rx_src, bssid, ETH_ALEN) ==
  962. 0) {
  963. wpa_printf(MSG_DEBUG, "Process pending EAPOL frame "
  964. "that was received just before association "
  965. "notification");
  966. wpa_supplicant_rx_eapol(
  967. wpa_s, wpa_s->pending_eapol_rx_src,
  968. wpabuf_head(wpa_s->pending_eapol_rx),
  969. wpabuf_len(wpa_s->pending_eapol_rx));
  970. }
  971. wpabuf_free(wpa_s->pending_eapol_rx);
  972. wpa_s->pending_eapol_rx = NULL;
  973. }
  974. #ifdef CONFIG_BGSCAN
  975. if (wpa_s->current_ssid != wpa_s->bgscan_ssid) {
  976. bgscan_deinit(wpa_s);
  977. if (wpa_s->current_ssid && wpa_s->current_ssid->bgscan) {
  978. if (bgscan_init(wpa_s, wpa_s->current_ssid)) {
  979. wpa_printf(MSG_DEBUG, "Failed to initialize "
  980. "bgscan");
  981. /*
  982. * Live without bgscan; it is only used as a
  983. * roaming optimization, so the initial
  984. * connection is not affected.
  985. */
  986. } else
  987. wpa_s->bgscan_ssid = wpa_s->current_ssid;
  988. } else
  989. wpa_s->bgscan_ssid = NULL;
  990. }
  991. #endif /* CONFIG_BGSCAN */
  992. if ((wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  993. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
  994. wpa_s->current_ssid && wpa_drv_get_capa(wpa_s, &capa) == 0 &&
  995. capa.flags & WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE) {
  996. /* Set static WEP keys again */
  997. wpa_set_wep_keys(wpa_s, wpa_s->current_ssid);
  998. }
  999. }
  1000. static void wpa_supplicant_event_disassoc(struct wpa_supplicant *wpa_s,
  1001. u16 reason_code)
  1002. {
  1003. const u8 *bssid;
  1004. #ifdef CONFIG_SME
  1005. int authenticating;
  1006. u8 prev_pending_bssid[ETH_ALEN];
  1007. authenticating = wpa_s->wpa_state == WPA_AUTHENTICATING;
  1008. os_memcpy(prev_pending_bssid, wpa_s->pending_bssid, ETH_ALEN);
  1009. #endif /* CONFIG_SME */
  1010. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  1011. /*
  1012. * At least Host AP driver and a Prism3 card seemed to be
  1013. * generating streams of disconnected events when configuring
  1014. * IBSS for WPA-None. Ignore them for now.
  1015. */
  1016. wpa_printf(MSG_DEBUG, "Disconnect event - ignore in "
  1017. "IBSS/WPA-None mode");
  1018. return;
  1019. }
  1020. if (wpa_s->wpa_state == WPA_4WAY_HANDSHAKE &&
  1021. wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt)) {
  1022. wpa_msg(wpa_s, MSG_INFO, "WPA: 4-Way Handshake failed - "
  1023. "pre-shared key may be incorrect");
  1024. }
  1025. if (wpa_s->wpa_state >= WPA_ASSOCIATED)
  1026. wpa_supplicant_req_scan(wpa_s, 0, 100000);
  1027. bssid = wpa_s->bssid;
  1028. if (is_zero_ether_addr(bssid))
  1029. bssid = wpa_s->pending_bssid;
  1030. wpa_blacklist_add(wpa_s, bssid);
  1031. wpa_sm_notify_disassoc(wpa_s->wpa);
  1032. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid=" MACSTR
  1033. " reason=%d",
  1034. MAC2STR(bssid), reason_code);
  1035. if (wpa_supplicant_dynamic_keys(wpa_s)) {
  1036. wpa_printf(MSG_DEBUG, "Disconnect event - remove keys");
  1037. wpa_s->keys_cleared = 0;
  1038. wpa_clear_keys(wpa_s, wpa_s->bssid);
  1039. }
  1040. wpa_supplicant_mark_disassoc(wpa_s);
  1041. bgscan_deinit(wpa_s);
  1042. wpa_s->bgscan_ssid = NULL;
  1043. #ifdef CONFIG_SME
  1044. if (authenticating &&
  1045. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)) {
  1046. /*
  1047. * mac80211-workaround to force deauth on failed auth cmd,
  1048. * requires us to remain in authenticating state to allow the
  1049. * second authentication attempt to be continued properly.
  1050. */
  1051. wpa_printf(MSG_DEBUG, "SME: Allow pending authentication to "
  1052. "proceed after disconnection event");
  1053. wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
  1054. os_memcpy(wpa_s->pending_bssid, prev_pending_bssid, ETH_ALEN);
  1055. }
  1056. #endif /* CONFIG_SME */
  1057. }
  1058. #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
  1059. static void wpa_supplicant_delayed_mic_error_report(void *eloop_ctx,
  1060. void *sock_ctx)
  1061. {
  1062. struct wpa_supplicant *wpa_s = eloop_ctx;
  1063. if (!wpa_s->pending_mic_error_report)
  1064. return;
  1065. wpa_printf(MSG_DEBUG, "WPA: Sending pending MIC error report");
  1066. wpa_sm_key_request(wpa_s->wpa, 1, wpa_s->pending_mic_error_pairwise);
  1067. wpa_s->pending_mic_error_report = 0;
  1068. }
  1069. #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  1070. static void
  1071. wpa_supplicant_event_michael_mic_failure(struct wpa_supplicant *wpa_s,
  1072. union wpa_event_data *data)
  1073. {
  1074. int pairwise;
  1075. struct os_time t;
  1076. wpa_msg(wpa_s, MSG_WARNING, "Michael MIC failure detected");
  1077. pairwise = (data && data->michael_mic_failure.unicast);
  1078. os_get_time(&t);
  1079. if ((wpa_s->last_michael_mic_error &&
  1080. t.sec - wpa_s->last_michael_mic_error <= 60) ||
  1081. wpa_s->pending_mic_error_report) {
  1082. if (wpa_s->pending_mic_error_report) {
  1083. /*
  1084. * Send the pending MIC error report immediately since
  1085. * we are going to start countermeasures and AP better
  1086. * do the same.
  1087. */
  1088. wpa_sm_key_request(wpa_s->wpa, 1,
  1089. wpa_s->pending_mic_error_pairwise);
  1090. }
  1091. /* Send the new MIC error report immediately since we are going
  1092. * to start countermeasures and AP better do the same.
  1093. */
  1094. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  1095. /* initialize countermeasures */
  1096. wpa_s->countermeasures = 1;
  1097. wpa_msg(wpa_s, MSG_WARNING, "TKIP countermeasures started");
  1098. /*
  1099. * Need to wait for completion of request frame. We do not get
  1100. * any callback for the message completion, so just wait a
  1101. * short while and hope for the best. */
  1102. os_sleep(0, 10000);
  1103. wpa_drv_set_countermeasures(wpa_s, 1);
  1104. wpa_supplicant_deauthenticate(wpa_s,
  1105. WLAN_REASON_MICHAEL_MIC_FAILURE);
  1106. eloop_cancel_timeout(wpa_supplicant_stop_countermeasures,
  1107. wpa_s, NULL);
  1108. eloop_register_timeout(60, 0,
  1109. wpa_supplicant_stop_countermeasures,
  1110. wpa_s, NULL);
  1111. /* TODO: mark the AP rejected for 60 second. STA is
  1112. * allowed to associate with another AP.. */
  1113. } else {
  1114. #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
  1115. if (wpa_s->mic_errors_seen) {
  1116. /*
  1117. * Reduce the effectiveness of Michael MIC error
  1118. * reports as a means for attacking against TKIP if
  1119. * more than one MIC failure is noticed with the same
  1120. * PTK. We delay the transmission of the reports by a
  1121. * random time between 0 and 60 seconds in order to
  1122. * force the attacker wait 60 seconds before getting
  1123. * the information on whether a frame resulted in a MIC
  1124. * failure.
  1125. */
  1126. u8 rval[4];
  1127. int sec;
  1128. if (os_get_random(rval, sizeof(rval)) < 0)
  1129. sec = os_random() % 60;
  1130. else
  1131. sec = WPA_GET_BE32(rval) % 60;
  1132. wpa_printf(MSG_DEBUG, "WPA: Delay MIC error report %d "
  1133. "seconds", sec);
  1134. wpa_s->pending_mic_error_report = 1;
  1135. wpa_s->pending_mic_error_pairwise = pairwise;
  1136. eloop_cancel_timeout(
  1137. wpa_supplicant_delayed_mic_error_report,
  1138. wpa_s, NULL);
  1139. eloop_register_timeout(
  1140. sec, os_random() % 1000000,
  1141. wpa_supplicant_delayed_mic_error_report,
  1142. wpa_s, NULL);
  1143. } else {
  1144. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  1145. }
  1146. #else /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  1147. wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
  1148. #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  1149. }
  1150. wpa_s->last_michael_mic_error = t.sec;
  1151. wpa_s->mic_errors_seen++;
  1152. }
  1153. #ifdef CONFIG_TERMINATE_ONLASTIF
  1154. static int any_interfaces(struct wpa_supplicant *head)
  1155. {
  1156. struct wpa_supplicant *wpa_s;
  1157. for (wpa_s = head; wpa_s != NULL; wpa_s = wpa_s->next)
  1158. if (!wpa_s->interface_removed)
  1159. return 1;
  1160. return 0;
  1161. }
  1162. #endif /* CONFIG_TERMINATE_ONLASTIF */
  1163. static void
  1164. wpa_supplicant_event_interface_status(struct wpa_supplicant *wpa_s,
  1165. union wpa_event_data *data)
  1166. {
  1167. if (os_strcmp(wpa_s->ifname, data->interface_status.ifname) != 0)
  1168. return;
  1169. switch (data->interface_status.ievent) {
  1170. case EVENT_INTERFACE_ADDED:
  1171. if (!wpa_s->interface_removed)
  1172. break;
  1173. wpa_s->interface_removed = 0;
  1174. wpa_printf(MSG_DEBUG, "Configured interface was added.");
  1175. if (wpa_supplicant_driver_init(wpa_s) < 0) {
  1176. wpa_printf(MSG_INFO, "Failed to initialize the driver "
  1177. "after interface was added.");
  1178. }
  1179. break;
  1180. case EVENT_INTERFACE_REMOVED:
  1181. wpa_printf(MSG_DEBUG, "Configured interface was removed.");
  1182. wpa_s->interface_removed = 1;
  1183. wpa_supplicant_mark_disassoc(wpa_s);
  1184. l2_packet_deinit(wpa_s->l2);
  1185. wpa_s->l2 = NULL;
  1186. #ifdef CONFIG_TERMINATE_ONLASTIF
  1187. /* check if last interface */
  1188. if (!any_interfaces(wpa_s->global->ifaces))
  1189. eloop_terminate();
  1190. #endif /* CONFIG_TERMINATE_ONLASTIF */
  1191. break;
  1192. }
  1193. }
  1194. #ifdef CONFIG_PEERKEY
  1195. static void
  1196. wpa_supplicant_event_stkstart(struct wpa_supplicant *wpa_s,
  1197. union wpa_event_data *data)
  1198. {
  1199. if (data == NULL)
  1200. return;
  1201. wpa_sm_stkstart(wpa_s->wpa, data->stkstart.peer);
  1202. }
  1203. #endif /* CONFIG_PEERKEY */
  1204. #ifdef CONFIG_IEEE80211R
  1205. static void
  1206. wpa_supplicant_event_ft_response(struct wpa_supplicant *wpa_s,
  1207. union wpa_event_data *data)
  1208. {
  1209. if (data == NULL)
  1210. return;
  1211. if (wpa_ft_process_response(wpa_s->wpa, data->ft_ies.ies,
  1212. data->ft_ies.ies_len,
  1213. data->ft_ies.ft_action,
  1214. data->ft_ies.target_ap,
  1215. data->ft_ies.ric_ies,
  1216. data->ft_ies.ric_ies_len) < 0) {
  1217. /* TODO: prevent MLME/driver from trying to associate? */
  1218. }
  1219. }
  1220. #endif /* CONFIG_IEEE80211R */
  1221. #ifdef CONFIG_IBSS_RSN
  1222. static void wpa_supplicant_event_ibss_rsn_start(struct wpa_supplicant *wpa_s,
  1223. union wpa_event_data *data)
  1224. {
  1225. if (data == NULL)
  1226. return;
  1227. ibss_rsn_start(wpa_s->ibss_rsn, data->ibss_rsn_start.peer);
  1228. }
  1229. #endif /* CONFIG_IBSS_RSN */
  1230. #ifdef CONFIG_IEEE80211R
  1231. static void ft_rx_action(struct wpa_supplicant *wpa_s, const u8 *data,
  1232. size_t len)
  1233. {
  1234. const u8 *sta_addr, *target_ap_addr;
  1235. u16 status;
  1236. wpa_hexdump(MSG_MSGDUMP, "FT: RX Action", data, len);
  1237. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME))
  1238. return; /* only SME case supported for now */
  1239. if (len < 1 + 2 * ETH_ALEN + 2)
  1240. return;
  1241. if (data[0] != 2)
  1242. return; /* Only FT Action Response is supported for now */
  1243. sta_addr = data + 1;
  1244. target_ap_addr = data + 1 + ETH_ALEN;
  1245. status = WPA_GET_LE16(data + 1 + 2 * ETH_ALEN);
  1246. wpa_printf(MSG_DEBUG, "FT: Received FT Action Response: STA " MACSTR
  1247. " TargetAP " MACSTR " status %u",
  1248. MAC2STR(sta_addr), MAC2STR(target_ap_addr), status);
  1249. if (os_memcmp(sta_addr, wpa_s->own_addr, ETH_ALEN) != 0) {
  1250. wpa_printf(MSG_DEBUG, "FT: Foreign STA Address " MACSTR
  1251. " in FT Action Response", MAC2STR(sta_addr));
  1252. return;
  1253. }
  1254. if (status) {
  1255. wpa_printf(MSG_DEBUG, "FT: FT Action Response indicates "
  1256. "failure (status code %d)", status);
  1257. /* TODO: report error to FT code(?) */
  1258. return;
  1259. }
  1260. if (wpa_ft_process_response(wpa_s->wpa, data + 1 + 2 * ETH_ALEN + 2,
  1261. len - (1 + 2 * ETH_ALEN + 2), 1,
  1262. target_ap_addr, NULL, 0) < 0)
  1263. return;
  1264. #ifdef CONFIG_SME
  1265. {
  1266. struct wpa_bss *bss;
  1267. bss = wpa_bss_get_bssid(wpa_s, target_ap_addr);
  1268. if (bss)
  1269. wpa_s->sme.freq = bss->freq;
  1270. wpa_s->sme.auth_alg = WPA_AUTH_ALG_FT;
  1271. sme_associate(wpa_s, WPAS_MODE_INFRA, target_ap_addr,
  1272. WLAN_AUTH_FT);
  1273. }
  1274. #endif /* CONFIG_SME */
  1275. }
  1276. #endif /* CONFIG_IEEE80211R */
  1277. void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
  1278. union wpa_event_data *data)
  1279. {
  1280. struct wpa_supplicant *wpa_s = ctx;
  1281. u16 reason_code = 0;
  1282. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED &&
  1283. event != EVENT_INTERFACE_ENABLED &&
  1284. event != EVENT_INTERFACE_STATUS) {
  1285. wpa_printf(MSG_DEBUG, "Ignore event %d while interface is "
  1286. "disabled", event);
  1287. return;
  1288. }
  1289. wpa_printf(MSG_DEBUG, "Event %d received on interface %s",
  1290. event, wpa_s->ifname);
  1291. switch (event) {
  1292. case EVENT_AUTH:
  1293. sme_event_auth(wpa_s, data);
  1294. break;
  1295. case EVENT_ASSOC:
  1296. wpa_supplicant_event_assoc(wpa_s, data);
  1297. break;
  1298. case EVENT_DISASSOC:
  1299. wpa_printf(MSG_DEBUG, "Disassociation notification");
  1300. if (data) {
  1301. wpa_printf(MSG_DEBUG, " * reason %u",
  1302. data->disassoc_info.reason_code);
  1303. if (data->disassoc_info.addr)
  1304. wpa_printf(MSG_DEBUG, " * address " MACSTR,
  1305. MAC2STR(data->disassoc_info.addr));
  1306. }
  1307. #ifdef CONFIG_AP
  1308. if (wpa_s->ap_iface && data && data->disassoc_info.addr) {
  1309. hostapd_notif_disassoc(wpa_s->ap_iface->bss[0],
  1310. data->disassoc_info.addr);
  1311. break;
  1312. }
  1313. #endif /* CONFIG_AP */
  1314. if (data)
  1315. reason_code = data->deauth_info.reason_code;
  1316. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  1317. sme_event_disassoc(wpa_s, data);
  1318. /* fall through */
  1319. case EVENT_DEAUTH:
  1320. if (event == EVENT_DEAUTH) {
  1321. wpa_printf(MSG_DEBUG, "Deauthentication notification");
  1322. if (data) {
  1323. reason_code = data->deauth_info.reason_code;
  1324. wpa_printf(MSG_DEBUG, " * reason %u",
  1325. data->deauth_info.reason_code);
  1326. if (data->deauth_info.addr) {
  1327. wpa_printf(MSG_DEBUG, " * address "
  1328. MACSTR,
  1329. MAC2STR(data->deauth_info.
  1330. addr));
  1331. }
  1332. }
  1333. }
  1334. #ifdef CONFIG_AP
  1335. if (wpa_s->ap_iface && data && data->deauth_info.addr) {
  1336. hostapd_notif_disassoc(wpa_s->ap_iface->bss[0],
  1337. data->deauth_info.addr);
  1338. break;
  1339. }
  1340. #endif /* CONFIG_AP */
  1341. wpa_supplicant_event_disassoc(wpa_s, reason_code);
  1342. break;
  1343. case EVENT_MICHAEL_MIC_FAILURE:
  1344. wpa_supplicant_event_michael_mic_failure(wpa_s, data);
  1345. break;
  1346. #ifndef CONFIG_NO_SCAN_PROCESSING
  1347. case EVENT_SCAN_RESULTS:
  1348. wpa_supplicant_event_scan_results(wpa_s, data);
  1349. break;
  1350. #endif /* CONFIG_NO_SCAN_PROCESSING */
  1351. case EVENT_ASSOCINFO:
  1352. wpa_supplicant_event_associnfo(wpa_s, data);
  1353. break;
  1354. case EVENT_INTERFACE_STATUS:
  1355. wpa_supplicant_event_interface_status(wpa_s, data);
  1356. break;
  1357. case EVENT_PMKID_CANDIDATE:
  1358. wpa_supplicant_event_pmkid_candidate(wpa_s, data);
  1359. break;
  1360. #ifdef CONFIG_PEERKEY
  1361. case EVENT_STKSTART:
  1362. wpa_supplicant_event_stkstart(wpa_s, data);
  1363. break;
  1364. #endif /* CONFIG_PEERKEY */
  1365. #ifdef CONFIG_IEEE80211R
  1366. case EVENT_FT_RESPONSE:
  1367. wpa_supplicant_event_ft_response(wpa_s, data);
  1368. break;
  1369. #endif /* CONFIG_IEEE80211R */
  1370. #ifdef CONFIG_IBSS_RSN
  1371. case EVENT_IBSS_RSN_START:
  1372. wpa_supplicant_event_ibss_rsn_start(wpa_s, data);
  1373. break;
  1374. #endif /* CONFIG_IBSS_RSN */
  1375. case EVENT_ASSOC_REJECT:
  1376. sme_event_assoc_reject(wpa_s, data);
  1377. break;
  1378. case EVENT_AUTH_TIMED_OUT:
  1379. sme_event_auth_timed_out(wpa_s, data);
  1380. break;
  1381. case EVENT_ASSOC_TIMED_OUT:
  1382. sme_event_assoc_timed_out(wpa_s, data);
  1383. break;
  1384. #ifdef CONFIG_AP
  1385. case EVENT_TX_STATUS:
  1386. if (wpa_s->ap_iface == NULL)
  1387. break;
  1388. switch (data->tx_status.type) {
  1389. case WLAN_FC_TYPE_MGMT:
  1390. ap_mgmt_tx_cb(wpa_s, data->tx_status.data,
  1391. data->tx_status.data_len,
  1392. data->tx_status.stype,
  1393. data->tx_status.ack);
  1394. break;
  1395. case WLAN_FC_TYPE_DATA:
  1396. ap_tx_status(wpa_s, data->tx_status.dst,
  1397. data->tx_status.data,
  1398. data->tx_status.data_len,
  1399. data->tx_status.ack);
  1400. break;
  1401. }
  1402. break;
  1403. case EVENT_RX_FROM_UNKNOWN:
  1404. if (wpa_s->ap_iface == NULL)
  1405. break;
  1406. ap_rx_from_unknown_sta(wpa_s, data->rx_from_unknown.frame,
  1407. data->rx_from_unknown.len);
  1408. break;
  1409. case EVENT_RX_MGMT:
  1410. if (wpa_s->ap_iface == NULL)
  1411. break;
  1412. ap_mgmt_rx(wpa_s, &data->rx_mgmt);
  1413. break;
  1414. #endif /* CONFIG_AP */
  1415. case EVENT_RX_ACTION:
  1416. wpa_printf(MSG_DEBUG, "Received Action frame: SA=" MACSTR
  1417. " Category=%u DataLen=%d freq=%d MHz",
  1418. MAC2STR(data->rx_action.sa),
  1419. data->rx_action.category, (int) data->rx_action.len,
  1420. data->rx_action.freq);
  1421. #ifdef CONFIG_IEEE80211R
  1422. if (data->rx_action.category == WLAN_ACTION_FT) {
  1423. ft_rx_action(wpa_s, data->rx_action.data,
  1424. data->rx_action.len);
  1425. break;
  1426. }
  1427. #endif /* CONFIG_IEEE80211R */
  1428. break;
  1429. #ifdef CONFIG_CLIENT_MLME
  1430. case EVENT_MLME_RX: {
  1431. struct ieee80211_rx_status rx_status;
  1432. os_memset(&rx_status, 0, sizeof(rx_status));
  1433. rx_status.freq = data->mlme_rx.freq;
  1434. rx_status.channel = data->mlme_rx.channel;
  1435. rx_status.ssi = data->mlme_rx.ssi;
  1436. ieee80211_sta_rx(wpa_s, data->mlme_rx.buf, data->mlme_rx.len,
  1437. &rx_status);
  1438. break;
  1439. }
  1440. #endif /* CONFIG_CLIENT_MLME */
  1441. case EVENT_EAPOL_RX:
  1442. wpa_supplicant_rx_eapol(wpa_s, data->eapol_rx.src,
  1443. data->eapol_rx.data,
  1444. data->eapol_rx.data_len);
  1445. break;
  1446. case EVENT_SIGNAL_CHANGE:
  1447. bgscan_notify_signal_change(
  1448. wpa_s, data->signal_change.above_threshold,
  1449. data->signal_change.current_signal);
  1450. break;
  1451. case EVENT_INTERFACE_ENABLED:
  1452. wpa_printf(MSG_DEBUG, "Interface was enabled");
  1453. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
  1454. wpa_supplicant_set_state(wpa_s,
  1455. WPA_DISCONNECTED);
  1456. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1457. }
  1458. break;
  1459. case EVENT_INTERFACE_DISABLED:
  1460. wpa_printf(MSG_DEBUG, "Interface was disabled");
  1461. wpa_supplicant_mark_disassoc(wpa_s);
  1462. wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
  1463. break;
  1464. default:
  1465. wpa_printf(MSG_INFO, "Unknown event %d", event);
  1466. break;
  1467. }
  1468. }