snj doesn't like my accent, so use proper English month names.
[netbsd-mini2440.git] / dist / wpa / wpa_supplicant / events.c
blob00955040f5fe2f9e829cf5a0f0707617e6a9c041
1 /*
2 * WPA Supplicant - Driver event processing
3 * Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi>
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.
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
12 * See README and COPYING for more details.
15 #include "includes.h"
17 #include "common.h"
18 #include "eapol_supp/eapol_supp_sm.h"
19 #include "wpa.h"
20 #include "eloop.h"
21 #include "drivers/driver.h"
22 #include "config.h"
23 #include "l2_packet/l2_packet.h"
24 #include "wpa_supplicant_i.h"
25 #include "pcsc_funcs.h"
26 #include "preauth.h"
27 #include "pmksa_cache.h"
28 #include "wpa_ctrl.h"
29 #include "eap_peer/eap.h"
30 #include "ctrl_iface_dbus.h"
31 #include "ieee802_11_defs.h"
32 #include "blacklist.h"
33 #include "wpas_glue.h"
36 static int wpa_supplicant_select_config(struct wpa_supplicant *wpa_s)
38 struct wpa_ssid *ssid;
40 if (wpa_s->conf->ap_scan == 1 && wpa_s->current_ssid)
41 return 0;
43 wpa_printf(MSG_DEBUG, "Select network based on association "
44 "information");
45 ssid = wpa_supplicant_get_ssid(wpa_s);
46 if (ssid == NULL) {
47 wpa_printf(MSG_INFO, "No network configuration found for the "
48 "current AP");
49 return -1;
52 if (ssid->disabled) {
53 wpa_printf(MSG_DEBUG, "Selected network is disabled");
54 return -1;
57 wpa_printf(MSG_DEBUG, "Network configuration found for the current "
58 "AP");
59 if (ssid->key_mgmt & (WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_IEEE8021X |
60 WPA_KEY_MGMT_WPA_NONE |
61 WPA_KEY_MGMT_FT_PSK | WPA_KEY_MGMT_FT_IEEE8021X))
63 u8 wpa_ie[80];
64 size_t wpa_ie_len = sizeof(wpa_ie);
65 wpa_supplicant_set_suites(wpa_s, NULL, ssid,
66 wpa_ie, &wpa_ie_len);
67 } else {
68 wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
71 if (wpa_s->current_ssid && wpa_s->current_ssid != ssid)
72 eapol_sm_invalidate_cached_session(wpa_s->eapol);
73 wpa_s->current_ssid = ssid;
74 wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
75 wpa_supplicant_initiate_eapol(wpa_s);
77 return 0;
81 static void wpa_supplicant_stop_countermeasures(void *eloop_ctx,
82 void *sock_ctx)
84 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);
95 void wpa_supplicant_mark_disassoc(struct wpa_supplicant *wpa_s)
97 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
98 os_memset(wpa_s->bssid, 0, ETH_ALEN);
99 os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
100 eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
101 eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
102 if (wpa_s->key_mgmt == WPA_KEY_MGMT_PSK ||
103 wpa_s->key_mgmt == WPA_KEY_MGMT_FT_PSK)
104 eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
105 wpa_s->ap_ies_from_associnfo = 0;
109 static void wpa_find_assoc_pmkid(struct wpa_supplicant *wpa_s)
111 struct wpa_ie_data ie;
112 int pmksa_set = -1;
113 size_t i;
115 if (wpa_sm_parse_own_wpa_ie(wpa_s->wpa, &ie) < 0 ||
116 ie.pmkid == NULL)
117 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;
129 wpa_printf(MSG_DEBUG, "RSN: PMKID from assoc IE %sfound from PMKSA "
130 "cache", pmksa_set == 0 ? "" : "not ");
134 static void wpa_supplicant_event_pmkid_candidate(struct wpa_supplicant *wpa_s,
135 union wpa_event_data *data)
137 if (data == NULL) {
138 wpa_printf(MSG_DEBUG, "RSN: No data in PMKID candidate event");
139 return;
141 wpa_printf(MSG_DEBUG, "RSN: PMKID candidate event - bssid=" MACSTR
142 " index=%d preauth=%d",
143 MAC2STR(data->pmkid_candidate.bssid),
144 data->pmkid_candidate.index,
145 data->pmkid_candidate.preauth);
147 pmksa_candidate_add(wpa_s->wpa, data->pmkid_candidate.bssid,
148 data->pmkid_candidate.index,
149 data->pmkid_candidate.preauth);
153 static int wpa_supplicant_dynamic_keys(struct wpa_supplicant *wpa_s)
155 if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
156 wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE)
157 return 0;
159 #ifdef IEEE8021X_EAPOL
160 if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA &&
161 wpa_s->current_ssid &&
162 !(wpa_s->current_ssid->eapol_flags &
163 (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
164 EAPOL_FLAG_REQUIRE_KEY_BROADCAST))) {
165 /* IEEE 802.1X, but not using dynamic WEP keys (i.e., either
166 * plaintext or static WEP keys). */
167 return 0;
169 #endif /* IEEE8021X_EAPOL */
171 return 1;
176 * wpa_supplicant_scard_init - Initialize SIM/USIM access with PC/SC
177 * @wpa_s: pointer to wpa_supplicant data
178 * @ssid: Configuration data for the network
179 * Returns: 0 on success, -1 on failure
181 * This function is called when starting authentication with a network that is
182 * configured to use PC/SC for SIM/USIM access (EAP-SIM or EAP-AKA).
184 int wpa_supplicant_scard_init(struct wpa_supplicant *wpa_s,
185 struct wpa_ssid *ssid)
187 #ifdef IEEE8021X_EAPOL
188 int aka = 0, sim = 0, type;
190 if (ssid->eap.pcsc == NULL || wpa_s->scard != NULL)
191 return 0;
193 if (ssid->eap.eap_methods == NULL) {
194 sim = 1;
195 aka = 1;
196 } else {
197 struct eap_method_type *eap = ssid->eap.eap_methods;
198 while (eap->vendor != EAP_VENDOR_IETF ||
199 eap->method != EAP_TYPE_NONE) {
200 if (eap->vendor == EAP_VENDOR_IETF) {
201 if (eap->method == EAP_TYPE_SIM)
202 sim = 1;
203 else if (eap->method == EAP_TYPE_AKA)
204 aka = 1;
206 eap++;
210 if (eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_SIM) == NULL)
211 sim = 0;
212 if (eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_AKA) == NULL)
213 aka = 0;
215 if (!sim && !aka) {
216 wpa_printf(MSG_DEBUG, "Selected network is configured to use "
217 "SIM, but neither EAP-SIM nor EAP-AKA are enabled");
218 return 0;
221 wpa_printf(MSG_DEBUG, "Selected network is configured to use SIM "
222 "(sim=%d aka=%d) - initialize PCSC", sim, aka);
223 if (sim && aka)
224 type = SCARD_TRY_BOTH;
225 else if (aka)
226 type = SCARD_USIM_ONLY;
227 else
228 type = SCARD_GSM_SIM_ONLY;
230 wpa_s->scard = scard_init(type);
231 if (wpa_s->scard == NULL) {
232 wpa_printf(MSG_WARNING, "Failed to initialize SIM "
233 "(pcsc-lite)");
234 return -1;
236 wpa_sm_set_scard_ctx(wpa_s->wpa, wpa_s->scard);
237 eapol_sm_register_scard_ctx(wpa_s->eapol, wpa_s->scard);
238 #endif /* IEEE8021X_EAPOL */
240 return 0;
244 #ifndef CONFIG_NO_SCAN_PROCESSING
245 static int wpa_supplicant_match_privacy(struct wpa_scan_res *bss,
246 struct wpa_ssid *ssid)
248 int i, privacy = 0;
250 if (ssid->mixed_cell)
251 return 1;
253 for (i = 0; i < NUM_WEP_KEYS; i++) {
254 if (ssid->wep_key_len[i]) {
255 privacy = 1;
256 break;
259 #ifdef IEEE8021X_EAPOL
260 if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
261 ssid->eapol_flags & (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
262 EAPOL_FLAG_REQUIRE_KEY_BROADCAST))
263 privacy = 1;
264 #endif /* IEEE8021X_EAPOL */
266 if (bss->caps & IEEE80211_CAP_PRIVACY)
267 return privacy;
268 return !privacy;
272 static int wpa_supplicant_ssid_bss_match(struct wpa_ssid *ssid,
273 struct wpa_scan_res *bss)
275 struct wpa_ie_data ie;
276 int proto_match = 0;
277 const u8 *rsn_ie, *wpa_ie;
279 rsn_ie = wpa_scan_get_ie(bss, WLAN_EID_RSN);
280 while ((ssid->proto & WPA_PROTO_RSN) && rsn_ie) {
281 proto_match++;
283 if (wpa_parse_wpa_ie(rsn_ie, 2 + rsn_ie[1], &ie)) {
284 wpa_printf(MSG_DEBUG, " skip RSN IE - parse failed");
285 break;
287 if (!(ie.proto & ssid->proto)) {
288 wpa_printf(MSG_DEBUG, " skip RSN IE - proto "
289 "mismatch");
290 break;
293 if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
294 wpa_printf(MSG_DEBUG, " skip RSN IE - PTK cipher "
295 "mismatch");
296 break;
299 if (!(ie.group_cipher & ssid->group_cipher)) {
300 wpa_printf(MSG_DEBUG, " skip RSN IE - GTK cipher "
301 "mismatch");
302 break;
305 if (!(ie.key_mgmt & ssid->key_mgmt)) {
306 wpa_printf(MSG_DEBUG, " skip RSN IE - key mgmt "
307 "mismatch");
308 break;
311 #ifdef CONFIG_IEEE80211W
312 if (!(ie.capabilities & WPA_CAPABILITY_MGMT_FRAME_PROTECTION)
313 && ssid->ieee80211w == IEEE80211W_REQUIRED) {
314 wpa_printf(MSG_DEBUG, " skip RSN IE - no mgmt frame "
315 "protection");
316 break;
318 #endif /* CONFIG_IEEE80211W */
320 wpa_printf(MSG_DEBUG, " selected based on RSN IE");
321 return 1;
324 wpa_ie = wpa_scan_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
325 while ((ssid->proto & WPA_PROTO_WPA) && wpa_ie) {
326 proto_match++;
328 if (wpa_parse_wpa_ie(wpa_ie, 2 + wpa_ie[1], &ie)) {
329 wpa_printf(MSG_DEBUG, " skip WPA IE - parse failed");
330 break;
332 if (!(ie.proto & ssid->proto)) {
333 wpa_printf(MSG_DEBUG, " skip WPA IE - proto "
334 "mismatch");
335 break;
338 if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
339 wpa_printf(MSG_DEBUG, " skip WPA IE - PTK cipher "
340 "mismatch");
341 break;
344 if (!(ie.group_cipher & ssid->group_cipher)) {
345 wpa_printf(MSG_DEBUG, " skip WPA IE - GTK cipher "
346 "mismatch");
347 break;
350 if (!(ie.key_mgmt & ssid->key_mgmt)) {
351 wpa_printf(MSG_DEBUG, " skip WPA IE - key mgmt "
352 "mismatch");
353 break;
356 wpa_printf(MSG_DEBUG, " selected based on WPA IE");
357 return 1;
360 if (proto_match == 0)
361 wpa_printf(MSG_DEBUG, " skip - no WPA/RSN proto match");
363 return 0;
367 static struct wpa_scan_res *
368 wpa_supplicant_select_bss(struct wpa_supplicant *wpa_s, struct wpa_ssid *group,
369 struct wpa_ssid **selected_ssid)
371 struct wpa_ssid *ssid;
372 struct wpa_scan_res *bss, *selected = NULL;
373 size_t i;
374 struct wpa_blacklist *e;
375 const u8 *ie;
377 wpa_printf(MSG_DEBUG, "Selecting BSS from priority group %d",
378 group->priority);
380 bss = NULL;
381 ssid = NULL;
382 /* First, try to find WPA-enabled AP */
383 wpa_printf(MSG_DEBUG, "Try to find WPA-enabled AP");
384 for (i = 0; i < wpa_s->scan_res->num && !selected; i++) {
385 const u8 *ssid_;
386 u8 wpa_ie_len, rsn_ie_len, ssid_len;
387 bss = wpa_s->scan_res->res[i];
389 ie = wpa_scan_get_ie(bss, WLAN_EID_SSID);
390 ssid_ = ie ? ie + 2 : (u8 *) "";
391 ssid_len = ie ? ie[1] : 0;
393 ie = wpa_scan_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
394 wpa_ie_len = ie ? ie[1] : 0;
396 ie = wpa_scan_get_ie(bss, WLAN_EID_RSN);
397 rsn_ie_len = ie ? ie[1] : 0;
399 wpa_printf(MSG_DEBUG, "%d: " MACSTR " ssid='%s' "
400 "wpa_ie_len=%u rsn_ie_len=%u caps=0x%x",
401 (int) i, MAC2STR(bss->bssid),
402 wpa_ssid_txt(ssid_, ssid_len),
403 wpa_ie_len, rsn_ie_len, bss->caps);
404 e = wpa_blacklist_get(wpa_s, bss->bssid);
405 if (e && e->count > 1) {
406 wpa_printf(MSG_DEBUG, " skip - blacklisted");
407 continue;
410 if (wpa_ie_len == 0 && rsn_ie_len == 0) {
411 wpa_printf(MSG_DEBUG, " skip - no WPA/RSN IE");
412 continue;
415 for (ssid = group; ssid; ssid = ssid->pnext) {
416 if (ssid->disabled) {
417 wpa_printf(MSG_DEBUG, " skip - disabled");
418 continue;
420 if (ssid_len != ssid->ssid_len ||
421 os_memcmp(ssid_, ssid->ssid, ssid_len) != 0) {
422 wpa_printf(MSG_DEBUG, " skip - "
423 "SSID mismatch");
424 continue;
426 if (ssid->bssid_set &&
427 os_memcmp(bss->bssid, ssid->bssid, ETH_ALEN) != 0)
429 wpa_printf(MSG_DEBUG, " skip - "
430 "BSSID mismatch");
431 continue;
433 if (wpa_supplicant_ssid_bss_match(ssid, bss)) {
434 selected = bss;
435 *selected_ssid = ssid;
436 wpa_printf(MSG_DEBUG, " selected WPA AP "
437 MACSTR " ssid='%s'",
438 MAC2STR(bss->bssid),
439 wpa_ssid_txt(ssid_, ssid_len));
440 break;
445 if (selected)
446 return selected;
448 /* If no WPA-enabled AP found, try to find non-WPA AP, if configuration
449 * allows this. */
450 wpa_printf(MSG_DEBUG, "Try to find non-WPA AP");
451 for (i = 0; i < wpa_s->scan_res->num; i++) {
452 const u8 *ssid_;
453 u8 wpa_ie_len, rsn_ie_len, ssid_len;
454 bss = wpa_s->scan_res->res[i];
456 ie = wpa_scan_get_ie(bss, WLAN_EID_SSID);
457 ssid_ = ie ? ie + 2 : (u8 *) "";
458 ssid_len = ie ? ie[1] : 0;
460 ie = wpa_scan_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
461 wpa_ie_len = ie ? ie[1] : 0;
463 ie = wpa_scan_get_ie(bss, WLAN_EID_RSN);
464 rsn_ie_len = ie ? ie[1] : 0;
466 wpa_printf(MSG_DEBUG, "%d: " MACSTR " ssid='%s' "
467 "wpa_ie_len=%u rsn_ie_len=%u caps=0x%x",
468 (int) i, MAC2STR(bss->bssid),
469 wpa_ssid_txt(ssid_, ssid_len),
470 wpa_ie_len, rsn_ie_len, bss->caps);
471 e = wpa_blacklist_get(wpa_s, bss->bssid);
472 if (e && e->count > 1) {
473 wpa_printf(MSG_DEBUG, " skip - blacklisted");
474 continue;
476 for (ssid = group; ssid; ssid = ssid->pnext) {
477 if (ssid->disabled) {
478 wpa_printf(MSG_DEBUG, " skip - disabled");
479 continue;
481 if (ssid->ssid_len != 0 &&
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;
489 if (ssid->bssid_set &&
490 os_memcmp(bss->bssid, ssid->bssid, ETH_ALEN) != 0)
492 wpa_printf(MSG_DEBUG, " skip - "
493 "BSSID mismatch");
494 continue;
497 if (!(ssid->key_mgmt & WPA_KEY_MGMT_NONE) &&
498 !(ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA))
500 wpa_printf(MSG_DEBUG, " skip - "
501 "non-WPA network not allowed");
502 continue;
505 if ((ssid->key_mgmt &
506 (WPA_KEY_MGMT_IEEE8021X | WPA_KEY_MGMT_PSK)) &&
507 (wpa_ie_len != 0 || rsn_ie_len != 0)) {
508 wpa_printf(MSG_DEBUG, " skip - "
509 "WPA network");
510 continue;
513 if (!wpa_supplicant_match_privacy(bss, ssid)) {
514 wpa_printf(MSG_DEBUG, " skip - "
515 "privacy mismatch");
516 continue;
519 if (bss->caps & IEEE80211_CAP_IBSS) {
520 wpa_printf(MSG_DEBUG, " skip - "
521 "IBSS (adhoc) network");
522 continue;
525 selected = bss;
526 *selected_ssid = ssid;
527 wpa_printf(MSG_DEBUG, " selected non-WPA AP "
528 MACSTR " ssid='%s'",
529 MAC2STR(bss->bssid),
530 wpa_ssid_txt(ssid_, ssid_len));
531 break;
535 return selected;
539 static void wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s)
541 int prio, timeout;
542 struct wpa_scan_res *selected = NULL;
543 struct wpa_ssid *ssid = NULL;
545 if (wpa_supplicant_get_scan_results(wpa_s) < 0) {
546 if (wpa_s->conf->ap_scan == 2)
547 return;
548 wpa_printf(MSG_DEBUG, "Failed to get scan results - try "
549 "scanning again");
550 timeout = 1;
551 goto req_scan;
554 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS);
556 wpa_supplicant_dbus_notify_scan_results(wpa_s);
558 if (wpa_s->conf->ap_scan == 2 || wpa_s->disconnected)
559 return;
561 while (selected == NULL) {
562 for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
563 selected = wpa_supplicant_select_bss(
564 wpa_s, wpa_s->conf->pssid[prio], &ssid);
565 if (selected)
566 break;
569 if (selected == NULL && wpa_s->blacklist) {
570 wpa_printf(MSG_DEBUG, "No APs found - clear blacklist "
571 "and try again");
572 wpa_blacklist_clear(wpa_s);
573 } else if (selected == NULL) {
574 break;
578 if (selected) {
579 /* Do not trigger new association unless the BSSID has changed
580 * or if reassociation is requested. If we are in process of
581 * associating with the selected BSSID, do not trigger new
582 * attempt. */
583 if (wpa_s->reassociate ||
584 (os_memcmp(selected->bssid, wpa_s->bssid, ETH_ALEN) != 0 &&
585 (wpa_s->wpa_state != WPA_ASSOCIATING ||
586 os_memcmp(selected->bssid, wpa_s->pending_bssid,
587 ETH_ALEN) != 0))) {
588 if (wpa_supplicant_scard_init(wpa_s, ssid)) {
589 wpa_supplicant_req_scan(wpa_s, 10, 0);
590 return;
592 wpa_supplicant_associate(wpa_s, selected, ssid);
593 } else {
594 wpa_printf(MSG_DEBUG, "Already associated with the "
595 "selected AP (%d)", wpa_s->wpa_state);
597 rsn_preauth_scan_results(wpa_s->wpa, wpa_s->scan_res);
598 } else {
599 wpa_printf(MSG_DEBUG, "No suitable AP found.");
600 timeout = 5;
601 goto req_scan;
604 return;
606 req_scan:
607 if (wpa_s->scan_res_tried == 1 && wpa_s->conf->ap_scan == 1) {
609 * Quick recovery if the initial scan results were not
610 * complete when fetched before the first scan request.
612 wpa_s->scan_res_tried++;
613 timeout = 0;
615 wpa_supplicant_req_scan(wpa_s, timeout, 0);
617 #endif /* CONFIG_NO_SCAN_PROCESSING */
620 static void wpa_supplicant_event_associnfo(struct wpa_supplicant *wpa_s,
621 union wpa_event_data *data)
623 int l, len, found = 0, wpa_found, rsn_found;
624 u8 *p;
626 wpa_printf(MSG_DEBUG, "Association info event");
627 if (data->assoc_info.req_ies)
628 wpa_hexdump(MSG_DEBUG, "req_ies", data->assoc_info.req_ies,
629 data->assoc_info.req_ies_len);
630 if (data->assoc_info.resp_ies)
631 wpa_hexdump(MSG_DEBUG, "resp_ies", data->assoc_info.resp_ies,
632 data->assoc_info.resp_ies_len);
633 if (data->assoc_info.beacon_ies)
634 wpa_hexdump(MSG_DEBUG, "beacon_ies",
635 data->assoc_info.beacon_ies,
636 data->assoc_info.beacon_ies_len);
638 p = data->assoc_info.req_ies;
639 l = data->assoc_info.req_ies_len;
641 /* Go through the IEs and make a copy of the WPA/RSN IE, if present. */
642 while (p && l >= 2) {
643 len = p[1] + 2;
644 if (len > l) {
645 wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
646 p, l);
647 break;
649 if ((p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
650 (os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0)) ||
651 (p[0] == WLAN_EID_RSN && p[1] >= 2)) {
652 if (wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, p, len))
653 break;
654 found = 1;
655 wpa_find_assoc_pmkid(wpa_s);
656 break;
658 l -= len;
659 p += len;
661 if (!found && data->assoc_info.req_ies)
662 wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
664 /* WPA/RSN IE from Beacon/ProbeResp */
665 p = data->assoc_info.beacon_ies;
666 l = data->assoc_info.beacon_ies_len;
668 /* Go through the IEs and make a copy of the WPA/RSN IEs, if present.
670 wpa_found = rsn_found = 0;
671 while (p && l >= 2) {
672 len = p[1] + 2;
673 if (len > l) {
674 wpa_hexdump(MSG_DEBUG, "Truncated IE in beacon_ies",
675 p, l);
676 break;
678 if (!wpa_found &&
679 p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
680 os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0) {
681 wpa_found = 1;
682 wpa_sm_set_ap_wpa_ie(wpa_s->wpa, p, len);
685 if (!rsn_found &&
686 p[0] == WLAN_EID_RSN && p[1] >= 2) {
687 rsn_found = 1;
688 wpa_sm_set_ap_rsn_ie(wpa_s->wpa, p, len);
691 l -= len;
692 p += len;
695 if (!wpa_found && data->assoc_info.beacon_ies)
696 wpa_sm_set_ap_wpa_ie(wpa_s->wpa, NULL, 0);
697 if (!rsn_found && data->assoc_info.beacon_ies)
698 wpa_sm_set_ap_rsn_ie(wpa_s->wpa, NULL, 0);
699 if (wpa_found || rsn_found)
700 wpa_s->ap_ies_from_associnfo = 1;
704 static void wpa_supplicant_event_assoc(struct wpa_supplicant *wpa_s,
705 union wpa_event_data *data)
707 u8 bssid[ETH_ALEN];
708 int ft_completed = wpa_ft_is_completed(wpa_s->wpa);
710 if (data)
711 wpa_supplicant_event_associnfo(wpa_s, data);
713 wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATED);
714 if (wpa_s->use_client_mlme)
715 os_memcpy(bssid, wpa_s->bssid, ETH_ALEN);
716 if (wpa_s->use_client_mlme ||
717 (wpa_drv_get_bssid(wpa_s, bssid) >= 0 &&
718 os_memcmp(bssid, wpa_s->bssid, ETH_ALEN) != 0)) {
719 wpa_msg(wpa_s, MSG_DEBUG, "Associated to a new BSS: BSSID="
720 MACSTR, MAC2STR(bssid));
721 os_memcpy(wpa_s->bssid, bssid, ETH_ALEN);
722 os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
723 if (wpa_supplicant_dynamic_keys(wpa_s) && !ft_completed) {
724 wpa_clear_keys(wpa_s, bssid);
726 if (wpa_supplicant_select_config(wpa_s) < 0) {
727 wpa_supplicant_disassociate(
728 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
729 return;
733 wpa_msg(wpa_s, MSG_INFO, "Associated with " MACSTR, MAC2STR(bssid));
734 if (wpa_s->current_ssid) {
735 /* When using scanning (ap_scan=1), SIM PC/SC interface can be
736 * initialized before association, but for other modes,
737 * initialize PC/SC here, if the current configuration needs
738 * smartcard or SIM/USIM. */
739 wpa_supplicant_scard_init(wpa_s, wpa_s->current_ssid);
741 wpa_sm_notify_assoc(wpa_s->wpa, bssid);
742 l2_packet_notify_auth_start(wpa_s->l2);
745 * Set portEnabled first to FALSE in order to get EAP state machine out
746 * of the SUCCESS state and eapSuccess cleared. Without this, EAPOL PAE
747 * state machine may transit to AUTHENTICATING state based on obsolete
748 * eapSuccess and then trigger BE_AUTH to SUCCESS and PAE to
749 * AUTHENTICATED without ever giving chance to EAP state machine to
750 * reset the state.
752 if (!ft_completed) {
753 eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
754 eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
756 if (wpa_s->key_mgmt == WPA_KEY_MGMT_PSK ||
757 wpa_s->key_mgmt == WPA_KEY_MGMT_FT_PSK || ft_completed)
758 eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
759 /* 802.1X::portControl = Auto */
760 eapol_sm_notify_portEnabled(wpa_s->eapol, TRUE);
761 wpa_s->eapol_received = 0;
762 if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
763 wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
764 wpa_supplicant_cancel_auth_timeout(wpa_s);
765 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
766 } else if (!ft_completed) {
767 /* Timeout for receiving the first EAPOL packet */
768 wpa_supplicant_req_auth_timeout(wpa_s, 10, 0);
770 wpa_supplicant_cancel_scan(wpa_s);
772 if (wpa_s->driver_4way_handshake &&
773 (wpa_s->key_mgmt == WPA_KEY_MGMT_PSK ||
774 wpa_s->key_mgmt == WPA_KEY_MGMT_FT_PSK)) {
776 * We are done; the driver will take care of RSN 4-way
777 * handshake.
779 wpa_supplicant_cancel_auth_timeout(wpa_s);
780 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
781 eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
782 eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
787 static void wpa_supplicant_event_disassoc(struct wpa_supplicant *wpa_s)
789 const u8 *bssid;
791 if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
793 * At least Host AP driver and a Prism3 card seemed to be
794 * generating streams of disconnected events when configuring
795 * IBSS for WPA-None. Ignore them for now.
797 wpa_printf(MSG_DEBUG, "Disconnect event - ignore in "
798 "IBSS/WPA-None mode");
799 return;
802 if (wpa_s->wpa_state == WPA_4WAY_HANDSHAKE &&
803 (wpa_s->key_mgmt == WPA_KEY_MGMT_PSK ||
804 wpa_s->key_mgmt == WPA_KEY_MGMT_FT_PSK)) {
805 wpa_msg(wpa_s, MSG_INFO, "WPA: 4-Way Handshake failed - "
806 "pre-shared key may be incorrect");
808 if (wpa_s->wpa_state >= WPA_ASSOCIATED)
809 wpa_supplicant_req_scan(wpa_s, 0, 100000);
810 bssid = wpa_s->bssid;
811 if (is_zero_ether_addr(bssid))
812 bssid = wpa_s->pending_bssid;
813 wpa_blacklist_add(wpa_s, bssid);
814 wpa_sm_notify_disassoc(wpa_s->wpa);
815 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "- Disconnect event - "
816 "remove keys");
817 if (wpa_supplicant_dynamic_keys(wpa_s)) {
818 wpa_s->keys_cleared = 0;
819 wpa_clear_keys(wpa_s, wpa_s->bssid);
821 wpa_supplicant_mark_disassoc(wpa_s);
825 static void
826 wpa_supplicant_event_michael_mic_failure(struct wpa_supplicant *wpa_s,
827 union wpa_event_data *data)
829 int pairwise;
830 struct os_time t;
832 wpa_msg(wpa_s, MSG_WARNING, "Michael MIC failure detected");
833 pairwise = (data && data->michael_mic_failure.unicast);
834 wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
835 os_get_time(&t);
836 if (wpa_s->last_michael_mic_error &&
837 t.sec - wpa_s->last_michael_mic_error <= 60) {
838 /* initialize countermeasures */
839 wpa_s->countermeasures = 1;
840 wpa_msg(wpa_s, MSG_WARNING, "TKIP countermeasures started");
843 * Need to wait for completion of request frame. We do not get
844 * any callback for the message completion, so just wait a
845 * short while and hope for the best. */
846 os_sleep(0, 10000);
848 wpa_drv_set_countermeasures(wpa_s, 1);
849 wpa_supplicant_deauthenticate(wpa_s,
850 WLAN_REASON_MICHAEL_MIC_FAILURE);
851 eloop_cancel_timeout(wpa_supplicant_stop_countermeasures,
852 wpa_s, NULL);
853 eloop_register_timeout(60, 0,
854 wpa_supplicant_stop_countermeasures,
855 wpa_s, NULL);
856 /* TODO: mark the AP rejected for 60 second. STA is
857 * allowed to associate with another AP.. */
859 wpa_s->last_michael_mic_error = t.sec;
863 static void
864 wpa_supplicant_event_interface_status(struct wpa_supplicant *wpa_s,
865 union wpa_event_data *data)
867 if (os_strcmp(wpa_s->ifname, data->interface_status.ifname) != 0)
868 return;
870 switch (data->interface_status.ievent) {
871 case EVENT_INTERFACE_ADDED:
872 if (!wpa_s->interface_removed)
873 break;
874 wpa_s->interface_removed = 0;
875 wpa_printf(MSG_DEBUG, "Configured interface was added.");
876 if (wpa_supplicant_driver_init(wpa_s) < 0) {
877 wpa_printf(MSG_INFO, "Failed to initialize the driver "
878 "after interface was added.");
880 break;
881 case EVENT_INTERFACE_REMOVED:
882 wpa_printf(MSG_DEBUG, "Configured interface was removed.");
883 wpa_s->interface_removed = 1;
884 wpa_supplicant_mark_disassoc(wpa_s);
885 l2_packet_deinit(wpa_s->l2);
886 wpa_s->l2 = NULL;
887 break;
892 #ifdef CONFIG_PEERKEY
893 static void
894 wpa_supplicant_event_stkstart(struct wpa_supplicant *wpa_s,
895 union wpa_event_data *data)
897 if (data == NULL)
898 return;
899 wpa_sm_stkstart(wpa_s->wpa, data->stkstart.peer);
901 #endif /* CONFIG_PEERKEY */
904 #ifdef CONFIG_IEEE80211R
905 static void
906 wpa_supplicant_event_ft_response(struct wpa_supplicant *wpa_s,
907 union wpa_event_data *data)
909 if (data == NULL)
910 return;
912 if (wpa_ft_process_response(wpa_s->wpa, data->ft_ies.ies,
913 data->ft_ies.ies_len,
914 data->ft_ies.ft_action,
915 data->ft_ies.target_ap) < 0) {
916 /* TODO: prevent MLME/driver from trying to associate? */
919 #endif /* CONFIG_IEEE80211R */
922 void wpa_supplicant_event(void *ctx, wpa_event_type event,
923 union wpa_event_data *data)
925 struct wpa_supplicant *wpa_s = ctx;
927 switch (event) {
928 case EVENT_ASSOC:
929 wpa_supplicant_event_assoc(wpa_s, data);
930 break;
931 case EVENT_DISASSOC:
932 wpa_supplicant_event_disassoc(wpa_s);
933 break;
934 case EVENT_MICHAEL_MIC_FAILURE:
935 wpa_supplicant_event_michael_mic_failure(wpa_s, data);
936 break;
937 #ifndef CONFIG_NO_SCAN_PROCESSING
938 case EVENT_SCAN_RESULTS:
939 wpa_supplicant_event_scan_results(wpa_s);
940 break;
941 #endif /* CONFIG_NO_SCAN_PROCESSING */
942 case EVENT_ASSOCINFO:
943 wpa_supplicant_event_associnfo(wpa_s, data);
944 break;
945 case EVENT_INTERFACE_STATUS:
946 wpa_supplicant_event_interface_status(wpa_s, data);
947 break;
948 case EVENT_PMKID_CANDIDATE:
949 wpa_supplicant_event_pmkid_candidate(wpa_s, data);
950 break;
951 #ifdef CONFIG_PEERKEY
952 case EVENT_STKSTART:
953 wpa_supplicant_event_stkstart(wpa_s, data);
954 break;
955 #endif /* CONFIG_PEERKEY */
956 #ifdef CONFIG_IEEE80211R
957 case EVENT_FT_RESPONSE:
958 wpa_supplicant_event_ft_response(wpa_s, data);
959 break;
960 #endif /* CONFIG_IEEE80211R */
961 default:
962 wpa_printf(MSG_INFO, "Unknown event %d", event);
963 break;