events.c 46 KB

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