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