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