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