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