Do not stop ongoing PNO sched_scan on association/disconnection
[mech_eap.git] / wpa_supplicant / events.c
1 /*
2  * WPA Supplicant - Driver event processing
3  * Copyright (c) 2003-2015, 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 "fst/fst.h"
27 #include "wnm_sta.h"
28 #include "notify.h"
29 #include "common/ieee802_11_defs.h"
30 #include "common/ieee802_11_common.h"
31 #include "crypto/random.h"
32 #include "blacklist.h"
33 #include "wpas_glue.h"
34 #include "wps_supplicant.h"
35 #include "ibss_rsn.h"
36 #include "sme.h"
37 #include "gas_query.h"
38 #include "p2p_supplicant.h"
39 #include "bgscan.h"
40 #include "autoscan.h"
41 #include "ap.h"
42 #include "bss.h"
43 #include "scan.h"
44 #include "offchannel.h"
45 #include "interworking.h"
46 #include "mesh.h"
47 #include "mesh_mpm.h"
48 #include "wmm_ac.h"
49
50
51 #ifndef CONFIG_NO_SCAN_PROCESSING
52 static int wpas_select_network_from_last_scan(struct wpa_supplicant *wpa_s,
53                                               int new_scan, int own_request);
54 #endif /* CONFIG_NO_SCAN_PROCESSING */
55
56
57 static int wpas_temp_disabled(struct wpa_supplicant *wpa_s,
58                               struct wpa_ssid *ssid)
59 {
60         struct os_reltime now;
61
62         if (ssid == NULL || ssid->disabled_until.sec == 0)
63                 return 0;
64
65         os_get_reltime(&now);
66         if (ssid->disabled_until.sec > now.sec)
67                 return ssid->disabled_until.sec - now.sec;
68
69         wpas_clear_temp_disabled(wpa_s, ssid, 0);
70
71         return 0;
72 }
73
74
75 /**
76  * wpas_reenabled_network_time - Time until first network is re-enabled
77  * @wpa_s: Pointer to wpa_supplicant data
78  * Returns: If all enabled networks are temporarily disabled, returns the time
79  *      (in sec) until the first network is re-enabled. Otherwise returns 0.
80  *
81  * This function is used in case all enabled networks are temporarily disabled,
82  * in which case it returns the time (in sec) that the first network will be
83  * re-enabled. The function assumes that at least one network is enabled.
84  */
85 static int wpas_reenabled_network_time(struct wpa_supplicant *wpa_s)
86 {
87         struct wpa_ssid *ssid;
88         int disabled_for, res = 0;
89
90 #ifdef CONFIG_INTERWORKING
91         if (wpa_s->conf->auto_interworking && wpa_s->conf->interworking &&
92             wpa_s->conf->cred)
93                 return 0;
94 #endif /* CONFIG_INTERWORKING */
95
96         for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
97                 if (ssid->disabled)
98                         continue;
99
100                 disabled_for = wpas_temp_disabled(wpa_s, ssid);
101                 if (!disabled_for)
102                         return 0;
103
104                 if (!res || disabled_for < res)
105                         res = disabled_for;
106         }
107
108         return res;
109 }
110
111
112 void wpas_network_reenabled(void *eloop_ctx, void *timeout_ctx)
113 {
114         struct wpa_supplicant *wpa_s = eloop_ctx;
115
116         if (wpa_s->disconnected || wpa_s->wpa_state != WPA_SCANNING)
117                 return;
118
119         wpa_dbg(wpa_s, MSG_DEBUG,
120                 "Try to associate due to network getting re-enabled");
121         if (wpa_supplicant_fast_associate(wpa_s) != 1) {
122                 wpa_supplicant_cancel_sched_scan(wpa_s);
123                 wpa_supplicant_req_scan(wpa_s, 0, 0);
124         }
125 }
126
127
128 static struct wpa_bss * wpa_supplicant_get_new_bss(
129         struct wpa_supplicant *wpa_s, const u8 *bssid)
130 {
131         struct wpa_bss *bss = NULL;
132         struct wpa_ssid *ssid = wpa_s->current_ssid;
133
134         if (ssid->ssid_len > 0)
135                 bss = wpa_bss_get(wpa_s, bssid, ssid->ssid, ssid->ssid_len);
136         if (!bss)
137                 bss = wpa_bss_get_bssid(wpa_s, bssid);
138
139         return bss;
140 }
141
142
143 static void wpa_supplicant_update_current_bss(struct wpa_supplicant *wpa_s)
144 {
145         struct wpa_bss *bss = wpa_supplicant_get_new_bss(wpa_s, wpa_s->bssid);
146
147         if (!bss) {
148                 wpa_supplicant_update_scan_results(wpa_s);
149
150                 /* Get the BSS from the new scan results */
151                 bss = wpa_supplicant_get_new_bss(wpa_s, wpa_s->bssid);
152         }
153
154         if (bss)
155                 wpa_s->current_bss = bss;
156 }
157
158
159 static int wpa_supplicant_select_config(struct wpa_supplicant *wpa_s)
160 {
161         struct wpa_ssid *ssid, *old_ssid;
162         u8 drv_ssid[SSID_MAX_LEN];
163         size_t drv_ssid_len;
164         int res;
165
166         if (wpa_s->conf->ap_scan == 1 && wpa_s->current_ssid) {
167                 wpa_supplicant_update_current_bss(wpa_s);
168
169                 if (wpa_s->current_ssid->ssid_len == 0)
170                         return 0; /* current profile still in use */
171                 res = wpa_drv_get_ssid(wpa_s, drv_ssid);
172                 if (res < 0) {
173                         wpa_msg(wpa_s, MSG_INFO,
174                                 "Failed to read SSID from driver");
175                         return 0; /* try to use current profile */
176                 }
177                 drv_ssid_len = res;
178
179                 if (drv_ssid_len == wpa_s->current_ssid->ssid_len &&
180                     os_memcmp(drv_ssid, wpa_s->current_ssid->ssid,
181                               drv_ssid_len) == 0)
182                         return 0; /* current profile still in use */
183
184                 wpa_msg(wpa_s, MSG_DEBUG,
185                         "Driver-initiated BSS selection changed the SSID to %s",
186                         wpa_ssid_txt(drv_ssid, drv_ssid_len));
187                 /* continue selecting a new network profile */
188         }
189
190         wpa_dbg(wpa_s, MSG_DEBUG, "Select network based on association "
191                 "information");
192         ssid = wpa_supplicant_get_ssid(wpa_s);
193         if (ssid == NULL) {
194                 wpa_msg(wpa_s, MSG_INFO,
195                         "No network configuration found for the current AP");
196                 return -1;
197         }
198
199         if (wpas_network_disabled(wpa_s, ssid)) {
200                 wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is disabled");
201                 return -1;
202         }
203
204         if (disallowed_bssid(wpa_s, wpa_s->bssid) ||
205             disallowed_ssid(wpa_s, ssid->ssid, ssid->ssid_len)) {
206                 wpa_dbg(wpa_s, MSG_DEBUG, "Selected BSS is disallowed");
207                 return -1;
208         }
209
210         res = wpas_temp_disabled(wpa_s, ssid);
211         if (res > 0) {
212                 wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is temporarily "
213                         "disabled for %d second(s)", res);
214                 return -1;
215         }
216
217         wpa_dbg(wpa_s, MSG_DEBUG, "Network configuration found for the "
218                 "current AP");
219         if (wpa_key_mgmt_wpa_any(ssid->key_mgmt)) {
220                 u8 wpa_ie[80];
221                 size_t wpa_ie_len = sizeof(wpa_ie);
222                 if (wpa_supplicant_set_suites(wpa_s, NULL, ssid,
223                                               wpa_ie, &wpa_ie_len) < 0)
224                         wpa_dbg(wpa_s, MSG_DEBUG, "Could not set WPA suites");
225         } else {
226                 wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
227         }
228
229         if (wpa_s->current_ssid && wpa_s->current_ssid != ssid)
230                 eapol_sm_invalidate_cached_session(wpa_s->eapol);
231         old_ssid = wpa_s->current_ssid;
232         wpa_s->current_ssid = ssid;
233
234         wpa_supplicant_update_current_bss(wpa_s);
235
236         wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
237         wpa_supplicant_initiate_eapol(wpa_s);
238         if (old_ssid != wpa_s->current_ssid)
239                 wpas_notify_network_changed(wpa_s);
240
241         return 0;
242 }
243
244
245 void wpa_supplicant_stop_countermeasures(void *eloop_ctx, void *sock_ctx)
246 {
247         struct wpa_supplicant *wpa_s = eloop_ctx;
248
249         if (wpa_s->countermeasures) {
250                 wpa_s->countermeasures = 0;
251                 wpa_drv_set_countermeasures(wpa_s, 0);
252                 wpa_msg(wpa_s, MSG_INFO, "WPA: TKIP countermeasures stopped");
253
254                 /*
255                  * It is possible that the device is sched scanning, which means
256                  * that a connection attempt will be done only when we receive
257                  * scan results. However, in this case, it would be preferable
258                  * to scan and connect immediately, so cancel the sched_scan and
259                  * issue a regular scan flow.
260                  */
261                 wpa_supplicant_cancel_sched_scan(wpa_s);
262                 wpa_supplicant_req_scan(wpa_s, 0, 0);
263         }
264 }
265
266
267 void wpa_supplicant_mark_disassoc(struct wpa_supplicant *wpa_s)
268 {
269         int bssid_changed;
270
271         wnm_bss_keep_alive_deinit(wpa_s);
272
273 #ifdef CONFIG_IBSS_RSN
274         ibss_rsn_deinit(wpa_s->ibss_rsn);
275         wpa_s->ibss_rsn = NULL;
276 #endif /* CONFIG_IBSS_RSN */
277
278 #ifdef CONFIG_AP
279         wpa_supplicant_ap_deinit(wpa_s);
280 #endif /* CONFIG_AP */
281
282         if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
283                 return;
284
285         wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
286         bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
287         os_memset(wpa_s->bssid, 0, ETH_ALEN);
288         os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
289         sme_clear_on_disassoc(wpa_s);
290         wpa_s->current_bss = NULL;
291         wpa_s->assoc_freq = 0;
292
293         if (bssid_changed)
294                 wpas_notify_bssid_changed(wpa_s);
295
296         eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
297         eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
298         if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt))
299                 eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
300         wpa_s->ap_ies_from_associnfo = 0;
301         wpa_s->current_ssid = NULL;
302         eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
303         wpa_s->key_mgmt = 0;
304
305         wpas_rrm_reset(wpa_s);
306 }
307
308
309 static void wpa_find_assoc_pmkid(struct wpa_supplicant *wpa_s)
310 {
311         struct wpa_ie_data ie;
312         int pmksa_set = -1;
313         size_t i;
314
315         if (wpa_sm_parse_own_wpa_ie(wpa_s->wpa, &ie) < 0 ||
316             ie.pmkid == NULL)
317                 return;
318
319         for (i = 0; i < ie.num_pmkid; i++) {
320                 pmksa_set = pmksa_cache_set_current(wpa_s->wpa,
321                                                     ie.pmkid + i * PMKID_LEN,
322                                                     NULL, NULL, 0);
323                 if (pmksa_set == 0) {
324                         eapol_sm_notify_pmkid_attempt(wpa_s->eapol);
325                         break;
326                 }
327         }
328
329         wpa_dbg(wpa_s, MSG_DEBUG, "RSN: PMKID from assoc IE %sfound from "
330                 "PMKSA cache", pmksa_set == 0 ? "" : "not ");
331 }
332
333
334 static void wpa_supplicant_event_pmkid_candidate(struct wpa_supplicant *wpa_s,
335                                                  union wpa_event_data *data)
336 {
337         if (data == NULL) {
338                 wpa_dbg(wpa_s, MSG_DEBUG, "RSN: No data in PMKID candidate "
339                         "event");
340                 return;
341         }
342         wpa_dbg(wpa_s, MSG_DEBUG, "RSN: PMKID candidate event - bssid=" MACSTR
343                 " index=%d preauth=%d",
344                 MAC2STR(data->pmkid_candidate.bssid),
345                 data->pmkid_candidate.index,
346                 data->pmkid_candidate.preauth);
347
348         pmksa_candidate_add(wpa_s->wpa, data->pmkid_candidate.bssid,
349                             data->pmkid_candidate.index,
350                             data->pmkid_candidate.preauth);
351 }
352
353
354 static int wpa_supplicant_dynamic_keys(struct wpa_supplicant *wpa_s)
355 {
356         if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
357             wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE)
358                 return 0;
359
360 #ifdef IEEE8021X_EAPOL
361         if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA &&
362             wpa_s->current_ssid &&
363             !(wpa_s->current_ssid->eapol_flags &
364               (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
365                EAPOL_FLAG_REQUIRE_KEY_BROADCAST))) {
366                 /* IEEE 802.1X, but not using dynamic WEP keys (i.e., either
367                  * plaintext or static WEP keys). */
368                 return 0;
369         }
370 #endif /* IEEE8021X_EAPOL */
371
372         return 1;
373 }
374
375
376 /**
377  * wpa_supplicant_scard_init - Initialize SIM/USIM access with PC/SC
378  * @wpa_s: pointer to wpa_supplicant data
379  * @ssid: Configuration data for the network
380  * Returns: 0 on success, -1 on failure
381  *
382  * This function is called when starting authentication with a network that is
383  * configured to use PC/SC for SIM/USIM access (EAP-SIM or EAP-AKA).
384  */
385 int wpa_supplicant_scard_init(struct wpa_supplicant *wpa_s,
386                               struct wpa_ssid *ssid)
387 {
388 #ifdef IEEE8021X_EAPOL
389 #ifdef PCSC_FUNCS
390         int aka = 0, sim = 0;
391
392         if ((ssid != NULL && ssid->eap.pcsc == NULL) ||
393             wpa_s->scard != NULL || wpa_s->conf->external_sim)
394                 return 0;
395
396         if (ssid == NULL || ssid->eap.eap_methods == NULL) {
397                 sim = 1;
398                 aka = 1;
399         } else {
400                 struct eap_method_type *eap = ssid->eap.eap_methods;
401                 while (eap->vendor != EAP_VENDOR_IETF ||
402                        eap->method != EAP_TYPE_NONE) {
403                         if (eap->vendor == EAP_VENDOR_IETF) {
404                                 if (eap->method == EAP_TYPE_SIM)
405                                         sim = 1;
406                                 else if (eap->method == EAP_TYPE_AKA ||
407                                          eap->method == EAP_TYPE_AKA_PRIME)
408                                         aka = 1;
409                         }
410                         eap++;
411                 }
412         }
413
414         if (eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_SIM) == NULL)
415                 sim = 0;
416         if (eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_AKA) == NULL &&
417             eap_peer_get_eap_method(EAP_VENDOR_IETF, EAP_TYPE_AKA_PRIME) ==
418             NULL)
419                 aka = 0;
420
421         if (!sim && !aka) {
422                 wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is configured to "
423                         "use SIM, but neither EAP-SIM nor EAP-AKA are "
424                         "enabled");
425                 return 0;
426         }
427
428         wpa_dbg(wpa_s, MSG_DEBUG, "Selected network is configured to use SIM "
429                 "(sim=%d aka=%d) - initialize PCSC", sim, aka);
430
431         wpa_s->scard = scard_init(wpa_s->conf->pcsc_reader);
432         if (wpa_s->scard == NULL) {
433                 wpa_msg(wpa_s, MSG_WARNING, "Failed to initialize SIM "
434                         "(pcsc-lite)");
435                 return -1;
436         }
437         wpa_sm_set_scard_ctx(wpa_s->wpa, wpa_s->scard);
438         eapol_sm_register_scard_ctx(wpa_s->eapol, wpa_s->scard);
439 #endif /* PCSC_FUNCS */
440 #endif /* IEEE8021X_EAPOL */
441
442         return 0;
443 }
444
445
446 #ifndef CONFIG_NO_SCAN_PROCESSING
447
448 static int has_wep_key(struct wpa_ssid *ssid)
449 {
450         int i;
451
452         for (i = 0; i < NUM_WEP_KEYS; i++) {
453                 if (ssid->wep_key_len[i])
454                         return 1;
455         }
456
457         return 0;
458 }
459
460
461 static int wpa_supplicant_match_privacy(struct wpa_bss *bss,
462                                         struct wpa_ssid *ssid)
463 {
464         int privacy = 0;
465
466         if (ssid->mixed_cell)
467                 return 1;
468
469 #ifdef CONFIG_WPS
470         if (ssid->key_mgmt & WPA_KEY_MGMT_WPS)
471                 return 1;
472 #endif /* CONFIG_WPS */
473
474         if (has_wep_key(ssid))
475                 privacy = 1;
476
477 #ifdef IEEE8021X_EAPOL
478         if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
479             ssid->eapol_flags & (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
480                                  EAPOL_FLAG_REQUIRE_KEY_BROADCAST))
481                 privacy = 1;
482 #endif /* IEEE8021X_EAPOL */
483
484         if (wpa_key_mgmt_wpa(ssid->key_mgmt))
485                 privacy = 1;
486
487         if (ssid->key_mgmt & WPA_KEY_MGMT_OSEN)
488                 privacy = 1;
489
490         if (bss->caps & IEEE80211_CAP_PRIVACY)
491                 return privacy;
492         return !privacy;
493 }
494
495
496 static int wpa_supplicant_ssid_bss_match(struct wpa_supplicant *wpa_s,
497                                          struct wpa_ssid *ssid,
498                                          struct wpa_bss *bss)
499 {
500         struct wpa_ie_data ie;
501         int proto_match = 0;
502         const u8 *rsn_ie, *wpa_ie;
503         int ret;
504         int wep_ok;
505
506         ret = wpas_wps_ssid_bss_match(wpa_s, ssid, bss);
507         if (ret >= 0)
508                 return ret;
509
510         /* Allow TSN if local configuration accepts WEP use without WPA/WPA2 */
511         wep_ok = !wpa_key_mgmt_wpa(ssid->key_mgmt) &&
512                 (((ssid->key_mgmt & WPA_KEY_MGMT_NONE) &&
513                   ssid->wep_key_len[ssid->wep_tx_keyidx] > 0) ||
514                  (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA));
515
516         rsn_ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
517         while ((ssid->proto & WPA_PROTO_RSN) && rsn_ie) {
518                 proto_match++;
519
520                 if (wpa_parse_wpa_ie(rsn_ie, 2 + rsn_ie[1], &ie)) {
521                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip RSN IE - parse "
522                                 "failed");
523                         break;
524                 }
525
526                 if (wep_ok &&
527                     (ie.group_cipher & (WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)))
528                 {
529                         wpa_dbg(wpa_s, MSG_DEBUG, "   selected based on TSN "
530                                 "in RSN IE");
531                         return 1;
532                 }
533
534                 if (!(ie.proto & ssid->proto)) {
535                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip RSN IE - proto "
536                                 "mismatch");
537                         break;
538                 }
539
540                 if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
541                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip RSN IE - PTK "
542                                 "cipher mismatch");
543                         break;
544                 }
545
546                 if (!(ie.group_cipher & ssid->group_cipher)) {
547                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip RSN IE - GTK "
548                                 "cipher mismatch");
549                         break;
550                 }
551
552                 if (!(ie.key_mgmt & ssid->key_mgmt)) {
553                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip RSN IE - key mgmt "
554                                 "mismatch");
555                         break;
556                 }
557
558 #ifdef CONFIG_IEEE80211W
559                 if (!(ie.capabilities & WPA_CAPABILITY_MFPC) &&
560                     wpas_get_ssid_pmf(wpa_s, ssid) ==
561                     MGMT_FRAME_PROTECTION_REQUIRED) {
562                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip RSN IE - no mgmt "
563                                 "frame protection");
564                         break;
565                 }
566 #endif /* CONFIG_IEEE80211W */
567
568                 wpa_dbg(wpa_s, MSG_DEBUG, "   selected based on RSN IE");
569                 return 1;
570         }
571
572         wpa_ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
573         while ((ssid->proto & WPA_PROTO_WPA) && wpa_ie) {
574                 proto_match++;
575
576                 if (wpa_parse_wpa_ie(wpa_ie, 2 + wpa_ie[1], &ie)) {
577                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip WPA IE - parse "
578                                 "failed");
579                         break;
580                 }
581
582                 if (wep_ok &&
583                     (ie.group_cipher & (WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)))
584                 {
585                         wpa_dbg(wpa_s, MSG_DEBUG, "   selected based on TSN "
586                                 "in WPA IE");
587                         return 1;
588                 }
589
590                 if (!(ie.proto & ssid->proto)) {
591                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip WPA IE - proto "
592                                 "mismatch");
593                         break;
594                 }
595
596                 if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
597                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip WPA IE - PTK "
598                                 "cipher mismatch");
599                         break;
600                 }
601
602                 if (!(ie.group_cipher & ssid->group_cipher)) {
603                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip WPA IE - GTK "
604                                 "cipher mismatch");
605                         break;
606                 }
607
608                 if (!(ie.key_mgmt & ssid->key_mgmt)) {
609                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip WPA IE - key mgmt "
610                                 "mismatch");
611                         break;
612                 }
613
614                 wpa_dbg(wpa_s, MSG_DEBUG, "   selected based on WPA IE");
615                 return 1;
616         }
617
618         if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) && !wpa_ie &&
619             !rsn_ie) {
620                 wpa_dbg(wpa_s, MSG_DEBUG, "   allow for non-WPA IEEE 802.1X");
621                 return 1;
622         }
623
624         if ((ssid->proto & (WPA_PROTO_WPA | WPA_PROTO_RSN)) &&
625             wpa_key_mgmt_wpa(ssid->key_mgmt) && proto_match == 0) {
626                 wpa_dbg(wpa_s, MSG_DEBUG, "   skip - no WPA/RSN proto match");
627                 return 0;
628         }
629
630         if ((ssid->key_mgmt & WPA_KEY_MGMT_OSEN) &&
631             wpa_bss_get_vendor_ie(bss, OSEN_IE_VENDOR_TYPE)) {
632                 wpa_dbg(wpa_s, MSG_DEBUG, "   allow in OSEN");
633                 return 1;
634         }
635
636         if (!wpa_key_mgmt_wpa(ssid->key_mgmt)) {
637                 wpa_dbg(wpa_s, MSG_DEBUG, "   allow in non-WPA/WPA2");
638                 return 1;
639         }
640
641         wpa_dbg(wpa_s, MSG_DEBUG, "   reject due to mismatch with "
642                 "WPA/WPA2");
643
644         return 0;
645 }
646
647
648 static int freq_allowed(int *freqs, int freq)
649 {
650         int i;
651
652         if (freqs == NULL)
653                 return 1;
654
655         for (i = 0; freqs[i]; i++)
656                 if (freqs[i] == freq)
657                         return 1;
658         return 0;
659 }
660
661
662 static int rate_match(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
663 {
664         const struct hostapd_hw_modes *mode = NULL, *modes;
665         const u8 scan_ie[2] = { WLAN_EID_SUPP_RATES, WLAN_EID_EXT_SUPP_RATES };
666         const u8 *rate_ie;
667         int i, j, k;
668
669         if (bss->freq == 0)
670                 return 1; /* Cannot do matching without knowing band */
671
672         modes = wpa_s->hw.modes;
673         if (modes == NULL) {
674                 /*
675                  * The driver does not provide any additional information
676                  * about the utilized hardware, so allow the connection attempt
677                  * to continue.
678                  */
679                 return 1;
680         }
681
682         for (i = 0; i < wpa_s->hw.num_modes; i++) {
683                 for (j = 0; j < modes[i].num_channels; j++) {
684                         int freq = modes[i].channels[j].freq;
685                         if (freq == bss->freq) {
686                                 if (mode &&
687                                     mode->mode == HOSTAPD_MODE_IEEE80211G)
688                                         break; /* do not allow 802.11b replace
689                                                 * 802.11g */
690                                 mode = &modes[i];
691                                 break;
692                         }
693                 }
694         }
695
696         if (mode == NULL)
697                 return 0;
698
699         for (i = 0; i < (int) sizeof(scan_ie); i++) {
700                 rate_ie = wpa_bss_get_ie(bss, scan_ie[i]);
701                 if (rate_ie == NULL)
702                         continue;
703
704                 for (j = 2; j < rate_ie[1] + 2; j++) {
705                         int flagged = !!(rate_ie[j] & 0x80);
706                         int r = (rate_ie[j] & 0x7f) * 5;
707
708                         /*
709                          * IEEE Std 802.11n-2009 7.3.2.2:
710                          * The new BSS Membership selector value is encoded
711                          * like a legacy basic rate, but it is not a rate and
712                          * only indicates if the BSS members are required to
713                          * support the mandatory features of Clause 20 [HT PHY]
714                          * in order to join the BSS.
715                          */
716                         if (flagged && ((rate_ie[j] & 0x7f) ==
717                                         BSS_MEMBERSHIP_SELECTOR_HT_PHY)) {
718                                 if (!ht_supported(mode)) {
719                                         wpa_dbg(wpa_s, MSG_DEBUG,
720                                                 "   hardware does not support "
721                                                 "HT PHY");
722                                         return 0;
723                                 }
724                                 continue;
725                         }
726
727                         /* There's also a VHT selector for 802.11ac */
728                         if (flagged && ((rate_ie[j] & 0x7f) ==
729                                         BSS_MEMBERSHIP_SELECTOR_VHT_PHY)) {
730                                 if (!vht_supported(mode)) {
731                                         wpa_dbg(wpa_s, MSG_DEBUG,
732                                                 "   hardware does not support "
733                                                 "VHT PHY");
734                                         return 0;
735                                 }
736                                 continue;
737                         }
738
739                         if (!flagged)
740                                 continue;
741
742                         /* check for legacy basic rates */
743                         for (k = 0; k < mode->num_rates; k++) {
744                                 if (mode->rates[k] == r)
745                                         break;
746                         }
747                         if (k == mode->num_rates) {
748                                 /*
749                                  * IEEE Std 802.11-2007 7.3.2.2 demands that in
750                                  * order to join a BSS all required rates
751                                  * have to be supported by the hardware.
752                                  */
753                                 wpa_dbg(wpa_s, MSG_DEBUG,
754                                         "   hardware does not support required rate %d.%d Mbps (freq=%d mode==%d num_rates=%d)",
755                                         r / 10, r % 10,
756                                         bss->freq, mode->mode, mode->num_rates);
757                                 return 0;
758                         }
759                 }
760         }
761
762         return 1;
763 }
764
765
766 /*
767  * Test whether BSS is in an ESS.
768  * This is done differently in DMG (60 GHz) and non-DMG bands
769  */
770 static int bss_is_ess(struct wpa_bss *bss)
771 {
772         if (bss_is_dmg(bss)) {
773                 return (bss->caps & IEEE80211_CAP_DMG_MASK) ==
774                         IEEE80211_CAP_DMG_AP;
775         }
776
777         return ((bss->caps & (IEEE80211_CAP_ESS | IEEE80211_CAP_IBSS)) ==
778                 IEEE80211_CAP_ESS);
779 }
780
781
782 static int match_mac_mask(const u8 *addr_a, const u8 *addr_b, const u8 *mask)
783 {
784         size_t i;
785
786         for (i = 0; i < ETH_ALEN; i++) {
787                 if ((addr_a[i] & mask[i]) != (addr_b[i] & mask[i]))
788                         return 0;
789         }
790         return 1;
791 }
792
793
794 static int addr_in_list(const u8 *addr, const u8 *list, size_t num)
795 {
796         size_t i;
797
798         for (i = 0; i < num; i++) {
799                 const u8 *a = list + i * ETH_ALEN * 2;
800                 const u8 *m = a + ETH_ALEN;
801
802                 if (match_mac_mask(a, addr, m))
803                         return 1;
804         }
805         return 0;
806 }
807
808
809 static struct wpa_ssid * wpa_scan_res_match(struct wpa_supplicant *wpa_s,
810                                             int i, struct wpa_bss *bss,
811                                             struct wpa_ssid *group,
812                                             int only_first_ssid)
813 {
814         u8 wpa_ie_len, rsn_ie_len;
815         int wpa;
816         struct wpa_blacklist *e;
817         const u8 *ie;
818         struct wpa_ssid *ssid;
819         int osen;
820
821         ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
822         wpa_ie_len = ie ? ie[1] : 0;
823
824         ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
825         rsn_ie_len = ie ? ie[1] : 0;
826
827         ie = wpa_bss_get_vendor_ie(bss, OSEN_IE_VENDOR_TYPE);
828         osen = ie != NULL;
829
830         wpa_dbg(wpa_s, MSG_DEBUG, "%d: " MACSTR " ssid='%s' "
831                 "wpa_ie_len=%u rsn_ie_len=%u caps=0x%x level=%d%s%s%s",
832                 i, MAC2STR(bss->bssid), wpa_ssid_txt(bss->ssid, bss->ssid_len),
833                 wpa_ie_len, rsn_ie_len, bss->caps, bss->level,
834                 wpa_bss_get_vendor_ie(bss, WPS_IE_VENDOR_TYPE) ? " wps" : "",
835                 (wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) ||
836                  wpa_bss_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) ?
837                 " p2p" : "",
838                 osen ? " osen=1" : "");
839
840         e = wpa_blacklist_get(wpa_s, bss->bssid);
841         if (e) {
842                 int limit = 1;
843                 if (wpa_supplicant_enabled_networks(wpa_s) == 1) {
844                         /*
845                          * When only a single network is enabled, we can
846                          * trigger blacklisting on the first failure. This
847                          * should not be done with multiple enabled networks to
848                          * avoid getting forced to move into a worse ESS on
849                          * single error if there are no other BSSes of the
850                          * current ESS.
851                          */
852                         limit = 0;
853                 }
854                 if (e->count > limit) {
855                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - blacklisted "
856                                 "(count=%d limit=%d)", e->count, limit);
857                         return NULL;
858                 }
859         }
860
861         if (bss->ssid_len == 0) {
862                 wpa_dbg(wpa_s, MSG_DEBUG, "   skip - SSID not known");
863                 return NULL;
864         }
865
866         if (disallowed_bssid(wpa_s, bss->bssid)) {
867                 wpa_dbg(wpa_s, MSG_DEBUG, "   skip - BSSID disallowed");
868                 return NULL;
869         }
870
871         if (disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len)) {
872                 wpa_dbg(wpa_s, MSG_DEBUG, "   skip - SSID disallowed");
873                 return NULL;
874         }
875
876         wpa = wpa_ie_len > 0 || rsn_ie_len > 0;
877
878         for (ssid = group; ssid; ssid = only_first_ssid ? NULL : ssid->pnext) {
879                 int check_ssid = wpa ? 1 : (ssid->ssid_len != 0);
880                 int res;
881
882                 if (wpas_network_disabled(wpa_s, ssid)) {
883                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - disabled");
884                         continue;
885                 }
886
887                 res = wpas_temp_disabled(wpa_s, ssid);
888                 if (res > 0) {
889                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - disabled "
890                                 "temporarily for %d second(s)", res);
891                         continue;
892                 }
893
894 #ifdef CONFIG_WPS
895                 if ((ssid->key_mgmt & WPA_KEY_MGMT_WPS) && e && e->count > 0) {
896                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - blacklisted "
897                                 "(WPS)");
898                         continue;
899                 }
900
901                 if (wpa && ssid->ssid_len == 0 &&
902                     wpas_wps_ssid_wildcard_ok(wpa_s, ssid, bss))
903                         check_ssid = 0;
904
905                 if (!wpa && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
906                         /* Only allow wildcard SSID match if an AP
907                          * advertises active WPS operation that matches
908                          * with our mode. */
909                         check_ssid = 1;
910                         if (ssid->ssid_len == 0 &&
911                             wpas_wps_ssid_wildcard_ok(wpa_s, ssid, bss))
912                                 check_ssid = 0;
913                 }
914 #endif /* CONFIG_WPS */
915
916                 if (ssid->bssid_set && ssid->ssid_len == 0 &&
917                     os_memcmp(bss->bssid, ssid->bssid, ETH_ALEN) == 0)
918                         check_ssid = 0;
919
920                 if (check_ssid &&
921                     (bss->ssid_len != ssid->ssid_len ||
922                      os_memcmp(bss->ssid, ssid->ssid, bss->ssid_len) != 0)) {
923                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - SSID mismatch");
924                         continue;
925                 }
926
927                 if (ssid->bssid_set &&
928                     os_memcmp(bss->bssid, ssid->bssid, ETH_ALEN) != 0) {
929                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - BSSID mismatch");
930                         continue;
931                 }
932
933                 /* check blacklist */
934                 if (ssid->num_bssid_blacklist &&
935                     addr_in_list(bss->bssid, ssid->bssid_blacklist,
936                                  ssid->num_bssid_blacklist)) {
937                         wpa_dbg(wpa_s, MSG_DEBUG,
938                                 "   skip - BSSID blacklisted");
939                         continue;
940                 }
941
942                 /* if there is a whitelist, only accept those APs */
943                 if (ssid->num_bssid_whitelist &&
944                     !addr_in_list(bss->bssid, ssid->bssid_whitelist,
945                                   ssid->num_bssid_whitelist)) {
946                         wpa_dbg(wpa_s, MSG_DEBUG,
947                                 "   skip - BSSID not in whitelist");
948                         continue;
949                 }
950
951                 if (!wpa_supplicant_ssid_bss_match(wpa_s, ssid, bss))
952                         continue;
953
954                 if (!osen && !wpa &&
955                     !(ssid->key_mgmt & WPA_KEY_MGMT_NONE) &&
956                     !(ssid->key_mgmt & WPA_KEY_MGMT_WPS) &&
957                     !(ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)) {
958                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - non-WPA network "
959                                 "not allowed");
960                         continue;
961                 }
962
963                 if (wpa && !wpa_key_mgmt_wpa(ssid->key_mgmt) &&
964                     has_wep_key(ssid)) {
965                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - ignore WPA/WPA2 AP for WEP network block");
966                         continue;
967                 }
968
969                 if ((ssid->key_mgmt & WPA_KEY_MGMT_OSEN) && !osen) {
970                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - non-OSEN network "
971                                 "not allowed");
972                         continue;
973                 }
974
975                 if (!wpa_supplicant_match_privacy(bss, ssid)) {
976                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - privacy "
977                                 "mismatch");
978                         continue;
979                 }
980
981                 if (!bss_is_ess(bss)) {
982                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - not ESS network");
983                         continue;
984                 }
985
986                 if (!freq_allowed(ssid->freq_list, bss->freq)) {
987                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - frequency not "
988                                 "allowed");
989                         continue;
990                 }
991
992                 if (!rate_match(wpa_s, bss)) {
993                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - rate sets do "
994                                 "not match");
995                         continue;
996                 }
997
998 #ifdef CONFIG_P2P
999                 if (ssid->p2p_group &&
1000                     !wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE) &&
1001                     !wpa_bss_get_vendor_ie_beacon(bss, P2P_IE_VENDOR_TYPE)) {
1002                         wpa_dbg(wpa_s, MSG_DEBUG, "   skip - no P2P IE seen");
1003                         continue;
1004                 }
1005
1006                 if (!is_zero_ether_addr(ssid->go_p2p_dev_addr)) {
1007                         struct wpabuf *p2p_ie;
1008                         u8 dev_addr[ETH_ALEN];
1009
1010                         ie = wpa_bss_get_vendor_ie(bss, P2P_IE_VENDOR_TYPE);
1011                         if (ie == NULL) {
1012                                 wpa_dbg(wpa_s, MSG_DEBUG, "   skip - no P2P element");
1013                                 continue;
1014                         }
1015                         p2p_ie = wpa_bss_get_vendor_ie_multi(
1016                                 bss, P2P_IE_VENDOR_TYPE);
1017                         if (p2p_ie == NULL) {
1018                                 wpa_dbg(wpa_s, MSG_DEBUG, "   skip - could not fetch P2P element");
1019                                 continue;
1020                         }
1021
1022                         if (p2p_parse_dev_addr_in_p2p_ie(p2p_ie, dev_addr) < 0
1023                             || os_memcmp(dev_addr, ssid->go_p2p_dev_addr,
1024                                          ETH_ALEN) != 0) {
1025                                 wpa_dbg(wpa_s, MSG_DEBUG, "   skip - no matching GO P2P Device Address in P2P element");
1026                                 wpabuf_free(p2p_ie);
1027                                 continue;
1028                         }
1029                         wpabuf_free(p2p_ie);
1030                 }
1031
1032                 /*
1033                  * TODO: skip the AP if its P2P IE has Group Formation
1034                  * bit set in the P2P Group Capability Bitmap and we
1035                  * are not in Group Formation with that device.
1036                  */
1037 #endif /* CONFIG_P2P */
1038
1039                 /* Matching configuration found */
1040                 return ssid;
1041         }
1042
1043         /* No matching configuration found */
1044         return NULL;
1045 }
1046
1047
1048 static struct wpa_bss *
1049 wpa_supplicant_select_bss(struct wpa_supplicant *wpa_s,
1050                           struct wpa_ssid *group,
1051                           struct wpa_ssid **selected_ssid,
1052                           int only_first_ssid)
1053 {
1054         unsigned int i;
1055
1056         if (only_first_ssid)
1057                 wpa_dbg(wpa_s, MSG_DEBUG, "Try to find BSS matching pre-selected network id=%d",
1058                         group->id);
1059         else
1060                 wpa_dbg(wpa_s, MSG_DEBUG, "Selecting BSS from priority group %d",
1061                         group->priority);
1062
1063         for (i = 0; i < wpa_s->last_scan_res_used; i++) {
1064                 struct wpa_bss *bss = wpa_s->last_scan_res[i];
1065                 *selected_ssid = wpa_scan_res_match(wpa_s, i, bss, group,
1066                                                     only_first_ssid);
1067                 if (!*selected_ssid)
1068                         continue;
1069                 wpa_dbg(wpa_s, MSG_DEBUG, "   selected BSS " MACSTR
1070                         " ssid='%s'",
1071                         MAC2STR(bss->bssid),
1072                         wpa_ssid_txt(bss->ssid, bss->ssid_len));
1073                 return bss;
1074         }
1075
1076         return NULL;
1077 }
1078
1079
1080 struct wpa_bss * wpa_supplicant_pick_network(struct wpa_supplicant *wpa_s,
1081                                              struct wpa_ssid **selected_ssid)
1082 {
1083         struct wpa_bss *selected = NULL;
1084         int prio;
1085         struct wpa_ssid *next_ssid = NULL;
1086         struct wpa_ssid *ssid;
1087
1088         if (wpa_s->last_scan_res == NULL ||
1089             wpa_s->last_scan_res_used == 0)
1090                 return NULL; /* no scan results from last update */
1091
1092         if (wpa_s->next_ssid) {
1093                 /* check that next_ssid is still valid */
1094                 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
1095                         if (ssid == wpa_s->next_ssid)
1096                                 break;
1097                 }
1098                 next_ssid = ssid;
1099                 wpa_s->next_ssid = NULL;
1100         }
1101
1102         while (selected == NULL) {
1103                 for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
1104                         if (next_ssid && next_ssid->priority ==
1105                             wpa_s->conf->pssid[prio]->priority) {
1106                                 selected = wpa_supplicant_select_bss(
1107                                         wpa_s, next_ssid, selected_ssid, 1);
1108                                 if (selected)
1109                                         break;
1110                         }
1111                         selected = wpa_supplicant_select_bss(
1112                                 wpa_s, wpa_s->conf->pssid[prio],
1113                                 selected_ssid, 0);
1114                         if (selected)
1115                                 break;
1116                 }
1117
1118                 if (selected == NULL && wpa_s->blacklist &&
1119                     !wpa_s->countermeasures) {
1120                         wpa_dbg(wpa_s, MSG_DEBUG, "No APs found - clear "
1121                                 "blacklist and try again");
1122                         wpa_blacklist_clear(wpa_s);
1123                         wpa_s->blacklist_cleared++;
1124                 } else if (selected == NULL)
1125                         break;
1126         }
1127
1128         ssid = *selected_ssid;
1129         if (selected && ssid && ssid->mem_only_psk && !ssid->psk_set &&
1130             !ssid->passphrase && !ssid->ext_psk) {
1131                 const char *field_name, *txt = NULL;
1132
1133                 wpa_dbg(wpa_s, MSG_DEBUG,
1134                         "PSK/passphrase not yet available for the selected network");
1135
1136                 wpas_notify_network_request(wpa_s, ssid,
1137                                             WPA_CTRL_REQ_PSK_PASSPHRASE, NULL);
1138
1139                 field_name = wpa_supplicant_ctrl_req_to_string(
1140                         WPA_CTRL_REQ_PSK_PASSPHRASE, NULL, &txt);
1141                 if (field_name == NULL)
1142                         return NULL;
1143
1144                 wpas_send_ctrl_req(wpa_s, ssid, field_name, txt);
1145
1146                 selected = NULL;
1147         }
1148
1149         return selected;
1150 }
1151
1152
1153 static void wpa_supplicant_req_new_scan(struct wpa_supplicant *wpa_s,
1154                                         int timeout_sec, int timeout_usec)
1155 {
1156         if (!wpa_supplicant_enabled_networks(wpa_s)) {
1157                 /*
1158                  * No networks are enabled; short-circuit request so
1159                  * we don't wait timeout seconds before transitioning
1160                  * to INACTIVE state.
1161                  */
1162                 wpa_dbg(wpa_s, MSG_DEBUG, "Short-circuit new scan request "
1163                         "since there are no enabled networks");
1164                 wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
1165                 return;
1166         }
1167
1168         wpa_s->scan_for_connection = 1;
1169         wpa_supplicant_req_scan(wpa_s, timeout_sec, timeout_usec);
1170 }
1171
1172
1173 int wpa_supplicant_connect(struct wpa_supplicant *wpa_s,
1174                            struct wpa_bss *selected,
1175                            struct wpa_ssid *ssid)
1176 {
1177         if (wpas_wps_scan_pbc_overlap(wpa_s, selected, ssid)) {
1178                 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_OVERLAP
1179                         "PBC session overlap");
1180                 wpas_notify_wps_event_pbc_overlap(wpa_s);
1181 #ifdef CONFIG_P2P
1182                 if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
1183                     wpa_s->p2p_in_provisioning) {
1184                         eloop_register_timeout(0, 0, wpas_p2p_pbc_overlap_cb,
1185                                                wpa_s, NULL);
1186                         return -1;
1187                 }
1188 #endif /* CONFIG_P2P */
1189
1190 #ifdef CONFIG_WPS
1191                 wpas_wps_cancel(wpa_s);
1192 #endif /* CONFIG_WPS */
1193                 return -1;
1194         }
1195
1196         wpa_msg(wpa_s, MSG_DEBUG,
1197                 "Considering connect request: reassociate: %d  selected: "
1198                 MACSTR "  bssid: " MACSTR "  pending: " MACSTR
1199                 "  wpa_state: %s  ssid=%p  current_ssid=%p",
1200                 wpa_s->reassociate, MAC2STR(selected->bssid),
1201                 MAC2STR(wpa_s->bssid), MAC2STR(wpa_s->pending_bssid),
1202                 wpa_supplicant_state_txt(wpa_s->wpa_state),
1203                 ssid, wpa_s->current_ssid);
1204
1205         /*
1206          * Do not trigger new association unless the BSSID has changed or if
1207          * reassociation is requested. If we are in process of associating with
1208          * the selected BSSID, do not trigger new attempt.
1209          */
1210         if (wpa_s->reassociate ||
1211             (os_memcmp(selected->bssid, wpa_s->bssid, ETH_ALEN) != 0 &&
1212              ((wpa_s->wpa_state != WPA_ASSOCIATING &&
1213                wpa_s->wpa_state != WPA_AUTHENTICATING) ||
1214               (!is_zero_ether_addr(wpa_s->pending_bssid) &&
1215                os_memcmp(selected->bssid, wpa_s->pending_bssid, ETH_ALEN) !=
1216                0) ||
1217               (is_zero_ether_addr(wpa_s->pending_bssid) &&
1218                ssid != wpa_s->current_ssid)))) {
1219                 if (wpa_supplicant_scard_init(wpa_s, ssid)) {
1220                         wpa_supplicant_req_new_scan(wpa_s, 10, 0);
1221                         return 0;
1222                 }
1223                 wpa_msg(wpa_s, MSG_DEBUG, "Request association with " MACSTR,
1224                         MAC2STR(selected->bssid));
1225                 wpa_supplicant_associate(wpa_s, selected, ssid);
1226         } else {
1227                 wpa_dbg(wpa_s, MSG_DEBUG, "Already associated or trying to "
1228                         "connect with the selected AP");
1229         }
1230
1231         return 0;
1232 }
1233
1234
1235 static struct wpa_ssid *
1236 wpa_supplicant_pick_new_network(struct wpa_supplicant *wpa_s)
1237 {
1238         int prio;
1239         struct wpa_ssid *ssid;
1240
1241         for (prio = 0; prio < wpa_s->conf->num_prio; prio++) {
1242                 for (ssid = wpa_s->conf->pssid[prio]; ssid; ssid = ssid->pnext)
1243                 {
1244                         if (wpas_network_disabled(wpa_s, ssid))
1245                                 continue;
1246                         if (ssid->mode == IEEE80211_MODE_IBSS ||
1247                             ssid->mode == IEEE80211_MODE_AP ||
1248                             ssid->mode == IEEE80211_MODE_MESH)
1249                                 return ssid;
1250                 }
1251         }
1252         return NULL;
1253 }
1254
1255
1256 /* TODO: move the rsn_preauth_scan_result*() to be called from notify.c based
1257  * on BSS added and BSS changed events */
1258 static void wpa_supplicant_rsn_preauth_scan_results(
1259         struct wpa_supplicant *wpa_s)
1260 {
1261         struct wpa_bss *bss;
1262
1263         if (rsn_preauth_scan_results(wpa_s->wpa) < 0)
1264                 return;
1265
1266         dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
1267                 const u8 *ssid, *rsn;
1268
1269                 ssid = wpa_bss_get_ie(bss, WLAN_EID_SSID);
1270                 if (ssid == NULL)
1271                         continue;
1272
1273                 rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
1274                 if (rsn == NULL)
1275                         continue;
1276
1277                 rsn_preauth_scan_result(wpa_s->wpa, bss->bssid, ssid, rsn);
1278         }
1279
1280 }
1281
1282
1283 static int wpa_supplicant_need_to_roam(struct wpa_supplicant *wpa_s,
1284                                        struct wpa_bss *selected,
1285                                        struct wpa_ssid *ssid)
1286 {
1287         struct wpa_bss *current_bss = NULL;
1288 #ifndef CONFIG_NO_ROAMING
1289         int min_diff;
1290 #endif /* CONFIG_NO_ROAMING */
1291
1292         if (wpa_s->reassociate)
1293                 return 1; /* explicit request to reassociate */
1294         if (wpa_s->wpa_state < WPA_ASSOCIATED)
1295                 return 1; /* we are not associated; continue */
1296         if (wpa_s->current_ssid == NULL)
1297                 return 1; /* unknown current SSID */
1298         if (wpa_s->current_ssid != ssid)
1299                 return 1; /* different network block */
1300
1301         if (wpas_driver_bss_selection(wpa_s))
1302                 return 0; /* Driver-based roaming */
1303
1304         if (wpa_s->current_ssid->ssid)
1305                 current_bss = wpa_bss_get(wpa_s, wpa_s->bssid,
1306                                           wpa_s->current_ssid->ssid,
1307                                           wpa_s->current_ssid->ssid_len);
1308         if (!current_bss)
1309                 current_bss = wpa_bss_get_bssid(wpa_s, wpa_s->bssid);
1310
1311         if (!current_bss)
1312                 return 1; /* current BSS not seen in scan results */
1313
1314         if (current_bss == selected)
1315                 return 0;
1316
1317         if (selected->last_update_idx > current_bss->last_update_idx)
1318                 return 1; /* current BSS not seen in the last scan */
1319
1320 #ifndef CONFIG_NO_ROAMING
1321         wpa_dbg(wpa_s, MSG_DEBUG, "Considering within-ESS reassociation");
1322         wpa_dbg(wpa_s, MSG_DEBUG, "Current BSS: " MACSTR
1323                 " level=%d snr=%d est_throughput=%u",
1324                 MAC2STR(current_bss->bssid), current_bss->level,
1325                 current_bss->snr, current_bss->est_throughput);
1326         wpa_dbg(wpa_s, MSG_DEBUG, "Selected BSS: " MACSTR
1327                 " level=%d snr=%d est_throughput=%u",
1328                 MAC2STR(selected->bssid), selected->level,
1329                 selected->snr, selected->est_throughput);
1330
1331         if (wpa_s->current_ssid->bssid_set &&
1332             os_memcmp(selected->bssid, wpa_s->current_ssid->bssid, ETH_ALEN) ==
1333             0) {
1334                 wpa_dbg(wpa_s, MSG_DEBUG, "Allow reassociation - selected BSS "
1335                         "has preferred BSSID");
1336                 return 1;
1337         }
1338
1339         if (selected->est_throughput > current_bss->est_throughput + 5000) {
1340                 wpa_dbg(wpa_s, MSG_DEBUG,
1341                         "Allow reassociation - selected BSS has better estimated throughput");
1342                 return 1;
1343         }
1344
1345         if (current_bss->level < 0 && current_bss->level > selected->level) {
1346                 wpa_dbg(wpa_s, MSG_DEBUG, "Skip roam - Current BSS has better "
1347                         "signal level");
1348                 return 0;
1349         }
1350
1351         min_diff = 2;
1352         if (current_bss->level < 0) {
1353                 if (current_bss->level < -85)
1354                         min_diff = 1;
1355                 else if (current_bss->level < -80)
1356                         min_diff = 2;
1357                 else if (current_bss->level < -75)
1358                         min_diff = 3;
1359                 else if (current_bss->level < -70)
1360                         min_diff = 4;
1361                 else
1362                         min_diff = 5;
1363         }
1364         if (abs(current_bss->level - selected->level) < min_diff) {
1365                 wpa_dbg(wpa_s, MSG_DEBUG, "Skip roam - too small difference "
1366                         "in signal level");
1367                 return 0;
1368         }
1369
1370         return 1;
1371 #else /* CONFIG_NO_ROAMING */
1372         return 0;
1373 #endif /* CONFIG_NO_ROAMING */
1374 }
1375
1376
1377 /* Return != 0 if no scan results could be fetched or if scan results should not
1378  * be shared with other virtual interfaces. */
1379 static int _wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
1380                                               union wpa_event_data *data,
1381                                               int own_request)
1382 {
1383         struct wpa_scan_results *scan_res = NULL;
1384         int ret = 0;
1385         int ap = 0;
1386 #ifndef CONFIG_NO_RANDOM_POOL
1387         size_t i, num;
1388 #endif /* CONFIG_NO_RANDOM_POOL */
1389
1390 #ifdef CONFIG_AP
1391         if (wpa_s->ap_iface)
1392                 ap = 1;
1393 #endif /* CONFIG_AP */
1394
1395         wpa_supplicant_notify_scanning(wpa_s, 0);
1396
1397         scan_res = wpa_supplicant_get_scan_results(wpa_s,
1398                                                    data ? &data->scan_info :
1399                                                    NULL, 1);
1400         if (scan_res == NULL) {
1401                 if (wpa_s->conf->ap_scan == 2 || ap ||
1402                     wpa_s->scan_res_handler == scan_only_handler)
1403                         return -1;
1404                 if (!own_request)
1405                         return -1;
1406                 wpa_dbg(wpa_s, MSG_DEBUG, "Failed to get scan results - try "
1407                         "scanning again");
1408                 wpa_supplicant_req_new_scan(wpa_s, 1, 0);
1409                 ret = -1;
1410                 goto scan_work_done;
1411         }
1412
1413 #ifndef CONFIG_NO_RANDOM_POOL
1414         num = scan_res->num;
1415         if (num > 10)
1416                 num = 10;
1417         for (i = 0; i < num; i++) {
1418                 u8 buf[5];
1419                 struct wpa_scan_res *res = scan_res->res[i];
1420                 buf[0] = res->bssid[5];
1421                 buf[1] = res->qual & 0xff;
1422                 buf[2] = res->noise & 0xff;
1423                 buf[3] = res->level & 0xff;
1424                 buf[4] = res->tsf & 0xff;
1425                 random_add_randomness(buf, sizeof(buf));
1426         }
1427 #endif /* CONFIG_NO_RANDOM_POOL */
1428
1429         if (own_request && wpa_s->scan_res_handler &&
1430             (wpa_s->own_scan_running || !wpa_s->radio->external_scan_running)) {
1431                 void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
1432                                          struct wpa_scan_results *scan_res);
1433
1434                 scan_res_handler = wpa_s->scan_res_handler;
1435                 wpa_s->scan_res_handler = NULL;
1436                 scan_res_handler(wpa_s, scan_res);
1437                 ret = -2;
1438                 goto scan_work_done;
1439         }
1440
1441         if (ap) {
1442                 wpa_dbg(wpa_s, MSG_DEBUG, "Ignore scan results in AP mode");
1443 #ifdef CONFIG_AP
1444                 if (wpa_s->ap_iface->scan_cb)
1445                         wpa_s->ap_iface->scan_cb(wpa_s->ap_iface);
1446 #endif /* CONFIG_AP */
1447                 goto scan_work_done;
1448         }
1449
1450         wpa_dbg(wpa_s, MSG_DEBUG, "New scan results available (own=%u ext=%u)",
1451                 wpa_s->own_scan_running, wpa_s->radio->external_scan_running);
1452         if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
1453             wpa_s->manual_scan_use_id && wpa_s->own_scan_running) {
1454                 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS "id=%u",
1455                              wpa_s->manual_scan_id);
1456                 wpa_s->manual_scan_use_id = 0;
1457         } else {
1458                 wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_RESULTS);
1459         }
1460         wpas_notify_scan_results(wpa_s);
1461
1462         wpas_notify_scan_done(wpa_s, 1);
1463
1464         if (!wpa_s->own_scan_running && wpa_s->radio->external_scan_running) {
1465                 wpa_dbg(wpa_s, MSG_DEBUG, "Do not use results from externally requested scan operation for network selection");
1466                 wpa_scan_results_free(scan_res);
1467                 return 0;
1468         }
1469
1470         if (wnm_scan_process(wpa_s, 1) > 0)
1471                 goto scan_work_done;
1472
1473         if (sme_proc_obss_scan(wpa_s) > 0)
1474                 goto scan_work_done;
1475
1476         if ((wpa_s->conf->ap_scan == 2 && !wpas_wps_searching(wpa_s)))
1477                 goto scan_work_done;
1478
1479         if (autoscan_notify_scan(wpa_s, scan_res))
1480                 goto scan_work_done;
1481
1482         if (wpa_s->disconnected) {
1483                 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
1484                 goto scan_work_done;
1485         }
1486
1487         if (!wpas_driver_bss_selection(wpa_s) &&
1488             bgscan_notify_scan(wpa_s, scan_res) == 1)
1489                 goto scan_work_done;
1490
1491         wpas_wps_update_ap_info(wpa_s, scan_res);
1492
1493         wpa_scan_results_free(scan_res);
1494
1495         if (wpa_s->scan_work) {
1496                 struct wpa_radio_work *work = wpa_s->scan_work;
1497                 wpa_s->scan_work = NULL;
1498                 radio_work_done(work);
1499         }
1500
1501         return wpas_select_network_from_last_scan(wpa_s, 1, own_request);
1502
1503 scan_work_done:
1504         wpa_scan_results_free(scan_res);
1505         if (wpa_s->scan_work) {
1506                 struct wpa_radio_work *work = wpa_s->scan_work;
1507                 wpa_s->scan_work = NULL;
1508                 radio_work_done(work);
1509         }
1510         return ret;
1511 }
1512
1513
1514 static int wpas_select_network_from_last_scan(struct wpa_supplicant *wpa_s,
1515                                               int new_scan, int own_request)
1516 {
1517         struct wpa_bss *selected;
1518         struct wpa_ssid *ssid = NULL;
1519         int time_to_reenable = wpas_reenabled_network_time(wpa_s);
1520
1521         if (time_to_reenable > 0) {
1522                 wpa_dbg(wpa_s, MSG_DEBUG,
1523                         "Postpone network selection by %d seconds since all networks are disabled",
1524                         time_to_reenable);
1525                 eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
1526                 eloop_register_timeout(time_to_reenable, 0,
1527                                        wpas_network_reenabled, wpa_s, NULL);
1528                 return 0;
1529         }
1530
1531         if (wpa_s->p2p_mgmt)
1532                 return 0; /* no normal connection on p2p_mgmt interface */
1533
1534         selected = wpa_supplicant_pick_network(wpa_s, &ssid);
1535
1536         if (selected) {
1537                 int skip;
1538                 skip = !wpa_supplicant_need_to_roam(wpa_s, selected, ssid);
1539                 if (skip) {
1540                         if (new_scan)
1541                                 wpa_supplicant_rsn_preauth_scan_results(wpa_s);
1542                         return 0;
1543                 }
1544
1545                 if (wpa_supplicant_connect(wpa_s, selected, ssid) < 0) {
1546                         wpa_dbg(wpa_s, MSG_DEBUG, "Connect failed");
1547                         return -1;
1548                 }
1549                 if (new_scan)
1550                         wpa_supplicant_rsn_preauth_scan_results(wpa_s);
1551                 /*
1552                  * Do not notify other virtual radios of scan results since we do not
1553                  * want them to start other associations at the same time.
1554                  */
1555                 return 1;
1556         } else {
1557 #ifdef CONFIG_MESH
1558                 if (wpa_s->ifmsh) {
1559                         wpa_msg(wpa_s, MSG_INFO,
1560                                 "Avoiding join because we already joined a mesh group");
1561                         return 0;
1562                 }
1563 #endif /* CONFIG_MESH */
1564                 wpa_dbg(wpa_s, MSG_DEBUG, "No suitable network found");
1565                 ssid = wpa_supplicant_pick_new_network(wpa_s);
1566                 if (ssid) {
1567                         wpa_dbg(wpa_s, MSG_DEBUG, "Setup a new network");
1568                         wpa_supplicant_associate(wpa_s, NULL, ssid);
1569                         if (new_scan)
1570                                 wpa_supplicant_rsn_preauth_scan_results(wpa_s);
1571                 } else if (own_request) {
1572                         /*
1573                          * No SSID found. If SCAN results are as a result of
1574                          * own scan request and not due to a scan request on
1575                          * another shared interface, try another scan.
1576                          */
1577                         int timeout_sec = wpa_s->scan_interval;
1578                         int timeout_usec = 0;
1579 #ifdef CONFIG_P2P
1580                         int res;
1581
1582                         res = wpas_p2p_scan_no_go_seen(wpa_s);
1583                         if (res == 2)
1584                                 return 2;
1585                         if (res == 1)
1586                                 return 0;
1587
1588                         if (wpa_s->p2p_in_provisioning ||
1589                             wpa_s->show_group_started ||
1590                             wpa_s->p2p_in_invitation) {
1591                                 /*
1592                                  * Use shorter wait during P2P Provisioning
1593                                  * state and during P2P join-a-group operation
1594                                  * to speed up group formation.
1595                                  */
1596                                 timeout_sec = 0;
1597                                 timeout_usec = 250000;
1598                                 wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
1599                                                             timeout_usec);
1600                                 return 0;
1601                         }
1602 #endif /* CONFIG_P2P */
1603 #ifdef CONFIG_INTERWORKING
1604                         if (wpa_s->conf->auto_interworking &&
1605                             wpa_s->conf->interworking &&
1606                             wpa_s->conf->cred) {
1607                                 wpa_dbg(wpa_s, MSG_DEBUG, "Interworking: "
1608                                         "start ANQP fetch since no matching "
1609                                         "networks found");
1610                                 wpa_s->network_select = 1;
1611                                 wpa_s->auto_network_select = 1;
1612                                 interworking_start_fetch_anqp(wpa_s);
1613                                 return 1;
1614                         }
1615 #endif /* CONFIG_INTERWORKING */
1616 #ifdef CONFIG_WPS
1617                         if (wpa_s->after_wps > 0 || wpas_wps_searching(wpa_s)) {
1618                                 wpa_dbg(wpa_s, MSG_DEBUG, "Use shorter wait during WPS processing");
1619                                 timeout_sec = 0;
1620                                 timeout_usec = 500000;
1621                                 wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
1622                                                             timeout_usec);
1623                                 return 0;
1624                         }
1625 #endif /* CONFIG_WPS */
1626                         if (wpa_supplicant_req_sched_scan(wpa_s))
1627                                 wpa_supplicant_req_new_scan(wpa_s, timeout_sec,
1628                                                             timeout_usec);
1629
1630                         wpa_msg_ctrl(wpa_s, MSG_INFO,
1631                                      WPA_EVENT_NETWORK_NOT_FOUND);
1632                 }
1633         }
1634         return 0;
1635 }
1636
1637
1638 static int wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
1639                                              union wpa_event_data *data)
1640 {
1641         struct wpa_supplicant *ifs;
1642         int res;
1643
1644         res = _wpa_supplicant_event_scan_results(wpa_s, data, 1);
1645         if (res == 2) {
1646                 /*
1647                  * Interface may have been removed, so must not dereference
1648                  * wpa_s after this.
1649                  */
1650                 return 1;
1651         }
1652         if (res != 0) {
1653                 /*
1654                  * If no scan results could be fetched, then no need to
1655                  * notify those interfaces that did not actually request
1656                  * this scan. Similarly, if scan results started a new operation on this
1657                  * interface, do not notify other interfaces to avoid concurrent
1658                  * operations during a connection attempt.
1659                  */
1660                 return 0;
1661         }
1662
1663         /*
1664          * Check other interfaces to see if they share the same radio. If
1665          * so, they get updated with this same scan info.
1666          */
1667         dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
1668                          radio_list) {
1669                 if (ifs != wpa_s) {
1670                         wpa_printf(MSG_DEBUG, "%s: Updating scan results from "
1671                                    "sibling", ifs->ifname);
1672                         _wpa_supplicant_event_scan_results(ifs, data, 0);
1673                 }
1674         }
1675
1676         return 0;
1677 }
1678
1679 #endif /* CONFIG_NO_SCAN_PROCESSING */
1680
1681
1682 int wpa_supplicant_fast_associate(struct wpa_supplicant *wpa_s)
1683 {
1684 #ifdef CONFIG_NO_SCAN_PROCESSING
1685         return -1;
1686 #else /* CONFIG_NO_SCAN_PROCESSING */
1687         struct os_reltime now;
1688
1689         if (wpa_s->last_scan_res_used == 0)
1690                 return -1;
1691
1692         os_get_reltime(&now);
1693         if (os_reltime_expired(&now, &wpa_s->last_scan, 5)) {
1694                 wpa_printf(MSG_DEBUG, "Fast associate: Old scan results");
1695                 return -1;
1696         }
1697
1698         return wpas_select_network_from_last_scan(wpa_s, 0, 1);
1699 #endif /* CONFIG_NO_SCAN_PROCESSING */
1700 }
1701
1702 #ifdef CONFIG_WNM
1703
1704 static void wnm_bss_keep_alive(void *eloop_ctx, void *sock_ctx)
1705 {
1706         struct wpa_supplicant *wpa_s = eloop_ctx;
1707
1708         if (wpa_s->wpa_state < WPA_ASSOCIATED)
1709                 return;
1710
1711         if (!wpa_s->no_keep_alive) {
1712                 wpa_printf(MSG_DEBUG, "WNM: Send keep-alive to AP " MACSTR,
1713                            MAC2STR(wpa_s->bssid));
1714                 /* TODO: could skip this if normal data traffic has been sent */
1715                 /* TODO: Consider using some more appropriate data frame for
1716                  * this */
1717                 if (wpa_s->l2)
1718                         l2_packet_send(wpa_s->l2, wpa_s->bssid, 0x0800,
1719                                        (u8 *) "", 0);
1720         }
1721
1722 #ifdef CONFIG_SME
1723         if (wpa_s->sme.bss_max_idle_period) {
1724                 unsigned int msec;
1725                 msec = wpa_s->sme.bss_max_idle_period * 1024; /* times 1000 */
1726                 if (msec > 100)
1727                         msec -= 100;
1728                 eloop_register_timeout(msec / 1000, msec % 1000 * 1000,
1729                                        wnm_bss_keep_alive, wpa_s, NULL);
1730         }
1731 #endif /* CONFIG_SME */
1732 }
1733
1734
1735 static void wnm_process_assoc_resp(struct wpa_supplicant *wpa_s,
1736                                    const u8 *ies, size_t ies_len)
1737 {
1738         struct ieee802_11_elems elems;
1739
1740         if (ies == NULL)
1741                 return;
1742
1743         if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed)
1744                 return;
1745
1746 #ifdef CONFIG_SME
1747         if (elems.bss_max_idle_period) {
1748                 unsigned int msec;
1749                 wpa_s->sme.bss_max_idle_period =
1750                         WPA_GET_LE16(elems.bss_max_idle_period);
1751                 wpa_printf(MSG_DEBUG, "WNM: BSS Max Idle Period: %u (* 1000 "
1752                            "TU)%s", wpa_s->sme.bss_max_idle_period,
1753                            (elems.bss_max_idle_period[2] & 0x01) ?
1754                            " (protected keep-live required)" : "");
1755                 if (wpa_s->sme.bss_max_idle_period == 0)
1756                         wpa_s->sme.bss_max_idle_period = 1;
1757                 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) {
1758                         eloop_cancel_timeout(wnm_bss_keep_alive, wpa_s, NULL);
1759                          /* msec times 1000 */
1760                         msec = wpa_s->sme.bss_max_idle_period * 1024;
1761                         if (msec > 100)
1762                                 msec -= 100;
1763                         eloop_register_timeout(msec / 1000, msec % 1000 * 1000,
1764                                                wnm_bss_keep_alive, wpa_s,
1765                                                NULL);
1766                 }
1767         }
1768 #endif /* CONFIG_SME */
1769 }
1770
1771 #endif /* CONFIG_WNM */
1772
1773
1774 void wnm_bss_keep_alive_deinit(struct wpa_supplicant *wpa_s)
1775 {
1776 #ifdef CONFIG_WNM
1777         eloop_cancel_timeout(wnm_bss_keep_alive, wpa_s, NULL);
1778 #endif /* CONFIG_WNM */
1779 }
1780
1781
1782 #ifdef CONFIG_INTERWORKING
1783
1784 static int wpas_qos_map_set(struct wpa_supplicant *wpa_s, const u8 *qos_map,
1785                             size_t len)
1786 {
1787         int res;
1788
1789         wpa_hexdump(MSG_DEBUG, "Interworking: QoS Map Set", qos_map, len);
1790         res = wpa_drv_set_qos_map(wpa_s, qos_map, len);
1791         if (res) {
1792                 wpa_printf(MSG_DEBUG, "Interworking: Failed to configure QoS Map Set to the driver");
1793         }
1794
1795         return res;
1796 }
1797
1798
1799 static void interworking_process_assoc_resp(struct wpa_supplicant *wpa_s,
1800                                             const u8 *ies, size_t ies_len)
1801 {
1802         struct ieee802_11_elems elems;
1803
1804         if (ies == NULL)
1805                 return;
1806
1807         if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed)
1808                 return;
1809
1810         if (elems.qos_map_set) {
1811                 wpas_qos_map_set(wpa_s, elems.qos_map_set,
1812                                  elems.qos_map_set_len);
1813         }
1814 }
1815
1816 #endif /* CONFIG_INTERWORKING */
1817
1818
1819 static int wpa_supplicant_event_associnfo(struct wpa_supplicant *wpa_s,
1820                                           union wpa_event_data *data)
1821 {
1822         int l, len, found = 0, wpa_found, rsn_found;
1823         const u8 *p;
1824 #ifdef CONFIG_IEEE80211R
1825         u8 bssid[ETH_ALEN];
1826 #endif /* CONFIG_IEEE80211R */
1827
1828         wpa_dbg(wpa_s, MSG_DEBUG, "Association info event");
1829         if (data->assoc_info.req_ies)
1830                 wpa_hexdump(MSG_DEBUG, "req_ies", data->assoc_info.req_ies,
1831                             data->assoc_info.req_ies_len);
1832         if (data->assoc_info.resp_ies) {
1833                 wpa_hexdump(MSG_DEBUG, "resp_ies", data->assoc_info.resp_ies,
1834                             data->assoc_info.resp_ies_len);
1835 #ifdef CONFIG_TDLS
1836                 wpa_tdls_assoc_resp_ies(wpa_s->wpa, data->assoc_info.resp_ies,
1837                                         data->assoc_info.resp_ies_len);
1838 #endif /* CONFIG_TDLS */
1839 #ifdef CONFIG_WNM
1840                 wnm_process_assoc_resp(wpa_s, data->assoc_info.resp_ies,
1841                                        data->assoc_info.resp_ies_len);
1842 #endif /* CONFIG_WNM */
1843 #ifdef CONFIG_INTERWORKING
1844                 interworking_process_assoc_resp(wpa_s, data->assoc_info.resp_ies,
1845                                                 data->assoc_info.resp_ies_len);
1846 #endif /* CONFIG_INTERWORKING */
1847         }
1848         if (data->assoc_info.beacon_ies)
1849                 wpa_hexdump(MSG_DEBUG, "beacon_ies",
1850                             data->assoc_info.beacon_ies,
1851                             data->assoc_info.beacon_ies_len);
1852         if (data->assoc_info.freq)
1853                 wpa_dbg(wpa_s, MSG_DEBUG, "freq=%u MHz",
1854                         data->assoc_info.freq);
1855
1856         p = data->assoc_info.req_ies;
1857         l = data->assoc_info.req_ies_len;
1858
1859         /* Go through the IEs and make a copy of the WPA/RSN IE, if present. */
1860         while (p && l >= 2) {
1861                 len = p[1] + 2;
1862                 if (len > l) {
1863                         wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
1864                                     p, l);
1865                         break;
1866                 }
1867                 if ((p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
1868                      (os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0)) ||
1869                     (p[0] == WLAN_EID_RSN && p[1] >= 2)) {
1870                         if (wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, p, len))
1871                                 break;
1872                         found = 1;
1873                         wpa_find_assoc_pmkid(wpa_s);
1874                         break;
1875                 }
1876                 l -= len;
1877                 p += len;
1878         }
1879         if (!found && data->assoc_info.req_ies)
1880                 wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
1881
1882 #ifdef CONFIG_IEEE80211R
1883 #ifdef CONFIG_SME
1884         if (wpa_s->sme.auth_alg == WPA_AUTH_ALG_FT) {
1885                 if (wpa_drv_get_bssid(wpa_s, bssid) < 0 ||
1886                     wpa_ft_validate_reassoc_resp(wpa_s->wpa,
1887                                                  data->assoc_info.resp_ies,
1888                                                  data->assoc_info.resp_ies_len,
1889                                                  bssid) < 0) {
1890                         wpa_dbg(wpa_s, MSG_DEBUG, "FT: Validation of "
1891                                 "Reassociation Response failed");
1892                         wpa_supplicant_deauthenticate(
1893                                 wpa_s, WLAN_REASON_INVALID_IE);
1894                         return -1;
1895                 }
1896         }
1897
1898         p = data->assoc_info.resp_ies;
1899         l = data->assoc_info.resp_ies_len;
1900
1901 #ifdef CONFIG_WPS_STRICT
1902         if (p && wpa_s->current_ssid &&
1903             wpa_s->current_ssid->key_mgmt == WPA_KEY_MGMT_WPS) {
1904                 struct wpabuf *wps;
1905                 wps = ieee802_11_vendor_ie_concat(p, l, WPS_IE_VENDOR_TYPE);
1906                 if (wps == NULL) {
1907                         wpa_msg(wpa_s, MSG_INFO, "WPS-STRICT: AP did not "
1908                                 "include WPS IE in (Re)Association Response");
1909                         return -1;
1910                 }
1911
1912                 if (wps_validate_assoc_resp(wps) < 0) {
1913                         wpabuf_free(wps);
1914                         wpa_supplicant_deauthenticate(
1915                                 wpa_s, WLAN_REASON_INVALID_IE);
1916                         return -1;
1917                 }
1918                 wpabuf_free(wps);
1919         }
1920 #endif /* CONFIG_WPS_STRICT */
1921
1922         /* Go through the IEs and make a copy of the MDIE, if present. */
1923         while (p && l >= 2) {
1924                 len = p[1] + 2;
1925                 if (len > l) {
1926                         wpa_hexdump(MSG_DEBUG, "Truncated IE in assoc_info",
1927                                     p, l);
1928                         break;
1929                 }
1930                 if (p[0] == WLAN_EID_MOBILITY_DOMAIN &&
1931                     p[1] >= MOBILITY_DOMAIN_ID_LEN) {
1932                         wpa_s->sme.ft_used = 1;
1933                         os_memcpy(wpa_s->sme.mobility_domain, p + 2,
1934                                   MOBILITY_DOMAIN_ID_LEN);
1935                         break;
1936                 }
1937                 l -= len;
1938                 p += len;
1939         }
1940 #endif /* CONFIG_SME */
1941
1942         /* Process FT when SME is in the driver */
1943         if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) &&
1944             wpa_ft_is_completed(wpa_s->wpa)) {
1945                 if (wpa_drv_get_bssid(wpa_s, bssid) < 0 ||
1946                     wpa_ft_validate_reassoc_resp(wpa_s->wpa,
1947                                                  data->assoc_info.resp_ies,
1948                                                  data->assoc_info.resp_ies_len,
1949                                                  bssid) < 0) {
1950                         wpa_dbg(wpa_s, MSG_DEBUG, "FT: Validation of "
1951                                 "Reassociation Response failed");
1952                         wpa_supplicant_deauthenticate(
1953                                 wpa_s, WLAN_REASON_INVALID_IE);
1954                         return -1;
1955                 }
1956                 wpa_dbg(wpa_s, MSG_DEBUG, "FT: Reassociation Response done");
1957         }
1958
1959         wpa_sm_set_ft_params(wpa_s->wpa, data->assoc_info.resp_ies,
1960                              data->assoc_info.resp_ies_len);
1961 #endif /* CONFIG_IEEE80211R */
1962
1963         /* WPA/RSN IE from Beacon/ProbeResp */
1964         p = data->assoc_info.beacon_ies;
1965         l = data->assoc_info.beacon_ies_len;
1966
1967         /* Go through the IEs and make a copy of the WPA/RSN IEs, if present.
1968          */
1969         wpa_found = rsn_found = 0;
1970         while (p && l >= 2) {
1971                 len = p[1] + 2;
1972                 if (len > l) {
1973                         wpa_hexdump(MSG_DEBUG, "Truncated IE in beacon_ies",
1974                                     p, l);
1975                         break;
1976                 }
1977                 if (!wpa_found &&
1978                     p[0] == WLAN_EID_VENDOR_SPECIFIC && p[1] >= 6 &&
1979                     os_memcmp(&p[2], "\x00\x50\xF2\x01\x01\x00", 6) == 0) {
1980                         wpa_found = 1;
1981                         wpa_sm_set_ap_wpa_ie(wpa_s->wpa, p, len);
1982                 }
1983
1984                 if (!rsn_found &&
1985                     p[0] == WLAN_EID_RSN && p[1] >= 2) {
1986                         rsn_found = 1;
1987                         wpa_sm_set_ap_rsn_ie(wpa_s->wpa, p, len);
1988                 }
1989
1990                 l -= len;
1991                 p += len;
1992         }
1993
1994         if (!wpa_found && data->assoc_info.beacon_ies)
1995                 wpa_sm_set_ap_wpa_ie(wpa_s->wpa, NULL, 0);
1996         if (!rsn_found && data->assoc_info.beacon_ies)
1997                 wpa_sm_set_ap_rsn_ie(wpa_s->wpa, NULL, 0);
1998         if (wpa_found || rsn_found)
1999                 wpa_s->ap_ies_from_associnfo = 1;
2000
2001 #ifdef CONFIG_FST
2002         wpabuf_free(wpa_s->received_mb_ies);
2003         wpa_s->received_mb_ies = NULL;
2004         if (wpa_s->fst) {
2005                 struct mb_ies_info mb_ies;
2006
2007                 wpa_printf(MSG_DEBUG, "Looking for MB IE");
2008                 if (!mb_ies_info_by_ies(&mb_ies, data->assoc_info.resp_ies,
2009                                         data->assoc_info.resp_ies_len))
2010                         wpa_s->received_mb_ies = mb_ies_by_info(&mb_ies);
2011         }
2012 #endif /* CONFIG_FST */
2013
2014         if (wpa_s->assoc_freq && data->assoc_info.freq &&
2015             wpa_s->assoc_freq != data->assoc_info.freq) {
2016                 wpa_printf(MSG_DEBUG, "Operating frequency changed from "
2017                            "%u to %u MHz",
2018                            wpa_s->assoc_freq, data->assoc_info.freq);
2019                 wpa_supplicant_update_scan_results(wpa_s);
2020         }
2021
2022         wpa_s->assoc_freq = data->assoc_info.freq;
2023
2024         return 0;
2025 }
2026
2027
2028 static int wpa_supplicant_assoc_update_ie(struct wpa_supplicant *wpa_s)
2029 {
2030         const u8 *bss_wpa = NULL, *bss_rsn = NULL;
2031
2032         if (!wpa_s->current_bss || !wpa_s->current_ssid)
2033                 return -1;
2034
2035         if (!wpa_key_mgmt_wpa_any(wpa_s->current_ssid->key_mgmt))
2036                 return 0;
2037
2038         bss_wpa = wpa_bss_get_vendor_ie(wpa_s->current_bss,
2039                                         WPA_IE_VENDOR_TYPE);
2040         bss_rsn = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_RSN);
2041
2042         if (wpa_sm_set_ap_wpa_ie(wpa_s->wpa, bss_wpa,
2043                                  bss_wpa ? 2 + bss_wpa[1] : 0) ||
2044             wpa_sm_set_ap_rsn_ie(wpa_s->wpa, bss_rsn,
2045                                  bss_rsn ? 2 + bss_rsn[1] : 0))
2046                 return -1;
2047
2048         return 0;
2049 }
2050
2051
2052 static void wpa_supplicant_event_assoc(struct wpa_supplicant *wpa_s,
2053                                        union wpa_event_data *data)
2054 {
2055         u8 bssid[ETH_ALEN];
2056         int ft_completed;
2057
2058 #ifdef CONFIG_AP
2059         if (wpa_s->ap_iface) {
2060                 if (!data)
2061                         return;
2062                 hostapd_notif_assoc(wpa_s->ap_iface->bss[0],
2063                                     data->assoc_info.addr,
2064                                     data->assoc_info.req_ies,
2065                                     data->assoc_info.req_ies_len,
2066                                     data->assoc_info.reassoc);
2067                 return;
2068         }
2069 #endif /* CONFIG_AP */
2070
2071         eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
2072
2073         ft_completed = wpa_ft_is_completed(wpa_s->wpa);
2074         if (data && wpa_supplicant_event_associnfo(wpa_s, data) < 0)
2075                 return;
2076
2077         if (wpa_drv_get_bssid(wpa_s, bssid) < 0) {
2078                 wpa_dbg(wpa_s, MSG_ERROR, "Failed to get BSSID");
2079                 wpa_supplicant_deauthenticate(
2080                         wpa_s, WLAN_REASON_DEAUTH_LEAVING);
2081                 return;
2082         }
2083
2084         wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATED);
2085         if (os_memcmp(bssid, wpa_s->bssid, ETH_ALEN) != 0) {
2086                 wpa_dbg(wpa_s, MSG_DEBUG, "Associated to a new BSS: BSSID="
2087                         MACSTR, MAC2STR(bssid));
2088                 random_add_randomness(bssid, ETH_ALEN);
2089                 os_memcpy(wpa_s->bssid, bssid, ETH_ALEN);
2090                 os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
2091                 wpas_notify_bssid_changed(wpa_s);
2092
2093                 if (wpa_supplicant_dynamic_keys(wpa_s) && !ft_completed) {
2094                         wpa_clear_keys(wpa_s, bssid);
2095                 }
2096                 if (wpa_supplicant_select_config(wpa_s) < 0) {
2097                         wpa_supplicant_deauthenticate(
2098                                 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
2099                         return;
2100                 }
2101
2102                 if (wpa_s->conf->ap_scan == 1 &&
2103                     wpa_s->drv_flags & WPA_DRIVER_FLAGS_BSS_SELECTION) {
2104                         if (wpa_supplicant_assoc_update_ie(wpa_s) < 0)
2105                                 wpa_msg(wpa_s, MSG_WARNING,
2106                                         "WPA/RSN IEs not updated");
2107                 }
2108         }
2109
2110 #ifdef CONFIG_SME
2111         os_memcpy(wpa_s->sme.prev_bssid, bssid, ETH_ALEN);
2112         wpa_s->sme.prev_bssid_set = 1;
2113         wpa_s->sme.last_unprot_disconnect.sec = 0;
2114 #endif /* CONFIG_SME */
2115
2116         wpa_msg(wpa_s, MSG_INFO, "Associated with " MACSTR, MAC2STR(bssid));
2117         if (wpa_s->current_ssid) {
2118                 /* When using scanning (ap_scan=1), SIM PC/SC interface can be
2119                  * initialized before association, but for other modes,
2120                  * initialize PC/SC here, if the current configuration needs
2121                  * smartcard or SIM/USIM. */
2122                 wpa_supplicant_scard_init(wpa_s, wpa_s->current_ssid);
2123         }
2124         wpa_sm_notify_assoc(wpa_s->wpa, bssid);
2125         if (wpa_s->l2)
2126                 l2_packet_notify_auth_start(wpa_s->l2);
2127
2128         /*
2129          * Set portEnabled first to FALSE in order to get EAP state machine out
2130          * of the SUCCESS state and eapSuccess cleared. Without this, EAPOL PAE
2131          * state machine may transit to AUTHENTICATING state based on obsolete
2132          * eapSuccess and then trigger BE_AUTH to SUCCESS and PAE to
2133          * AUTHENTICATED without ever giving chance to EAP state machine to
2134          * reset the state.
2135          */
2136         if (!ft_completed) {
2137                 eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
2138                 eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
2139         }
2140         if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) || ft_completed)
2141                 eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
2142         /* 802.1X::portControl = Auto */
2143         eapol_sm_notify_portEnabled(wpa_s->eapol, TRUE);
2144         wpa_s->eapol_received = 0;
2145         if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
2146             wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE ||
2147             (wpa_s->current_ssid &&
2148              wpa_s->current_ssid->mode == IEEE80211_MODE_IBSS)) {
2149                 if (wpa_s->current_ssid &&
2150                     wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE &&
2151                     (wpa_s->drv_flags &
2152                      WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE)) {
2153                         /*
2154                          * Set the key after having received joined-IBSS event
2155                          * from the driver.
2156                          */
2157                         wpa_supplicant_set_wpa_none_key(wpa_s,
2158                                                         wpa_s->current_ssid);
2159                 }
2160                 wpa_supplicant_cancel_auth_timeout(wpa_s);
2161                 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
2162         } else if (!ft_completed) {
2163                 /* Timeout for receiving the first EAPOL packet */
2164                 wpa_supplicant_req_auth_timeout(wpa_s, 10, 0);
2165         }
2166         wpa_supplicant_cancel_scan(wpa_s);
2167
2168         if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
2169             wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt)) {
2170                 /*
2171                  * We are done; the driver will take care of RSN 4-way
2172                  * handshake.
2173                  */
2174                 wpa_supplicant_cancel_auth_timeout(wpa_s);
2175                 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
2176                 eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
2177                 eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
2178         } else if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
2179                    wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
2180                 /*
2181                  * The driver will take care of RSN 4-way handshake, so we need
2182                  * to allow EAPOL supplicant to complete its work without
2183                  * waiting for WPA supplicant.
2184                  */
2185                 eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
2186         } else if (ft_completed) {
2187                 /*
2188                  * FT protocol completed - make sure EAPOL state machine ends
2189                  * up in authenticated.
2190                  */
2191                 wpa_supplicant_cancel_auth_timeout(wpa_s);
2192                 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
2193                 eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
2194                 eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
2195         }
2196
2197         wpa_s->last_eapol_matches_bssid = 0;
2198
2199         if (wpa_s->pending_eapol_rx) {
2200                 struct os_reltime now, age;
2201                 os_get_reltime(&now);
2202                 os_reltime_sub(&now, &wpa_s->pending_eapol_rx_time, &age);
2203                 if (age.sec == 0 && age.usec < 100000 &&
2204                     os_memcmp(wpa_s->pending_eapol_rx_src, bssid, ETH_ALEN) ==
2205                     0) {
2206                         wpa_dbg(wpa_s, MSG_DEBUG, "Process pending EAPOL "
2207                                 "frame that was received just before "
2208                                 "association notification");
2209                         wpa_supplicant_rx_eapol(
2210                                 wpa_s, wpa_s->pending_eapol_rx_src,
2211                                 wpabuf_head(wpa_s->pending_eapol_rx),
2212                                 wpabuf_len(wpa_s->pending_eapol_rx));
2213                 }
2214                 wpabuf_free(wpa_s->pending_eapol_rx);
2215                 wpa_s->pending_eapol_rx = NULL;
2216         }
2217
2218         if ((wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
2219              wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
2220             wpa_s->current_ssid &&
2221             (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE)) {
2222                 /* Set static WEP keys again */
2223                 wpa_set_wep_keys(wpa_s, wpa_s->current_ssid);
2224         }
2225
2226 #ifdef CONFIG_IBSS_RSN
2227         if (wpa_s->current_ssid &&
2228             wpa_s->current_ssid->mode == WPAS_MODE_IBSS &&
2229             wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
2230             wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE &&
2231             wpa_s->ibss_rsn == NULL) {
2232                 wpa_s->ibss_rsn = ibss_rsn_init(wpa_s);
2233                 if (!wpa_s->ibss_rsn) {
2234                         wpa_msg(wpa_s, MSG_INFO, "Failed to init IBSS RSN");
2235                         wpa_supplicant_deauthenticate(
2236                                 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
2237                         return;
2238                 }
2239
2240                 ibss_rsn_set_psk(wpa_s->ibss_rsn, wpa_s->current_ssid->psk);
2241         }
2242 #endif /* CONFIG_IBSS_RSN */
2243
2244         wpas_wps_notify_assoc(wpa_s, bssid);
2245
2246         if (data) {
2247                 wmm_ac_notify_assoc(wpa_s, data->assoc_info.resp_ies,
2248                                     data->assoc_info.resp_ies_len,
2249                                     &data->assoc_info.wmm_params);
2250
2251                 if (wpa_s->reassoc_same_bss)
2252                         wmm_ac_restore_tspecs(wpa_s);
2253         }
2254 }
2255
2256
2257 static int disconnect_reason_recoverable(u16 reason_code)
2258 {
2259         return reason_code == WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY ||
2260                 reason_code == WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA ||
2261                 reason_code == WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA;
2262 }
2263
2264
2265 static void wpa_supplicant_event_disassoc(struct wpa_supplicant *wpa_s,
2266                                           u16 reason_code,
2267                                           int locally_generated)
2268 {
2269         const u8 *bssid;
2270
2271         if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
2272                 /*
2273                  * At least Host AP driver and a Prism3 card seemed to be
2274                  * generating streams of disconnected events when configuring
2275                  * IBSS for WPA-None. Ignore them for now.
2276                  */
2277                 return;
2278         }
2279
2280         bssid = wpa_s->bssid;
2281         if (is_zero_ether_addr(bssid))
2282                 bssid = wpa_s->pending_bssid;
2283
2284         if (!is_zero_ether_addr(bssid) ||
2285             wpa_s->wpa_state >= WPA_AUTHENTICATING) {
2286                 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid=" MACSTR
2287                         " reason=%d%s",
2288                         MAC2STR(bssid), reason_code,
2289                         locally_generated ? " locally_generated=1" : "");
2290         }
2291 }
2292
2293
2294 static int could_be_psk_mismatch(struct wpa_supplicant *wpa_s, u16 reason_code,
2295                                  int locally_generated)
2296 {
2297         if (wpa_s->wpa_state != WPA_4WAY_HANDSHAKE ||
2298             !wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt))
2299                 return 0; /* Not in 4-way handshake with PSK */
2300
2301         /*
2302          * It looks like connection was lost while trying to go through PSK
2303          * 4-way handshake. Filter out known disconnection cases that are caused
2304          * by something else than PSK mismatch to avoid confusing reports.
2305          */
2306
2307         if (locally_generated) {
2308                 if (reason_code == WLAN_REASON_IE_IN_4WAY_DIFFERS)
2309                         return 0;
2310         }
2311
2312         return 1;
2313 }
2314
2315
2316 static void wpa_supplicant_event_disassoc_finish(struct wpa_supplicant *wpa_s,
2317                                                  u16 reason_code,
2318                                                  int locally_generated)
2319 {
2320         const u8 *bssid;
2321         int authenticating;
2322         u8 prev_pending_bssid[ETH_ALEN];
2323         struct wpa_bss *fast_reconnect = NULL;
2324         struct wpa_ssid *fast_reconnect_ssid = NULL;
2325         struct wpa_ssid *last_ssid;
2326
2327         authenticating = wpa_s->wpa_state == WPA_AUTHENTICATING;
2328         os_memcpy(prev_pending_bssid, wpa_s->pending_bssid, ETH_ALEN);
2329
2330         if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
2331                 /*
2332                  * At least Host AP driver and a Prism3 card seemed to be
2333                  * generating streams of disconnected events when configuring
2334                  * IBSS for WPA-None. Ignore them for now.
2335                  */
2336                 wpa_dbg(wpa_s, MSG_DEBUG, "Disconnect event - ignore in "
2337                         "IBSS/WPA-None mode");
2338                 return;
2339         }
2340
2341         if (could_be_psk_mismatch(wpa_s, reason_code, locally_generated)) {
2342                 wpa_msg(wpa_s, MSG_INFO, "WPA: 4-Way Handshake failed - "
2343                         "pre-shared key may be incorrect");
2344                 if (wpas_p2p_4way_hs_failed(wpa_s) > 0)
2345                         return; /* P2P group removed */
2346                 wpas_auth_failed(wpa_s, "WRONG_KEY");
2347         }
2348         if (!wpa_s->disconnected &&
2349             (!wpa_s->auto_reconnect_disabled ||
2350              wpa_s->key_mgmt == WPA_KEY_MGMT_WPS ||
2351              wpas_wps_searching(wpa_s))) {
2352                 wpa_dbg(wpa_s, MSG_DEBUG, "Auto connect enabled: try to "
2353                         "reconnect (wps=%d/%d wpa_state=%d)",
2354                         wpa_s->key_mgmt == WPA_KEY_MGMT_WPS,
2355                         wpas_wps_searching(wpa_s),
2356                         wpa_s->wpa_state);
2357                 if (wpa_s->wpa_state == WPA_COMPLETED &&
2358                     wpa_s->current_ssid &&
2359                     wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
2360                     !locally_generated &&
2361                     disconnect_reason_recoverable(reason_code)) {
2362                         /*
2363                          * It looks like the AP has dropped association with
2364                          * us, but could allow us to get back in. Try to
2365                          * reconnect to the same BSS without full scan to save
2366                          * time for some common cases.
2367                          */
2368                         fast_reconnect = wpa_s->current_bss;
2369                         fast_reconnect_ssid = wpa_s->current_ssid;
2370                 } else if (wpa_s->wpa_state >= WPA_ASSOCIATING)
2371                         wpa_supplicant_req_scan(wpa_s, 0, 100000);
2372                 else
2373                         wpa_dbg(wpa_s, MSG_DEBUG, "Do not request new "
2374                                 "immediate scan");
2375         } else {
2376                 wpa_dbg(wpa_s, MSG_DEBUG, "Auto connect disabled: do not "
2377                         "try to re-connect");
2378                 wpa_s->reassociate = 0;
2379                 wpa_s->disconnected = 1;
2380                 if (!wpa_s->pno)
2381                         wpa_supplicant_cancel_sched_scan(wpa_s);
2382         }
2383         bssid = wpa_s->bssid;
2384         if (is_zero_ether_addr(bssid))
2385                 bssid = wpa_s->pending_bssid;
2386         if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
2387                 wpas_connection_failed(wpa_s, bssid);
2388         wpa_sm_notify_disassoc(wpa_s->wpa);
2389         if (locally_generated)
2390                 wpa_s->disconnect_reason = -reason_code;
2391         else
2392                 wpa_s->disconnect_reason = reason_code;
2393         wpas_notify_disconnect_reason(wpa_s);
2394         if (wpa_supplicant_dynamic_keys(wpa_s)) {
2395                 wpa_dbg(wpa_s, MSG_DEBUG, "Disconnect event - remove keys");
2396                 wpa_clear_keys(wpa_s, wpa_s->bssid);
2397         }
2398         last_ssid = wpa_s->current_ssid;
2399         wpa_supplicant_mark_disassoc(wpa_s);
2400
2401         if (authenticating && (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)) {
2402                 sme_disassoc_while_authenticating(wpa_s, prev_pending_bssid);
2403                 wpa_s->current_ssid = last_ssid;
2404         }
2405
2406         if (fast_reconnect &&
2407             !wpas_network_disabled(wpa_s, fast_reconnect_ssid) &&
2408             !disallowed_bssid(wpa_s, fast_reconnect->bssid) &&
2409             !disallowed_ssid(wpa_s, fast_reconnect->ssid,
2410                              fast_reconnect->ssid_len) &&
2411             !wpas_temp_disabled(wpa_s, fast_reconnect_ssid)) {
2412 #ifndef CONFIG_NO_SCAN_PROCESSING
2413                 wpa_dbg(wpa_s, MSG_DEBUG, "Try to reconnect to the same BSS");
2414                 if (wpa_supplicant_connect(wpa_s, fast_reconnect,
2415                                            fast_reconnect_ssid) < 0) {
2416                         /* Recover through full scan */
2417                         wpa_supplicant_req_scan(wpa_s, 0, 100000);
2418                 }
2419 #endif /* CONFIG_NO_SCAN_PROCESSING */
2420         } else if (fast_reconnect) {
2421                 /*
2422                  * Could not reconnect to the same BSS due to network being
2423                  * disabled. Use a new scan to match the alternative behavior
2424                  * above, i.e., to continue automatic reconnection attempt in a
2425                  * way that enforces disabled network rules.
2426                  */
2427                 wpa_supplicant_req_scan(wpa_s, 0, 100000);
2428         }
2429 }
2430
2431
2432 #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
2433 void wpa_supplicant_delayed_mic_error_report(void *eloop_ctx, void *sock_ctx)
2434 {
2435         struct wpa_supplicant *wpa_s = eloop_ctx;
2436
2437         if (!wpa_s->pending_mic_error_report)
2438                 return;
2439
2440         wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Sending pending MIC error report");
2441         wpa_sm_key_request(wpa_s->wpa, 1, wpa_s->pending_mic_error_pairwise);
2442         wpa_s->pending_mic_error_report = 0;
2443 }
2444 #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
2445
2446
2447 static void
2448 wpa_supplicant_event_michael_mic_failure(struct wpa_supplicant *wpa_s,
2449                                          union wpa_event_data *data)
2450 {
2451         int pairwise;
2452         struct os_reltime t;
2453
2454         wpa_msg(wpa_s, MSG_WARNING, "Michael MIC failure detected");
2455         pairwise = (data && data->michael_mic_failure.unicast);
2456         os_get_reltime(&t);
2457         if ((wpa_s->last_michael_mic_error.sec &&
2458              !os_reltime_expired(&t, &wpa_s->last_michael_mic_error, 60)) ||
2459             wpa_s->pending_mic_error_report) {
2460                 if (wpa_s->pending_mic_error_report) {
2461                         /*
2462                          * Send the pending MIC error report immediately since
2463                          * we are going to start countermeasures and AP better
2464                          * do the same.
2465                          */
2466                         wpa_sm_key_request(wpa_s->wpa, 1,
2467                                            wpa_s->pending_mic_error_pairwise);
2468                 }
2469
2470                 /* Send the new MIC error report immediately since we are going
2471                  * to start countermeasures and AP better do the same.
2472                  */
2473                 wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
2474
2475                 /* initialize countermeasures */
2476                 wpa_s->countermeasures = 1;
2477
2478                 wpa_blacklist_add(wpa_s, wpa_s->bssid);
2479
2480                 wpa_msg(wpa_s, MSG_WARNING, "TKIP countermeasures started");
2481
2482                 /*
2483                  * Need to wait for completion of request frame. We do not get
2484                  * any callback for the message completion, so just wait a
2485                  * short while and hope for the best. */
2486                 os_sleep(0, 10000);
2487
2488                 wpa_drv_set_countermeasures(wpa_s, 1);
2489                 wpa_supplicant_deauthenticate(wpa_s,
2490                                               WLAN_REASON_MICHAEL_MIC_FAILURE);
2491                 eloop_cancel_timeout(wpa_supplicant_stop_countermeasures,
2492                                      wpa_s, NULL);
2493                 eloop_register_timeout(60, 0,
2494                                        wpa_supplicant_stop_countermeasures,
2495                                        wpa_s, NULL);
2496                 /* TODO: mark the AP rejected for 60 second. STA is
2497                  * allowed to associate with another AP.. */
2498         } else {
2499 #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
2500                 if (wpa_s->mic_errors_seen) {
2501                         /*
2502                          * Reduce the effectiveness of Michael MIC error
2503                          * reports as a means for attacking against TKIP if
2504                          * more than one MIC failure is noticed with the same
2505                          * PTK. We delay the transmission of the reports by a
2506                          * random time between 0 and 60 seconds in order to
2507                          * force the attacker wait 60 seconds before getting
2508                          * the information on whether a frame resulted in a MIC
2509                          * failure.
2510                          */
2511                         u8 rval[4];
2512                         int sec;
2513
2514                         if (os_get_random(rval, sizeof(rval)) < 0)
2515                                 sec = os_random() % 60;
2516                         else
2517                                 sec = WPA_GET_BE32(rval) % 60;
2518                         wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Delay MIC error "
2519                                 "report %d seconds", sec);
2520                         wpa_s->pending_mic_error_report = 1;
2521                         wpa_s->pending_mic_error_pairwise = pairwise;
2522                         eloop_cancel_timeout(
2523                                 wpa_supplicant_delayed_mic_error_report,
2524                                 wpa_s, NULL);
2525                         eloop_register_timeout(
2526                                 sec, os_random() % 1000000,
2527                                 wpa_supplicant_delayed_mic_error_report,
2528                                 wpa_s, NULL);
2529                 } else {
2530                         wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
2531                 }
2532 #else /* CONFIG_DELAYED_MIC_ERROR_REPORT */
2533                 wpa_sm_key_request(wpa_s->wpa, 1, pairwise);
2534 #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
2535         }
2536         wpa_s->last_michael_mic_error = t;
2537         wpa_s->mic_errors_seen++;
2538 }
2539
2540
2541 #ifdef CONFIG_TERMINATE_ONLASTIF
2542 static int any_interfaces(struct wpa_supplicant *head)
2543 {
2544         struct wpa_supplicant *wpa_s;
2545
2546         for (wpa_s = head; wpa_s != NULL; wpa_s = wpa_s->next)
2547                 if (!wpa_s->interface_removed)
2548                         return 1;
2549         return 0;
2550 }
2551 #endif /* CONFIG_TERMINATE_ONLASTIF */
2552
2553
2554 static void
2555 wpa_supplicant_event_interface_status(struct wpa_supplicant *wpa_s,
2556                                       union wpa_event_data *data)
2557 {
2558         if (os_strcmp(wpa_s->ifname, data->interface_status.ifname) != 0)
2559                 return;
2560
2561         switch (data->interface_status.ievent) {
2562         case EVENT_INTERFACE_ADDED:
2563                 if (!wpa_s->interface_removed)
2564                         break;
2565                 wpa_s->interface_removed = 0;
2566                 wpa_dbg(wpa_s, MSG_DEBUG, "Configured interface was added");
2567                 if (wpa_supplicant_driver_init(wpa_s) < 0) {
2568                         wpa_msg(wpa_s, MSG_INFO, "Failed to initialize the "
2569                                 "driver after interface was added");
2570                 }
2571
2572 #ifdef CONFIG_P2P
2573                 if (!wpa_s->global->p2p &&
2574                     !wpa_s->global->p2p_disabled &&
2575                     !wpa_s->conf->p2p_disabled &&
2576                     (wpa_s->drv_flags &
2577                      WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE) &&
2578                     wpas_p2p_add_p2pdev_interface(
2579                             wpa_s, wpa_s->global->params.conf_p2p_dev) < 0) {
2580                         wpa_printf(MSG_INFO,
2581                                    "P2P: Failed to enable P2P Device interface");
2582                         /* Try to continue without. P2P will be disabled. */
2583                 }
2584 #endif /* CONFIG_P2P */
2585
2586                 break;
2587         case EVENT_INTERFACE_REMOVED:
2588                 wpa_dbg(wpa_s, MSG_DEBUG, "Configured interface was removed");
2589                 wpa_s->interface_removed = 1;
2590                 wpa_supplicant_mark_disassoc(wpa_s);
2591                 wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
2592                 l2_packet_deinit(wpa_s->l2);
2593                 wpa_s->l2 = NULL;
2594
2595 #ifdef CONFIG_P2P
2596                 if (wpa_s->global->p2p &&
2597                     wpa_s->global->p2p_init_wpa_s->parent == wpa_s &&
2598                     (wpa_s->drv_flags &
2599                      WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE)) {
2600                         wpa_dbg(wpa_s, MSG_DEBUG,
2601                                 "Removing P2P Device interface");
2602                         wpa_supplicant_remove_iface(
2603                                 wpa_s->global, wpa_s->global->p2p_init_wpa_s,
2604                                 0);
2605                         wpa_s->global->p2p_init_wpa_s = NULL;
2606                 }
2607 #endif /* CONFIG_P2P */
2608
2609 #ifdef CONFIG_TERMINATE_ONLASTIF
2610                 /* check if last interface */
2611                 if (!any_interfaces(wpa_s->global->ifaces))
2612                         eloop_terminate();
2613 #endif /* CONFIG_TERMINATE_ONLASTIF */
2614                 break;
2615         }
2616 }
2617
2618
2619 #ifdef CONFIG_PEERKEY
2620 static void
2621 wpa_supplicant_event_stkstart(struct wpa_supplicant *wpa_s,
2622                               union wpa_event_data *data)
2623 {
2624         if (data == NULL)
2625                 return;
2626         wpa_sm_stkstart(wpa_s->wpa, data->stkstart.peer);
2627 }
2628 #endif /* CONFIG_PEERKEY */
2629
2630
2631 #ifdef CONFIG_TDLS
2632 static void wpa_supplicant_event_tdls(struct wpa_supplicant *wpa_s,
2633                                       union wpa_event_data *data)
2634 {
2635         if (data == NULL)
2636                 return;
2637         switch (data->tdls.oper) {
2638         case TDLS_REQUEST_SETUP:
2639                 wpa_tdls_remove(wpa_s->wpa, data->tdls.peer);
2640                 if (wpa_tdls_is_external_setup(wpa_s->wpa))
2641                         wpa_tdls_start(wpa_s->wpa, data->tdls.peer);
2642                 else
2643                         wpa_drv_tdls_oper(wpa_s, TDLS_SETUP, data->tdls.peer);
2644                 break;
2645         case TDLS_REQUEST_TEARDOWN:
2646                 if (wpa_tdls_is_external_setup(wpa_s->wpa))
2647                         wpa_tdls_teardown_link(wpa_s->wpa, data->tdls.peer,
2648                                                data->tdls.reason_code);
2649                 else
2650                         wpa_drv_tdls_oper(wpa_s, TDLS_TEARDOWN,
2651                                           data->tdls.peer);
2652                 break;
2653         case TDLS_REQUEST_DISCOVER:
2654                         wpa_tdls_send_discovery_request(wpa_s->wpa,
2655                                                         data->tdls.peer);
2656                 break;
2657         }
2658 }
2659 #endif /* CONFIG_TDLS */
2660
2661
2662 #ifdef CONFIG_WNM
2663 static void wpa_supplicant_event_wnm(struct wpa_supplicant *wpa_s,
2664                                      union wpa_event_data *data)
2665 {
2666         if (data == NULL)
2667                 return;
2668         switch (data->wnm.oper) {
2669         case WNM_OPER_SLEEP:
2670                 wpa_printf(MSG_DEBUG, "Start sending WNM-Sleep Request "
2671                            "(action=%d, intval=%d)",
2672                            data->wnm.sleep_action, data->wnm.sleep_intval);
2673                 ieee802_11_send_wnmsleep_req(wpa_s, data->wnm.sleep_action,
2674                                              data->wnm.sleep_intval, NULL);
2675                 break;
2676         }
2677 }
2678 #endif /* CONFIG_WNM */
2679
2680
2681 #ifdef CONFIG_IEEE80211R
2682 static void
2683 wpa_supplicant_event_ft_response(struct wpa_supplicant *wpa_s,
2684                                  union wpa_event_data *data)
2685 {
2686         if (data == NULL)
2687                 return;
2688
2689         if (wpa_ft_process_response(wpa_s->wpa, data->ft_ies.ies,
2690                                     data->ft_ies.ies_len,
2691                                     data->ft_ies.ft_action,
2692                                     data->ft_ies.target_ap,
2693                                     data->ft_ies.ric_ies,
2694                                     data->ft_ies.ric_ies_len) < 0) {
2695                 /* TODO: prevent MLME/driver from trying to associate? */
2696         }
2697 }
2698 #endif /* CONFIG_IEEE80211R */
2699
2700
2701 #ifdef CONFIG_IBSS_RSN
2702 static void wpa_supplicant_event_ibss_rsn_start(struct wpa_supplicant *wpa_s,
2703                                                 union wpa_event_data *data)
2704 {
2705         struct wpa_ssid *ssid;
2706         if (wpa_s->wpa_state < WPA_ASSOCIATED)
2707                 return;
2708         if (data == NULL)
2709                 return;
2710         ssid = wpa_s->current_ssid;
2711         if (ssid == NULL)
2712                 return;
2713         if (ssid->mode != WPAS_MODE_IBSS || !wpa_key_mgmt_wpa(ssid->key_mgmt))
2714                 return;
2715
2716         ibss_rsn_start(wpa_s->ibss_rsn, data->ibss_rsn_start.peer);
2717 }
2718
2719
2720 static void wpa_supplicant_event_ibss_auth(struct wpa_supplicant *wpa_s,
2721                                            union wpa_event_data *data)
2722 {
2723         struct wpa_ssid *ssid = wpa_s->current_ssid;
2724
2725         if (ssid == NULL)
2726                 return;
2727
2728         /* check if the ssid is correctly configured as IBSS/RSN */
2729         if (ssid->mode != WPAS_MODE_IBSS || !wpa_key_mgmt_wpa(ssid->key_mgmt))
2730                 return;
2731
2732         ibss_rsn_handle_auth(wpa_s->ibss_rsn, data->rx_mgmt.frame,
2733                              data->rx_mgmt.frame_len);
2734 }
2735 #endif /* CONFIG_IBSS_RSN */
2736
2737
2738 #ifdef CONFIG_IEEE80211R
2739 static void ft_rx_action(struct wpa_supplicant *wpa_s, const u8 *data,
2740                          size_t len)
2741 {
2742         const u8 *sta_addr, *target_ap_addr;
2743         u16 status;
2744
2745         wpa_hexdump(MSG_MSGDUMP, "FT: RX Action", data, len);
2746         if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME))
2747                 return; /* only SME case supported for now */
2748         if (len < 1 + 2 * ETH_ALEN + 2)
2749                 return;
2750         if (data[0] != 2)
2751                 return; /* Only FT Action Response is supported for now */
2752         sta_addr = data + 1;
2753         target_ap_addr = data + 1 + ETH_ALEN;
2754         status = WPA_GET_LE16(data + 1 + 2 * ETH_ALEN);
2755         wpa_dbg(wpa_s, MSG_DEBUG, "FT: Received FT Action Response: STA "
2756                 MACSTR " TargetAP " MACSTR " status %u",
2757                 MAC2STR(sta_addr), MAC2STR(target_ap_addr), status);
2758
2759         if (os_memcmp(sta_addr, wpa_s->own_addr, ETH_ALEN) != 0) {
2760                 wpa_dbg(wpa_s, MSG_DEBUG, "FT: Foreign STA Address " MACSTR
2761                         " in FT Action Response", MAC2STR(sta_addr));
2762                 return;
2763         }
2764
2765         if (status) {
2766                 wpa_dbg(wpa_s, MSG_DEBUG, "FT: FT Action Response indicates "
2767                         "failure (status code %d)", status);
2768                 /* TODO: report error to FT code(?) */
2769                 return;
2770         }
2771
2772         if (wpa_ft_process_response(wpa_s->wpa, data + 1 + 2 * ETH_ALEN + 2,
2773                                     len - (1 + 2 * ETH_ALEN + 2), 1,
2774                                     target_ap_addr, NULL, 0) < 0)
2775                 return;
2776
2777 #ifdef CONFIG_SME
2778         {
2779                 struct wpa_bss *bss;
2780                 bss = wpa_bss_get_bssid(wpa_s, target_ap_addr);
2781                 if (bss)
2782                         wpa_s->sme.freq = bss->freq;
2783                 wpa_s->sme.auth_alg = WPA_AUTH_ALG_FT;
2784                 sme_associate(wpa_s, WPAS_MODE_INFRA, target_ap_addr,
2785                               WLAN_AUTH_FT);
2786         }
2787 #endif /* CONFIG_SME */
2788 }
2789 #endif /* CONFIG_IEEE80211R */
2790
2791
2792 static void wpa_supplicant_event_unprot_deauth(struct wpa_supplicant *wpa_s,
2793                                                struct unprot_deauth *e)
2794 {
2795 #ifdef CONFIG_IEEE80211W
2796         wpa_printf(MSG_DEBUG, "Unprotected Deauthentication frame "
2797                    "dropped: " MACSTR " -> " MACSTR
2798                    " (reason code %u)",
2799                    MAC2STR(e->sa), MAC2STR(e->da), e->reason_code);
2800         sme_event_unprot_disconnect(wpa_s, e->sa, e->da, e->reason_code);
2801 #endif /* CONFIG_IEEE80211W */
2802 }
2803
2804
2805 static void wpa_supplicant_event_unprot_disassoc(struct wpa_supplicant *wpa_s,
2806                                                  struct unprot_disassoc *e)
2807 {
2808 #ifdef CONFIG_IEEE80211W
2809         wpa_printf(MSG_DEBUG, "Unprotected Disassociation frame "
2810                    "dropped: " MACSTR " -> " MACSTR
2811                    " (reason code %u)",
2812                    MAC2STR(e->sa), MAC2STR(e->da), e->reason_code);
2813         sme_event_unprot_disconnect(wpa_s, e->sa, e->da, e->reason_code);
2814 #endif /* CONFIG_IEEE80211W */
2815 }
2816
2817
2818 static void wpas_event_disconnect(struct wpa_supplicant *wpa_s, const u8 *addr,
2819                                   u16 reason_code, int locally_generated,
2820                                   const u8 *ie, size_t ie_len, int deauth)
2821 {
2822 #ifdef CONFIG_AP
2823         if (wpa_s->ap_iface && addr) {
2824                 hostapd_notif_disassoc(wpa_s->ap_iface->bss[0], addr);
2825                 return;
2826         }
2827
2828         if (wpa_s->ap_iface) {
2829                 wpa_dbg(wpa_s, MSG_DEBUG, "Ignore deauth event in AP mode");
2830                 return;
2831         }
2832 #endif /* CONFIG_AP */
2833
2834         if (!locally_generated)
2835                 wpa_s->own_disconnect_req = 0;
2836
2837         wpa_supplicant_event_disassoc(wpa_s, reason_code, locally_generated);
2838
2839         if (((reason_code == WLAN_REASON_IEEE_802_1X_AUTH_FAILED ||
2840               ((wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
2841                 (wpa_s->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)) &&
2842                eapol_sm_failed(wpa_s->eapol))) &&
2843              !wpa_s->eap_expected_failure))
2844                 wpas_auth_failed(wpa_s, "AUTH_FAILED");
2845
2846 #ifdef CONFIG_P2P
2847         if (deauth && reason_code > 0) {
2848                 if (wpas_p2p_deauth_notif(wpa_s, addr, reason_code, ie, ie_len,
2849                                           locally_generated) > 0) {
2850                         /*
2851                          * The interface was removed, so cannot continue
2852                          * processing any additional operations after this.
2853                          */
2854                         return;
2855                 }
2856         }
2857 #endif /* CONFIG_P2P */
2858
2859         wpa_supplicant_event_disassoc_finish(wpa_s, reason_code,
2860                                              locally_generated);
2861 }
2862
2863
2864 static void wpas_event_disassoc(struct wpa_supplicant *wpa_s,
2865                                 struct disassoc_info *info)
2866 {
2867         u16 reason_code = 0;
2868         int locally_generated = 0;
2869         const u8 *addr = NULL;
2870         const u8 *ie = NULL;
2871         size_t ie_len = 0;
2872
2873         wpa_dbg(wpa_s, MSG_DEBUG, "Disassociation notification");
2874
2875         if (info) {
2876                 addr = info->addr;
2877                 ie = info->ie;
2878                 ie_len = info->ie_len;
2879                 reason_code = info->reason_code;
2880                 locally_generated = info->locally_generated;
2881                 wpa_dbg(wpa_s, MSG_DEBUG, " * reason %u%s", reason_code,
2882                         locally_generated ? " (locally generated)" : "");
2883                 if (addr)
2884                         wpa_dbg(wpa_s, MSG_DEBUG, " * address " MACSTR,
2885                                 MAC2STR(addr));
2886                 wpa_hexdump(MSG_DEBUG, "Disassociation frame IE(s)",
2887                             ie, ie_len);
2888         }
2889
2890 #ifdef CONFIG_AP
2891         if (wpa_s->ap_iface && info && info->addr) {
2892                 hostapd_notif_disassoc(wpa_s->ap_iface->bss[0], info->addr);
2893                 return;
2894         }
2895
2896         if (wpa_s->ap_iface) {
2897                 wpa_dbg(wpa_s, MSG_DEBUG, "Ignore disassoc event in AP mode");
2898                 return;
2899         }
2900 #endif /* CONFIG_AP */
2901
2902 #ifdef CONFIG_P2P
2903         if (info) {
2904                 wpas_p2p_disassoc_notif(
2905                         wpa_s, info->addr, reason_code, info->ie, info->ie_len,
2906                         locally_generated);
2907         }
2908 #endif /* CONFIG_P2P */
2909
2910         if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
2911                 sme_event_disassoc(wpa_s, info);
2912
2913         wpas_event_disconnect(wpa_s, addr, reason_code, locally_generated,
2914                               ie, ie_len, 0);
2915 }
2916
2917
2918 static void wpas_event_deauth(struct wpa_supplicant *wpa_s,
2919                               struct deauth_info *info)
2920 {
2921         u16 reason_code = 0;
2922         int locally_generated = 0;
2923         const u8 *addr = NULL;
2924         const u8 *ie = NULL;
2925         size_t ie_len = 0;
2926
2927         wpa_dbg(wpa_s, MSG_DEBUG, "Deauthentication notification");
2928
2929         if (info) {
2930                 addr = info->addr;
2931                 ie = info->ie;
2932                 ie_len = info->ie_len;
2933                 reason_code = info->reason_code;
2934                 locally_generated = info->locally_generated;
2935                 wpa_dbg(wpa_s, MSG_DEBUG, " * reason %u%s",
2936                         reason_code,
2937                         locally_generated ? " (locally generated)" : "");
2938                 if (addr) {
2939                         wpa_dbg(wpa_s, MSG_DEBUG, " * address " MACSTR,
2940                                 MAC2STR(addr));
2941                 }
2942                 wpa_hexdump(MSG_DEBUG, "Deauthentication frame IE(s)",
2943                             ie, ie_len);
2944         }
2945
2946         wpa_reset_ft_completed(wpa_s->wpa);
2947
2948         wpas_event_disconnect(wpa_s, addr, reason_code,
2949                               locally_generated, ie, ie_len, 1);
2950 }
2951
2952
2953 static const char * reg_init_str(enum reg_change_initiator init)
2954 {
2955         switch (init) {
2956         case REGDOM_SET_BY_CORE:
2957                 return "CORE";
2958         case REGDOM_SET_BY_USER:
2959                 return "USER";
2960         case REGDOM_SET_BY_DRIVER:
2961                 return "DRIVER";
2962         case REGDOM_SET_BY_COUNTRY_IE:
2963                 return "COUNTRY_IE";
2964         case REGDOM_BEACON_HINT:
2965                 return "BEACON_HINT";
2966         }
2967         return "?";
2968 }
2969
2970
2971 static const char * reg_type_str(enum reg_type type)
2972 {
2973         switch (type) {
2974         case REGDOM_TYPE_UNKNOWN:
2975                 return "UNKNOWN";
2976         case REGDOM_TYPE_COUNTRY:
2977                 return "COUNTRY";
2978         case REGDOM_TYPE_WORLD:
2979                 return "WORLD";
2980         case REGDOM_TYPE_CUSTOM_WORLD:
2981                 return "CUSTOM_WORLD";
2982         case REGDOM_TYPE_INTERSECTION:
2983                 return "INTERSECTION";
2984         }
2985         return "?";
2986 }
2987
2988
2989 static void wpa_supplicant_update_channel_list(
2990         struct wpa_supplicant *wpa_s, struct channel_list_changed *info)
2991 {
2992         struct wpa_supplicant *ifs;
2993
2994         wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_REGDOM_CHANGE "init=%s type=%s%s%s",
2995                 reg_init_str(info->initiator), reg_type_str(info->type),
2996                 info->alpha2[0] ? " alpha2=" : "",
2997                 info->alpha2[0] ? info->alpha2 : "");
2998
2999         if (wpa_s->drv_priv == NULL)
3000                 return; /* Ignore event during drv initialization */
3001
3002         dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
3003                          radio_list) {
3004                 wpa_printf(MSG_DEBUG, "%s: Updating hw mode",
3005                            ifs->ifname);
3006                 free_hw_features(ifs);
3007                 ifs->hw.modes = wpa_drv_get_hw_feature_data(
3008                         ifs, &ifs->hw.num_modes, &ifs->hw.flags);
3009         }
3010
3011         /* Restart sched_scan with updated channel list */
3012         if (wpa_s->sched_scanning) {
3013                 wpa_dbg(wpa_s, MSG_DEBUG,
3014                         "Channel list changed restart sched scan.");
3015                 wpa_supplicant_cancel_sched_scan(wpa_s);
3016                 wpa_supplicant_req_scan(wpa_s, 0, 0);
3017         }
3018
3019         wpas_p2p_update_channel_list(wpa_s, WPAS_P2P_CHANNEL_UPDATE_DRIVER);
3020 }
3021
3022
3023 static void wpas_event_rx_mgmt_action(struct wpa_supplicant *wpa_s,
3024                                       const u8 *frame, size_t len, int freq,
3025                                       int rssi)
3026 {
3027         const struct ieee80211_mgmt *mgmt;
3028         const u8 *payload;
3029         size_t plen;
3030         u8 category;
3031
3032         if (len < IEEE80211_HDRLEN + 2)
3033                 return;
3034
3035         mgmt = (const struct ieee80211_mgmt *) frame;
3036         payload = frame + IEEE80211_HDRLEN;
3037         category = *payload++;
3038         plen = len - IEEE80211_HDRLEN - 1;
3039
3040         wpa_dbg(wpa_s, MSG_DEBUG, "Received Action frame: SA=" MACSTR
3041                 " Category=%u DataLen=%d freq=%d MHz",
3042                 MAC2STR(mgmt->sa), category, (int) plen, freq);
3043
3044         if (category == WLAN_ACTION_WMM) {
3045                 wmm_ac_rx_action(wpa_s, mgmt->da, mgmt->sa, payload, plen);
3046                 return;
3047         }
3048
3049 #ifdef CONFIG_IEEE80211R
3050         if (category == WLAN_ACTION_FT) {
3051                 ft_rx_action(wpa_s, payload, plen);
3052                 return;
3053         }
3054 #endif /* CONFIG_IEEE80211R */
3055
3056 #ifdef CONFIG_IEEE80211W
3057 #ifdef CONFIG_SME
3058         if (category == WLAN_ACTION_SA_QUERY) {
3059                 sme_sa_query_rx(wpa_s, mgmt->sa, payload, plen);
3060                 return;
3061         }
3062 #endif /* CONFIG_SME */
3063 #endif /* CONFIG_IEEE80211W */
3064
3065 #ifdef CONFIG_WNM
3066         if (mgmt->u.action.category == WLAN_ACTION_WNM) {
3067                 ieee802_11_rx_wnm_action(wpa_s, mgmt, len);
3068                 return;
3069         }
3070 #endif /* CONFIG_WNM */
3071
3072 #ifdef CONFIG_GAS
3073         if ((mgmt->u.action.category == WLAN_ACTION_PUBLIC ||
3074              mgmt->u.action.category == WLAN_ACTION_PROTECTED_DUAL) &&
3075             gas_query_rx(wpa_s->gas, mgmt->da, mgmt->sa, mgmt->bssid,
3076                          mgmt->u.action.category,
3077                          payload, plen, freq) == 0)
3078                 return;
3079 #endif /* CONFIG_GAS */
3080
3081 #ifdef CONFIG_TDLS
3082         if (category == WLAN_ACTION_PUBLIC && plen >= 4 &&
3083             payload[0] == WLAN_TDLS_DISCOVERY_RESPONSE) {
3084                 wpa_dbg(wpa_s, MSG_DEBUG,
3085                         "TDLS: Received Discovery Response from " MACSTR,
3086                         MAC2STR(mgmt->sa));
3087                 return;
3088         }
3089 #endif /* CONFIG_TDLS */
3090
3091 #ifdef CONFIG_INTERWORKING
3092         if (category == WLAN_ACTION_QOS && plen >= 1 &&
3093             payload[0] == QOS_QOS_MAP_CONFIG) {
3094                 const u8 *pos = payload + 1;
3095                 size_t qlen = plen - 1;
3096                 wpa_dbg(wpa_s, MSG_DEBUG, "Interworking: Received QoS Map Configure frame from "
3097                         MACSTR, MAC2STR(mgmt->sa));
3098                 if (os_memcmp(mgmt->sa, wpa_s->bssid, ETH_ALEN) == 0 &&
3099                     qlen > 2 && pos[0] == WLAN_EID_QOS_MAP_SET &&
3100                     pos[1] <= qlen - 2 && pos[1] >= 16)
3101                         wpas_qos_map_set(wpa_s, pos + 2, pos[1]);
3102                 return;
3103         }
3104 #endif /* CONFIG_INTERWORKING */
3105
3106         if (category == WLAN_ACTION_RADIO_MEASUREMENT &&
3107             payload[0] == WLAN_RRM_NEIGHBOR_REPORT_RESPONSE) {
3108                 wpas_rrm_process_neighbor_rep(wpa_s, payload + 1, plen - 1);
3109                 return;
3110         }
3111
3112         if (category == WLAN_ACTION_RADIO_MEASUREMENT &&
3113             payload[0] == WLAN_RRM_LINK_MEASUREMENT_REQUEST) {
3114                 wpas_rrm_handle_link_measurement_request(wpa_s, mgmt->sa,
3115                                                          payload + 1, plen - 1,
3116                                                          rssi);
3117                 return;
3118         }
3119
3120 #ifdef CONFIG_FST
3121         if (mgmt->u.action.category == WLAN_ACTION_FST && wpa_s->fst) {
3122                 fst_rx_action(wpa_s->fst, mgmt, len);
3123                 return;
3124         }
3125 #endif /* CONFIG_FST */
3126
3127         wpas_p2p_rx_action(wpa_s, mgmt->da, mgmt->sa, mgmt->bssid,
3128                            category, payload, plen, freq);
3129         if (wpa_s->ifmsh)
3130                 mesh_mpm_action_rx(wpa_s, mgmt, len);
3131 }
3132
3133
3134 static void wpa_supplicant_notify_avoid_freq(struct wpa_supplicant *wpa_s,
3135                                              union wpa_event_data *event)
3136 {
3137         struct wpa_freq_range_list *list;
3138         char *str = NULL;
3139
3140         list = &event->freq_range;
3141
3142         if (list->num)
3143                 str = freq_range_list_str(list);
3144         wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_AVOID_FREQ "ranges=%s",
3145                 str ? str : "");
3146
3147 #ifdef CONFIG_P2P
3148         if (freq_range_list_parse(&wpa_s->global->p2p_go_avoid_freq, str)) {
3149                 wpa_dbg(wpa_s, MSG_ERROR, "%s: Failed to parse freq range",
3150                         __func__);
3151         } else {
3152                 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Update channel list based on frequency avoid event");
3153
3154                 /*
3155                  * The update channel flow will also take care of moving a GO
3156                  * from the unsafe frequency if needed.
3157                  */
3158                 wpas_p2p_update_channel_list(wpa_s,
3159                                              WPAS_P2P_CHANNEL_UPDATE_AVOID);
3160         }
3161 #endif /* CONFIG_P2P */
3162
3163         os_free(str);
3164 }
3165
3166
3167 static void wpa_supplicant_event_assoc_auth(struct wpa_supplicant *wpa_s,
3168                                             union wpa_event_data *data)
3169 {
3170         wpa_dbg(wpa_s, MSG_DEBUG,
3171                 "Connection authorized by device, previous state %d",
3172                 wpa_s->wpa_state);
3173         if (wpa_s->wpa_state == WPA_ASSOCIATED) {
3174                 wpa_supplicant_cancel_auth_timeout(wpa_s);
3175                 wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
3176                 eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
3177                 eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
3178         }
3179         wpa_sm_set_rx_replay_ctr(wpa_s->wpa, data->assoc_info.key_replay_ctr);
3180         wpa_sm_set_ptk_kck_kek(wpa_s->wpa, data->assoc_info.ptk_kck,
3181                                data->assoc_info.ptk_kck_len,
3182                                data->assoc_info.ptk_kek,
3183                                data->assoc_info.ptk_kek_len);
3184 }
3185
3186
3187 void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
3188                           union wpa_event_data *data)
3189 {
3190         struct wpa_supplicant *wpa_s = ctx;
3191         int resched;
3192
3193         if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED &&
3194             event != EVENT_INTERFACE_ENABLED &&
3195             event != EVENT_INTERFACE_STATUS &&
3196             event != EVENT_SCHED_SCAN_STOPPED) {
3197                 wpa_dbg(wpa_s, MSG_DEBUG,
3198                         "Ignore event %s (%d) while interface is disabled",
3199                         event_to_string(event), event);
3200                 return;
3201         }
3202
3203 #ifndef CONFIG_NO_STDOUT_DEBUG
3204 {
3205         int level = MSG_DEBUG;
3206
3207         if (event == EVENT_RX_MGMT && data->rx_mgmt.frame_len >= 24) {
3208                 const struct ieee80211_hdr *hdr;
3209                 u16 fc;
3210                 hdr = (const struct ieee80211_hdr *) data->rx_mgmt.frame;
3211                 fc = le_to_host16(hdr->frame_control);
3212                 if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
3213                     WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON)
3214                         level = MSG_EXCESSIVE;
3215         }
3216
3217         wpa_dbg(wpa_s, level, "Event %s (%d) received",
3218                 event_to_string(event), event);
3219 }
3220 #endif /* CONFIG_NO_STDOUT_DEBUG */
3221
3222         switch (event) {
3223         case EVENT_AUTH:
3224                 sme_event_auth(wpa_s, data);
3225                 break;
3226         case EVENT_ASSOC:
3227                 wpa_supplicant_event_assoc(wpa_s, data);
3228                 if (data && data->assoc_info.authorized)
3229                         wpa_supplicant_event_assoc_auth(wpa_s, data);
3230                 break;
3231         case EVENT_DISASSOC:
3232                 wpas_event_disassoc(wpa_s,
3233                                     data ? &data->disassoc_info : NULL);
3234                 break;
3235         case EVENT_DEAUTH:
3236                 wpas_event_deauth(wpa_s,
3237                                   data ? &data->deauth_info : NULL);
3238                 break;
3239         case EVENT_MICHAEL_MIC_FAILURE:
3240                 wpa_supplicant_event_michael_mic_failure(wpa_s, data);
3241                 break;
3242 #ifndef CONFIG_NO_SCAN_PROCESSING
3243         case EVENT_SCAN_STARTED:
3244                 os_get_reltime(&wpa_s->scan_start_time);
3245                 if (wpa_s->own_scan_requested) {
3246                         struct os_reltime diff;
3247
3248                         os_reltime_sub(&wpa_s->scan_start_time,
3249                                        &wpa_s->scan_trigger_time, &diff);
3250                         wpa_dbg(wpa_s, MSG_DEBUG, "Own scan request started a scan in %ld.%06ld seconds",
3251                                 diff.sec, diff.usec);
3252                         wpa_s->own_scan_requested = 0;
3253                         wpa_s->own_scan_running = 1;
3254                         if (wpa_s->last_scan_req == MANUAL_SCAN_REQ &&
3255                             wpa_s->manual_scan_use_id) {
3256                                 wpa_msg_ctrl(wpa_s, MSG_INFO,
3257                                              WPA_EVENT_SCAN_STARTED "id=%u",
3258                                              wpa_s->manual_scan_id);
3259                         } else {
3260                                 wpa_msg_ctrl(wpa_s, MSG_INFO,
3261                                              WPA_EVENT_SCAN_STARTED);
3262                         }
3263                 } else {
3264                         wpa_dbg(wpa_s, MSG_DEBUG, "External program started a scan");
3265                         wpa_s->radio->external_scan_running = 1;
3266                         wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_STARTED);
3267                 }
3268                 break;
3269         case EVENT_SCAN_RESULTS:
3270                 if (os_reltime_initialized(&wpa_s->scan_start_time)) {
3271                         struct os_reltime now, diff;
3272                         os_get_reltime(&now);
3273                         os_reltime_sub(&now, &wpa_s->scan_start_time, &diff);
3274                         wpa_s->scan_start_time.sec = 0;
3275                         wpa_s->scan_start_time.usec = 0;
3276                         wpa_dbg(wpa_s, MSG_DEBUG, "Scan completed in %ld.%06ld seconds",
3277                                 diff.sec, diff.usec);
3278                 }
3279                 if (wpa_supplicant_event_scan_results(wpa_s, data))
3280                         break; /* interface may have been removed */
3281                 wpa_s->own_scan_running = 0;
3282                 wpa_s->radio->external_scan_running = 0;
3283                 radio_work_check_next(wpa_s);
3284                 break;
3285 #endif /* CONFIG_NO_SCAN_PROCESSING */
3286         case EVENT_ASSOCINFO:
3287                 wpa_supplicant_event_associnfo(wpa_s, data);
3288                 break;
3289         case EVENT_INTERFACE_STATUS:
3290                 wpa_supplicant_event_interface_status(wpa_s, data);
3291                 break;
3292         case EVENT_PMKID_CANDIDATE:
3293                 wpa_supplicant_event_pmkid_candidate(wpa_s, data);
3294                 break;
3295 #ifdef CONFIG_PEERKEY
3296         case EVENT_STKSTART:
3297                 wpa_supplicant_event_stkstart(wpa_s, data);
3298                 break;
3299 #endif /* CONFIG_PEERKEY */
3300 #ifdef CONFIG_TDLS
3301         case EVENT_TDLS:
3302                 wpa_supplicant_event_tdls(wpa_s, data);
3303                 break;
3304 #endif /* CONFIG_TDLS */
3305 #ifdef CONFIG_WNM
3306         case EVENT_WNM:
3307                 wpa_supplicant_event_wnm(wpa_s, data);
3308                 break;
3309 #endif /* CONFIG_WNM */
3310 #ifdef CONFIG_IEEE80211R
3311         case EVENT_FT_RESPONSE:
3312                 wpa_supplicant_event_ft_response(wpa_s, data);
3313                 break;
3314 #endif /* CONFIG_IEEE80211R */
3315 #ifdef CONFIG_IBSS_RSN
3316         case EVENT_IBSS_RSN_START:
3317                 wpa_supplicant_event_ibss_rsn_start(wpa_s, data);
3318                 break;
3319 #endif /* CONFIG_IBSS_RSN */
3320         case EVENT_ASSOC_REJECT:
3321                 if (data->assoc_reject.bssid)
3322                         wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_ASSOC_REJECT
3323                                 "bssid=" MACSTR " status_code=%u",
3324                                 MAC2STR(data->assoc_reject.bssid),
3325                                 data->assoc_reject.status_code);
3326                 else
3327                         wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_ASSOC_REJECT
3328                                 "status_code=%u",
3329                                 data->assoc_reject.status_code);
3330                 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
3331                         sme_event_assoc_reject(wpa_s, data);
3332                 else {
3333                         const u8 *bssid = data->assoc_reject.bssid;
3334                         if (bssid == NULL || is_zero_ether_addr(bssid))
3335                                 bssid = wpa_s->pending_bssid;
3336                         wpas_connection_failed(wpa_s, bssid);
3337                         wpa_supplicant_mark_disassoc(wpa_s);
3338                 }
3339                 break;
3340         case EVENT_AUTH_TIMED_OUT:
3341                 /* It is possible to get this event from earlier connection */
3342                 if (wpa_s->current_ssid &&
3343                     wpa_s->current_ssid->mode == WPAS_MODE_MESH) {
3344                         wpa_dbg(wpa_s, MSG_DEBUG,
3345                                 "Ignore AUTH_TIMED_OUT in mesh configuration");
3346                         break;
3347                 }
3348                 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
3349                         sme_event_auth_timed_out(wpa_s, data);
3350                 break;
3351         case EVENT_ASSOC_TIMED_OUT:
3352                 /* It is possible to get this event from earlier connection */
3353                 if (wpa_s->current_ssid &&
3354                     wpa_s->current_ssid->mode == WPAS_MODE_MESH) {
3355                         wpa_dbg(wpa_s, MSG_DEBUG,
3356                                 "Ignore ASSOC_TIMED_OUT in mesh configuration");
3357                         break;
3358                 }
3359                 if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
3360                         sme_event_assoc_timed_out(wpa_s, data);
3361                 break;
3362         case EVENT_TX_STATUS:
3363                 wpa_dbg(wpa_s, MSG_DEBUG, "EVENT_TX_STATUS dst=" MACSTR
3364                         " type=%d stype=%d",
3365                         MAC2STR(data->tx_status.dst),
3366                         data->tx_status.type, data->tx_status.stype);
3367 #ifdef CONFIG_AP
3368                 if (wpa_s->ap_iface == NULL) {
3369 #ifdef CONFIG_OFFCHANNEL
3370                         if (data->tx_status.type == WLAN_FC_TYPE_MGMT &&
3371                             data->tx_status.stype == WLAN_FC_STYPE_ACTION)
3372                                 offchannel_send_action_tx_status(
3373                                         wpa_s, data->tx_status.dst,
3374                                         data->tx_status.data,
3375                                         data->tx_status.data_len,
3376                                         data->tx_status.ack ?
3377                                         OFFCHANNEL_SEND_ACTION_SUCCESS :
3378                                         OFFCHANNEL_SEND_ACTION_NO_ACK);
3379 #endif /* CONFIG_OFFCHANNEL */
3380                         break;
3381                 }
3382 #endif /* CONFIG_AP */
3383 #ifdef CONFIG_OFFCHANNEL
3384                 wpa_dbg(wpa_s, MSG_DEBUG, "EVENT_TX_STATUS pending_dst="
3385                         MACSTR, MAC2STR(wpa_s->parent->pending_action_dst));
3386                 /*
3387                  * Catch TX status events for Action frames we sent via group
3388                  * interface in GO mode.
3389                  */
3390                 if (data->tx_status.type == WLAN_FC_TYPE_MGMT &&
3391                     data->tx_status.stype == WLAN_FC_STYPE_ACTION &&
3392                     os_memcmp(wpa_s->parent->pending_action_dst,
3393                               data->tx_status.dst, ETH_ALEN) == 0) {
3394                         offchannel_send_action_tx_status(
3395                                 wpa_s->parent, data->tx_status.dst,
3396                                 data->tx_status.data,
3397                                 data->tx_status.data_len,
3398                                 data->tx_status.ack ?
3399                                 OFFCHANNEL_SEND_ACTION_SUCCESS :
3400                                 OFFCHANNEL_SEND_ACTION_NO_ACK);
3401                         break;
3402                 }
3403 #endif /* CONFIG_OFFCHANNEL */
3404 #ifdef CONFIG_AP
3405                 switch (data->tx_status.type) {
3406                 case WLAN_FC_TYPE_MGMT:
3407                         ap_mgmt_tx_cb(wpa_s, data->tx_status.data,
3408                                       data->tx_status.data_len,
3409                                       data->tx_status.stype,
3410                                       data->tx_status.ack);
3411                         break;
3412                 case WLAN_FC_TYPE_DATA:
3413                         ap_tx_status(wpa_s, data->tx_status.dst,
3414                                      data->tx_status.data,
3415                                      data->tx_status.data_len,
3416                                      data->tx_status.ack);
3417                         break;
3418                 }
3419 #endif /* CONFIG_AP */
3420                 break;
3421 #ifdef CONFIG_AP
3422         case EVENT_EAPOL_TX_STATUS:
3423                 ap_eapol_tx_status(wpa_s, data->eapol_tx_status.dst,
3424                                    data->eapol_tx_status.data,
3425                                    data->eapol_tx_status.data_len,
3426                                    data->eapol_tx_status.ack);
3427                 break;
3428         case EVENT_DRIVER_CLIENT_POLL_OK:
3429                 ap_client_poll_ok(wpa_s, data->client_poll.addr);
3430                 break;
3431         case EVENT_RX_FROM_UNKNOWN:
3432                 if (wpa_s->ap_iface == NULL)
3433                         break;
3434                 ap_rx_from_unknown_sta(wpa_s, data->rx_from_unknown.addr,
3435                                        data->rx_from_unknown.wds);
3436                 break;
3437         case EVENT_CH_SWITCH:
3438                 if (!data)
3439                         break;
3440                 if (!wpa_s->ap_iface) {
3441                         wpa_dbg(wpa_s, MSG_DEBUG, "AP: Ignore channel switch "
3442                                 "event in non-AP mode");
3443                         break;
3444                 }
3445
3446                 wpas_ap_ch_switch(wpa_s, data->ch_switch.freq,
3447                                   data->ch_switch.ht_enabled,
3448                                   data->ch_switch.ch_offset,
3449                                   data->ch_switch.ch_width,
3450                                   data->ch_switch.cf1,
3451                                   data->ch_switch.cf2);
3452                 break;
3453 #ifdef NEED_AP_MLME
3454         case EVENT_DFS_RADAR_DETECTED:
3455                 if (data)
3456                         wpas_event_dfs_radar_detected(wpa_s, &data->dfs_event);
3457                 break;
3458         case EVENT_DFS_CAC_STARTED:
3459                 if (data)
3460                         wpas_event_dfs_cac_started(wpa_s, &data->dfs_event);
3461                 break;
3462         case EVENT_DFS_CAC_FINISHED:
3463                 if (data)
3464                         wpas_event_dfs_cac_finished(wpa_s, &data->dfs_event);
3465                 break;
3466         case EVENT_DFS_CAC_ABORTED:
3467                 if (data)
3468                         wpas_event_dfs_cac_aborted(wpa_s, &data->dfs_event);
3469                 break;
3470         case EVENT_DFS_NOP_FINISHED:
3471                 if (data)
3472                         wpas_event_dfs_cac_nop_finished(wpa_s,
3473                                                         &data->dfs_event);
3474                 break;
3475 #endif /* NEED_AP_MLME */
3476 #endif /* CONFIG_AP */
3477         case EVENT_RX_MGMT: {
3478                 u16 fc, stype;
3479                 const struct ieee80211_mgmt *mgmt;
3480
3481 #ifdef CONFIG_TESTING_OPTIONS
3482                 if (wpa_s->ext_mgmt_frame_handling) {
3483                         struct rx_mgmt *rx = &data->rx_mgmt;
3484                         size_t hex_len = 2 * rx->frame_len + 1;
3485                         char *hex = os_malloc(hex_len);
3486                         if (hex) {
3487                                 wpa_snprintf_hex(hex, hex_len,
3488                                                  rx->frame, rx->frame_len);
3489                                 wpa_msg(wpa_s, MSG_INFO, "MGMT-RX freq=%d datarate=%u ssi_signal=%d %s",
3490                                         rx->freq, rx->datarate, rx->ssi_signal,
3491                                         hex);
3492                                 os_free(hex);
3493                         }
3494                         break;
3495                 }
3496 #endif /* CONFIG_TESTING_OPTIONS */
3497
3498                 mgmt = (const struct ieee80211_mgmt *)
3499                         data->rx_mgmt.frame;
3500                 fc = le_to_host16(mgmt->frame_control);
3501                 stype = WLAN_FC_GET_STYPE(fc);
3502
3503 #ifdef CONFIG_AP
3504                 if (wpa_s->ap_iface == NULL) {
3505 #endif /* CONFIG_AP */
3506 #ifdef CONFIG_P2P
3507                         if (stype == WLAN_FC_STYPE_PROBE_REQ &&
3508                             data->rx_mgmt.frame_len > 24) {
3509                                 const u8 *src = mgmt->sa;
3510                                 const u8 *ie = mgmt->u.probe_req.variable;
3511                                 size_t ie_len = data->rx_mgmt.frame_len -
3512                                         (mgmt->u.probe_req.variable -
3513                                          data->rx_mgmt.frame);
3514                                 wpas_p2p_probe_req_rx(
3515                                         wpa_s, src, mgmt->da,
3516                                         mgmt->bssid, ie, ie_len,
3517                                         data->rx_mgmt.freq,
3518                                         data->rx_mgmt.ssi_signal);
3519                                 break;
3520                         }
3521 #endif /* CONFIG_P2P */
3522 #ifdef CONFIG_IBSS_RSN
3523                         if (wpa_s->current_ssid &&
3524                             wpa_s->current_ssid->mode == WPAS_MODE_IBSS &&
3525                             stype == WLAN_FC_STYPE_AUTH &&
3526                             data->rx_mgmt.frame_len >= 30) {
3527                                 wpa_supplicant_event_ibss_auth(wpa_s, data);
3528                                 break;
3529                         }
3530 #endif /* CONFIG_IBSS_RSN */
3531
3532                         if (stype == WLAN_FC_STYPE_ACTION) {
3533                                 wpas_event_rx_mgmt_action(
3534                                         wpa_s, data->rx_mgmt.frame,
3535                                         data->rx_mgmt.frame_len,
3536                                         data->rx_mgmt.freq,
3537                                         data->rx_mgmt.ssi_signal);
3538                                 break;
3539                         }
3540
3541                         if (wpa_s->ifmsh) {
3542                                 mesh_mpm_mgmt_rx(wpa_s, &data->rx_mgmt);
3543                                 break;
3544                         }
3545
3546                         wpa_dbg(wpa_s, MSG_DEBUG, "AP: ignore received "
3547                                 "management frame in non-AP mode");
3548                         break;
3549 #ifdef CONFIG_AP
3550                 }
3551
3552                 if (stype == WLAN_FC_STYPE_PROBE_REQ &&
3553                     data->rx_mgmt.frame_len > 24) {
3554                         const u8 *ie = mgmt->u.probe_req.variable;
3555                         size_t ie_len = data->rx_mgmt.frame_len -
3556                                 (mgmt->u.probe_req.variable -
3557                                  data->rx_mgmt.frame);
3558
3559                         wpas_notify_preq(wpa_s, mgmt->sa, mgmt->da,
3560                                          mgmt->bssid, ie, ie_len,
3561                                          data->rx_mgmt.ssi_signal);
3562                 }
3563
3564                 ap_mgmt_rx(wpa_s, &data->rx_mgmt);
3565 #endif /* CONFIG_AP */
3566                 break;
3567                 }
3568         case EVENT_RX_PROBE_REQ:
3569                 if (data->rx_probe_req.sa == NULL ||
3570                     data->rx_probe_req.ie == NULL)
3571                         break;
3572 #ifdef CONFIG_AP
3573                 if (wpa_s->ap_iface) {
3574                         hostapd_probe_req_rx(wpa_s->ap_iface->bss[0],
3575                                              data->rx_probe_req.sa,
3576                                              data->rx_probe_req.da,
3577                                              data->rx_probe_req.bssid,
3578                                              data->rx_probe_req.ie,
3579                                              data->rx_probe_req.ie_len,
3580                                              data->rx_probe_req.ssi_signal);
3581                         break;
3582                 }
3583 #endif /* CONFIG_AP */
3584                 wpas_p2p_probe_req_rx(wpa_s, data->rx_probe_req.sa,
3585                                       data->rx_probe_req.da,
3586                                       data->rx_probe_req.bssid,
3587                                       data->rx_probe_req.ie,
3588                                       data->rx_probe_req.ie_len,
3589                                       0,
3590                                       data->rx_probe_req.ssi_signal);
3591                 break;
3592         case EVENT_REMAIN_ON_CHANNEL:
3593 #ifdef CONFIG_OFFCHANNEL
3594                 offchannel_remain_on_channel_cb(
3595                         wpa_s, data->remain_on_channel.freq,
3596                         data->remain_on_channel.duration);
3597 #endif /* CONFIG_OFFCHANNEL */
3598                 wpas_p2p_remain_on_channel_cb(
3599                         wpa_s, data->remain_on_channel.freq,
3600                         data->remain_on_channel.duration);
3601                 break;
3602         case EVENT_CANCEL_REMAIN_ON_CHANNEL:
3603 #ifdef CONFIG_OFFCHANNEL
3604                 offchannel_cancel_remain_on_channel_cb(
3605                         wpa_s, data->remain_on_channel.freq);
3606 #endif /* CONFIG_OFFCHANNEL */
3607                 wpas_p2p_cancel_remain_on_channel_cb(
3608                         wpa_s, data->remain_on_channel.freq);
3609                 break;
3610         case EVENT_EAPOL_RX:
3611                 wpa_supplicant_rx_eapol(wpa_s, data->eapol_rx.src,
3612                                         data->eapol_rx.data,
3613                                         data->eapol_rx.data_len);
3614                 break;
3615         case EVENT_SIGNAL_CHANGE:
3616                 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_SIGNAL_CHANGE
3617                         "above=%d signal=%d noise=%d txrate=%d",
3618                         data->signal_change.above_threshold,
3619                         data->signal_change.current_signal,
3620                         data->signal_change.current_noise,
3621                         data->signal_change.current_txrate);
3622                 wpa_bss_update_level(wpa_s->current_bss,
3623                                      data->signal_change.current_signal);
3624                 bgscan_notify_signal_change(
3625                         wpa_s, data->signal_change.above_threshold,
3626                         data->signal_change.current_signal,
3627                         data->signal_change.current_noise,
3628                         data->signal_change.current_txrate);
3629                 break;
3630         case EVENT_INTERFACE_ENABLED:
3631                 wpa_dbg(wpa_s, MSG_DEBUG, "Interface was enabled");
3632                 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
3633                         wpa_supplicant_update_mac_addr(wpa_s);
3634                         if (wpa_s->p2p_mgmt) {
3635                                 wpa_supplicant_set_state(wpa_s,
3636                                                          WPA_DISCONNECTED);
3637                                 break;
3638                         }
3639
3640 #ifdef CONFIG_AP
3641                         if (!wpa_s->ap_iface) {
3642                                 wpa_supplicant_set_state(wpa_s,
3643                                                          WPA_DISCONNECTED);
3644                                 wpa_s->scan_req = NORMAL_SCAN_REQ;
3645                                 wpa_supplicant_req_scan(wpa_s, 0, 0);
3646                         } else
3647                                 wpa_supplicant_set_state(wpa_s,
3648                                                          WPA_COMPLETED);
3649 #else /* CONFIG_AP */
3650                         wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
3651                         wpa_supplicant_req_scan(wpa_s, 0, 0);
3652 #endif /* CONFIG_AP */
3653                 }
3654                 break;
3655         case EVENT_INTERFACE_DISABLED:
3656                 wpa_dbg(wpa_s, MSG_DEBUG, "Interface was disabled");
3657 #ifdef CONFIG_P2P
3658                 if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO ||
3659                     (wpa_s->current_ssid && wpa_s->current_ssid->p2p_group &&
3660                      wpa_s->current_ssid->mode == WPAS_MODE_P2P_GO)) {
3661                         /*
3662                          * Mark interface disabled if this happens to end up not
3663                          * being removed as a separate P2P group interface.
3664                          */
3665                         wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
3666                         /*
3667                          * The interface was externally disabled. Remove
3668                          * it assuming an external entity will start a
3669                          * new session if needed.
3670                          */
3671                         if (wpa_s->current_ssid &&
3672                             wpa_s->current_ssid->p2p_group)
3673                                 wpas_p2p_interface_unavailable(wpa_s);
3674                         else
3675                                 wpas_p2p_disconnect(wpa_s);
3676                         /*
3677                          * wpa_s instance may have been freed, so must not use
3678                          * it here anymore.
3679                          */
3680                         break;
3681                 }
3682                 if (wpa_s->p2p_scan_work && wpa_s->global->p2p &&
3683                     p2p_in_progress(wpa_s->global->p2p) > 1) {
3684                         /* This radio work will be cancelled, so clear P2P
3685                          * state as well.
3686                          */
3687                         p2p_stop_find(wpa_s->global->p2p);
3688                 }
3689 #endif /* CONFIG_P2P */
3690
3691                 if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
3692                         /*
3693                          * Indicate disconnection to keep ctrl_iface events
3694                          * consistent.
3695                          */
3696                         wpa_supplicant_event_disassoc(
3697                                 wpa_s, WLAN_REASON_DEAUTH_LEAVING, 1);
3698                 }
3699                 wpa_supplicant_mark_disassoc(wpa_s);
3700                 radio_remove_works(wpa_s, NULL, 0);
3701
3702                 wpa_supplicant_set_state(wpa_s, WPA_INTERFACE_DISABLED);
3703                 break;
3704         case EVENT_CHANNEL_LIST_CHANGED:
3705                 wpa_supplicant_update_channel_list(
3706                         wpa_s, &data->channel_list_changed);
3707                 break;
3708         case EVENT_INTERFACE_UNAVAILABLE:
3709                 wpas_p2p_interface_unavailable(wpa_s);
3710                 break;
3711         case EVENT_BEST_CHANNEL:
3712                 wpa_dbg(wpa_s, MSG_DEBUG, "Best channel event received "
3713                         "(%d %d %d)",
3714                         data->best_chan.freq_24, data->best_chan.freq_5,
3715                         data->best_chan.freq_overall);
3716                 wpa_s->best_24_freq = data->best_chan.freq_24;
3717                 wpa_s->best_5_freq = data->best_chan.freq_5;
3718                 wpa_s->best_overall_freq = data->best_chan.freq_overall;
3719                 wpas_p2p_update_best_channels(wpa_s, data->best_chan.freq_24,
3720                                               data->best_chan.freq_5,
3721                                               data->best_chan.freq_overall);
3722                 break;
3723         case EVENT_UNPROT_DEAUTH:
3724                 wpa_supplicant_event_unprot_deauth(wpa_s,
3725                                                    &data->unprot_deauth);
3726                 break;
3727         case EVENT_UNPROT_DISASSOC:
3728                 wpa_supplicant_event_unprot_disassoc(wpa_s,
3729                                                      &data->unprot_disassoc);
3730                 break;
3731         case EVENT_STATION_LOW_ACK:
3732 #ifdef CONFIG_AP
3733                 if (wpa_s->ap_iface && data)
3734                         hostapd_event_sta_low_ack(wpa_s->ap_iface->bss[0],
3735                                                   data->low_ack.addr);
3736 #endif /* CONFIG_AP */
3737 #ifdef CONFIG_TDLS
3738                 if (data)
3739                         wpa_tdls_disable_unreachable_link(wpa_s->wpa,
3740                                                           data->low_ack.addr);
3741 #endif /* CONFIG_TDLS */
3742                 break;
3743         case EVENT_IBSS_PEER_LOST:
3744 #ifdef CONFIG_IBSS_RSN
3745                 ibss_rsn_stop(wpa_s->ibss_rsn, data->ibss_peer_lost.peer);
3746 #endif /* CONFIG_IBSS_RSN */
3747                 break;
3748         case EVENT_DRIVER_GTK_REKEY:
3749                 if (os_memcmp(data->driver_gtk_rekey.bssid,
3750                               wpa_s->bssid, ETH_ALEN))
3751                         break;
3752                 if (!wpa_s->wpa)
3753                         break;
3754                 wpa_sm_update_replay_ctr(wpa_s->wpa,
3755                                          data->driver_gtk_rekey.replay_ctr);
3756                 break;
3757         case EVENT_SCHED_SCAN_STOPPED:
3758                 wpa_s->pno = 0;
3759                 wpa_s->sched_scanning = 0;
3760                 resched = wpa_s->scanning;
3761                 wpa_supplicant_notify_scanning(wpa_s, 0);
3762
3763                 if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
3764                         break;
3765
3766                 /*
3767                  * Start a new sched scan to continue searching for more SSIDs
3768                  * either if timed out or PNO schedule scan is pending.
3769                  */
3770                 if (wpa_s->sched_scan_timed_out) {
3771                         wpa_supplicant_req_sched_scan(wpa_s);
3772                 } else if (wpa_s->pno_sched_pending) {
3773                         wpa_s->pno_sched_pending = 0;
3774                         wpas_start_pno(wpa_s);
3775                 } else if (resched) {
3776                         wpa_supplicant_req_scan(wpa_s, 0, 0);
3777                 }
3778
3779                 break;
3780         case EVENT_WPS_BUTTON_PUSHED:
3781 #ifdef CONFIG_WPS
3782                 wpas_wps_start_pbc(wpa_s, NULL, 0);
3783 #endif /* CONFIG_WPS */
3784                 break;
3785         case EVENT_AVOID_FREQUENCIES:
3786                 wpa_supplicant_notify_avoid_freq(wpa_s, data);
3787                 break;
3788         case EVENT_CONNECT_FAILED_REASON:
3789 #ifdef CONFIG_AP
3790                 if (!wpa_s->ap_iface || !data)
3791                         break;
3792                 hostapd_event_connect_failed_reason(
3793                         wpa_s->ap_iface->bss[0],
3794                         data->connect_failed_reason.addr,
3795                         data->connect_failed_reason.code);
3796 #endif /* CONFIG_AP */
3797                 break;
3798         case EVENT_NEW_PEER_CANDIDATE:
3799 #ifdef CONFIG_MESH
3800                 if (!wpa_s->ifmsh || !data)
3801                         break;
3802                 wpa_mesh_notify_peer(wpa_s, data->mesh_peer.peer,
3803                                      data->mesh_peer.ies,
3804                                      data->mesh_peer.ie_len);
3805 #endif /* CONFIG_MESH */
3806                 break;
3807         default:
3808                 wpa_msg(wpa_s, MSG_INFO, "Unknown event %d", event);
3809                 break;
3810         }
3811 }