events.c 38 KB

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