events.c 47 KB

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