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