Add 'SCAN TYPE=ONLY' functionality
[mech_eap.git] / wpa_supplicant / events.c
1 /*
2  * WPA Supplicant - Driver event processing
3  * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #include "includes.h"
10
11 #include "common.h"
12 #include "eapol_supp/eapol_supp_sm.h"
13 #include "rsn_supp/wpa.h"
14 #include "eloop.h"
15 #include "config.h"
16 #include "l2_packet/l2_packet.h"
17 #include "wpa_supplicant_i.h"
18 #include "driver_i.h"
19 #include "pcsc_funcs.h"
20 #include "rsn_supp/preauth.h"
21 #include "rsn_supp/pmksa_cache.h"
22 #include "common/wpa_ctrl.h"
23 #include "eap_peer/eap.h"
24 #include "ap/hostapd.h"
25 #include "p2p/p2p.h"
26 #include "wnm_sta.h"
27 #include "notify.h"
28 #include "common/ieee802_11_defs.h"
29 #include "common/ieee802_11_common.h"
30 #include "crypto/random.h"
31 #include "blacklist.h"
32 #include "wpas_glue.h"
33 #include "wps_supplicant.h"
34 #include "ibss_rsn.h"
35 #include "sme.h"
36 #include "gas_query.h"
37 #include "p2p_supplicant.h"
38 #include "bgscan.h"
39 #include "autoscan.h"
40 #include "ap.h"
41 #include "bss.h"
42 #include "scan.h"
43 #include "offchannel.h"
44 #include "interworking.h"
45
46
47 static int wpas_select_network_from_last_scan(struct wpa_supplicant *wpa_s);
48
49
50 static int wpas_temp_disabled(struct wpa_supplicant *wpa_s,
51                               struct wpa_ssid *ssid)
52 {
53         struct os_time now;
54
55         if (ssid == NULL || ssid->disabled_until.sec == 0)
56                 return 0;
57
58         os_get_time(&now);
59         if (ssid->disabled_until.sec > now.sec)
60                 return ssid->disabled_until.sec - now.sec;
61
62         wpas_clear_temp_disabled(wpa_s, ssid, 0);
63
64         return 0;
65 }
66
67
68 static int wpa_supplicant_select_config(struct wpa_supplicant *wpa_s)
69 {
70         struct wpa_ssid *ssid, *old_ssid;
71         int res;
72
73         if (wpa_s->conf->ap_scan == 1 && wpa_s->current_ssid)
74                 return 0;
75
76         wpa_dbg(wpa_s, MSG_DEBUG, "Select network based on association "
77                 "information");
78         ssid = wpa_supplicant_get_ssid(wpa_s);
79         if (ssid == NULL) {
80                 wpa_msg(wpa_s, MSG_INFO,
81                         "No network configuration found for the current AP");
82                 return -1;
83         }
84
85         if (wpas_network_disabled(wpa_s, ssid)) {
86                 wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is disabled");
87                 return -1;
88         }
89
90         if (disallowed_bssid(wpa_s, wpa_s->bssid) ||
91             disallowed_ssid(wpa_s, ssid->ssid, ssid->ssid_len)) {
92                 wpa_dbg(wpa_s, MSG_DEBUG, "Selected BSS is disallowed");
93                 return -1;
94         }
95
96         res = wpas_temp_disabled(wpa_s, ssid);
97         if (res > 0) {
98                 wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is temporarily "
99                         "disabled for %d second(s)", res);
100                 return -1;
101         }
102
103         wpa_dbg(wpa_s, MSG_DEBUG, "Network configuration found for the "
104                 "current AP");
105         if (wpa_key_mgmt_wpa_any(ssid->key_mgmt)) {
106                 u8 wpa_ie[80];
107                 size_t wpa_ie_len = sizeof(wpa_ie);
108                 if (wpa_supplicant_set_suites(wpa_s, NULL, ssid,
109                                               wpa_ie, &wpa_ie_len) < 0)
110                         wpa_dbg(wpa_s, MSG_DEBUG, "Could not set WPA suites");
111         } else {
112                 wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
113         }
114
115         if (wpa_s->current_ssid && wpa_s->current_ssid != ssid)
116                 eapol_sm_invalidate_cached_session(wpa_s->eapol);
117         old_ssid = wpa_s->current_ssid;
118         wpa_s->current_ssid = ssid;
119         wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
120         wpa_supplicant_initiate_eapol(wpa_s);
121         if (old_ssid != wpa_s->current_ssid)
122                 wpas_notify_network_changed(wpa_s);
123
124         return 0;
125 }
126
127
128 void wpa_supplicant_stop_countermeasures(void *eloop_ctx, void *sock_ctx)
129 {
130         struct wpa_supplicant *wpa_s = eloop_ctx;
131
132         if (wpa_s->countermeasures) {
133                 wpa_s->countermeasures = 0;
134                 wpa_drv_set_countermeasures(wpa_s, 0);
135                 wpa_msg(wpa_s, MSG_INFO, "WPA: TKIP countermeasures stopped");
136                 wpa_supplicant_req_scan(wpa_s, 0, 0);
137         }
138 }
139
140
141 void wpa_supplicant_mark_disassoc(struct wpa_supplicant *wpa_s)
142 {
143         int bssid_changed;
144
145         wnm_bss_keep_alive_deinit(wpa_s);
146
147 #ifdef CONFIG_IBSS_RSN
148         ibss_rsn_deinit(wpa_s->ibss_rsn);
149         wpa_s->ibss_rsn = NULL;
150 #endif /* CONFIG_IBSS_RSN */
151
152 #ifdef CONFIG_AP
153         wpa_supplicant_ap_deinit(wpa_s);
154 #endif /* CONFIG_AP */
155
156         if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
157                 return;
158
159         wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
160         bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
161         os_memset(wpa_s->bssid, 0, ETH_ALEN);
162         os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
163 #ifdef CONFIG_SME
164         wpa_s->sme.prev_bssid_set = 0;
165 #endif /* CONFIG_SME */
166 #ifdef CONFIG_P2P
167         os_memset(wpa_s->go_dev_addr, 0, ETH_ALEN);
168 #endif /* CONFIG_P2P */
169         wpa_s->current_bss = NULL;
170         wpa_s->assoc_freq = 0;
171 #ifdef CONFIG_IEEE80211R
172 #ifdef CONFIG_SME
173         if (wpa_s->sme.ft_ies)
174                 sme_update_ft_ies(wpa_s, NULL, NULL, 0);
175 #endif /* CONFIG_SME */
176 #endif /* CONFIG_IEEE80211R */
177
178         if (bssid_changed)
179                 wpas_notify_bssid_changed(wpa_s);
180
181         eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
182         eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
183         if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt))
184                 eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
185         wpa_s->ap_ies_from_associnfo = 0;
186         wpa_s->current_ssid = NULL;
187         wpa_s->key_mgmt = 0;
188 }
189
190
191 static void wpa_find_assoc_pmkid(struct wpa_supplicant *wpa_s)
192 {
193         struct wpa_ie_data ie;
194         int pmksa_set = -1;
195         size_t i;
196
197         if (wpa_sm_parse_own_wpa_ie(wpa_s->wpa, &ie) < 0 ||
198             ie.pmkid == NULL)
199                 return;
200
201         for (i = 0; i < ie.num_pmkid; i++) {
202                 pmksa_set = pmksa_cache_set_current(wpa_s->wpa,
203                                                     ie.pmkid + i * PMKID_LEN,
204                                                     NULL, NULL, 0);
205                 if (pmksa_set == 0) {
206                         eapol_sm_notify_pmkid_attempt(wpa_s->eapol, 1);
207                         break;
208                 }
209         }
210
211         wpa_dbg(wpa_s, MSG_DEBUG, "RSN: PMKID from assoc IE %sfound from "
212                 "PMKSA cache", pmksa_set == 0 ? "" : "not ");
213 }
214
215
216 static void wpa_supplicant_event_pmkid_candidate(struct wpa_supplicant *wpa_s,
217                                                  union wpa_event_data *data)
218 {
219         if (data == NULL) {
220                 wpa_dbg(wpa_s, MSG_DEBUG, "RSN: No data in PMKID candidate "
221                         "event");
222                 return;
223         }
224         wpa_dbg(wpa_s, MSG_DEBUG, "RSN: PMKID candidate event - bssid=" MACSTR
225                 " index=%d preauth=%d",
226                 MAC2STR(data->pmkid_candidate.bssid),
227                 data->pmkid_candidate.index,
228                 data->pmkid_candidate.preauth);
229
230         pmksa_candidate_add(wpa_s->wpa, data->pmkid_candidate.bssid,
231                             data->pmkid_candidate.index,
232                             data->pmkid_candidate.preauth);
233 }
234
235
236 static int wpa_supplicant_dynamic_keys(struct wpa_supplicant *wpa_s)
237 {
238         if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
239             wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE)
240                 return 0;
241
242 #ifdef IEEE8021X_EAPOL
243         if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA &&
244             wpa_s->current_ssid &&
245             !(wpa_s->current_ssid->eapol_flags &
246               (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
247                EAPOL_FLAG_REQUIRE_KEY_BROADCAST))) {
248                 /* IEEE 802.1X, but not using dynamic WEP keys (i.e., either
249                  * plaintext or static WEP keys). */
250                 return 0;
251         }
252 #endif /* IEEE8021X_EAPOL */
253
254         return 1;
255 }
256
257
258 /**
259  * wpa_supplicant_scard_init - Initialize SIM/USIM access with PC/SC
260  * @wpa_s: pointer to wpa_supplicant data
261  * @ssid: Configuration data for the network
262  * Returns: 0 on success, -1 on failure
263  *
264  * This function is called when starting authentication with a network that is
265  * configured to use PC/SC for SIM/USIM access (EAP-SIM or EAP-AKA).
266  */
267 int wpa_supplicant_scard_init(struct wpa_supplicant *wpa_s,
268                               struct wpa_ssid *ssid)
269 {
270 #ifdef IEEE8021X_EAPOL
271 #ifdef PCSC_FUNCS
272         int aka = 0, sim = 0, type;
273
274         if (ssid->eap.pcsc == NULL || wpa_s->scard != NULL)
275                 return 0;
276
277         if (ssid->eap.eap_methods == NULL) {
278                 sim = 1;
279                 aka = 1;
280         } else {
281                 struct eap_method_type *eap = ssid->eap.eap_methods;
282                 while (eap->vendor != EAP_VENDOR_IETF ||
283                        eap->method != EAP_TYPE_NONE) {
284                         if (eap->vendor == EAP_VENDOR_IETF) {
285                                 if (eap->method == EAP_TYPE_SIM)
286                                         sim = 1;
287                                 else if (eap->method == EAP_TYPE_AKA ||
288                                          eap->method == EAP_TYPE_AKA_PRIME)
289                                         aka = 1;
290                         }
291                         eap++;
292                 }
293         }
294
295         if (eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_SIM) == NULL)
296                 sim = 0;
297         if (eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_AKA) == NULL &&
298             eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_AKA_PRIME) ==
299             NULL)
300                 aka = 0;
301
302         if (!sim && !aka) {
303                 wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is configured to "
304                         "use SIM, but neither EAP-SIM nor EAP-AKA are "
305                         "enabled");
306                 return 0;
307         }
308
309         wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is configured to use SIM "
310                 "(sim=%d aka=%d) - initialize PCSC", sim, aka);
311         if (sim && aka)
312                 type = SCARD_TRY_BOTH;
313         else if (aka)
314                 type = SCARD_USIM_ONLY;
315         else
316                 type = SCARD_GSM_SIM_ONLY;
317
318         wpa_s->scard = scard_init(type, NULL);
319         if (wpa_s->scard == NULL) {
320                 wpa_msg(wpa_s, MSG_WARNING, "Failed to initialize SIM "
321                         "(pcsc-lite)");
322                 return -1;
323         }
324         wpa_sm_set_scard_ctx(wpa_s->wpa, wpa_s->scard);
325         eapol_sm_register_scard_ctx(wpa_s->eapol, wpa_s->scard);
326 #endif /* PCSC_FUNCS */
327 #endif /* IEEE8021X_EAPOL */
328
329         return 0;
330 }
331
332
333 #ifndef CONFIG_NO_SCAN_PROCESSING
334 static int wpa_supplicant_match_privacy(struct wpa_bss *bss,
335                                         struct wpa_ssid *ssid)
336 {
337         int i, privacy = 0;
338
339         if (ssid->mixed_cell)
340                 return 1;
341
342 #ifdef CONFIG_WPS
343         if (ssid->key_mgmt & WPA_KEY_MGMT_WPS)
344                 return 1;
345 #endif /* CONFIG_WPS */
346
347         for (i = 0; i < NUM_WEP_KEYS; i++) {
348                 if (ssid->wep_key_len[i]) {
349                         privacy = 1;
350                         break;
351                 }
352         }
353 #ifdef IEEE8021X_EAPOL
354         if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
355             ssid->eapol_flags & (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
356                                  EAPOL_FLAG_REQUIRE_KEY_BROADCAST))
357                 privacy = 1;
358 #endif /* IEEE8021X_EAPOL */
359
360         if (wpa_key_mgmt_wpa(ssid->key_mgmt))
361                 privacy = 1;
362
363         if (bss->caps & IEEE80211_CAP_PRIVACY)
364                 return privacy;
365         return !privacy;
366 }
367
368
369 static int wpa_supplicant_ssid_bss_match(struct wpa_supplicant *wpa_s,
370                                          struct wpa_ssid *ssid,
371                                          struct wpa_bss *bss)
372 {
373         struct wpa_ie_data ie;
374         int proto_match = 0;
375         const u8 *rsn_ie, *wpa_ie;
376         int ret;
377         int wep_ok;
378
379         ret = wpas_wps_ssid_bss_match(wpa_s, ssid, bss);
380         if (ret >= 0)
381                 return ret;
382
383         /* Allow TSN if local configuration accepts WEP use without WPA/WPA2 */
384         wep_ok = !wpa_key_mgmt_wpa(ssid->key_mgmt) &&
385                 (((ssid->key_mgmt & WPA_KEY_MGMT_NONE) &&
386                   ssid->wep_key_len[ssid->wep_tx_keyidx] > 0) ||
387                  (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA));
388
389         rsn_ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
390         while ((ssid->proto & WPA_PROTO_RSN) && rsn_ie) {
391                 proto_match++;
392
393                 if (wpa_parse_wpa_ie(rsn_ie, 2 + rsn_ie[1], &ie)) {
394                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip RSN IE - parse "
395                                 "failed");
396                         break;
397                 }
398
399                 if (wep_ok &&
400                     (ie.group_cipher & (WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)))
401                 {
402                         wpa_dbg(wpa_s, MSG_DEBUG, "   selected based on TSN "
403                                 "in RSN IE");
404                         return 1;
405                 }
406
407                 if (!(ie.proto & ssid->proto)) {
408                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip RSN IE - proto "
409                                 "mismatch");
410                         break;
411                 }
412
413                 if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
414                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip RSN IE - PTK "
415                                 "cipher mismatch");
416                         break;
417                 }
418
419                 if (!(ie.group_cipher & ssid->group_cipher)) {
420                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip RSN IE - GTK "
421                                 "cipher mismatch");
422                         break;
423                 }
424
425                 if (!(ie.key_mgmt & ssid->key_mgmt)) {
426                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip RSN IE - key mgmt "
427                                 "mismatch");
428                         break;
429                 }
430
431 #ifdef CONFIG_IEEE80211W
432                 if (!(ie.capabilities & WPA_CAPABILITY_MFPC) &&
433                     (ssid->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT ?
434                      wpa_s->conf->pmf : ssid->ieee80211w) ==
435                     MGMT_FRAME_PROTECTION_REQUIRED) {
436                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip RSN IE - no mgmt "
437                                 "frame protection");
438                         break;
439                 }
440 #endif /* CONFIG_IEEE80211W */
441
442                 wpa_dbg(wpa_s, MSG_DEBUG, "   selected based on RSN IE");
443                 return 1;
444         }
445
446         wpa_ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
447         while ((ssid->proto & WPA_PROTO_WPA) && wpa_ie) {
448                 proto_match++;
449
450                 if (wpa_parse_wpa_ie(wpa_ie, 2 + wpa_ie[1], &ie)) {
451                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip WPA IE - parse "
452                                 "failed");
453                         break;
454                 }
455
456                 if (wep_ok &&
457                     (ie.group_cipher & (WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)))
458                 {
459                         wpa_dbg(wpa_s, MSG_DEBUG, "   selected based on TSN "
460                                 "in WPA IE");
461                         return 1;
462                 }
463
464                 if (!(ie.proto & ssid->proto)) {
465                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip WPA IE - proto "
466                                 "mismatch");
467                         break;
468                 }
469
470                 if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
471                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip WPA IE - PTK "
472                                 "cipher mismatch");
473                         break;
474                 }
475
476                 if (!(ie.group_cipher & ssid->group_cipher)) {
477                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip WPA IE - GTK "
478                                 "cipher mismatch");
479                         break;
480                 }
481
482                 if (!(ie.key_mgmt & ssid->key_mgmt)) {
483                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip WPA IE - key mgmt "
484                                 "mismatch");
485                         break;
486                 }
487
488                 wpa_dbg(wpa_s, MSG_DEBUG, "   selected based on WPA IE");
489                 return 1;
490         }
491
492         if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) && !wpa_ie &&
493             !rsn_ie) {
494                 wpa_dbg(wpa_s, MSG_DEBUG, "   allow for non-WPA IEEE 802.1X");
495                 return 1;
496         }
497
498         if ((ssid->proto & (WPA_PROTO_WPA | WPA_PROTO_RSN)) &&
499             wpa_key_mgmt_wpa(ssid->key_mgmt) && proto_match == 0) {
500                 wpa_dbg(wpa_s, MSG_DEBUG, "   skip - no WPA/RSN proto match");
501                 return 0;
502         }
503
504         if (!wpa_key_mgmt_wpa(ssid->key_mgmt)) {
505                 wpa_dbg(wpa_s, MSG_DEBUG, "   allow in non-WPA/WPA2");
506                 return 1;
507         }
508
509         wpa_dbg(wpa_s, MSG_DEBUG, "   reject due to mismatch with "
510                 "WPA/WPA2");
511
512         return 0;
513 }
514
515
516 static int freq_allowed(int *freqs, int freq)
517 {
518         int i;
519
520         if (freqs == NULL)
521                 return 1;
522
523         for (i = 0; freqs[i]; i++)
524                 if (freqs[i] == freq)
525                         return 1;
526         return 0;
527 }
528
529
530 static int ht_supported(const struct hostapd_hw_modes *mode)
531 {
532         if (!(mode->flags & HOSTAPD_MODE_FLAG_HT_INFO_KNOWN)) {
533                 /*
534                  * The driver did not indicate whether it supports HT. Assume
535                  * it does to avoid connection issues.
536                  */
537                 return 1;
538         }
539
540         /*
541          * IEEE Std 802.11n-2009 20.1.1:
542          * An HT non-AP STA shall support all EQM rates for one spatial stream.
543          */
544         return mode->mcs_set[0] == 0xff;
545 }
546
547
548 static int rate_match(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
549 {
550         const struct hostapd_hw_modes *mode = NULL, *modes;
551         const u8 scan_ie[2] = { WLAN_EID_SUPP_RATES, WLAN_EID_EXT_SUPP_RATES };
552         const u8 *rate_ie;
553         int i, j, k;
554
555         if (bss->freq == 0)
556                 return 1; /* Cannot do matching without knowing band */
557
558         modes = wpa_s->hw.modes;
559         if (modes == NULL) {
560                 /*
561                  * The driver does not provide any additional information
562                  * about the utilized hardware, so allow the connection attempt
563                  * to continue.
564                  */
565                 return 1;
566         }
567
568         for (i = 0; i < wpa_s->hw.num_modes; i++) {
569                 for (j = 0; j < modes[i].num_channels; j++) {
570                         int freq = modes[i].channels[j].freq;
571                         if (freq == bss->freq) {
572                                 if (mode &&
573                                     mode->mode == HOSTAPD_MODE_IEEE80211G)
574                                         break; /* do not allow 802.11b replace
575                                                 * 802.11g */
576                                 mode = &modes[i];
577                                 break;
578                         }
579                 }
580         }
581
582         if (mode == NULL)
583                 return 0;
584
585         for (i = 0; i < (int) sizeof(scan_ie); i++) {
586                 rate_ie = wpa_bss_get_ie(bss, scan_ie[i]);
587                 if (rate_ie == NULL)
588                         continue;
589
590                 for (j = 2; j < rate_ie[1] + 2; j++) {
591                         int flagged = !!(rate_ie[j] & 0x80);
592                         int r = (rate_ie[j] & 0x7f) * 5;
593
594                         /*
595                          * IEEE Std 802.11n-2009 7.3.2.2:
596                          * The new BSS Membership selector value is encoded
597                          * like a legacy basic rate, but it is not a rate and
598                          * only indicates if the BSS members are required to
599                          * support the mandatory features of Clause 20 [HT PHY]
600                          * in order to join the BSS.
601                          */
602                         if (flagged && ((rate_ie[j] & 0x7f) ==
603                                         BSS_MEMBERSHIP_SELECTOR_HT_PHY)) {
604                                 if (!ht_supported(mode)) {
605                                         wpa_dbg(wpa_s, MSG_DEBUG,
606                                                 "   hardware does not support "
607                                                 "HT PHY");
608                                         return 0;
609                                 }
610                                 continue;
611                         }
612
613                         if (!flagged)
614                                 continue;
615
616                         /* check for legacy basic rates */
617                         for (k = 0; k < mode->num_rates; k++) {
618                                 if (mode->rates[k] == r)
619                                         break;
620                         }
621                         if (k == mode->num_rates) {
622                                 /*
623                                  * IEEE Std 802.11-2007 7.3.2.2 demands that in
624                                  * order to join a BSS all required rates
625                                  * have to be supported by the hardware.
626                                  */
627                                 wpa_dbg(wpa_s, MSG_DEBUG, "   hardware does "
628                                         "not support required rate %d.%d Mbps",
629                                         r / 10, r % 10);
630                                 return 0;
631                         }
632                 }
633         }
634
635         return 1;
636 }
637
638
639 static int bss_is_dmg(struct wpa_bss *bss)
640 {
641         return bss->freq > 45000;
642 }
643
644
645 /*
646  * Test whether BSS is in an ESS.
647  * This is done differently in DMG (60 GHz) and non-DMG bands
648  */
649 static int bss_is_ess(struct wpa_bss *bss)
650 {
651         if (bss_is_dmg(bss)) {
652                 return (bss->caps & IEEE80211_CAP_DMG_MASK) ==
653                         IEEE80211_CAP_DMG_AP;
654         }
655
656         return ((bss->caps & (IEEE80211_CAP_ESS | IEEE80211_CAP_IBSS)) ==
657                 IEEE80211_CAP_ESS);
658 }
659
660
661 static struct wpa_ssid * wpa_scan_res_match(struct wpa_supplicant *wpa_s,
662                                             int i, struct wpa_bss *bss,
663                                             struct wpa_ssid *group)
664 {
665         u8 wpa_ie_len, rsn_ie_len;
666         int wpa;
667         struct wpa_blacklist *e;
668         const u8 *ie;
669         struct wpa_ssid *ssid;
670
671         ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
672         wpa_ie_len = ie ? ie[1] : 0;
673
674         ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
675         rsn_ie_len = ie ? ie[1] : 0;
676
677         wpa_dbg(wpa_s, MSG_DEBUG, "%d: " MACSTR " ssid='%s' "
678                 "wpa_ie_len=%u rsn_ie_len=%u caps=0x%x level=%d%s",
679                 i, MAC2STR(bss->bssid), wpa_ssid_txt(bss->ssid, bss->ssid_len),
680                 wpa_ie_len, rsn_ie_len, bss->caps, bss->level,
681                 wpa_bss_get_vendor_ie(bss, WPS_IE_VENDOR_TYPE) ? " wps" : "");
682
683         e = wpa_blacklist_get(wpa_s, bss->bssid);
684         if (e) {
685                 int limit = 1;
686                 if (wpa_supplicant_enabled_networks(wpa_s) == 1) {
687                         /*
688                          * When only a single network is enabled, we can
689                          * trigger blacklisting on the first failure. This
690                          * should not be done with multiple enabled networks to
691                          * avoid getting forced to move into a worse ESS on
692                          * single error if there are no other BSSes of the
693                          * current ESS.
694                          */
695                         limit = 0;
696                 }
697                 if (e->count > limit) {
698                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - blacklisted "
699                                 "(count=%d limit=%d)", e->count, limit);
700                         return NULL;
701                 }
702         }
703
704         if (bss->ssid_len == 0) {
705                 wpa_dbg(wpa_s, MSG_DEBUG, "   skip - SSID not known");
706                 return NULL;
707         }
708
709         if (disallowed_bssid(wpa_s, bss->bssid)) {
710                 wpa_dbg(wpa_s, MSG_DEBUG, "   skip - BSSID disallowed");
711                 return NULL;
712         }
713
714         if (disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len)) {
715                 wpa_dbg(wpa_s, MSG_DEBUG, "   skip - SSID disallowed");
716                 return NULL;
717         }
718
719         wpa = wpa_ie_len > 0 || rsn_ie_len > 0;
720
721         for (ssid = group; ssid; ssid = ssid->pnext) {
722                 int check_ssid = wpa ? 1 : (ssid->ssid_len != 0);
723                 int res;
724
725                 if (wpas_network_disabled(wpa_s, ssid)) {
726                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - disabled");
727                         continue;
728                 }
729
730                 res = wpas_temp_disabled(wpa_s, ssid);
731                 if (res > 0) {
732                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - disabled "
733                                 "temporarily for %d second(s)", res);
734                         continue;
735                 }
736
737 #ifdef CONFIG_WPS
738                 if ((ssid->key_mgmt & WPA_KEY_MGMT_WPS) && e && e->count > 0) {
739                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - blacklisted "
740                                 "(WPS)");
741                         continue;
742                 }
743
744                 if (wpa && ssid->ssid_len == 0 &&
745                     wpas_wps_ssid_wildcard_ok(wpa_s, ssid, bss))
746                         check_ssid = 0;
747
748                 if (!wpa && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
749                         /* Only allow wildcard SSID match if an AP
750                          * advertises active WPS operation that matches
751                          * with our mode. */
752                         check_ssid = 1;
753                         if (ssid->ssid_len == 0 &&
754                             wpas_wps_ssid_wildcard_ok(wpa_s, ssid, bss))
755                                 check_ssid = 0;
756                 }
757 #endif /* CONFIG_WPS */
758
759                 if (ssid->bssid_set && ssid->ssid_len == 0 &&
760                     os_memcmp(bss->bssid, ssid->bssid, ETH_ALEN) == 0)
761                         check_ssid = 0;
762
763                 if (check_ssid &&
764                     (bss->ssid_len != ssid->ssid_len ||
765                      os_memcmp(bss->ssid, ssid->ssid, bss->ssid_len) != 0)) {
766                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - SSID mismatch");
767                         continue;
768                 }
769
770                 if (ssid->bssid_set &&
771                     os_memcmp(bss->bssid, ssid->bssid, ETH_ALEN) != 0) {
772                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - BSSID mismatch");
773                         continue;
774                 }
775
776                 if (!wpa_supplicant_ssid_bss_match(wpa_s, ssid, bss))
777                         continue;
778
779                 if (!wpa &&
780                     !(ssid->key_mgmt & WPA_KEY_MGMT_NONE) &&
781                     !(ssid->key_mgmt & WPA_KEY_MGMT_WPS) &&
782                     !(ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)) {
783                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - non-WPA network "
784                                 "not allowed");
785                         continue;
786                 }
787
788                 if (!wpa_supplicant_match_privacy(bss, ssid)) {
789                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - privacy "
790                                 "mismatch");
791                         continue;
792                 }
793
794                 if (!bss_is_ess(bss)) {
795                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - not ESS network");
796                         continue;
797                 }
798
799                 if (!freq_allowed(ssid->freq_list, bss->freq)) {
800                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - frequency not "
801                                 "allowed");
802                         continue;
803                 }
804
805                 if (!rate_match(wpa_s, bss)) {
806                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - rate sets do "
807                                 "not match");
808                         continue;
809                 }
810
811 #ifdef CONFIG_P2P
812                 /*
813                  * TODO: skip the AP if its P2P IE has Group Formation
814                  * bit set in the P2P Group Capability Bitmap and we
815                  * are not in Group Formation with that device.
816                  */
817 #endif /* CONFIG_P2P */
818
819                 /* Matching configuration found */
820                 return ssid;
821         }
822
823         /* No matching configuration found */
824         return NULL;
825 }
826
827
828 static struct wpa_bss *
829 wpa_supplicant_select_bss(struct wpa_supplicant *wpa_s,
830                           struct wpa_ssid *group,
831                           struct wpa_ssid **selected_ssid)
832 {
833         unsigned int i;
834
835         wpa_dbg(wpa_s, MSG_DEBUG, "Selecting BSS from priority group %d",
836                 group->priority);
837
838         for (i = 0; i < wpa_s->last_scan_res_used; i++) {
839                 struct wpa_bss *bss = wpa_s->last_scan_res[i];
840                 *selected_ssid = wpa_scan_res_match(wpa_s, i, bss, group);
841                 if (!*selected_ssid)
842                         continue;
843                 wpa_dbg(wpa_s, MSG_DEBUG, "   selected BSS " MACSTR
844                         " ssid='%s'",
845                         MAC2STR(bss->bssid),
846                         wpa_ssid_txt(bss->ssid, bss->ssid_len));
847                 return bss;
848         }
849
850         return NULL;
851 }
852
853
854 static struct wpa_bss *
855 wpa_supplicant_pick_network(struct wpa_supplicant *wpa_s,
856                             struct wpa_ssid **selected_ssid)
857 {
858         struct wpa_bss *selected = NULL;
859         int prio;
860
861         if (wpa_s->last_scan_res == NULL ||
862             wpa_s->last_scan_res_used == 0)
863                 return NULL; /* no scan results from last update */
864
865         while (selected == NULL) {
866                 for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
867                         selected = wpa_supplicant_select_bss(
868                                 wpa_s, wpa_s->conf->pssid[prio],
869                                 selected_ssid);
870                         if (selected)
871                                 break;
872                 }
873
874                 if (selected == NULL && wpa_s->blacklist &&
875                     !wpa_s->countermeasures) {
876                         wpa_dbg(wpa_s, MSG_DEBUG, "No APs found - clear "
877                                 "blacklist and try again");
878                         wpa_blacklist_clear(wpa_s);
879                         wpa_s->blacklist_cleared++;
880                 } else if (selected == NULL)
881                         break;
882         }
883
884         return selected;
885 }
886
887
888 static void wpa_supplicant_req_new_scan(struct wpa_supplicant *wpa_s,
889                                         int timeout_sec, int timeout_usec)
890 {
891         if (!wpa_supplicant_enabled_networks(wpa_s)) {
892                 /*
893                  * No networks are enabled; short-circuit request so
894                  * we don't wait timeout seconds before transitioning
895                  * to INACTIVE state.
896                  */
897                 wpa_dbg(wpa_s, MSG_DEBUG, "Short-circuit new scan request "
898                         "since there are no enabled networks");
899                 wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
900 #ifdef CONFIG_P2P
901                 wpa_s->sta_scan_pending = 0;
902 #endif /* CONFIG_P2P */
903                 return;
904         }
905
906         wpa_s->scan_for_connection = 1;
907         wpa_supplicant_req_scan(wpa_s, timeout_sec, timeout_usec);
908 }
909
910
911 int wpa_supplicant_connect(struct wpa_supplicant *wpa_s,
912                            struct wpa_bss *selected,
913                            struct wpa_ssid *ssid)
914 {
915         if (wpas_wps_scan_pbc_overlap(wpa_s, selected, ssid)) {
916                 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_OVERLAP
917                         "PBC session overlap");
918 #ifdef CONFIG_P2P
919                 if (wpas_p2p_notif_pbc_overlap(wpa_s) == 1)
920                         return -1;
921 #endif /* CONFIG_P2P */
922
923 #ifdef CONFIG_WPS
924                 wpas_wps_cancel(wpa_s);
925 #endif /* CONFIG_WPS */
926                 return -1;
927         }
928
929         /*
930          * Do not trigger new association unless the BSSID has changed or if
931          * reassociation is requested. If we are in process of associating with
932          * the selected BSSID, do not trigger new attempt.
933          */
934         if (wpa_s->reassociate ||
935             (os_memcmp(selected->bssid, wpa_s->bssid, ETH_ALEN) != 0 &&
936              ((wpa_s->wpa_state != WPA_ASSOCIATING &&
937                wpa_s->wpa_state != WPA_AUTHENTICATING) ||
938               os_memcmp(selected->bssid, wpa_s->pending_bssid, ETH_ALEN) !=
939               0))) {
940                 if (wpa_supplicant_scard_init(wpa_s, ssid)) {
941                         wpa_supplicant_req_new_scan(wpa_s, 10, 0);
942                         return 0;
943                 }
944                 wpa_msg(wpa_s, MSG_DEBUG, "Request association: "
945                         "reassociate: %d  selected: "MACSTR "  bssid: " MACSTR
946                         "  pending: " MACSTR "  wpa_state: %s",
947                         wpa_s->reassociate, MAC2STR(selected->bssid),
948                         MAC2STR(wpa_s->bssid), MAC2STR(wpa_s->pending_bssid),
949                         wpa_supplicant_state_txt(wpa_s->wpa_state));
950                 wpa_supplicant_associate(wpa_s, selected, ssid);
951         } else {
952                 wpa_dbg(wpa_s, MSG_DEBUG, "Already associated with the "
953                         "selected AP");
954         }
955
956         return 0;
957 }
958
959
960 static struct wpa_ssid *
961 wpa_supplicant_pick_new_network(struct wpa_supplicant *wpa_s)
962 {
963         int prio;
964         struct wpa_ssid *ssid;
965
966         for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
967                 for (ssid = wpa_s->conf->pssid[prio]; ssid; ssid = ssid->pnext)
968                 {
969                         if (wpas_network_disabled(wpa_s, ssid))
970                                 continue;
971                         if (ssid->mode == IEEE80211_MODE_IBSS ||
972                             ssid->mode == IEEE80211_MODE_AP)
973                                 return ssid;
974                 }
975         }
976         return NULL;
977 }
978
979
980 /* TODO: move the rsn_preauth_scan_result*() to be called from notify.c based
981  * on BSS added and BSS changed events */
982 static void wpa_supplicant_rsn_preauth_scan_results(
983         struct wpa_supplicant *wpa_s)
984 {
985         struct wpa_bss *bss;
986
987         if (rsn_preauth_scan_results(wpa_s->wpa) < 0)
988                 return;
989
990         dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
991                 const u8 *ssid, *rsn;
992
993                 ssid = wpa_bss_get_ie(bss, WLAN_EID_SSID);
994                 if (ssid == NULL)
995                         continue;
996
997                 rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
998                 if (rsn == NULL)
999                         continue;
1000
1001                 rsn_preauth_scan_result(wpa_s->wpa, bss->bssid, ssid, rsn);
1002         }
1003
1004 }
1005
1006
1007 static int wpa_supplicant_need_to_roam(struct wpa_supplicant *wpa_s,
1008                                        struct wpa_bss *selected,
1009                                        struct wpa_ssid *ssid)
1010 {
1011         struct wpa_bss *current_bss = NULL;
1012         int min_diff;
1013
1014         if (wpa_s->reassociate)
1015                 return 1; /* explicit request to reassociate */
1016         if (wpa_s->wpa_state < WPA_ASSOCIATED)
1017                 return 1; /* we are not associated; continue */
1018         if (wpa_s->current_ssid == NULL)
1019                 return 1; /* unknown current SSID */
1020         if (wpa_s->current_ssid != ssid)
1021                 return 1; /* different network block */
1022
1023         if (wpas_driver_bss_selection(wpa_s))
1024                 return 0; /* Driver-based roaming */
1025
1026         if (wpa_s->current_ssid->ssid)
1027                 current_bss = wpa_bss_get(wpa_s, wpa_s->bssid,
1028                                           wpa_s->current_ssid->ssid,
1029                                           wpa_s->current_ssid->ssid_len);
1030         if (!current_bss)
1031                 current_bss = wpa_bss_get_bssid(wpa_s, wpa_s->bssid);
1032
1033         if (!current_bss)
1034                 return 1; /* current BSS not seen in scan results */
1035
1036         if (current_bss == selected)
1037                 return 0;
1038
1039         if (selected->last_update_idx > current_bss->last_update_idx)
1040                 return 1; /* current BSS not seen in the last scan */
1041
1042 #ifndef CONFIG_NO_ROAMING
1043         wpa_dbg(wpa_s, MSG_DEBUG, "Considering within-ESS reassociation");
1044         wpa_dbg(wpa_s, MSG_DEBUG, "Current BSS: " MACSTR " level=%d",
1045                 MAC2STR(current_bss->bssid), current_bss->level);
1046         wpa_dbg(wpa_s, MSG_DEBUG, "Selected BSS: " MACSTR " level=%d",
1047                 MAC2STR(selected->bssid), selected->level);
1048
1049         if (wpa_s->current_ssid->bssid_set &&
1050             os_memcmp(selected->bssid, wpa_s->current_ssid->bssid, ETH_ALEN) ==
1051             0) {
1052                 wpa_dbg(wpa_s, MSG_DEBUG, "Allow reassociation - selected BSS "
1053                         "has preferred BSSID");
1054                 return 1;
1055         }
1056
1057         if (current_bss->level < 0 && current_bss->level > selected->level) {
1058                 wpa_dbg(wpa_s, MSG_DEBUG, "Skip roam - Current BSS has better "
1059                         "signal level");
1060                 return 0;
1061         }
1062
1063         min_diff = 2;
1064         if (current_bss->level < 0) {
1065                 if (current_bss->level < -85)
1066                         min_diff = 1;
1067                 else if (current_bss->level < -80)
1068                         min_diff = 2;
1069                 else if (current_bss->level < -75)
1070                         min_diff = 3;
1071                 else if (current_bss->level < -70)
1072                         min_diff = 4;
1073                 else
1074                         min_diff = 5;
1075         }
1076         if (abs(current_bss->level - selected->level) < min_diff) {
1077                 wpa_dbg(wpa_s, MSG_DEBUG, "Skip roam - too small difference "
1078                         "in signal level");
1079                 return 0;
1080         }
1081
1082         return 1;
1083 #else /* CONFIG_NO_ROAMING */
1084         return 0;
1085 #endif /* CONFIG_NO_ROAMING */
1086 }
1087
1088
1089 /* Return != 0 if no scan results could be fetched or if scan results should not
1090  * be shared with other virtual interfaces. */
1091 static int _wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
1092                                               union wpa_event_data *data)
1093 {
1094         struct wpa_scan_results *scan_res;
1095         int ap = 0;
1096 #ifndef CONFIG_NO_RANDOM_POOL
1097         size_t i, num;
1098 #endif /* CONFIG_NO_RANDOM_POOL */
1099
1100 #ifdef CONFIG_AP
1101         if (wpa_s->ap_iface)
1102                 ap = 1;
1103 #endif /* CONFIG_AP */
1104
1105         wpa_supplicant_notify_scanning(wpa_s, 0);
1106
1107 #ifdef CONFIG_P2P
1108         if (wpa_s->global->p2p_cb_on_scan_complete &&
1109             !wpa_s->global->p2p_disabled &&
1110             wpa_s->global->p2p != NULL && !wpa_s->sta_scan_pending &&
1111             !wpa_s->scan_res_handler) {
1112                 wpa_s->global->p2p_cb_on_scan_complete = 0;
1113                 if (p2p_other_scan_completed(wpa_s->global->p2p) == 1) {
1114                         wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Pending P2P operation "
1115                                 "stopped scan processing");
1116                         wpa_s->sta_scan_pending = 1;
1117                         wpa_supplicant_req_scan(wpa_s, 5, 0);
1118                         return -1;
1119                 }
1120         }
1121         wpa_s->sta_scan_pending = 0;
1122 #endif /* CONFIG_P2P */
1123
1124         scan_res = wpa_supplicant_get_scan_results(wpa_s,
1125                                                    data ? &data->scan_info :
1126                                                    NULL, 1);
1127         if (scan_res == NULL) {
1128                 if (wpa_s->conf->ap_scan == 2 || ap ||
1129                     wpa_s->scan_res_handler == scan_only_handler)
1130                         return -1;
1131                 wpa_dbg(wpa_s, MSG_DEBUG, "Failed to get scan results - try "
1132                         "scanning again");
1133                 wpa_supplicant_req_new_scan(wpa_s, 1, 0);
1134                 return -1;
1135         }
1136
1137 #ifndef CONFIG_NO_RANDOM_POOL
1138         num = scan_res->num;
1139         if (num > 10)
1140                 num = 10;
1141         for (i = 0; i < num; i++) {
1142                 u8 buf[5];
1143                 struct wpa_scan_res *res = scan_res->res[i];
1144                 buf[0] = res->bssid[5];
1145                 buf[1] = res->qual & 0xff;
1146                 buf[2] = res->noise & 0xff;
1147                 buf[3] = res->level & 0xff;
1148                 buf[4] = res->tsf & 0xff;
1149                 random_add_randomness(buf, sizeof(buf));
1150         }
1151 #endif /* CONFIG_NO_RANDOM_POOL */
1152
1153         if (wpa_s->scan_res_handler) {
1154                 void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
1155                                          struct wpa_scan_results *scan_res);
1156
1157                 scan_res_handler = wpa_s->scan_res_handler;
1158                 wpa_s->scan_res_handler = NULL;
1159                 scan_res_handler(wpa_s, scan_res);
1160
1161                 wpa_scan_results_free(scan_res);
1162                 return -2;
1163         }
1164
1165         if (ap) {
1166                 wpa_dbg(wpa_s, MSG_DEBUG, "Ignore scan results in AP mode");
1167 #ifdef CONFIG_AP
1168                 if (wpa_s->ap_iface->scan_cb)
1169                         wpa_s->ap_iface->scan_cb(wpa_s->ap_iface);
1170 #endif /* CONFIG_AP */
1171                 wpa_scan_results_free(scan_res);
1172                 return 0;
1173         }
1174
1175         wpa_dbg(wpa_s, MSG_DEBUG, "New scan results available");
1176         wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS);
1177         wpas_notify_scan_results(wpa_s);
1178
1179         wpas_notify_scan_done(wpa_s, 1);
1180
1181         if (sme_proc_obss_scan(wpa_s) > 0) {
1182                 wpa_scan_results_free(scan_res);
1183                 return 0;
1184         }
1185
1186         if ((wpa_s->conf->ap_scan == 2 && !wpas_wps_searching(wpa_s))) {
1187                 wpa_scan_results_free(scan_res);
1188                 return 0;
1189         }
1190
1191         if (autoscan_notify_scan(wpa_s, scan_res)) {
1192                 wpa_scan_results_free(scan_res);
1193                 return 0;
1194         }
1195
1196         if (wpa_s->disconnected) {
1197                 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
1198                 wpa_scan_results_free(scan_res);
1199                 return 0;
1200         }
1201
1202         if (!wpas_driver_bss_selection(wpa_s) &&
1203             bgscan_notify_scan(wpa_s, scan_res) == 1) {
1204                 wpa_scan_results_free(scan_res);
1205                 return 0;
1206         }
1207
1208         wpas_wps_update_ap_info(wpa_s, scan_res);
1209
1210         wpa_scan_results_free(scan_res);
1211
1212         return wpas_select_network_from_last_scan(wpa_s);
1213 }
1214
1215
1216 static int wpas_select_network_from_last_scan(struct wpa_supplicant *wpa_s)
1217 {
1218         struct wpa_bss *selected;
1219         struct wpa_ssid *ssid = NULL;
1220
1221         selected = wpa_supplicant_pick_network(wpa_s, &ssid);
1222
1223         if (selected) {
1224                 int skip;
1225                 skip = !wpa_supplicant_need_to_roam(wpa_s, selected, ssid);
1226                 if (skip) {
1227                         wpa_supplicant_rsn_preauth_scan_results(wpa_s);
1228                         return 0;
1229                 }
1230
1231                 if (wpa_supplicant_connect(wpa_s, selected, ssid) < 0) {
1232                         wpa_dbg(wpa_s, MSG_DEBUG, "Connect failed");
1233                         return -1;
1234                 }
1235                 wpa_supplicant_rsn_preauth_scan_results(wpa_s);
1236                 /*
1237                  * Do not notify other virtual radios of scan results since we do not
1238                  * want them to start other associations at the same time.
1239                  */
1240                 return 1;
1241         } else {
1242                 wpa_dbg(wpa_s, MSG_DEBUG, "No suitable network found");
1243                 ssid = wpa_supplicant_pick_new_network(wpa_s);
1244                 if (ssid) {
1245                         wpa_dbg(wpa_s, MSG_DEBUG, "Setup a new network");
1246                         wpa_supplicant_associate(wpa_s, NULL, ssid);
1247                         wpa_supplicant_rsn_preauth_scan_results(wpa_s);
1248                 } else {
1249                         int timeout_sec = wpa_s->scan_interval;
1250                         int timeout_usec = 0;
1251 #ifdef CONFIG_P2P
1252                         if (wpas_p2p_scan_no_go_seen(wpa_s) == 1)
1253                                 return 0;
1254
1255                         if (wpa_s->p2p_in_provisioning) {
1256                                 /*
1257                                  * Use shorter wait during P2P Provisioning
1258                                  * state to speed up group formation.
1259                                  */
1260                                 timeout_sec = 0;
1261                                 timeout_usec = 250000;
1262                                 wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
1263                                                             timeout_usec);
1264                                 return 0;
1265                         }
1266 #endif /* CONFIG_P2P */
1267 #ifdef CONFIG_INTERWORKING
1268                         if (wpa_s->conf->auto_interworking &&
1269                             wpa_s->conf->interworking &&
1270                             wpa_s->conf->cred) {
1271                                 wpa_dbg(wpa_s, MSG_DEBUG, "Interworking: "
1272                                         "start ANQP fetch since no matching "
1273                                         "networks found");
1274                                 wpa_s->network_select = 1;
1275                                 wpa_s->auto_network_select = 1;
1276                                 interworking_start_fetch_anqp(wpa_s);
1277                                 return 1;
1278                         }
1279 #endif /* CONFIG_INTERWORKING */
1280                         if (wpa_supplicant_req_sched_scan(wpa_s))
1281                                 wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
1282                                                             timeout_usec);
1283                 }
1284         }
1285         return 0;
1286 }
1287
1288
1289 static void wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
1290                                               union wpa_event_data *data)
1291 {
1292         const char *rn, *rn2;
1293         struct wpa_supplicant *ifs;
1294
1295         if (_wpa_supplicant_event_scan_results(wpa_s, data) != 0) {
1296                 /*
1297                  * If no scan results could be fetched, then no need to
1298                  * notify those interfaces that did not actually request
1299                  * this scan. Similarly, if scan results started a new operation on this
1300                  * interface, do not notify other interfaces to avoid concurrent
1301                  * operations during a connection attempt.
1302                  */
1303                 return;
1304         }
1305
1306         /*
1307          * Check other interfaces to see if they have the same radio-name. If
1308          * so, they get updated with this same scan info.
1309          */
1310         if (!wpa_s->driver->get_radio_name)
1311                 return;
1312
1313         rn = wpa_s->driver->get_radio_name(wpa_s->drv_priv);
1314         if (rn == NULL || rn[0] == '\0')
1315                 return;
1316
1317         wpa_dbg(wpa_s, MSG_DEBUG, "Checking for other virtual interfaces "
1318                 "sharing same radio (%s) in event_scan_results", rn);
1319
1320         for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
1321                 if (ifs == wpa_s || !ifs->driver->get_radio_name)
1322                         continue;
1323
1324                 rn2 = ifs->driver->get_radio_name(ifs->drv_priv);
1325                 if (rn2 && os_strcmp(rn, rn2) == 0) {
1326                         wpa_printf(MSG_DEBUG, "%s: Updating scan results from "
1327                                    "sibling", ifs->ifname);
1328                         _wpa_supplicant_event_scan_results(ifs, data);
1329                 }
1330         }
1331 }
1332
1333 #endif /* CONFIG_NO_SCAN_PROCESSING */
1334
1335
1336 int wpa_supplicant_fast_associate(struct wpa_supplicant *wpa_s)
1337 {
1338 #ifdef CONFIG_NO_SCAN_PROCESSING
1339         return -1;
1340 #else /* CONFIG_NO_SCAN_PROCESSING */
1341         struct os_time now;
1342
1343         if (wpa_s->last_scan_res_used <= 0)
1344                 return -1;
1345
1346         os_get_time(&now);
1347         if (now.sec - wpa_s->last_scan.sec > 5) {
1348                 wpa_printf(MSG_DEBUG, "Fast associate: Old scan results");
1349                 return -1;
1350         }
1351
1352         return wpas_select_network_from_last_scan(wpa_s);
1353 #endif /* CONFIG_NO_SCAN_PROCESSING */
1354 }
1355
1356 #ifdef CONFIG_WNM
1357
1358 static void wnm_bss_keep_alive(void *eloop_ctx, void *sock_ctx)
1359 {
1360         struct wpa_supplicant *wpa_s = eloop_ctx;
1361
1362         if (wpa_s->wpa_state < WPA_ASSOCIATED)
1363                 return;
1364
1365         if (!wpa_s->no_keep_alive) {
1366                 wpa_printf(MSG_DEBUG, "WNM: Send keep-alive to AP " MACSTR,
1367                            MAC2STR(wpa_s->bssid));
1368                 /* TODO: could skip this if normal data traffic has been sent */
1369                 /* TODO: Consider using some more appropriate data frame for
1370                  * this */
1371                 if (wpa_s->l2)
1372                         l2_packet_send(wpa_s->l2, wpa_s->bssid, 0x0800,
1373                                        (u8 *) "", 0);
1374         }
1375
1376 #ifdef CONFIG_SME
1377         if (wpa_s->sme.bss_max_idle_period) {
1378                 unsigned int msec;
1379                 msec = wpa_s->sme.bss_max_idle_period * 1024; /* times 1000 */
1380                 if (msec > 100)
1381                         msec -= 100;
1382                 eloop_register_timeout(msec / 1000, msec % 1000 * 1000,
1383                                        wnm_bss_keep_alive, wpa_s, NULL);
1384         }
1385 #endif /* CONFIG_SME */
1386 }
1387
1388
1389 static void wnm_process_assoc_resp(struct wpa_supplicant *wpa_s,
1390                                    const u8 *ies, size_t ies_len)
1391 {
1392         struct ieee802_11_elems elems;
1393
1394         if (ies == NULL)
1395                 return;
1396
1397         if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed)
1398                 return;
1399
1400 #ifdef CONFIG_SME
1401         if (elems.bss_max_idle_period) {
1402                 unsigned int msec;
1403                 wpa_s->sme.bss_max_idle_period =
1404                         WPA_GET_LE16(elems.bss_max_idle_period);
1405                 wpa_printf(MSG_DEBUG, "WNM: BSS Max Idle Period: %u (* 1000 "
1406                            "TU)%s", wpa_s->sme.bss_max_idle_period,
1407                            (elems.bss_max_idle_period[2] & 0x01) ?
1408                            " (protected keep-live required)" : "");
1409                 if (wpa_s->sme.bss_max_idle_period == 0)
1410                         wpa_s->sme.bss_max_idle_period = 1;
1411                 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) {
1412                         eloop_cancel_timeout(wnm_bss_keep_alive, wpa_s, NULL);
1413                          /* msec times 1000 */
1414                         msec = wpa_s->sme.bss_max_idle_period * 1024;
1415                         if (msec > 100)
1416                                 msec -= 100;
1417                         eloop_register_timeout(msec / 1000, msec % 1000 * 1000,
1418                                                wnm_bss_keep_alive, wpa_s,
1419                                                NULL);
1420                 }
1421         }
1422 #endif /* CONFIG_SME */
1423 }
1424
1425 #endif /* CONFIG_WNM */
1426
1427
1428 void wnm_bss_keep_alive_deinit(struct wpa_supplicant *wpa_s)
1429 {
1430 #ifdef CONFIG_WNM
1431         eloop_cancel_timeout(wnm_bss_keep_alive, wpa_s, NULL);
1432 #endif /* CONFIG_WNM */
1433 }
1434
1435
1436 static int wpa_supplicant_event_associnfo(struct wpa_supplicant *wpa_s,
1437                                           union wpa_event_data *data)
1438 {
1439         int l, len, found = 0, wpa_found, rsn_found;
1440         const u8 *p;
1441
1442         wpa_dbg(wpa_s, MSG_DEBUG, "Association info event");
1443         if (data->assoc_info.req_ies)
1444                 wpa_hexdump(MSG_DEBUG, "req_ies", data->assoc_info.req_ies,
1445                             data->assoc_info.req_ies_len);
1446         if (data->assoc_info.resp_ies) {
1447                 wpa_hexdump(MSG_DEBUG, "resp_ies", data->assoc_info.resp_ies,
1448                             data->assoc_info.resp_ies_len);
1449 #ifdef CONFIG_TDLS
1450                 wpa_tdls_assoc_resp_ies(wpa_s->wpa, data->assoc_info.resp_ies,
1451                                         data->assoc_info.resp_ies_len);
1452 #endif /* CONFIG_TDLS */
1453 #ifdef CONFIG_WNM
1454                 wnm_process_assoc_resp(wpa_s, data->assoc_info.resp_ies,
1455                                        data->assoc_info.resp_ies_len);
1456 #endif /* CONFIG_WNM */
1457         }
1458         if (data->assoc_info.beacon_ies)
1459                 wpa_hexdump(MSG_DEBUG, "beacon_ies",
1460                             data->assoc_info.beacon_ies,
1461                             data->assoc_info.beacon_ies_len);
1462         if (data->assoc_info.freq)
1463                 wpa_dbg(wpa_s, MSG_DEBUG, "freq=%u MHz",
1464                         data->assoc_info.freq);
1465
1466         p = data->assoc_info.req_ies;
1467         l = data->assoc_info.req_ies_len;
1468
1469         /* Go through the IEs and make a copy of the WPA/RSN IE, if present. */
1470         while (p && l >= 2) {
1471                 len = p[1] + 2;
1472                 if (len > l) {
1473                         wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
1474                                     p, l);
1475                         break;
1476                 }
1477                 if ((p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
1478                      (os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0)) ||
1479                     (p[0] == WLAN_EID_RSN && p[1] >= 2)) {
1480                         if (wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, p, len))
1481                                 break;
1482                         found = 1;
1483                         wpa_find_assoc_pmkid(wpa_s);
1484                         break;
1485                 }
1486                 l -= len;
1487                 p += len;
1488         }
1489         if (!found && data->assoc_info.req_ies)
1490                 wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
1491
1492 #ifdef CONFIG_IEEE80211R
1493 #ifdef CONFIG_SME
1494         if (wpa_s->sme.auth_alg == WPA_AUTH_ALG_FT) {
1495                 u8 bssid[ETH_ALEN];
1496                 if (wpa_drv_get_bssid(wpa_s, bssid) < 0 ||
1497                     wpa_ft_validate_reassoc_resp(wpa_s->wpa,
1498                                                  data->assoc_info.resp_ies,
1499                                                  data->assoc_info.resp_ies_len,
1500                                                  bssid) < 0) {
1501                         wpa_dbg(wpa_s, MSG_DEBUG, "FT: Validation of "
1502                                 "Reassociation Response failed");
1503                         wpa_supplicant_deauthenticate(
1504                                 wpa_s, WLAN_REASON_INVALID_IE);
1505                         return -1;
1506                 }
1507         }
1508
1509         p = data->assoc_info.resp_ies;
1510         l = data->assoc_info.resp_ies_len;
1511
1512 #ifdef CONFIG_WPS_STRICT
1513         if (p && wpa_s->current_ssid &&
1514             wpa_s->current_ssid->key_mgmt == WPA_KEY_MGMT_WPS) {
1515                 struct wpabuf *wps;
1516                 wps = ieee802_11_vendor_ie_concat(p, l, WPS_IE_VENDOR_TYPE);
1517                 if (wps == NULL) {
1518                         wpa_msg(wpa_s, MSG_INFO, "WPS-STRICT: AP did not "
1519                                 "include WPS IE in (Re)Association Response");
1520                         return -1;
1521                 }
1522
1523                 if (wps_validate_assoc_resp(wps) < 0) {
1524                         wpabuf_free(wps);
1525                         wpa_supplicant_deauthenticate(
1526                                 wpa_s, WLAN_REASON_INVALID_IE);
1527                         return -1;
1528                 }
1529                 wpabuf_free(wps);
1530         }
1531 #endif /* CONFIG_WPS_STRICT */
1532
1533         /* Go through the IEs and make a copy of the MDIE, if present. */
1534         while (p && l >= 2) {
1535                 len = p[1] + 2;
1536                 if (len > l) {
1537                         wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
1538                                     p, l);
1539                         break;
1540                 }
1541                 if (p[0] == WLAN_EID_MOBILITY_DOMAIN &&
1542                     p[1] >= MOBILITY_DOMAIN_ID_LEN) {
1543                         wpa_s->sme.ft_used = 1;
1544                         os_memcpy(wpa_s->sme.mobility_domain, p + 2,
1545                                   MOBILITY_DOMAIN_ID_LEN);
1546                         break;
1547                 }
1548                 l -= len;
1549                 p += len;
1550         }
1551 #endif /* CONFIG_SME */
1552
1553         wpa_sm_set_ft_params(wpa_s->wpa, data->assoc_info.resp_ies,
1554                              data->assoc_info.resp_ies_len);
1555 #endif /* CONFIG_IEEE80211R */
1556
1557         /* WPA/RSN IE from Beacon/ProbeResp */
1558         p = data->assoc_info.beacon_ies;
1559         l = data->assoc_info.beacon_ies_len;
1560
1561         /* Go through the IEs and make a copy of the WPA/RSN IEs, if present.
1562          */
1563         wpa_found = rsn_found = 0;
1564         while (p && l >= 2) {
1565                 len = p[1] + 2;
1566                 if (len > l) {
1567                         wpa_hexdump(MSG_DEBUG, "Truncated IE in beacon_ies",
1568                                     p, l);
1569                         break;
1570                 }
1571                 if (!wpa_found &&
1572                     p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
1573                     os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0) {
1574                         wpa_found = 1;
1575                         wpa_sm_set_ap_wpa_ie(wpa_s->wpa, p, len);
1576                 }
1577
1578                 if (!rsn_found &&
1579                     p[0] == WLAN_EID_RSN && p[1] >= 2) {
1580                         rsn_found = 1;
1581                         wpa_sm_set_ap_rsn_ie(wpa_s->wpa, p, len);
1582                 }
1583
1584                 l -= len;
1585                 p += len;
1586         }
1587
1588         if (!wpa_found && data->assoc_info.beacon_ies)
1589                 wpa_sm_set_ap_wpa_ie(wpa_s->wpa, NULL, 0);
1590         if (!rsn_found && data->assoc_info.beacon_ies)
1591                 wpa_sm_set_ap_rsn_ie(wpa_s->wpa, NULL, 0);
1592         if (wpa_found || rsn_found)
1593                 wpa_s->ap_ies_from_associnfo = 1;
1594
1595         if (wpa_s->assoc_freq && data->assoc_info.freq &&
1596             wpa_s->assoc_freq != data->assoc_info.freq) {
1597                 wpa_printf(MSG_DEBUG, "Operating frequency changed from "
1598                            "%u to %u MHz",
1599                            wpa_s->assoc_freq, data->assoc_info.freq);
1600                 wpa_supplicant_update_scan_results(wpa_s);
1601         }
1602
1603         wpa_s->assoc_freq = data->assoc_info.freq;
1604
1605         return 0;
1606 }
1607
1608
1609 static struct wpa_bss * wpa_supplicant_get_new_bss(
1610         struct wpa_supplicant *wpa_s, const u8 *bssid)
1611 {
1612         struct wpa_bss *bss = NULL;
1613         struct wpa_ssid *ssid = wpa_s->current_ssid;
1614
1615         if (ssid->ssid_len > 0)
1616                 bss = wpa_bss_get(wpa_s, bssid, ssid->ssid, ssid->ssid_len);
1617         if (!bss)
1618                 bss = wpa_bss_get_bssid(wpa_s, bssid);
1619
1620         return bss;
1621 }
1622
1623
1624 static int wpa_supplicant_assoc_update_ie(struct wpa_supplicant *wpa_s)
1625 {
1626         const u8 *bss_wpa = NULL, *bss_rsn = NULL;
1627
1628         if (!wpa_s->current_bss || !wpa_s->current_ssid)
1629                 return -1;
1630
1631         if (!wpa_key_mgmt_wpa_any(wpa_s->current_ssid->key_mgmt))
1632                 return 0;
1633
1634         bss_wpa = wpa_bss_get_vendor_ie(wpa_s->current_bss,
1635                                         WPA_IE_VENDOR_TYPE);
1636         bss_rsn = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_RSN);
1637
1638         if (wpa_sm_set_ap_wpa_ie(wpa_s->wpa, bss_wpa,
1639                                  bss_wpa ? 2 + bss_wpa[1] : 0) ||
1640             wpa_sm_set_ap_rsn_ie(wpa_s->wpa, bss_rsn,
1641                                  bss_rsn ? 2 + bss_rsn[1] : 0))
1642                 return -1;
1643
1644         return 0;
1645 }
1646
1647
1648 static void wpa_supplicant_event_assoc(struct wpa_supplicant *wpa_s,
1649                                        union wpa_event_data *data)
1650 {
1651         u8 bssid[ETH_ALEN];
1652         int ft_completed;
1653         struct wpa_driver_capa capa;
1654
1655 #ifdef CONFIG_AP
1656         if (wpa_s->ap_iface) {
1657                 hostapd_notif_assoc(wpa_s->ap_iface->bss[0],
1658                                     data->assoc_info.addr,
1659                                     data->assoc_info.req_ies,
1660                                     data->assoc_info.req_ies_len,
1661                                     data->assoc_info.reassoc);
1662                 return;
1663         }
1664 #endif /* CONFIG_AP */
1665
1666         ft_completed = wpa_ft_is_completed(wpa_s->wpa);
1667         if (data && wpa_supplicant_event_associnfo(wpa_s, data) < 0)
1668                 return;
1669
1670         if (wpa_drv_get_bssid(wpa_s, bssid) < 0) {
1671                 wpa_dbg(wpa_s, MSG_ERROR, "Failed to get BSSID");
1672                 wpa_supplicant_deauthenticate(
1673                         wpa_s, WLAN_REASON_DEAUTH_LEAVING);
1674                 return;
1675         }
1676
1677         wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATED);
1678         if (os_memcmp(bssid, wpa_s->bssid, ETH_ALEN) != 0) {
1679                 wpa_dbg(wpa_s, MSG_DEBUG, "Associated to a new BSS: BSSID="
1680                         MACSTR, MAC2STR(bssid));
1681                 random_add_randomness(bssid, ETH_ALEN);
1682                 os_memcpy(wpa_s->bssid, bssid, ETH_ALEN);
1683                 os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
1684                 wpas_notify_bssid_changed(wpa_s);
1685
1686                 if (wpa_supplicant_dynamic_keys(wpa_s) && !ft_completed) {
1687                         wpa_clear_keys(wpa_s, bssid);
1688                 }
1689                 if (wpa_supplicant_select_config(wpa_s) < 0) {
1690                         wpa_supplicant_deauthenticate(
1691                                 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
1692                         return;
1693                 }
1694                 if (wpa_s->current_ssid) {
1695                         struct wpa_bss *bss = NULL;
1696
1697                         bss = wpa_supplicant_get_new_bss(wpa_s, bssid);
1698                         if (!bss) {
1699                                 wpa_supplicant_update_scan_results(wpa_s);
1700
1701                                 /* Get the BSS from the new scan results */
1702                                 bss = wpa_supplicant_get_new_bss(wpa_s, bssid);
1703                         }
1704
1705                         if (bss)
1706                                 wpa_s->current_bss = bss;
1707                 }
1708
1709                 if (wpa_s->conf->ap_scan == 1 &&
1710                     wpa_s->drv_flags & WPA_DRIVER_FLAGS_BSS_SELECTION) {
1711                         if (wpa_supplicant_assoc_update_ie(wpa_s) < 0)
1712                                 wpa_msg(wpa_s, MSG_WARNING,
1713                                         "WPA/RSN IEs not updated");
1714                 }
1715         }
1716
1717 #ifdef CONFIG_SME
1718         os_memcpy(wpa_s->sme.prev_bssid, bssid, ETH_ALEN);
1719         wpa_s->sme.prev_bssid_set = 1;
1720 #endif /* CONFIG_SME */
1721
1722         wpa_msg(wpa_s, MSG_INFO, "Associated with " MACSTR, MAC2STR(bssid));
1723         if (wpa_s->current_ssid) {
1724                 /* When using scanning (ap_scan=1), SIM PC/SC interface can be
1725                  * initialized before association, but for other modes,
1726                  * initialize PC/SC here, if the current configuration needs
1727                  * smartcard or SIM/USIM. */
1728                 wpa_supplicant_scard_init(wpa_s, wpa_s->current_ssid);
1729         }
1730         wpa_sm_notify_assoc(wpa_s->wpa, bssid);
1731         if (wpa_s->l2)
1732                 l2_packet_notify_auth_start(wpa_s->l2);
1733
1734         /*
1735          * Set portEnabled first to FALSE in order to get EAP state machine out
1736          * of the SUCCESS state and eapSuccess cleared. Without this, EAPOL PAE
1737          * state machine may transit to AUTHENTICATING state based on obsolete
1738          * eapSuccess and then trigger BE_AUTH to SUCCESS and PAE to
1739          * AUTHENTICATED without ever giving chance to EAP state machine to
1740          * reset the state.
1741          */
1742         if (!ft_completed) {
1743                 eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
1744                 eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
1745         }
1746         if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) || ft_completed)
1747                 eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
1748         /* 802.1X::portControl = Auto */
1749         eapol_sm_notify_portEnabled(wpa_s->eapol, TRUE);
1750         wpa_s->eapol_received = 0;
1751         if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
1752             wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE ||
1753             (wpa_s->current_ssid &&
1754              wpa_s->current_ssid->mode == IEEE80211_MODE_IBSS)) {
1755                 wpa_supplicant_cancel_auth_timeout(wpa_s);
1756                 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
1757         } else if (!ft_completed) {
1758                 /* Timeout for receiving the first EAPOL packet */
1759                 wpa_supplicant_req_auth_timeout(wpa_s, 10, 0);
1760         }
1761         wpa_supplicant_cancel_scan(wpa_s);
1762
1763         if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
1764             wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt)) {
1765                 /*
1766                  * We are done; the driver will take care of RSN 4-way
1767                  * handshake.
1768                  */
1769                 wpa_supplicant_cancel_auth_timeout(wpa_s);
1770                 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
1771                 eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
1772                 eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
1773         } else if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
1774                    wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
1775                 /*
1776                  * The driver will take care of RSN 4-way handshake, so we need
1777                  * to allow EAPOL supplicant to complete its work without
1778                  * waiting for WPA supplicant.
1779                  */
1780                 eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
1781         } else if (ft_completed) {
1782                 /*
1783                  * FT protocol completed - make sure EAPOL state machine ends
1784                  * up in authenticated.
1785                  */
1786                 wpa_supplicant_cancel_auth_timeout(wpa_s);
1787                 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
1788                 eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
1789                 eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
1790         }
1791
1792         wpa_s->last_eapol_matches_bssid = 0;
1793
1794         if (wpa_s->pending_eapol_rx) {
1795                 struct os_time now, age;
1796                 os_get_time(&now);
1797                 os_time_sub(&now, &wpa_s->pending_eapol_rx_time, &age);
1798                 if (age.sec == 0 && age.usec < 100000 &&
1799                     os_memcmp(wpa_s->pending_eapol_rx_src, bssid, ETH_ALEN) ==
1800                     0) {
1801                         wpa_dbg(wpa_s, MSG_DEBUG, "Process pending EAPOL "
1802                                 "frame that was received just before "
1803                                 "association notification");
1804                         wpa_supplicant_rx_eapol(
1805                                 wpa_s, wpa_s->pending_eapol_rx_src,
1806                                 wpabuf_head(wpa_s->pending_eapol_rx),
1807                                 wpabuf_len(wpa_s->pending_eapol_rx));
1808                 }
1809                 wpabuf_free(wpa_s->pending_eapol_rx);
1810                 wpa_s->pending_eapol_rx = NULL;
1811         }
1812
1813         if ((wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
1814              wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
1815             wpa_s->current_ssid && wpa_drv_get_capa(wpa_s, &capa) == 0 &&
1816             capa.flags & WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE) {
1817                 /* Set static WEP keys again */
1818                 wpa_set_wep_keys(wpa_s, wpa_s->current_ssid);
1819         }
1820
1821 #ifdef CONFIG_IBSS_RSN
1822         if (wpa_s->current_ssid &&
1823             wpa_s->current_ssid->mode == WPAS_MODE_IBSS &&
1824             wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
1825             wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE &&
1826             wpa_s->ibss_rsn == NULL) {
1827                 wpa_s->ibss_rsn = ibss_rsn_init(wpa_s);
1828                 if (!wpa_s->ibss_rsn) {
1829                         wpa_msg(wpa_s, MSG_INFO, "Failed to init IBSS RSN");
1830                         wpa_supplicant_deauthenticate(
1831                                 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
1832                         return;
1833                 }
1834
1835                 ibss_rsn_set_psk(wpa_s->ibss_rsn, wpa_s->current_ssid->psk);
1836         }
1837 #endif /* CONFIG_IBSS_RSN */
1838
1839         wpas_wps_notify_assoc(wpa_s, bssid);
1840 }
1841
1842
1843 static int disconnect_reason_recoverable(u16 reason_code)
1844 {
1845         return reason_code == WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY ||
1846                 reason_code == WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA ||
1847                 reason_code == WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA;
1848 }
1849
1850
1851 static void wpa_supplicant_event_disassoc(struct wpa_supplicant *wpa_s,
1852                                           u16 reason_code,
1853                                           int locally_generated)
1854 {
1855         const u8 *bssid;
1856
1857         if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
1858                 /*
1859                  * At least Host AP driver and a Prism3 card seemed to be
1860                  * generating streams of disconnected events when configuring
1861                  * IBSS for WPA-None. Ignore them for now.
1862                  */
1863                 return;
1864         }
1865
1866         bssid = wpa_s->bssid;
1867         if (is_zero_ether_addr(bssid))
1868                 bssid = wpa_s->pending_bssid;
1869
1870         if (!is_zero_ether_addr(bssid) ||
1871             wpa_s->wpa_state >= WPA_AUTHENTICATING) {
1872                 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid=" MACSTR
1873                         " reason=%d%s",
1874                         MAC2STR(bssid), reason_code,
1875                         locally_generated ? " locally_generated=1" : "");
1876         }
1877 }
1878
1879
1880 static int could_be_psk_mismatch(struct wpa_supplicant *wpa_s, u16 reason_code,
1881                                  int locally_generated)
1882 {
1883         if (wpa_s->wpa_state != WPA_4WAY_HANDSHAKE ||
1884             !wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt))
1885                 return 0; /* Not in 4-way handshake with PSK */
1886
1887         /*
1888          * It looks like connection was lost while trying to go through PSK
1889          * 4-way handshake. Filter out known disconnection cases that are caused
1890          * by something else than PSK mismatch to avoid confusing reports.
1891          */
1892
1893         if (locally_generated) {
1894                 if (reason_code == WLAN_REASON_IE_IN_4WAY_DIFFERS)
1895                         return 0;
1896         }
1897
1898         return 1;
1899 }
1900
1901
1902 static void wpa_supplicant_event_disassoc_finish(struct wpa_supplicant *wpa_s,
1903                                                  u16 reason_code,
1904                                                  int locally_generated)
1905 {
1906         const u8 *bssid;
1907         int authenticating;
1908         u8 prev_pending_bssid[ETH_ALEN];
1909         struct wpa_bss *fast_reconnect = NULL;
1910         struct wpa_ssid *fast_reconnect_ssid = NULL;
1911         struct wpa_ssid *last_ssid;
1912
1913         authenticating = wpa_s->wpa_state == WPA_AUTHENTICATING;
1914         os_memcpy(prev_pending_bssid, wpa_s->pending_bssid, ETH_ALEN);
1915
1916         if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
1917                 /*
1918                  * At least Host AP driver and a Prism3 card seemed to be
1919                  * generating streams of disconnected events when configuring
1920                  * IBSS for WPA-None. Ignore them for now.
1921                  */
1922                 wpa_dbg(wpa_s, MSG_DEBUG, "Disconnect event - ignore in "
1923                         "IBSS/WPA-None mode");
1924                 return;
1925         }
1926
1927         if (could_be_psk_mismatch(wpa_s, reason_code, locally_generated)) {
1928                 wpa_msg(wpa_s, MSG_INFO, "WPA: 4-Way Handshake failed - "
1929                         "pre-shared key may be incorrect");
1930                 wpas_auth_failed(wpa_s);
1931         }
1932         if (!wpa_s->auto_reconnect_disabled ||
1933             wpa_s->key_mgmt == WPA_KEY_MGMT_WPS) {
1934                 wpa_dbg(wpa_s, MSG_DEBUG, "Auto connect enabled: try to "
1935                         "reconnect (wps=%d wpa_state=%d)",
1936                         wpa_s->key_mgmt == WPA_KEY_MGMT_WPS,
1937                         wpa_s->wpa_state);
1938                 if (wpa_s->wpa_state == WPA_COMPLETED &&
1939                     wpa_s->current_ssid &&
1940                     wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
1941                     !locally_generated &&
1942                     disconnect_reason_recoverable(reason_code)) {
1943                         /*
1944                          * It looks like the AP has dropped association with
1945                          * us, but could allow us to get back in. Try to
1946                          * reconnect to the same BSS without full scan to save
1947                          * time for some common cases.
1948                          */
1949                         fast_reconnect = wpa_s->current_bss;
1950                         fast_reconnect_ssid = wpa_s->current_ssid;
1951                 } else if (wpa_s->wpa_state >= WPA_ASSOCIATING)
1952                         wpa_supplicant_req_scan(wpa_s, 0, 100000);
1953                 else
1954                         wpa_dbg(wpa_s, MSG_DEBUG, "Do not request new "
1955                                 "immediate scan");
1956         } else {
1957                 wpa_dbg(wpa_s, MSG_DEBUG, "Auto connect disabled: do not "
1958                         "try to re-connect");
1959                 wpa_s->reassociate = 0;
1960                 wpa_s->disconnected = 1;
1961                 wpa_supplicant_cancel_sched_scan(wpa_s);
1962         }
1963         bssid = wpa_s->bssid;
1964         if (is_zero_ether_addr(bssid))
1965                 bssid = wpa_s->pending_bssid;
1966         if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
1967                 wpas_connection_failed(wpa_s, bssid);
1968         wpa_sm_notify_disassoc(wpa_s->wpa);
1969         if (locally_generated)
1970                 wpa_s->disconnect_reason = -reason_code;
1971         else
1972                 wpa_s->disconnect_reason = reason_code;
1973         wpas_notify_disconnect_reason(wpa_s);
1974         if (wpa_supplicant_dynamic_keys(wpa_s)) {
1975                 wpa_dbg(wpa_s, MSG_DEBUG, "Disconnect event - remove keys");
1976                 wpa_s->keys_cleared = 0;
1977                 wpa_clear_keys(wpa_s, wpa_s->bssid);
1978         }
1979         last_ssid = wpa_s->current_ssid;
1980         wpa_supplicant_mark_disassoc(wpa_s);
1981
1982         if (authenticating && (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)) {
1983                 sme_disassoc_while_authenticating(wpa_s, prev_pending_bssid);
1984                 wpa_s->current_ssid = last_ssid;
1985         }
1986
1987         if (fast_reconnect) {
1988 #ifndef CONFIG_NO_SCAN_PROCESSING
1989                 wpa_dbg(wpa_s, MSG_DEBUG, "Try to reconnect to the same BSS");
1990                 if (wpa_supplicant_connect(wpa_s, fast_reconnect,
1991                                            fast_reconnect_ssid) < 0) {
1992                         /* Recover through full scan */
1993                         wpa_supplicant_req_scan(wpa_s, 0, 100000);
1994                 }
1995 #endif /* CONFIG_NO_SCAN_PROCESSING */
1996         }
1997 }
1998
1999
2000 #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
2001 void wpa_supplicant_delayed_mic_error_report(void *eloop_ctx, void *sock_ctx)
2002 {
2003         struct wpa_supplicant *wpa_s = eloop_ctx;
2004
2005         if (!wpa_s->pending_mic_error_report)
2006                 return;
2007
2008         wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Sending pending MIC error report");
2009         wpa_sm_key_request(wpa_s->wpa, 1, wpa_s->pending_mic_error_pairwise);
2010         wpa_s->pending_mic_error_report = 0;
2011 }
2012 #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
2013
2014
2015 static void
2016 wpa_supplicant_event_michael_mic_failure(struct wpa_supplicant *wpa_s,
2017                                          union wpa_event_data *data)
2018 {
2019         int pairwise;
2020         struct os_time t;
2021
2022         wpa_msg(wpa_s, MSG_WARNING, "Michael MIC failure detected");
2023         pairwise = (data && data->michael_mic_failure.unicast);
2024         os_get_time(&t);
2025         if ((wpa_s->last_michael_mic_error &&
2026              t.sec - wpa_s->last_michael_mic_error <= 60) ||
2027             wpa_s->pending_mic_error_report) {
2028                 if (wpa_s->pending_mic_error_report) {
2029                         /*
2030                          * Send the pending MIC error report immediately since
2031                          * we are going to start countermeasures and AP better
2032                          * do the same.
2033                          */
2034                         wpa_sm_key_request(wpa_s->wpa, 1,
2035                                            wpa_s->pending_mic_error_pairwise);
2036                 }
2037
2038                 /* Send the new MIC error report immediately since we are going
2039                  * to start countermeasures and AP better do the same.
2040                  */
2041                 wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
2042
2043                 /* initialize countermeasures */
2044                 wpa_s->countermeasures = 1;
2045
2046                 wpa_blacklist_add(wpa_s, wpa_s->bssid);
2047
2048                 wpa_msg(wpa_s, MSG_WARNING, "TKIP countermeasures started");
2049
2050                 /*
2051                  * Need to wait for completion of request frame. We do not get
2052                  * any callback for the message completion, so just wait a
2053                  * short while and hope for the best. */
2054                 os_sleep(0, 10000);
2055
2056                 wpa_drv_set_countermeasures(wpa_s, 1);
2057                 wpa_supplicant_deauthenticate(wpa_s,
2058                                               WLAN_REASON_MICHAEL_MIC_FAILURE);
2059                 eloop_cancel_timeout(wpa_supplicant_stop_countermeasures,
2060                                      wpa_s, NULL);
2061                 eloop_register_timeout(60, 0,
2062                                        wpa_supplicant_stop_countermeasures,
2063                                        wpa_s, NULL);
2064                 /* TODO: mark the AP rejected for 60 second. STA is
2065                  * allowed to associate with another AP.. */
2066         } else {
2067 #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
2068                 if (wpa_s->mic_errors_seen) {
2069                         /*
2070                          * Reduce the effectiveness of Michael MIC error
2071                          * reports as a means for attacking against TKIP if
2072                          * more than one MIC failure is noticed with the same
2073                          * PTK. We delay the transmission of the reports by a
2074                          * random time between 0 and 60 seconds in order to
2075                          * force the attacker wait 60 seconds before getting
2076                          * the information on whether a frame resulted in a MIC
2077                          * failure.
2078                          */
2079                         u8 rval[4];
2080                         int sec;
2081
2082                         if (os_get_random(rval, sizeof(rval)) < 0)
2083                                 sec = os_random() % 60;
2084                         else
2085                                 sec = WPA_GET_BE32(rval) % 60;
2086                         wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Delay MIC error "
2087                                 "report %d seconds", sec);
2088                         wpa_s->pending_mic_error_report = 1;
2089                         wpa_s->pending_mic_error_pairwise = pairwise;
2090                         eloop_cancel_timeout(
2091                                 wpa_supplicant_delayed_mic_error_report,
2092                                 wpa_s, NULL);
2093                         eloop_register_timeout(
2094                                 sec, os_random() % 1000000,
2095                                 wpa_supplicant_delayed_mic_error_report,
2096                                 wpa_s, NULL);
2097                 } else {
2098                         wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
2099                 }
2100 #else /* CONFIG_DELAYED_MIC_ERROR_REPORT */
2101                 wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
2102 #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
2103         }
2104         wpa_s->last_michael_mic_error = t.sec;
2105         wpa_s->mic_errors_seen++;
2106 }
2107
2108
2109 #ifdef CONFIG_TERMINATE_ONLASTIF
2110 static int any_interfaces(struct wpa_supplicant *head)
2111 {
2112         struct wpa_supplicant *wpa_s;
2113
2114         for (wpa_s = head; wpa_s != NULL; wpa_s = wpa_s->next)
2115                 if (!wpa_s->interface_removed)
2116                         return 1;
2117         return 0;
2118 }
2119 #endif /* CONFIG_TERMINATE_ONLASTIF */
2120
2121
2122 static void
2123 wpa_supplicant_event_interface_status(struct wpa_supplicant *wpa_s,
2124                                       union wpa_event_data *data)
2125 {
2126         if (os_strcmp(wpa_s->ifname, data->interface_status.ifname) != 0)
2127                 return;
2128
2129         switch (data->interface_status.ievent) {
2130         case EVENT_INTERFACE_ADDED:
2131                 if (!wpa_s->interface_removed)
2132                         break;
2133                 wpa_s->interface_removed = 0;
2134                 wpa_dbg(wpa_s, MSG_DEBUG, "Configured interface was added");
2135                 if (wpa_supplicant_driver_init(wpa_s) < 0) {
2136                         wpa_msg(wpa_s, MSG_INFO, "Failed to initialize the "
2137                                 "driver after interface was added");
2138                 }
2139                 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
2140                 break;
2141         case EVENT_INTERFACE_REMOVED:
2142                 wpa_dbg(wpa_s, MSG_DEBUG, "Configured interface was removed");
2143                 wpa_s->interface_removed = 1;
2144                 wpa_supplicant_mark_disassoc(wpa_s);
2145                 wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
2146                 l2_packet_deinit(wpa_s->l2);
2147                 wpa_s->l2 = NULL;
2148 #ifdef CONFIG_IBSS_RSN
2149                 ibss_rsn_deinit(wpa_s->ibss_rsn);
2150                 wpa_s->ibss_rsn = NULL;
2151 #endif /* CONFIG_IBSS_RSN */
2152 #ifdef CONFIG_TERMINATE_ONLASTIF
2153                 /* check if last interface */
2154                 if (!any_interfaces(wpa_s->global->ifaces))
2155                         eloop_terminate();
2156 #endif /* CONFIG_TERMINATE_ONLASTIF */
2157                 break;
2158         }
2159 }
2160
2161
2162 #ifdef CONFIG_PEERKEY
2163 static void
2164 wpa_supplicant_event_stkstart(struct wpa_supplicant *wpa_s,
2165                               union wpa_event_data *data)
2166 {
2167         if (data == NULL)
2168                 return;
2169         wpa_sm_stkstart(wpa_s->wpa, data->stkstart.peer);
2170 }
2171 #endif /* CONFIG_PEERKEY */
2172
2173
2174 #ifdef CONFIG_TDLS
2175 static void wpa_supplicant_event_tdls(struct wpa_supplicant *wpa_s,
2176                                       union wpa_event_data *data)
2177 {
2178         if (data == NULL)
2179                 return;
2180         switch (data->tdls.oper) {
2181         case TDLS_REQUEST_SETUP:
2182                 wpa_tdls_remove(wpa_s->wpa, data->tdls.peer);
2183                 if (wpa_tdls_is_external_setup(wpa_s->wpa))
2184                         wpa_tdls_start(wpa_s->wpa, data->tdls.peer);
2185                 else
2186                         wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, data->tdls.peer);
2187                 break;
2188         case TDLS_REQUEST_TEARDOWN:
2189                 wpa_tdls_teardown_link(wpa_s->wpa, data->tdls.peer,
2190                                        data->tdls.reason_code);
2191                 break;
2192         }
2193 }
2194 #endif /* CONFIG_TDLS */
2195
2196
2197 #ifdef CONFIG_WNM
2198 static void wpa_supplicant_event_wnm(struct wpa_supplicant *wpa_s,
2199                                      union wpa_event_data *data)
2200 {
2201         if (data == NULL)
2202                 return;
2203         switch (data->wnm.oper) {
2204         case WNM_OPER_SLEEP:
2205                 wpa_printf(MSG_DEBUG, "Start sending WNM-Sleep Request "
2206                            "(action=%d, intval=%d)",
2207                            data->wnm.sleep_action, data->wnm.sleep_intval);
2208                 ieee802_11_send_wnmsleep_req(wpa_s, data->wnm.sleep_action,
2209                                              data->wnm.sleep_intval, NULL);
2210                 break;
2211         }
2212 }
2213 #endif /* CONFIG_WNM */
2214
2215
2216 #ifdef CONFIG_IEEE80211R
2217 static void
2218 wpa_supplicant_event_ft_response(struct wpa_supplicant *wpa_s,
2219                                  union wpa_event_data *data)
2220 {
2221         if (data == NULL)
2222                 return;
2223
2224         if (wpa_ft_process_response(wpa_s->wpa, data->ft_ies.ies,
2225                                     data->ft_ies.ies_len,
2226                                     data->ft_ies.ft_action,
2227                                     data->ft_ies.target_ap,
2228                                     data->ft_ies.ric_ies,
2229                                     data->ft_ies.ric_ies_len) < 0) {
2230                 /* TODO: prevent MLME/driver from trying to associate? */
2231         }
2232 }
2233 #endif /* CONFIG_IEEE80211R */
2234
2235
2236 #ifdef CONFIG_IBSS_RSN
2237 static void wpa_supplicant_event_ibss_rsn_start(struct wpa_supplicant *wpa_s,
2238                                                 union wpa_event_data *data)
2239 {
2240         struct wpa_ssid *ssid;
2241         if (wpa_s->wpa_state < WPA_ASSOCIATED)
2242                 return;
2243         if (data == NULL)
2244                 return;
2245         ssid = wpa_s->current_ssid;
2246         if (ssid == NULL)
2247                 return;
2248         if (ssid->mode != WPAS_MODE_IBSS || !wpa_key_mgmt_wpa(ssid->key_mgmt))
2249                 return;
2250
2251         ibss_rsn_start(wpa_s->ibss_rsn, data->ibss_rsn_start.peer);
2252 }
2253 #endif /* CONFIG_IBSS_RSN */
2254
2255
2256 #ifdef CONFIG_IEEE80211R
2257 static void ft_rx_action(struct wpa_supplicant *wpa_s, const u8 *data,
2258                          size_t len)
2259 {
2260         const u8 *sta_addr, *target_ap_addr;
2261         u16 status;
2262
2263         wpa_hexdump(MSG_MSGDUMP, "FT: RX Action", data, len);
2264         if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME))
2265                 return; /* only SME case supported for now */
2266         if (len < 1 + 2 * ETH_ALEN + 2)
2267                 return;
2268         if (data[0] != 2)
2269                 return; /* Only FT Action Response is supported for now */
2270         sta_addr = data + 1;
2271         target_ap_addr = data + 1 + ETH_ALEN;
2272         status = WPA_GET_LE16(data + 1 + 2 * ETH_ALEN);
2273         wpa_dbg(wpa_s, MSG_DEBUG, "FT: Received FT Action Response: STA "
2274                 MACSTR " TargetAP " MACSTR " status %u",
2275                 MAC2STR(sta_addr), MAC2STR(target_ap_addr), status);
2276
2277         if (os_memcmp(sta_addr, wpa_s->own_addr, ETH_ALEN) != 0) {
2278                 wpa_dbg(wpa_s, MSG_DEBUG, "FT: Foreign STA Address " MACSTR
2279                         " in FT Action Response", MAC2STR(sta_addr));
2280                 return;
2281         }
2282
2283         if (status) {
2284                 wpa_dbg(wpa_s, MSG_DEBUG, "FT: FT Action Response indicates "
2285                         "failure (status code %d)", status);
2286                 /* TODO: report error to FT code(?) */
2287                 return;
2288         }
2289
2290         if (wpa_ft_process_response(wpa_s->wpa, data + 1 + 2 * ETH_ALEN + 2,
2291                                     len - (1 + 2 * ETH_ALEN + 2), 1,
2292                                     target_ap_addr, NULL, 0) < 0)
2293                 return;
2294
2295 #ifdef CONFIG_SME
2296         {
2297                 struct wpa_bss *bss;
2298                 bss = wpa_bss_get_bssid(wpa_s, target_ap_addr);
2299                 if (bss)
2300                         wpa_s->sme.freq = bss->freq;
2301                 wpa_s->sme.auth_alg = WPA_AUTH_ALG_FT;
2302                 sme_associate(wpa_s, WPAS_MODE_INFRA, target_ap_addr,
2303                               WLAN_AUTH_FT);
2304         }
2305 #endif /* CONFIG_SME */
2306 }
2307 #endif /* CONFIG_IEEE80211R */
2308
2309
2310 static void wpa_supplicant_event_unprot_deauth(struct wpa_supplicant *wpa_s,
2311                                                struct unprot_deauth *e)
2312 {
2313 #ifdef CONFIG_IEEE80211W
2314         wpa_printf(MSG_DEBUG, "Unprotected Deauthentication frame "
2315                    "dropped: " MACSTR " -> " MACSTR
2316                    " (reason code %u)",
2317                    MAC2STR(e->sa), MAC2STR(e->da), e->reason_code);
2318         sme_event_unprot_disconnect(wpa_s, e->sa, e->da, e->reason_code);
2319 #endif /* CONFIG_IEEE80211W */
2320 }
2321
2322
2323 static void wpa_supplicant_event_unprot_disassoc(struct wpa_supplicant *wpa_s,
2324                                                  struct unprot_disassoc *e)
2325 {
2326 #ifdef CONFIG_IEEE80211W
2327         wpa_printf(MSG_DEBUG, "Unprotected Disassociation frame "
2328                    "dropped: " MACSTR " -> " MACSTR
2329                    " (reason code %u)",
2330                    MAC2STR(e->sa), MAC2STR(e->da), e->reason_code);
2331         sme_event_unprot_disconnect(wpa_s, e->sa, e->da, e->reason_code);
2332 #endif /* CONFIG_IEEE80211W */
2333 }
2334
2335
2336 void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
2337                           union wpa_event_data *data)
2338 {
2339         struct wpa_supplicant *wpa_s = ctx;
2340         u16 reason_code = 0;
2341         int locally_generated = 0;
2342
2343         if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED &&
2344             event != EVENT_INTERFACE_ENABLED &&
2345             event != EVENT_INTERFACE_STATUS &&
2346             event != EVENT_SCHED_SCAN_STOPPED) {
2347                 wpa_dbg(wpa_s, MSG_DEBUG,
2348                         "Ignore event %s (%d) while interface is disabled",
2349                         event_to_string(event), event);
2350                 return;
2351         }
2352
2353 #ifndef CONFIG_NO_STDOUT_DEBUG
2354 {
2355         int level = MSG_DEBUG;
2356
2357         if (event == EVENT_RX_MGMT && data->rx_mgmt.frame_len >= 24) {
2358                 const struct ieee80211_hdr *hdr;
2359                 u16 fc;
2360                 hdr = (const struct ieee80211_hdr *) data->rx_mgmt.frame;
2361                 fc = le_to_host16(hdr->frame_control);
2362                 if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
2363                     WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON)
2364                         level = MSG_EXCESSIVE;
2365         }
2366
2367         wpa_dbg(wpa_s, level, "Event %s (%d) received",
2368                 event_to_string(event), event);
2369 }
2370 #endif /* CONFIG_NO_STDOUT_DEBUG */
2371
2372         switch (event) {
2373         case EVENT_AUTH:
2374                 sme_event_auth(wpa_s, data);
2375                 break;
2376         case EVENT_ASSOC:
2377                 wpa_supplicant_event_assoc(wpa_s, data);
2378                 break;
2379         case EVENT_DISASSOC:
2380                 wpa_dbg(wpa_s, MSG_DEBUG, "Disassociation notification");
2381                 if (data) {
2382                         wpa_dbg(wpa_s, MSG_DEBUG, " * reason %u%s",
2383                                 data->disassoc_info.reason_code,
2384                                 data->disassoc_info.locally_generated ?
2385                                 " (locally generated)" : "");
2386                         if (data->disassoc_info.addr)
2387                                 wpa_dbg(wpa_s, MSG_DEBUG, " * address " MACSTR,
2388                                         MAC2STR(data->disassoc_info.addr));
2389                 }
2390 #ifdef CONFIG_AP
2391                 if (wpa_s->ap_iface && data && data->disassoc_info.addr) {
2392                         hostapd_notif_disassoc(wpa_s->ap_iface->bss[0],
2393                                                data->disassoc_info.addr);
2394                         break;
2395                 }
2396                 if (wpa_s->ap_iface) {
2397                         wpa_dbg(wpa_s, MSG_DEBUG, "Ignore disassoc event in "
2398                                 "AP mode");
2399                         break;
2400                 }
2401 #endif /* CONFIG_AP */
2402                 if (data) {
2403                         reason_code = data->disassoc_info.reason_code;
2404                         locally_generated =
2405                                 data->disassoc_info.locally_generated;
2406                         wpa_hexdump(MSG_DEBUG, "Disassociation frame IE(s)",
2407                                     data->disassoc_info.ie,
2408                                     data->disassoc_info.ie_len);
2409 #ifdef CONFIG_P2P
2410                         wpas_p2p_disassoc_notif(
2411                                 wpa_s, data->disassoc_info.addr, reason_code,
2412                                 data->disassoc_info.ie,
2413                                 data->disassoc_info.ie_len,
2414                                 locally_generated);
2415 #endif /* CONFIG_P2P */
2416                 }
2417                 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
2418                         sme_event_disassoc(wpa_s, data);
2419                 /* fall through */
2420         case EVENT_DEAUTH:
2421                 if (event == EVENT_DEAUTH) {
2422                         wpa_dbg(wpa_s, MSG_DEBUG,
2423                                 "Deauthentication notification");
2424                         if (data) {
2425                                 reason_code = data->deauth_info.reason_code;
2426                                 locally_generated =
2427                                         data->deauth_info.locally_generated;
2428                                 wpa_dbg(wpa_s, MSG_DEBUG, " * reason %u%s",
2429                                         data->deauth_info.reason_code,
2430                                         data->deauth_info.locally_generated ?
2431                                         " (locally generated)" : "");
2432                                 if (data->deauth_info.addr) {
2433                                         wpa_dbg(wpa_s, MSG_DEBUG, " * address "
2434                                                 MACSTR,
2435                                                 MAC2STR(data->deauth_info.
2436                                                         addr));
2437                                 }
2438                                 wpa_hexdump(MSG_DEBUG,
2439                                             "Deauthentication frame IE(s)",
2440                                             data->deauth_info.ie,
2441                                             data->deauth_info.ie_len);
2442                         }
2443                 }
2444 #ifdef CONFIG_AP
2445                 if (wpa_s->ap_iface && data && data->deauth_info.addr) {
2446                         hostapd_notif_disassoc(wpa_s->ap_iface->bss[0],
2447                                                data->deauth_info.addr);
2448                         break;
2449                 }
2450                 if (wpa_s->ap_iface) {
2451                         wpa_dbg(wpa_s, MSG_DEBUG, "Ignore deauth event in "
2452                                 "AP mode");
2453                         break;
2454                 }
2455 #endif /* CONFIG_AP */
2456                 wpa_supplicant_event_disassoc(wpa_s, reason_code,
2457                                               locally_generated);
2458                 if (reason_code == WLAN_REASON_IEEE_802_1X_AUTH_FAILED ||
2459                     ((wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
2460                       (wpa_s->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)) &&
2461                      eapol_sm_failed(wpa_s->eapol)))
2462                         wpas_auth_failed(wpa_s);
2463 #ifdef CONFIG_P2P
2464                 if (event == EVENT_DEAUTH && data) {
2465                         if (wpas_p2p_deauth_notif(wpa_s,
2466                                                   data->deauth_info.addr,
2467                                                   reason_code,
2468                                                   data->deauth_info.ie,
2469                                                   data->deauth_info.ie_len,
2470                                                   locally_generated) > 0) {
2471                                 /*
2472                                  * The interface was removed, so cannot
2473                                  * continue processing any additional
2474                                  * operations after this.
2475                                  */
2476                                 break;
2477                         }
2478                 }
2479 #endif /* CONFIG_P2P */
2480                 wpa_supplicant_event_disassoc_finish(wpa_s, reason_code,
2481                                                      locally_generated);
2482                 break;
2483         case EVENT_MICHAEL_MIC_FAILURE:
2484                 wpa_supplicant_event_michael_mic_failure(wpa_s, data);
2485                 break;
2486 #ifndef CONFIG_NO_SCAN_PROCESSING
2487         case EVENT_SCAN_RESULTS:
2488                 wpa_supplicant_event_scan_results(wpa_s, data);
2489 #ifdef CONFIG_P2P
2490         if (wpa_s->global->p2p_cb_on_scan_complete && !wpa_s->global->p2p_disabled &&
2491             wpa_s->global->p2p != NULL &&
2492             wpa_s->wpa_state != WPA_AUTHENTICATING &&
2493             wpa_s->wpa_state != WPA_ASSOCIATING) {
2494                 wpa_s->global->p2p_cb_on_scan_complete = 0;
2495                 if (p2p_other_scan_completed(wpa_s->global->p2p) == 1) {
2496                         wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Pending P2P operation "
2497                                 "continued after scan result processing");
2498                 }
2499         }
2500 #endif /* CONFIG_P2P */
2501                 break;
2502 #endif /* CONFIG_NO_SCAN_PROCESSING */
2503         case EVENT_ASSOCINFO:
2504                 wpa_supplicant_event_associnfo(wpa_s, data);
2505                 break;
2506         case EVENT_INTERFACE_STATUS:
2507                 wpa_supplicant_event_interface_status(wpa_s, data);
2508                 break;
2509         case EVENT_PMKID_CANDIDATE:
2510                 wpa_supplicant_event_pmkid_candidate(wpa_s, data);
2511                 break;
2512 #ifdef CONFIG_PEERKEY
2513         case EVENT_STKSTART:
2514                 wpa_supplicant_event_stkstart(wpa_s, data);
2515                 break;
2516 #endif /* CONFIG_PEERKEY */
2517 #ifdef CONFIG_TDLS
2518         case EVENT_TDLS:
2519                 wpa_supplicant_event_tdls(wpa_s, data);
2520                 break;
2521 #endif /* CONFIG_TDLS */
2522 #ifdef CONFIG_WNM
2523         case EVENT_WNM:
2524                 wpa_supplicant_event_wnm(wpa_s, data);
2525                 break;
2526 #endif /* CONFIG_WNM */
2527 #ifdef CONFIG_IEEE80211R
2528         case EVENT_FT_RESPONSE:
2529                 wpa_supplicant_event_ft_response(wpa_s, data);
2530                 break;
2531 #endif /* CONFIG_IEEE80211R */
2532 #ifdef CONFIG_IBSS_RSN
2533         case EVENT_IBSS_RSN_START:
2534                 wpa_supplicant_event_ibss_rsn_start(wpa_s, data);
2535                 break;
2536 #endif /* CONFIG_IBSS_RSN */
2537         case EVENT_ASSOC_REJECT:
2538                 if (data->assoc_reject.bssid)
2539                         wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_ASSOC_REJECT
2540                                 "bssid=" MACSTR " status_code=%u",
2541                                 MAC2STR(data->assoc_reject.bssid),
2542                                 data->assoc_reject.status_code);
2543                 else
2544                         wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_ASSOC_REJECT
2545                                 "status_code=%u",
2546                                 data->assoc_reject.status_code);
2547                 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
2548                         sme_event_assoc_reject(wpa_s, data);
2549                 else {
2550                         const u8 *bssid = data->assoc_reject.bssid;
2551                         if (bssid == NULL || is_zero_ether_addr(bssid))
2552                                 bssid = wpa_s->pending_bssid;
2553                         wpas_connection_failed(wpa_s, bssid);
2554                         wpa_supplicant_mark_disassoc(wpa_s);
2555                 }
2556                 break;
2557         case EVENT_AUTH_TIMED_OUT:
2558                 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
2559                         sme_event_auth_timed_out(wpa_s, data);
2560                 break;
2561         case EVENT_ASSOC_TIMED_OUT:
2562                 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
2563                         sme_event_assoc_timed_out(wpa_s, data);
2564                 break;
2565         case EVENT_TX_STATUS:
2566                 wpa_dbg(wpa_s, MSG_DEBUG, "EVENT_TX_STATUS dst=" MACSTR
2567                         " type=%d stype=%d",
2568                         MAC2STR(data->tx_status.dst),
2569                         data->tx_status.type, data->tx_status.stype);
2570 #ifdef CONFIG_AP
2571                 if (wpa_s->ap_iface == NULL) {
2572 #ifdef CONFIG_OFFCHANNEL
2573                         if (data->tx_status.type == WLAN_FC_TYPE_MGMT &&
2574                             data->tx_status.stype == WLAN_FC_STYPE_ACTION)
2575                                 offchannel_send_action_tx_status(
2576                                         wpa_s, data->tx_status.dst,
2577                                         data->tx_status.data,
2578                                         data->tx_status.data_len,
2579                                         data->tx_status.ack ?
2580                                         OFFCHANNEL_SEND_ACTION_SUCCESS :
2581                                         OFFCHANNEL_SEND_ACTION_NO_ACK);
2582 #endif /* CONFIG_OFFCHANNEL */
2583                         break;
2584                 }
2585 #endif /* CONFIG_AP */
2586 #ifdef CONFIG_OFFCHANNEL
2587                 wpa_dbg(wpa_s, MSG_DEBUG, "EVENT_TX_STATUS pending_dst="
2588                         MACSTR, MAC2STR(wpa_s->parent->pending_action_dst));
2589                 /*
2590                  * Catch TX status events for Action frames we sent via group
2591                  * interface in GO mode.
2592                  */
2593                 if (data->tx_status.type == WLAN_FC_TYPE_MGMT &&
2594                     data->tx_status.stype == WLAN_FC_STYPE_ACTION &&
2595                     os_memcmp(wpa_s->parent->pending_action_dst,
2596                               data->tx_status.dst, ETH_ALEN) == 0) {
2597                         offchannel_send_action_tx_status(
2598                                 wpa_s->parent, data->tx_status.dst,
2599                                 data->tx_status.data,
2600                                 data->tx_status.data_len,
2601                                 data->tx_status.ack ?
2602                                 OFFCHANNEL_SEND_ACTION_SUCCESS :
2603                                 OFFCHANNEL_SEND_ACTION_NO_ACK);
2604                         break;
2605                 }
2606 #endif /* CONFIG_OFFCHANNEL */
2607 #ifdef CONFIG_AP
2608                 switch (data->tx_status.type) {
2609                 case WLAN_FC_TYPE_MGMT:
2610                         ap_mgmt_tx_cb(wpa_s, data->tx_status.data,
2611                                       data->tx_status.data_len,
2612                                       data->tx_status.stype,
2613                                       data->tx_status.ack);
2614                         break;
2615                 case WLAN_FC_TYPE_DATA:
2616                         ap_tx_status(wpa_s, data->tx_status.dst,
2617                                      data->tx_status.data,
2618                                      data->tx_status.data_len,
2619                                      data->tx_status.ack);
2620                         break;
2621                 }
2622 #endif /* CONFIG_AP */
2623                 break;
2624 #ifdef CONFIG_AP
2625         case EVENT_EAPOL_TX_STATUS:
2626                 ap_eapol_tx_status(wpa_s, data->eapol_tx_status.dst,
2627                                    data->eapol_tx_status.data,
2628                                    data->eapol_tx_status.data_len,
2629                                    data->eapol_tx_status.ack);
2630                 break;
2631         case EVENT_DRIVER_CLIENT_POLL_OK:
2632                 ap_client_poll_ok(wpa_s, data->client_poll.addr);
2633                 break;
2634         case EVENT_RX_FROM_UNKNOWN:
2635                 if (wpa_s->ap_iface == NULL)
2636                         break;
2637                 ap_rx_from_unknown_sta(wpa_s, data->rx_from_unknown.addr,
2638                                        data->rx_from_unknown.wds);
2639                 break;
2640         case EVENT_CH_SWITCH:
2641                 if (!data)
2642                         break;
2643                 if (!wpa_s->ap_iface) {
2644                         wpa_dbg(wpa_s, MSG_DEBUG, "AP: Ignore channel switch "
2645                                 "event in non-AP mode");
2646                         break;
2647                 }
2648
2649 #ifdef CONFIG_AP
2650                 wpas_ap_ch_switch(wpa_s, data->ch_switch.freq,
2651                                   data->ch_switch.ht_enabled,
2652                                   data->ch_switch.ch_offset);
2653 #endif /* CONFIG_AP */
2654                 break;
2655         case EVENT_RX_MGMT: {
2656                 u16 fc, stype;
2657                 const struct ieee80211_mgmt *mgmt;
2658
2659                 mgmt = (const struct ieee80211_mgmt *)
2660                         data->rx_mgmt.frame;
2661                 fc = le_to_host16(mgmt->frame_control);
2662                 stype = WLAN_FC_GET_STYPE(fc);
2663
2664                 if (wpa_s->ap_iface == NULL) {
2665 #ifdef CONFIG_P2P
2666                         if (stype == WLAN_FC_STYPE_PROBE_REQ &&
2667                             data->rx_mgmt.frame_len > 24) {
2668                                 const u8 *src = mgmt->sa;
2669                                 const u8 *ie = mgmt->u.probe_req.variable;
2670                                 size_t ie_len = data->rx_mgmt.frame_len -
2671                                         (mgmt->u.probe_req.variable -
2672                                          data->rx_mgmt.frame);
2673                                 wpas_p2p_probe_req_rx(
2674                                         wpa_s, src, mgmt->da,
2675                                         mgmt->bssid, ie, ie_len,
2676                                         data->rx_mgmt.ssi_signal);
2677                                 break;
2678                         }
2679 #endif /* CONFIG_P2P */
2680                         wpa_dbg(wpa_s, MSG_DEBUG, "AP: ignore received "
2681                                 "management frame in non-AP mode");
2682                         break;
2683                 }
2684
2685                 if (stype == WLAN_FC_STYPE_PROBE_REQ &&
2686                     data->rx_mgmt.frame_len > 24) {
2687                         const u8 *ie = mgmt->u.probe_req.variable;
2688                         size_t ie_len = data->rx_mgmt.frame_len -
2689                                 (mgmt->u.probe_req.variable -
2690                                  data->rx_mgmt.frame);
2691
2692                         wpas_notify_preq(wpa_s, mgmt->sa, mgmt->da,
2693                                          mgmt->bssid, ie, ie_len,
2694                                          data->rx_mgmt.ssi_signal);
2695                 }
2696
2697                 ap_mgmt_rx(wpa_s, &data->rx_mgmt);
2698                 break;
2699                 }
2700 #endif /* CONFIG_AP */
2701         case EVENT_RX_ACTION:
2702                 wpa_dbg(wpa_s, MSG_DEBUG, "Received Action frame: SA=" MACSTR
2703                         " Category=%u DataLen=%d freq=%d MHz",
2704                         MAC2STR(data->rx_action.sa),
2705                         data->rx_action.category, (int) data->rx_action.len,
2706                         data->rx_action.freq);
2707 #ifdef CONFIG_IEEE80211R
2708                 if (data->rx_action.category == WLAN_ACTION_FT) {
2709                         ft_rx_action(wpa_s, data->rx_action.data,
2710                                      data->rx_action.len);
2711                         break;
2712                 }
2713 #endif /* CONFIG_IEEE80211R */
2714 #ifdef CONFIG_IEEE80211W
2715 #ifdef CONFIG_SME
2716                 if (data->rx_action.category == WLAN_ACTION_SA_QUERY) {
2717                         sme_sa_query_rx(wpa_s, data->rx_action.sa,
2718                                         data->rx_action.data,
2719                                         data->rx_action.len);
2720                         break;
2721                 }
2722 #endif /* CONFIG_SME */
2723 #endif /* CONFIG_IEEE80211W */
2724 #ifdef CONFIG_WNM
2725                 if (data->rx_action.category == WLAN_ACTION_WNM) {
2726                         ieee802_11_rx_wnm_action(wpa_s, &data->rx_action);
2727                         break;
2728                 }
2729 #endif /* CONFIG_WNM */
2730 #ifdef CONFIG_GAS
2731                 if (data->rx_action.category == WLAN_ACTION_PUBLIC &&
2732                     gas_query_rx(wpa_s->gas, data->rx_action.da,
2733                                  data->rx_action.sa, data->rx_action.bssid,
2734                                  data->rx_action.data, data->rx_action.len,
2735                                  data->rx_action.freq) == 0)
2736                         break;
2737 #endif /* CONFIG_GAS */
2738 #ifdef CONFIG_TDLS
2739                 if (data->rx_action.category == WLAN_ACTION_PUBLIC &&
2740                     data->rx_action.len >= 4 &&
2741                     data->rx_action.data[0] == WLAN_TDLS_DISCOVERY_RESPONSE) {
2742                         wpa_dbg(wpa_s, MSG_DEBUG, "TDLS: Received Discovery "
2743                                 "Response from " MACSTR,
2744                                 MAC2STR(data->rx_action.sa));
2745                         break;
2746                 }
2747 #endif /* CONFIG_TDLS */
2748 #ifdef CONFIG_P2P
2749                 wpas_p2p_rx_action(wpa_s, data->rx_action.da,
2750                                    data->rx_action.sa,
2751                                    data->rx_action.bssid,
2752                                    data->rx_action.category,
2753                                    data->rx_action.data,
2754                                    data->rx_action.len, data->rx_action.freq);
2755 #endif /* CONFIG_P2P */
2756                 break;
2757         case EVENT_RX_PROBE_REQ:
2758                 if (data->rx_probe_req.sa == NULL ||
2759                     data->rx_probe_req.ie == NULL)
2760                         break;
2761 #ifdef CONFIG_AP
2762                 if (wpa_s->ap_iface) {
2763                         hostapd_probe_req_rx(wpa_s->ap_iface->bss[0],
2764                                              data->rx_probe_req.sa,
2765                                              data->rx_probe_req.da,
2766                                              data->rx_probe_req.bssid,
2767                                              data->rx_probe_req.ie,
2768                                              data->rx_probe_req.ie_len,
2769                                              data->rx_probe_req.ssi_signal);
2770                         break;
2771                 }
2772 #endif /* CONFIG_AP */
2773 #ifdef CONFIG_P2P
2774                 wpas_p2p_probe_req_rx(wpa_s, data->rx_probe_req.sa,
2775                                       data->rx_probe_req.da,
2776                                       data->rx_probe_req.bssid,
2777                                       data->rx_probe_req.ie,
2778                                       data->rx_probe_req.ie_len,
2779                                       data->rx_probe_req.ssi_signal);
2780 #endif /* CONFIG_P2P */
2781                 break;
2782         case EVENT_REMAIN_ON_CHANNEL:
2783 #ifdef CONFIG_OFFCHANNEL
2784                 offchannel_remain_on_channel_cb(
2785                         wpa_s, data->remain_on_channel.freq,
2786                         data->remain_on_channel.duration);
2787 #endif /* CONFIG_OFFCHANNEL */
2788 #ifdef CONFIG_P2P
2789                 wpas_p2p_remain_on_channel_cb(
2790                         wpa_s, data->remain_on_channel.freq,
2791                         data->remain_on_channel.duration);
2792 #endif /* CONFIG_P2P */
2793                 break;
2794         case EVENT_CANCEL_REMAIN_ON_CHANNEL:
2795 #ifdef CONFIG_OFFCHANNEL
2796                 offchannel_cancel_remain_on_channel_cb(
2797                         wpa_s, data->remain_on_channel.freq);
2798 #endif /* CONFIG_OFFCHANNEL */
2799 #ifdef CONFIG_P2P
2800                 wpas_p2p_cancel_remain_on_channel_cb(
2801                         wpa_s, data->remain_on_channel.freq);
2802 #endif /* CONFIG_P2P */
2803                 break;
2804 #ifdef CONFIG_P2P
2805         case EVENT_P2P_DEV_FOUND: {
2806                 struct p2p_peer_info peer_info;
2807
2808                 os_memset(&peer_info, 0, sizeof(peer_info));
2809                 if (data->p2p_dev_found.dev_addr)
2810                         os_memcpy(peer_info.p2p_device_addr,
2811                                   data->p2p_dev_found.dev_addr, ETH_ALEN);
2812                 if (data->p2p_dev_found.pri_dev_type)
2813                         os_memcpy(peer_info.pri_dev_type,
2814                                   data->p2p_dev_found.pri_dev_type,
2815                                   sizeof(peer_info.pri_dev_type));
2816                 if (data->p2p_dev_found.dev_name)
2817                         os_strlcpy(peer_info.device_name,
2818                                    data->p2p_dev_found.dev_name,
2819                                    sizeof(peer_info.device_name));
2820                 peer_info.config_methods = data->p2p_dev_found.config_methods;
2821                 peer_info.dev_capab = data->p2p_dev_found.dev_capab;
2822                 peer_info.group_capab = data->p2p_dev_found.group_capab;
2823
2824                 /*
2825                  * FIX: new_device=1 is not necessarily correct. We should
2826                  * maintain a P2P peer database in wpa_supplicant and update
2827                  * this information based on whether the peer is truly new.
2828                  */
2829                 wpas_dev_found(wpa_s, data->p2p_dev_found.addr, &peer_info, 1);
2830                 break;
2831                 }
2832         case EVENT_P2P_GO_NEG_REQ_RX:
2833                 wpas_go_neg_req_rx(wpa_s, data->p2p_go_neg_req_rx.src,
2834                                    data->p2p_go_neg_req_rx.dev_passwd_id);
2835                 break;
2836         case EVENT_P2P_GO_NEG_COMPLETED:
2837                 wpas_go_neg_completed(wpa_s, data->p2p_go_neg_completed.res);
2838                 break;
2839         case EVENT_P2P_PROV_DISC_REQUEST:
2840                 wpas_prov_disc_req(wpa_s, data->p2p_prov_disc_req.peer,
2841                                    data->p2p_prov_disc_req.config_methods,
2842                                    data->p2p_prov_disc_req.dev_addr,
2843                                    data->p2p_prov_disc_req.pri_dev_type,
2844                                    data->p2p_prov_disc_req.dev_name,
2845                                    data->p2p_prov_disc_req.supp_config_methods,
2846                                    data->p2p_prov_disc_req.dev_capab,
2847                                    data->p2p_prov_disc_req.group_capab,
2848                                    NULL, 0);
2849                 break;
2850         case EVENT_P2P_PROV_DISC_RESPONSE:
2851                 wpas_prov_disc_resp(wpa_s, data->p2p_prov_disc_resp.peer,
2852                                     data->p2p_prov_disc_resp.config_methods);
2853                 break;
2854         case EVENT_P2P_SD_REQUEST:
2855                 wpas_sd_request(wpa_s, data->p2p_sd_req.freq,
2856                                 data->p2p_sd_req.sa,
2857                                 data->p2p_sd_req.dialog_token,
2858                                 data->p2p_sd_req.update_indic,
2859                                 data->p2p_sd_req.tlvs,
2860                                 data->p2p_sd_req.tlvs_len);
2861                 break;
2862         case EVENT_P2P_SD_RESPONSE:
2863                 wpas_sd_response(wpa_s, data->p2p_sd_resp.sa,
2864                                  data->p2p_sd_resp.update_indic,
2865                                  data->p2p_sd_resp.tlvs,
2866                                  data->p2p_sd_resp.tlvs_len);
2867                 break;
2868 #endif /* CONFIG_P2P */
2869         case EVENT_EAPOL_RX:
2870                 wpa_supplicant_rx_eapol(wpa_s, data->eapol_rx.src,
2871                                         data->eapol_rx.data,
2872                                         data->eapol_rx.data_len);
2873                 break;
2874         case EVENT_SIGNAL_CHANGE:
2875                 bgscan_notify_signal_change(
2876                         wpa_s, data->signal_change.above_threshold,
2877                         data->signal_change.current_signal,
2878                         data->signal_change.current_noise,
2879                         data->signal_change.current_txrate);
2880                 break;
2881         case EVENT_INTERFACE_ENABLED:
2882                 wpa_dbg(wpa_s, MSG_DEBUG, "Interface was enabled");
2883                 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
2884                         wpa_supplicant_update_mac_addr(wpa_s);
2885 #ifdef CONFIG_AP
2886                         if (!wpa_s->ap_iface) {
2887                                 wpa_supplicant_set_state(wpa_s,
2888                                                          WPA_DISCONNECTED);
2889                                 wpa_supplicant_req_scan(wpa_s, 0, 0);
2890                         } else
2891                                 wpa_supplicant_set_state(wpa_s,
2892                                                          WPA_COMPLETED);
2893 #else /* CONFIG_AP */
2894                         wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
2895                         wpa_supplicant_req_scan(wpa_s, 0, 0);
2896 #endif /* CONFIG_AP */
2897                 }
2898                 break;
2899         case EVENT_INTERFACE_DISABLED:
2900                 wpa_dbg(wpa_s, MSG_DEBUG, "Interface was disabled");
2901                 wpa_supplicant_mark_disassoc(wpa_s);
2902                 wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
2903                 break;
2904         case EVENT_CHANNEL_LIST_CHANGED:
2905                 if (wpa_s->drv_priv == NULL)
2906                         break; /* Ignore event during drv initialization */
2907
2908                 free_hw_features(wpa_s);
2909                 wpa_s->hw.modes = wpa_drv_get_hw_feature_data(
2910                         wpa_s, &wpa_s->hw.num_modes, &wpa_s->hw.flags);
2911
2912 #ifdef CONFIG_P2P
2913                 wpas_p2p_update_channel_list(wpa_s);
2914 #endif /* CONFIG_P2P */
2915                 break;
2916         case EVENT_INTERFACE_UNAVAILABLE:
2917 #ifdef CONFIG_P2P
2918                 wpas_p2p_interface_unavailable(wpa_s);
2919 #endif /* CONFIG_P2P */
2920                 break;
2921         case EVENT_BEST_CHANNEL:
2922                 wpa_dbg(wpa_s, MSG_DEBUG, "Best channel event received "
2923                         "(%d %d %d)",
2924                         data->best_chan.freq_24, data->best_chan.freq_5,
2925                         data->best_chan.freq_overall);
2926                 wpa_s->best_24_freq = data->best_chan.freq_24;
2927                 wpa_s->best_5_freq = data->best_chan.freq_5;
2928                 wpa_s->best_overall_freq = data->best_chan.freq_overall;
2929 #ifdef CONFIG_P2P
2930                 wpas_p2p_update_best_channels(wpa_s, data->best_chan.freq_24,
2931                                               data->best_chan.freq_5,
2932                                               data->best_chan.freq_overall);
2933 #endif /* CONFIG_P2P */
2934                 break;
2935         case EVENT_UNPROT_DEAUTH:
2936                 wpa_supplicant_event_unprot_deauth(wpa_s,
2937                                                    &data->unprot_deauth);
2938                 break;
2939         case EVENT_UNPROT_DISASSOC:
2940                 wpa_supplicant_event_unprot_disassoc(wpa_s,
2941                                                      &data->unprot_disassoc);
2942                 break;
2943         case EVENT_STATION_LOW_ACK:
2944 #ifdef CONFIG_AP
2945                 if (wpa_s->ap_iface && data)
2946                         hostapd_event_sta_low_ack(wpa_s->ap_iface->bss[0],
2947                                                   data->low_ack.addr);
2948 #endif /* CONFIG_AP */
2949 #ifdef CONFIG_TDLS
2950                 if (data)
2951                         wpa_tdls_disable_link(wpa_s->wpa, data->low_ack.addr);
2952 #endif /* CONFIG_TDLS */
2953                 break;
2954         case EVENT_IBSS_PEER_LOST:
2955 #ifdef CONFIG_IBSS_RSN
2956                 ibss_rsn_stop(wpa_s->ibss_rsn, data->ibss_peer_lost.peer);
2957 #endif /* CONFIG_IBSS_RSN */
2958                 break;
2959         case EVENT_DRIVER_GTK_REKEY:
2960                 if (os_memcmp(data->driver_gtk_rekey.bssid,
2961                               wpa_s->bssid, ETH_ALEN))
2962                         break;
2963                 if (!wpa_s->wpa)
2964                         break;
2965                 wpa_sm_update_replay_ctr(wpa_s->wpa,
2966                                          data->driver_gtk_rekey.replay_ctr);
2967                 break;
2968         case EVENT_SCHED_SCAN_STOPPED:
2969                 wpa_s->sched_scanning = 0;
2970                 wpa_supplicant_notify_scanning(wpa_s, 0);
2971
2972                 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
2973                         break;
2974
2975                 /*
2976                  * If we timed out, start a new sched scan to continue
2977                  * searching for more SSIDs.
2978                  */
2979                 if (wpa_s->sched_scan_timed_out)
2980                         wpa_supplicant_req_sched_scan(wpa_s);
2981                 break;
2982         case EVENT_WPS_BUTTON_PUSHED:
2983 #ifdef CONFIG_WPS
2984                 wpas_wps_start_pbc(wpa_s, NULL, 0);
2985 #endif /* CONFIG_WPS */
2986                 break;
2987         case EVENT_CONNECT_FAILED_REASON:
2988 #ifdef CONFIG_AP
2989                 if (!wpa_s->ap_iface || !data)
2990                         break;
2991                 hostapd_event_connect_failed_reason(
2992                         wpa_s->ap_iface->bss[0],
2993                         data->connect_failed_reason.addr,
2994                         data->connect_failed_reason.code);
2995 #endif /* CONFIG_AP */
2996                 break;
2997         default:
2998                 wpa_msg(wpa_s, MSG_INFO, "Unknown event %d", event);
2999                 break;
3000         }
3001 }