Branch data Line data Source code
1 : : /*
2 : : * wpa_supplicant - SME
3 : : * Copyright (c) 2009-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 "utils/eloop.h"
13 : : #include "common/ieee802_11_defs.h"
14 : : #include "common/ieee802_11_common.h"
15 : : #include "eapol_supp/eapol_supp_sm.h"
16 : : #include "common/wpa_common.h"
17 : : #include "common/sae.h"
18 : : #include "rsn_supp/wpa.h"
19 : : #include "rsn_supp/pmksa_cache.h"
20 : : #include "config.h"
21 : : #include "wpa_supplicant_i.h"
22 : : #include "driver_i.h"
23 : : #include "wpas_glue.h"
24 : : #include "wps_supplicant.h"
25 : : #include "p2p_supplicant.h"
26 : : #include "notify.h"
27 : : #include "bss.h"
28 : : #include "scan.h"
29 : : #include "sme.h"
30 : : #include "hs20_supplicant.h"
31 : :
32 : : #define SME_AUTH_TIMEOUT 5
33 : : #define SME_ASSOC_TIMEOUT 5
34 : :
35 : : static void sme_auth_timer(void *eloop_ctx, void *timeout_ctx);
36 : : static void sme_assoc_timer(void *eloop_ctx, void *timeout_ctx);
37 : : static void sme_obss_scan_timeout(void *eloop_ctx, void *timeout_ctx);
38 : : #ifdef CONFIG_IEEE80211W
39 : : static void sme_stop_sa_query(struct wpa_supplicant *wpa_s);
40 : : #endif /* CONFIG_IEEE80211W */
41 : :
42 : :
43 : : #ifdef CONFIG_SAE
44 : :
45 : 23 : static int index_within_array(const int *array, int idx)
46 : : {
47 : : int i;
48 [ + + ]: 35 : for (i = 0; i < idx; i++) {
49 [ - + ]: 12 : if (array[i] <= 0)
50 : 0 : return 0;
51 : : }
52 : 23 : return 1;
53 : : }
54 : :
55 : :
56 : 23 : static int sme_set_sae_group(struct wpa_supplicant *wpa_s)
57 : : {
58 : 23 : int *groups = wpa_s->conf->sae_groups;
59 : 23 : int default_groups[] = { 19, 20, 21, 25, 26, 0 };
60 : :
61 [ + + ][ + + ]: 23 : if (!groups || groups[0] <= 0)
62 : 6 : groups = default_groups;
63 : :
64 : : /* Configuration may have changed, so validate current index */
65 [ - + ]: 23 : if (!index_within_array(groups, wpa_s->sme.sae_group_index))
66 : 0 : return -1;
67 : :
68 : : for (;;) {
69 : 23 : int group = groups[wpa_s->sme.sae_group_index];
70 [ - + ]: 23 : if (group < 0)
71 : 0 : break;
72 [ + - ]: 23 : if (sae_set_group(&wpa_s->sme.sae, group) == 0) {
73 : 23 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected SAE group %d",
74 : : wpa_s->sme.sae.group);
75 : 23 : return 0;
76 : : }
77 : 0 : wpa_s->sme.sae_group_index++;
78 : 0 : }
79 : :
80 : 23 : return -1;
81 : : }
82 : :
83 : :
84 : 20 : static struct wpabuf * sme_auth_build_sae_commit(struct wpa_supplicant *wpa_s,
85 : : struct wpa_ssid *ssid,
86 : : const u8 *bssid)
87 : : {
88 : : struct wpabuf *buf;
89 : : size_t len;
90 : :
91 [ - + ]: 20 : if (ssid->passphrase == NULL) {
92 : 0 : wpa_printf(MSG_DEBUG, "SAE: No password available");
93 : 0 : return NULL;
94 : : }
95 : :
96 [ - + ]: 20 : if (sme_set_sae_group(wpa_s) < 0) {
97 : 0 : wpa_printf(MSG_DEBUG, "SAE: Failed to select group");
98 : 0 : return NULL;
99 : : }
100 : :
101 [ - + ]: 20 : if (sae_prepare_commit(wpa_s->own_addr, bssid,
102 : 20 : (u8 *) ssid->passphrase,
103 : 20 : os_strlen(ssid->passphrase),
104 : : &wpa_s->sme.sae) < 0) {
105 : 0 : wpa_printf(MSG_DEBUG, "SAE: Could not pick PWE");
106 : 0 : return NULL;
107 : : }
108 : :
109 [ + + ]: 20 : len = wpa_s->sme.sae_token ? wpabuf_len(wpa_s->sme.sae_token) : 0;
110 : 20 : buf = wpabuf_alloc(4 + SAE_COMMIT_MAX_LEN + len);
111 [ - + ]: 20 : if (buf == NULL)
112 : 0 : return NULL;
113 : :
114 : 20 : wpabuf_put_le16(buf, 1); /* Transaction seq# */
115 : 20 : wpabuf_put_le16(buf, WLAN_STATUS_SUCCESS);
116 : 20 : sae_write_commit(&wpa_s->sme.sae, buf, wpa_s->sme.sae_token);
117 : :
118 : 20 : return buf;
119 : : }
120 : :
121 : :
122 : 16 : static struct wpabuf * sme_auth_build_sae_confirm(struct wpa_supplicant *wpa_s)
123 : : {
124 : : struct wpabuf *buf;
125 : :
126 : 16 : buf = wpabuf_alloc(4 + SAE_CONFIRM_MAX_LEN);
127 [ - + ]: 16 : if (buf == NULL)
128 : 0 : return NULL;
129 : :
130 : 16 : wpabuf_put_le16(buf, 2); /* Transaction seq# */
131 : 16 : wpabuf_put_le16(buf, WLAN_STATUS_SUCCESS);
132 : 16 : sae_write_confirm(&wpa_s->sme.sae, buf);
133 : :
134 : 16 : return buf;
135 : : }
136 : :
137 : : #endif /* CONFIG_SAE */
138 : :
139 : :
140 : 452 : static void sme_send_authentication(struct wpa_supplicant *wpa_s,
141 : : struct wpa_bss *bss, struct wpa_ssid *ssid,
142 : : int start)
143 : : {
144 : : struct wpa_driver_auth_params params;
145 : : struct wpa_ssid *old_ssid;
146 : : #ifdef CONFIG_IEEE80211R
147 : : const u8 *ie;
148 : : #endif /* CONFIG_IEEE80211R */
149 : : #ifdef CONFIG_IEEE80211R
150 : 452 : const u8 *md = NULL;
151 : : #endif /* CONFIG_IEEE80211R */
152 : : int i, bssid_changed;
153 : 452 : struct wpabuf *resp = NULL;
154 : : u8 ext_capab[10];
155 : : int ext_capab_len;
156 : :
157 [ - + ]: 452 : if (bss == NULL) {
158 : 0 : wpa_msg(wpa_s, MSG_ERROR, "SME: No scan result available for "
159 : : "the network");
160 : 0 : return;
161 : : }
162 : :
163 : 452 : wpa_s->current_bss = bss;
164 : :
165 : 452 : os_memset(¶ms, 0, sizeof(params));
166 : 452 : wpa_s->reassociate = 0;
167 : :
168 : 452 : params.freq = bss->freq;
169 : 452 : params.bssid = bss->bssid;
170 : 452 : params.ssid = bss->ssid;
171 : 452 : params.ssid_len = bss->ssid_len;
172 : 452 : params.p2p = ssid->p2p_group;
173 : :
174 [ + + ][ + + ]: 452 : if (wpa_s->sme.ssid_len != params.ssid_len ||
175 : 327 : os_memcmp(wpa_s->sme.ssid, params.ssid, params.ssid_len) != 0)
176 : 162 : wpa_s->sme.prev_bssid_set = 0;
177 : :
178 : 452 : wpa_s->sme.freq = params.freq;
179 : 452 : os_memcpy(wpa_s->sme.ssid, params.ssid, params.ssid_len);
180 : 452 : wpa_s->sme.ssid_len = params.ssid_len;
181 : :
182 : 452 : params.auth_alg = WPA_AUTH_ALG_OPEN;
183 : : #ifdef IEEE8021X_EAPOL
184 [ + + ]: 452 : if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
185 [ - + ]: 4 : if (ssid->leap) {
186 [ # # ]: 0 : if (ssid->non_leap == 0)
187 : 0 : params.auth_alg = WPA_AUTH_ALG_LEAP;
188 : : else
189 : 0 : params.auth_alg |= WPA_AUTH_ALG_LEAP;
190 : : }
191 : : }
192 : : #endif /* IEEE8021X_EAPOL */
193 : 452 : wpa_dbg(wpa_s, MSG_DEBUG, "Automatic auth_alg selection: 0x%x",
194 : : params.auth_alg);
195 [ + + ]: 452 : if (ssid->auth_alg) {
196 : 85 : params.auth_alg = ssid->auth_alg;
197 : 85 : wpa_dbg(wpa_s, MSG_DEBUG, "Overriding auth_alg selection: "
198 : : "0x%x", params.auth_alg);
199 : : }
200 : : #ifdef CONFIG_SAE
201 [ + + ]: 452 : if (wpa_key_mgmt_sae(ssid->key_mgmt)) {
202 : : const u8 *rsn;
203 : : struct wpa_ie_data ied;
204 : :
205 : 38 : rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
206 [ + - + - ]: 76 : if (rsn &&
207 : 38 : wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ied) == 0) {
208 [ + - ]: 38 : if (wpa_key_mgmt_sae(ied.key_mgmt)) {
209 : 38 : wpa_dbg(wpa_s, MSG_DEBUG, "Using SAE auth_alg");
210 : 38 : params.auth_alg = WPA_AUTH_ALG_SAE;
211 : : }
212 : : }
213 : : }
214 : : #endif /* CONFIG_SAE */
215 : :
216 [ + + ]: 2260 : for (i = 0; i < NUM_WEP_KEYS; i++) {
217 [ + + ]: 1808 : if (ssid->wep_key_len[i])
218 : 2 : params.wep_key[i] = ssid->wep_key[i];
219 : 1808 : params.wep_key_len[i] = ssid->wep_key_len[i];
220 : : }
221 : 452 : params.wep_tx_keyidx = ssid->wep_tx_keyidx;
222 : :
223 : 452 : bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
224 : 452 : os_memset(wpa_s->bssid, 0, ETH_ALEN);
225 : 452 : os_memcpy(wpa_s->pending_bssid, bss->bssid, ETH_ALEN);
226 [ + + ]: 452 : if (bssid_changed)
227 : 39 : wpas_notify_bssid_changed(wpa_s);
228 : :
229 [ + + + + ]: 884 : if ((wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE) ||
230 [ + + ]: 790 : wpa_bss_get_ie(bss, WLAN_EID_RSN)) &&
231 : 632 : wpa_key_mgmt_wpa(ssid->key_mgmt)) {
232 : : int try_opportunistic;
233 [ + + ][ - + ]: 280 : try_opportunistic = (ssid->proactive_key_caching < 0 ?
234 : 268 : wpa_s->conf->okc :
235 [ + - ][ + - ]: 6 : ssid->proactive_key_caching) &&
236 : 6 : (ssid->proto & WPA_PROTO_RSN);
237 [ + + ]: 274 : if (pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid,
238 : 274 : wpa_s->current_ssid,
239 : : try_opportunistic) == 0)
240 : 6 : eapol_sm_notify_pmkid_attempt(wpa_s->eapol, 1);
241 : 274 : wpa_s->sme.assoc_req_ie_len = sizeof(wpa_s->sme.assoc_req_ie);
242 [ - + ]: 274 : if (wpa_supplicant_set_suites(wpa_s, bss, ssid,
243 : 274 : wpa_s->sme.assoc_req_ie,
244 : : &wpa_s->sme.assoc_req_ie_len)) {
245 : 0 : wpa_msg(wpa_s, MSG_WARNING, "SME: Failed to set WPA "
246 : : "key management and encryption suites");
247 : 0 : return;
248 : : }
249 [ + + - + ]: 182 : } else if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
250 : 4 : wpa_key_mgmt_wpa_ieee8021x(ssid->key_mgmt)) {
251 : : /*
252 : : * Both WPA and non-WPA IEEE 802.1X enabled in configuration -
253 : : * use non-WPA since the scan results did not indicate that the
254 : : * AP is using WPA or WPA2.
255 : : */
256 : 0 : wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
257 : 0 : wpa_s->sme.assoc_req_ie_len = 0;
258 [ - + ]: 178 : } else if (wpa_key_mgmt_wpa_any(ssid->key_mgmt)) {
259 : 0 : wpa_s->sme.assoc_req_ie_len = sizeof(wpa_s->sme.assoc_req_ie);
260 [ # # ]: 0 : if (wpa_supplicant_set_suites(wpa_s, NULL, ssid,
261 : 0 : wpa_s->sme.assoc_req_ie,
262 : : &wpa_s->sme.assoc_req_ie_len)) {
263 : 0 : wpa_msg(wpa_s, MSG_WARNING, "SME: Failed to set WPA "
264 : : "key management and encryption suites (no "
265 : : "scan results)");
266 : 0 : return;
267 : : }
268 : : #ifdef CONFIG_WPS
269 [ + + ]: 178 : } else if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
270 : : struct wpabuf *wps_ie;
271 : 92 : wps_ie = wps_build_assoc_req_ie(wpas_wps_get_req_type(ssid));
272 [ + - ][ + - ]: 92 : if (wps_ie && wpabuf_len(wps_ie) <=
273 : : sizeof(wpa_s->sme.assoc_req_ie)) {
274 : 92 : wpa_s->sme.assoc_req_ie_len = wpabuf_len(wps_ie);
275 : 92 : os_memcpy(wpa_s->sme.assoc_req_ie, wpabuf_head(wps_ie),
276 : : wpa_s->sme.assoc_req_ie_len);
277 : : } else
278 : 0 : wpa_s->sme.assoc_req_ie_len = 0;
279 : 92 : wpabuf_free(wps_ie);
280 : 92 : wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
281 : : #endif /* CONFIG_WPS */
282 : : } else {
283 : 86 : wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
284 : 86 : wpa_s->sme.assoc_req_ie_len = 0;
285 : : }
286 : :
287 : : #ifdef CONFIG_IEEE80211R
288 : 452 : ie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
289 [ + + ][ + - ]: 452 : if (ie && ie[1] >= MOBILITY_DOMAIN_ID_LEN)
290 : 20 : md = ie + 2;
291 [ + + ]: 452 : wpa_sm_set_ft_params(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0);
292 [ + + ]: 452 : if (md) {
293 : : /* Prepare for the next transition */
294 : 20 : wpa_ft_prepare_auth_request(wpa_s->wpa, ie);
295 : : }
296 : :
297 [ + + ][ + - ]: 452 : if (md && wpa_key_mgmt_ft(ssid->key_mgmt)) {
298 [ + - ]: 20 : if (wpa_s->sme.assoc_req_ie_len + 5 <
299 : : sizeof(wpa_s->sme.assoc_req_ie)) {
300 : : struct rsn_mdie *mdie;
301 : 20 : u8 *pos = wpa_s->sme.assoc_req_ie +
302 : : wpa_s->sme.assoc_req_ie_len;
303 : 20 : *pos++ = WLAN_EID_MOBILITY_DOMAIN;
304 : 20 : *pos++ = sizeof(*mdie);
305 : 20 : mdie = (struct rsn_mdie *) pos;
306 : 20 : os_memcpy(mdie->mobility_domain, md,
307 : : MOBILITY_DOMAIN_ID_LEN);
308 : 20 : mdie->ft_capab = md[MOBILITY_DOMAIN_ID_LEN];
309 : 20 : wpa_s->sme.assoc_req_ie_len += 5;
310 : : }
311 : :
312 [ + + ][ + - ]: 20 : if (wpa_s->sme.ft_used &&
313 [ + - ]: 10 : os_memcmp(md, wpa_s->sme.mobility_domain, 2) == 0 &&
314 : 10 : wpa_sm_has_ptk(wpa_s->wpa)) {
315 : 10 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying to use FT "
316 : : "over-the-air");
317 : 10 : params.auth_alg = WPA_AUTH_ALG_FT;
318 : 10 : params.ie = wpa_s->sme.ft_ies;
319 : 10 : params.ie_len = wpa_s->sme.ft_ies_len;
320 : : }
321 : : }
322 : : #endif /* CONFIG_IEEE80211R */
323 : :
324 : : #ifdef CONFIG_IEEE80211W
325 [ + + ]: 452 : wpa_s->sme.mfp = ssid->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT ?
326 : 452 : wpa_s->conf->pmf : ssid->ieee80211w;
327 [ + + ]: 452 : if (wpa_s->sme.mfp != NO_MGMT_FRAME_PROTECTION) {
328 : 54 : const u8 *rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
329 : : struct wpa_ie_data _ie;
330 [ + - ][ + - ]: 54 : if (rsn && wpa_parse_wpa_ie(rsn, 2 + rsn[1], &_ie) == 0 &&
[ + + ]
331 : 54 : _ie.capabilities &
332 : : (WPA_CAPABILITY_MFPC | WPA_CAPABILITY_MFPR)) {
333 : 13 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected AP supports "
334 : : "MFP: require MFP");
335 : 13 : wpa_s->sme.mfp = MGMT_FRAME_PROTECTION_REQUIRED;
336 : : }
337 : : }
338 : : #endif /* CONFIG_IEEE80211W */
339 : :
340 : : #ifdef CONFIG_P2P
341 [ + - ]: 452 : if (wpa_s->global->p2p) {
342 : : u8 *pos;
343 : : size_t len;
344 : : int res;
345 : 452 : pos = wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len;
346 : 452 : len = sizeof(wpa_s->sme.assoc_req_ie) -
347 : 452 : wpa_s->sme.assoc_req_ie_len;
348 : 452 : res = wpas_p2p_assoc_req_ie(wpa_s, bss, pos, len,
349 : : ssid->p2p_group);
350 [ + + ]: 452 : if (res >= 0)
351 : 449 : wpa_s->sme.assoc_req_ie_len += res;
352 : : }
353 : : #endif /* CONFIG_P2P */
354 : :
355 : : #ifdef CONFIG_HS20
356 [ + + ]: 452 : if (is_hs20_network(wpa_s, ssid, bss)) {
357 : : struct wpabuf *hs20;
358 : 27 : hs20 = wpabuf_alloc(20);
359 [ + - ]: 27 : if (hs20) {
360 : 27 : wpas_hs20_add_indication(hs20);
361 : 27 : os_memcpy(wpa_s->sme.assoc_req_ie +
362 : : wpa_s->sme.assoc_req_ie_len,
363 : : wpabuf_head(hs20), wpabuf_len(hs20));
364 : 27 : wpa_s->sme.assoc_req_ie_len += wpabuf_len(hs20);
365 : 27 : wpabuf_free(hs20);
366 : : }
367 : : }
368 : : #endif /* CONFIG_HS20 */
369 : :
370 : 452 : ext_capab_len = wpas_build_ext_capab(wpa_s, ext_capab);
371 [ + - ]: 452 : if (ext_capab_len > 0) {
372 : 452 : u8 *pos = wpa_s->sme.assoc_req_ie;
373 [ + + ][ + + ]: 452 : if (wpa_s->sme.assoc_req_ie_len > 0 && pos[0] == WLAN_EID_RSN)
374 : 267 : pos += 2 + pos[1];
375 : 452 : os_memmove(pos + ext_capab_len, pos,
376 : : wpa_s->sme.assoc_req_ie_len -
377 : : (pos - wpa_s->sme.assoc_req_ie));
378 : 452 : wpa_s->sme.assoc_req_ie_len += ext_capab_len;
379 : 452 : os_memcpy(pos, ext_capab, ext_capab_len);
380 : : }
381 : :
382 : : #ifdef CONFIG_SAE
383 [ + + ]: 452 : if (params.auth_alg == WPA_AUTH_ALG_SAE) {
384 [ + + ]: 36 : if (start)
385 : 20 : resp = sme_auth_build_sae_commit(wpa_s, ssid,
386 : 20 : bss->bssid);
387 : : else
388 : 16 : resp = sme_auth_build_sae_confirm(wpa_s);
389 [ - + ]: 36 : if (resp == NULL)
390 : 0 : return;
391 : 36 : params.sae_data = wpabuf_head(resp);
392 : 36 : params.sae_data_len = wpabuf_len(resp);
393 [ + + ]: 36 : wpa_s->sme.sae.state = start ? SAE_COMMITTED : SAE_CONFIRMED;
394 : : }
395 : : #endif /* CONFIG_SAE */
396 : :
397 : 452 : wpa_supplicant_cancel_sched_scan(wpa_s);
398 : 452 : wpa_supplicant_cancel_scan(wpa_s);
399 : :
400 : 452 : wpa_msg(wpa_s, MSG_INFO, "SME: Trying to authenticate with " MACSTR
401 : 2712 : " (SSID='%s' freq=%d MHz)", MAC2STR(params.bssid),
402 : : wpa_ssid_txt(params.ssid, params.ssid_len), params.freq);
403 : :
404 : 452 : wpa_clear_keys(wpa_s, bss->bssid);
405 : 452 : wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
406 : 452 : old_ssid = wpa_s->current_ssid;
407 : 452 : wpa_s->current_ssid = ssid;
408 : 452 : wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
409 : 452 : wpa_supplicant_initiate_eapol(wpa_s);
410 [ + + ]: 452 : if (old_ssid != wpa_s->current_ssid)
411 : 215 : wpas_notify_network_changed(wpa_s);
412 : :
413 : 452 : wpa_s->sme.auth_alg = params.auth_alg;
414 [ - + ]: 452 : if (wpa_drv_authenticate(wpa_s, ¶ms) < 0) {
415 : 0 : wpa_msg(wpa_s, MSG_INFO, "SME: Authentication request to the "
416 : : "driver failed");
417 : 0 : wpas_connection_failed(wpa_s, bss->bssid);
418 : 0 : wpa_supplicant_mark_disassoc(wpa_s);
419 : 0 : wpabuf_free(resp);
420 : 0 : return;
421 : : }
422 : :
423 : 452 : eloop_register_timeout(SME_AUTH_TIMEOUT, 0, sme_auth_timer, wpa_s,
424 : : NULL);
425 : :
426 : : /*
427 : : * Association will be started based on the authentication event from
428 : : * the driver.
429 : : */
430 : :
431 : 452 : wpabuf_free(resp);
432 : : }
433 : :
434 : :
435 : 432 : void sme_authenticate(struct wpa_supplicant *wpa_s,
436 : : struct wpa_bss *bss, struct wpa_ssid *ssid)
437 : : {
438 : : #ifdef CONFIG_SAE
439 : 432 : wpa_s->sme.sae.state = SAE_NOTHING;
440 : 432 : wpa_s->sme.sae.send_confirm = 0;
441 : 432 : wpa_s->sme.sae_group_index = 0;
442 : : #endif /* CONFIG_SAE */
443 : 432 : sme_send_authentication(wpa_s, bss, ssid, 1);
444 : 432 : }
445 : :
446 : :
447 : : #ifdef CONFIG_SAE
448 : :
449 : 36 : static int sme_sae_auth(struct wpa_supplicant *wpa_s, u16 auth_transaction,
450 : : u16 status_code, const u8 *data, size_t len)
451 : : {
452 : 36 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: SAE authentication transaction %u "
453 : : "status code %u", auth_transaction, status_code);
454 : :
455 [ + + ][ + + ]: 36 : if (auth_transaction == 1 &&
456 [ + - ]: 1 : status_code == WLAN_STATUS_ANTI_CLOGGING_TOKEN_REQ &&
457 [ + - ]: 1 : wpa_s->sme.sae.state == SAE_COMMITTED &&
458 [ + - ]: 1 : wpa_s->current_bss && wpa_s->current_ssid) {
459 : 1 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: SAE anti-clogging token "
460 : : "requested");
461 : 1 : wpabuf_free(wpa_s->sme.sae_token);
462 : 1 : wpa_s->sme.sae_token = wpabuf_alloc_copy(data, len);
463 : 1 : sme_send_authentication(wpa_s, wpa_s->current_bss,
464 : : wpa_s->current_ssid, 1);
465 : 1 : return 0;
466 : : }
467 : :
468 [ + + ][ + + ]: 35 : if (auth_transaction == 1 &&
469 [ + - ]: 3 : status_code == WLAN_STATUS_FINITE_CYCLIC_GROUP_NOT_SUPPORTED &&
470 [ + - ]: 3 : wpa_s->sme.sae.state == SAE_COMMITTED &&
471 [ + - ]: 3 : wpa_s->current_bss && wpa_s->current_ssid) {
472 : 3 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: SAE group not supported");
473 : 3 : wpa_s->sme.sae_group_index++;
474 [ - + ]: 3 : if (sme_set_sae_group(wpa_s) < 0)
475 : 0 : return -1; /* no other groups enabled */
476 : 3 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Try next enabled SAE group");
477 : 3 : sme_send_authentication(wpa_s, wpa_s->current_bss,
478 : : wpa_s->current_ssid, 1);
479 : 3 : return 0;
480 : : }
481 : :
482 [ - + ]: 32 : if (status_code != WLAN_STATUS_SUCCESS)
483 : 0 : return -1;
484 : :
485 [ + + ]: 32 : if (auth_transaction == 1) {
486 : 16 : int *groups = wpa_s->conf->sae_groups;
487 : :
488 : 16 : wpa_dbg(wpa_s, MSG_DEBUG, "SME SAE commit");
489 [ + - ][ - + ]: 16 : if (wpa_s->current_bss == NULL ||
490 : 16 : wpa_s->current_ssid == NULL)
491 : 0 : return -1;
492 [ - + ]: 16 : if (wpa_s->sme.sae.state != SAE_COMMITTED)
493 : 0 : return -1;
494 [ + + ][ + + ]: 16 : if (groups && groups[0] <= 0)
495 : 3 : groups = NULL;
496 [ - + ]: 16 : if (sae_parse_commit(&wpa_s->sme.sae, data, len, NULL, NULL,
497 : : groups) != WLAN_STATUS_SUCCESS)
498 : 0 : return -1;
499 : :
500 [ - + ]: 16 : if (sae_process_commit(&wpa_s->sme.sae) < 0) {
501 : 0 : wpa_printf(MSG_DEBUG, "SAE: Failed to process peer "
502 : : "commit");
503 : 0 : return -1;
504 : : }
505 : :
506 : 16 : wpabuf_free(wpa_s->sme.sae_token);
507 : 16 : wpa_s->sme.sae_token = NULL;
508 : 16 : sme_send_authentication(wpa_s, wpa_s->current_bss,
509 : : wpa_s->current_ssid, 0);
510 : 16 : return 0;
511 [ + - ]: 16 : } else if (auth_transaction == 2) {
512 : 16 : wpa_dbg(wpa_s, MSG_DEBUG, "SME SAE confirm");
513 [ - + ]: 16 : if (wpa_s->sme.sae.state != SAE_CONFIRMED)
514 : 0 : return -1;
515 [ - + ]: 16 : if (sae_check_confirm(&wpa_s->sme.sae, data, len) < 0)
516 : 0 : return -1;
517 : 16 : wpa_s->sme.sae.state = SAE_ACCEPTED;
518 : 16 : sae_clear_temp_data(&wpa_s->sme.sae);
519 : 16 : return 1;
520 : : }
521 : :
522 : 36 : return -1;
523 : : }
524 : : #endif /* CONFIG_SAE */
525 : :
526 : :
527 : 451 : void sme_event_auth(struct wpa_supplicant *wpa_s, union wpa_event_data *data)
528 : : {
529 : 451 : struct wpa_ssid *ssid = wpa_s->current_ssid;
530 : :
531 [ - + ]: 451 : if (ssid == NULL) {
532 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication event "
533 : : "when network is not selected");
534 : 0 : return;
535 : : }
536 : :
537 [ + + ]: 451 : if (wpa_s->wpa_state != WPA_AUTHENTICATING) {
538 : 2 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication event "
539 : : "when not in authenticating state");
540 : 2 : return;
541 : : }
542 : :
543 [ - + ]: 449 : if (os_memcmp(wpa_s->pending_bssid, data->auth.peer, ETH_ALEN) != 0) {
544 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication with "
545 : : "unexpected peer " MACSTR,
546 : : MAC2STR(data->auth.peer));
547 : 0 : return;
548 : : }
549 : :
550 : 449 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Authentication response: peer=" MACSTR
551 : : " auth_type=%d auth_transaction=%d status_code=%d",
552 : : MAC2STR(data->auth.peer), data->auth.auth_type,
553 : : data->auth.auth_transaction, data->auth.status_code);
554 : 449 : wpa_hexdump(MSG_MSGDUMP, "SME: Authentication response IEs",
555 : 449 : data->auth.ies, data->auth.ies_len);
556 : :
557 : 449 : eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
558 : :
559 : : #ifdef CONFIG_SAE
560 [ + + ]: 449 : if (data->auth.auth_type == WLAN_AUTH_SAE) {
561 : : int res;
562 : 36 : res = sme_sae_auth(wpa_s, data->auth.auth_transaction,
563 : 36 : data->auth.status_code, data->auth.ies,
564 : : data->auth.ies_len);
565 [ - + ]: 36 : if (res < 0) {
566 : 0 : wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
567 : 0 : wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
568 : :
569 : : }
570 [ + + ]: 36 : if (res != 1)
571 : 20 : return;
572 : :
573 : 16 : wpa_printf(MSG_DEBUG, "SME: SAE completed - setting PMK for "
574 : : "4-way handshake");
575 : 16 : wpa_sm_set_pmk(wpa_s->wpa, wpa_s->sme.sae.pmk, PMK_LEN);
576 : : }
577 : : #endif /* CONFIG_SAE */
578 : :
579 [ - + ]: 429 : if (data->auth.status_code != WLAN_STATUS_SUCCESS) {
580 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Authentication failed (status "
581 : : "code %d)", data->auth.status_code);
582 : :
583 [ # # ]: 0 : if (data->auth.status_code !=
584 [ # # ]: 0 : WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG ||
585 [ # # ]: 0 : wpa_s->sme.auth_alg == data->auth.auth_type ||
586 : 0 : wpa_s->current_ssid->auth_alg == WPA_AUTH_ALG_LEAP) {
587 : 0 : wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
588 : 0 : wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
589 : 0 : return;
590 : : }
591 : :
592 [ # # # ]: 0 : switch (data->auth.auth_type) {
593 : : case WLAN_AUTH_OPEN:
594 : 0 : wpa_s->current_ssid->auth_alg = WPA_AUTH_ALG_SHARED;
595 : :
596 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying SHARED auth");
597 : 0 : wpa_supplicant_associate(wpa_s, wpa_s->current_bss,
598 : : wpa_s->current_ssid);
599 : 0 : return;
600 : :
601 : : case WLAN_AUTH_SHARED_KEY:
602 : 0 : wpa_s->current_ssid->auth_alg = WPA_AUTH_ALG_LEAP;
603 : :
604 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying LEAP auth");
605 : 0 : wpa_supplicant_associate(wpa_s, wpa_s->current_bss,
606 : : wpa_s->current_ssid);
607 : 0 : return;
608 : :
609 : : default:
610 : 0 : return;
611 : : }
612 : : }
613 : :
614 : : #ifdef CONFIG_IEEE80211R
615 [ + + ]: 429 : if (data->auth.auth_type == WLAN_AUTH_FT) {
616 : : union wpa_event_data edata;
617 : 10 : os_memset(&edata, 0, sizeof(edata));
618 : 10 : edata.ft_ies.ies = data->auth.ies;
619 : 10 : edata.ft_ies.ies_len = data->auth.ies_len;
620 : 10 : os_memcpy(edata.ft_ies.target_ap, data->auth.peer, ETH_ALEN);
621 : 10 : wpa_supplicant_event(wpa_s, EVENT_FT_RESPONSE, &edata);
622 : : }
623 : : #endif /* CONFIG_IEEE80211R */
624 : :
625 : 451 : sme_associate(wpa_s, ssid->mode, data->auth.peer,
626 : 429 : data->auth.auth_type);
627 : : }
628 : :
629 : :
630 : 435 : void sme_associate(struct wpa_supplicant *wpa_s, enum wpas_mode mode,
631 : : const u8 *bssid, u16 auth_type)
632 : : {
633 : : struct wpa_driver_associate_params params;
634 : : struct ieee802_11_elems elems;
635 : : #ifdef CONFIG_HT_OVERRIDES
636 : : struct ieee80211_ht_capabilities htcaps;
637 : : struct ieee80211_ht_capabilities htcaps_mask;
638 : : #endif /* CONFIG_HT_OVERRIDES */
639 : : #ifdef CONFIG_VHT_OVERRIDES
640 : : struct ieee80211_vht_capabilities vhtcaps;
641 : : struct ieee80211_vht_capabilities vhtcaps_mask;
642 : : #endif /* CONFIG_VHT_OVERRIDES */
643 : :
644 : 435 : os_memset(¶ms, 0, sizeof(params));
645 : 435 : params.bssid = bssid;
646 : 435 : params.ssid = wpa_s->sme.ssid;
647 : 435 : params.ssid_len = wpa_s->sme.ssid_len;
648 : 435 : params.freq = wpa_s->sme.freq;
649 : 870 : params.bg_scan_period = wpa_s->current_ssid ?
650 [ + - ]: 435 : wpa_s->current_ssid->bg_scan_period : -1;
651 : 870 : params.wpa_ie = wpa_s->sme.assoc_req_ie_len ?
652 [ + - ]: 435 : wpa_s->sme.assoc_req_ie : NULL;
653 : 435 : params.wpa_ie_len = wpa_s->sme.assoc_req_ie_len;
654 : 435 : params.pairwise_suite = wpa_s->pairwise_cipher;
655 : 435 : params.group_suite = wpa_s->group_cipher;
656 : : #ifdef CONFIG_HT_OVERRIDES
657 : : os_memset(&htcaps, 0, sizeof(htcaps));
658 : : os_memset(&htcaps_mask, 0, sizeof(htcaps_mask));
659 : : params.htcaps = (u8 *) &htcaps;
660 : : params.htcaps_mask = (u8 *) &htcaps_mask;
661 : : wpa_supplicant_apply_ht_overrides(wpa_s, wpa_s->current_ssid, ¶ms);
662 : : #endif /* CONFIG_HT_OVERRIDES */
663 : : #ifdef CONFIG_VHT_OVERRIDES
664 : : os_memset(&vhtcaps, 0, sizeof(vhtcaps));
665 : : os_memset(&vhtcaps_mask, 0, sizeof(vhtcaps_mask));
666 : : params.vhtcaps = &vhtcaps;
667 : : params.vhtcaps_mask = &vhtcaps_mask;
668 : : wpa_supplicant_apply_vht_overrides(wpa_s, wpa_s->current_ssid, ¶ms);
669 : : #endif /* CONFIG_VHT_OVERRIDES */
670 : : #ifdef CONFIG_IEEE80211R
671 [ + + ][ + - ]: 435 : if (auth_type == WLAN_AUTH_FT && wpa_s->sme.ft_ies) {
672 : 16 : params.wpa_ie = wpa_s->sme.ft_ies;
673 : 16 : params.wpa_ie_len = wpa_s->sme.ft_ies_len;
674 : : }
675 : : #endif /* CONFIG_IEEE80211R */
676 : 435 : params.mode = mode;
677 : 435 : params.mgmt_frame_protection = wpa_s->sme.mfp;
678 [ + + ]: 435 : if (wpa_s->sme.prev_bssid_set)
679 : 26 : params.prev_bssid = wpa_s->sme.prev_bssid;
680 : :
681 [ + - ]: 435 : wpa_msg(wpa_s, MSG_INFO, "Trying to associate with " MACSTR
682 : 2610 : " (SSID='%s' freq=%d MHz)", MAC2STR(params.bssid),
683 : 870 : params.ssid ? wpa_ssid_txt(params.ssid, params.ssid_len) : "",
684 : : params.freq);
685 : :
686 : 435 : wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATING);
687 : :
688 [ + - - + ]: 870 : if (params.wpa_ie == NULL ||
689 : 435 : ieee802_11_parse_elems(params.wpa_ie, params.wpa_ie_len, &elems, 0)
690 : : < 0) {
691 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Could not parse own IEs?!");
692 : 0 : os_memset(&elems, 0, sizeof(elems));
693 : : }
694 [ + + ]: 435 : if (elems.rsn_ie) {
695 : 250 : params.wpa_proto = WPA_PROTO_RSN;
696 : 250 : wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.rsn_ie - 2,
697 : 250 : elems.rsn_ie_len + 2);
698 [ + + ]: 185 : } else if (elems.wpa_ie) {
699 : 7 : params.wpa_proto = WPA_PROTO_WPA;
700 : 7 : wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.wpa_ie - 2,
701 : 7 : elems.wpa_ie_len + 2);
702 : : } else
703 : 178 : wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
704 [ + - ][ + + ]: 435 : if (wpa_s->current_ssid && wpa_s->current_ssid->p2p_group)
705 : 117 : params.p2p = 1;
706 : :
707 [ - + ]: 435 : if (wpa_s->parent->set_sta_uapsd)
708 : 0 : params.uapsd = wpa_s->parent->sta_uapsd;
709 : : else
710 : 435 : params.uapsd = -1;
711 : :
712 [ - + ]: 435 : if (wpa_drv_associate(wpa_s, ¶ms) < 0) {
713 : 0 : wpa_msg(wpa_s, MSG_INFO, "SME: Association request to the "
714 : : "driver failed");
715 : 0 : wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
716 : 0 : wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
717 : 0 : os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
718 : 435 : return;
719 : : }
720 : :
721 : 435 : eloop_register_timeout(SME_ASSOC_TIMEOUT, 0, sme_assoc_timer, wpa_s,
722 : : NULL);
723 : : }
724 : :
725 : :
726 : 84 : int sme_update_ft_ies(struct wpa_supplicant *wpa_s, const u8 *md,
727 : : const u8 *ies, size_t ies_len)
728 : : {
729 [ + + ][ - + ]: 84 : if (md == NULL || ies == NULL) {
730 : 8 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Remove mobility domain");
731 : 8 : os_free(wpa_s->sme.ft_ies);
732 : 8 : wpa_s->sme.ft_ies = NULL;
733 : 8 : wpa_s->sme.ft_ies_len = 0;
734 : 8 : wpa_s->sme.ft_used = 0;
735 : 8 : return 0;
736 : : }
737 : :
738 : 76 : os_memcpy(wpa_s->sme.mobility_domain, md, MOBILITY_DOMAIN_ID_LEN);
739 : 76 : wpa_hexdump(MSG_DEBUG, "SME: FT IEs", ies, ies_len);
740 : 76 : os_free(wpa_s->sme.ft_ies);
741 : 76 : wpa_s->sme.ft_ies = os_malloc(ies_len);
742 [ - + ]: 76 : if (wpa_s->sme.ft_ies == NULL)
743 : 0 : return -1;
744 : 76 : os_memcpy(wpa_s->sme.ft_ies, ies, ies_len);
745 : 76 : wpa_s->sme.ft_ies_len = ies_len;
746 : 84 : return 0;
747 : : }
748 : :
749 : :
750 : 0 : static void sme_deauth(struct wpa_supplicant *wpa_s)
751 : : {
752 : : int bssid_changed;
753 : :
754 : 0 : bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
755 : :
756 [ # # ]: 0 : if (wpa_drv_deauthenticate(wpa_s, wpa_s->pending_bssid,
757 : : WLAN_REASON_DEAUTH_LEAVING) < 0) {
758 : 0 : wpa_msg(wpa_s, MSG_INFO, "SME: Deauth request to the driver "
759 : : "failed");
760 : : }
761 : 0 : wpa_s->sme.prev_bssid_set = 0;
762 : :
763 : 0 : wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
764 : 0 : wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
765 : 0 : os_memset(wpa_s->bssid, 0, ETH_ALEN);
766 : 0 : os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
767 [ # # ]: 0 : if (bssid_changed)
768 : 0 : wpas_notify_bssid_changed(wpa_s);
769 : 0 : }
770 : :
771 : :
772 : 0 : void sme_event_assoc_reject(struct wpa_supplicant *wpa_s,
773 : : union wpa_event_data *data)
774 : : {
775 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association with " MACSTR " failed: "
776 : : "status code %d", MAC2STR(wpa_s->pending_bssid),
777 : : data->assoc_reject.status_code);
778 : :
779 : 0 : eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
780 : :
781 : : /*
782 : : * For now, unconditionally terminate the previous authentication. In
783 : : * theory, this should not be needed, but mac80211 gets quite confused
784 : : * if the authentication is left pending.. Some roaming cases might
785 : : * benefit from using the previous authentication, so this could be
786 : : * optimized in the future.
787 : : */
788 : 0 : sme_deauth(wpa_s);
789 : 0 : }
790 : :
791 : :
792 : 3 : void sme_event_auth_timed_out(struct wpa_supplicant *wpa_s,
793 : : union wpa_event_data *data)
794 : : {
795 : 3 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Authentication timed out");
796 : 3 : wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
797 : 3 : wpa_supplicant_mark_disassoc(wpa_s);
798 : 3 : }
799 : :
800 : :
801 : 0 : void sme_event_assoc_timed_out(struct wpa_supplicant *wpa_s,
802 : : union wpa_event_data *data)
803 : : {
804 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association timed out");
805 : 0 : wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
806 : 0 : wpa_supplicant_mark_disassoc(wpa_s);
807 : 0 : }
808 : :
809 : :
810 : 0 : void sme_event_disassoc(struct wpa_supplicant *wpa_s,
811 : : struct disassoc_info *info)
812 : : {
813 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Disassociation event received");
814 [ # # ]: 0 : if (wpa_s->sme.prev_bssid_set) {
815 : : /*
816 : : * cfg80211/mac80211 can get into somewhat confused state if
817 : : * the AP only disassociates us and leaves us in authenticated
818 : : * state. For now, force the state to be cleared to avoid
819 : : * confusing errors if we try to associate with the AP again.
820 : : */
821 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Deauthenticate to clear "
822 : : "driver state");
823 : 0 : wpa_drv_deauthenticate(wpa_s, wpa_s->sme.prev_bssid,
824 : : WLAN_REASON_DEAUTH_LEAVING);
825 : : }
826 : 0 : }
827 : :
828 : :
829 : 0 : static void sme_auth_timer(void *eloop_ctx, void *timeout_ctx)
830 : : {
831 : 0 : struct wpa_supplicant *wpa_s = eloop_ctx;
832 [ # # ]: 0 : if (wpa_s->wpa_state == WPA_AUTHENTICATING) {
833 : 0 : wpa_msg(wpa_s, MSG_DEBUG, "SME: Authentication timeout");
834 : 0 : sme_deauth(wpa_s);
835 : : }
836 : 0 : }
837 : :
838 : :
839 : 0 : static void sme_assoc_timer(void *eloop_ctx, void *timeout_ctx)
840 : : {
841 : 0 : struct wpa_supplicant *wpa_s = eloop_ctx;
842 [ # # ]: 0 : if (wpa_s->wpa_state == WPA_ASSOCIATING) {
843 : 0 : wpa_msg(wpa_s, MSG_DEBUG, "SME: Association timeout");
844 : 0 : sme_deauth(wpa_s);
845 : : }
846 : 0 : }
847 : :
848 : :
849 : 3767 : void sme_state_changed(struct wpa_supplicant *wpa_s)
850 : : {
851 : : /* Make sure timers are cleaned up appropriately. */
852 [ + + ]: 3767 : if (wpa_s->wpa_state != WPA_ASSOCIATING)
853 : 3324 : eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
854 [ + + ]: 3767 : if (wpa_s->wpa_state != WPA_AUTHENTICATING)
855 : 3263 : eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
856 : 3767 : }
857 : :
858 : :
859 : 72 : void sme_disassoc_while_authenticating(struct wpa_supplicant *wpa_s,
860 : : const u8 *prev_pending_bssid)
861 : : {
862 : : /*
863 : : * mac80211-workaround to force deauth on failed auth cmd,
864 : : * requires us to remain in authenticating state to allow the
865 : : * second authentication attempt to be continued properly.
866 : : */
867 : 72 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Allow pending authentication "
868 : : "to proceed after disconnection event");
869 : 72 : wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
870 : 72 : os_memcpy(wpa_s->pending_bssid, prev_pending_bssid, ETH_ALEN);
871 : :
872 : : /*
873 : : * Re-arm authentication timer in case auth fails for whatever reason.
874 : : */
875 : 72 : eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
876 : 72 : eloop_register_timeout(SME_AUTH_TIMEOUT, 0, sme_auth_timer, wpa_s,
877 : : NULL);
878 : 72 : }
879 : :
880 : :
881 : 31 : void sme_deinit(struct wpa_supplicant *wpa_s)
882 : : {
883 : 31 : os_free(wpa_s->sme.ft_ies);
884 : 31 : wpa_s->sme.ft_ies = NULL;
885 : 31 : wpa_s->sme.ft_ies_len = 0;
886 : : #ifdef CONFIG_IEEE80211W
887 : 31 : sme_stop_sa_query(wpa_s);
888 : : #endif /* CONFIG_IEEE80211W */
889 : : #ifdef CONFIG_SAE
890 : 31 : wpabuf_free(wpa_s->sme.sae_token);
891 : 31 : wpa_s->sme.sae_token = NULL;
892 : 31 : sae_clear_data(&wpa_s->sme.sae);
893 : : #endif /* CONFIG_SAE */
894 : :
895 : 31 : eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
896 : 31 : eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
897 : 31 : eloop_cancel_timeout(sme_obss_scan_timeout, wpa_s, NULL);
898 : 31 : }
899 : :
900 : :
901 : 0 : static void sme_send_2040_bss_coex(struct wpa_supplicant *wpa_s,
902 : : const u8 *chan_list, u8 num_channels,
903 : : u8 num_intol)
904 : : {
905 : : struct ieee80211_2040_bss_coex_ie *bc_ie;
906 : : struct ieee80211_2040_intol_chan_report *ic_report;
907 : : struct wpabuf *buf;
908 : :
909 : 0 : wpa_printf(MSG_DEBUG, "SME: Send 20/40 BSS Coexistence to " MACSTR,
910 : 0 : MAC2STR(wpa_s->bssid));
911 : :
912 : 0 : buf = wpabuf_alloc(2 + /* action.category + action_code */
913 : : sizeof(struct ieee80211_2040_bss_coex_ie) +
914 : : sizeof(struct ieee80211_2040_intol_chan_report) +
915 : : num_channels);
916 [ # # ]: 0 : if (buf == NULL)
917 : 0 : return;
918 : :
919 : 0 : wpabuf_put_u8(buf, WLAN_ACTION_PUBLIC);
920 : 0 : wpabuf_put_u8(buf, WLAN_PA_20_40_BSS_COEX);
921 : :
922 : 0 : bc_ie = wpabuf_put(buf, sizeof(*bc_ie));
923 : 0 : bc_ie->element_id = WLAN_EID_20_40_BSS_COEXISTENCE;
924 : 0 : bc_ie->length = 1;
925 [ # # ]: 0 : if (num_intol)
926 : 0 : bc_ie->coex_param |= WLAN_20_40_BSS_COEX_20MHZ_WIDTH_REQ;
927 : :
928 [ # # ]: 0 : if (num_channels > 0) {
929 : 0 : ic_report = wpabuf_put(buf, sizeof(*ic_report));
930 : 0 : ic_report->element_id = WLAN_EID_20_40_BSS_INTOLERANT;
931 : 0 : ic_report->length = num_channels + 1;
932 : 0 : ic_report->op_class = 0;
933 : 0 : os_memcpy(wpabuf_put(buf, num_channels), chan_list,
934 : : num_channels);
935 : : }
936 : :
937 [ # # ]: 0 : if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
938 : 0 : wpa_s->own_addr, wpa_s->bssid,
939 : 0 : wpabuf_head(buf), wpabuf_len(buf), 0) < 0) {
940 : 0 : wpa_msg(wpa_s, MSG_INFO,
941 : : "SME: Failed to send 20/40 BSS Coexistence frame");
942 : : }
943 : :
944 : 0 : wpabuf_free(buf);
945 : : }
946 : :
947 : :
948 : 417 : int sme_proc_obss_scan(struct wpa_supplicant *wpa_s)
949 : : {
950 : : struct wpa_bss *bss;
951 : : const u8 *ie;
952 : : u16 ht_cap;
953 : : u8 chan_list[P2P_MAX_CHANNELS], channel;
954 : 417 : u8 num_channels = 0, num_intol = 0, i;
955 : :
956 [ + - ]: 417 : if (!wpa_s->sme.sched_obss_scan)
957 : 417 : return 0;
958 : :
959 : 0 : wpa_s->sme.sched_obss_scan = 0;
960 [ # # ][ # # ]: 0 : if (!wpa_s->current_bss || wpa_s->wpa_state != WPA_COMPLETED)
961 : 0 : return 1;
962 : :
963 : : /*
964 : : * Check whether AP uses regulatory triplet or channel triplet in
965 : : * country info. Right now the operating class of the BSS channel
966 : : * width trigger event is "unknown" (IEEE Std 802.11-2012 10.15.12),
967 : : * based on the assumption that operating class triplet is not used in
968 : : * beacon frame. If the First Channel Number/Operating Extension
969 : : * Identifier octet has a positive integer value of 201 or greater,
970 : : * then its operating class triplet.
971 : : *
972 : : * TODO: If Supported Operating Classes element is present in beacon
973 : : * frame, have to lookup operating class in Annex E and fill them in
974 : : * 2040 coex frame.
975 : : */
976 : 0 : ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_COUNTRY);
977 [ # # ][ # # ]: 0 : if (ie && (ie[1] >= 6) && (ie[5] >= 201))
[ # # ]
978 : 0 : return 1;
979 : :
980 : 0 : os_memset(chan_list, 0, sizeof(chan_list));
981 : :
982 [ # # ]: 0 : dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
983 : : /* Skip other band bss */
984 : : enum hostapd_hw_mode mode;
985 : 0 : mode = ieee80211_freq_to_chan(bss->freq, &channel);
986 [ # # ][ # # ]: 0 : if (mode != HOSTAPD_MODE_IEEE80211G &&
987 : : mode != HOSTAPD_MODE_IEEE80211B)
988 : 0 : continue;
989 : :
990 : 0 : ie = wpa_bss_get_ie(bss, WLAN_EID_HT_CAP);
991 [ # # ][ # # ]: 0 : ht_cap = (ie && (ie[1] == 26)) ? WPA_GET_LE16(ie + 2) : 0;
992 : :
993 [ # # ][ # # ]: 0 : if (!ht_cap || (ht_cap & HT_CAP_INFO_40MHZ_INTOLERANT)) {
994 : : /* Check whether the channel is already considered */
995 [ # # ]: 0 : for (i = 0; i < num_channels; i++) {
996 [ # # ]: 0 : if (channel == chan_list[i])
997 : 0 : break;
998 : : }
999 [ # # ]: 0 : if (i != num_channels)
1000 : 0 : continue;
1001 : :
1002 [ # # ]: 0 : if (ht_cap & HT_CAP_INFO_40MHZ_INTOLERANT)
1003 : 0 : num_intol++;
1004 : :
1005 : 0 : chan_list[num_channels++] = channel;
1006 : : }
1007 : : }
1008 : :
1009 : 0 : sme_send_2040_bss_coex(wpa_s, chan_list, num_channels, num_intol);
1010 : 417 : return 1;
1011 : : }
1012 : :
1013 : :
1014 : 0 : static struct hostapd_hw_modes * get_mode(struct hostapd_hw_modes *modes,
1015 : : u16 num_modes,
1016 : : enum hostapd_hw_mode mode)
1017 : : {
1018 : : u16 i;
1019 : :
1020 [ # # ]: 0 : for (i = 0; i < num_modes; i++) {
1021 [ # # ]: 0 : if (modes[i].mode == mode)
1022 : 0 : return &modes[i];
1023 : : }
1024 : :
1025 : 0 : return NULL;
1026 : : }
1027 : :
1028 : :
1029 : 0 : static void wpa_setband_scan_freqs_list(struct wpa_supplicant *wpa_s,
1030 : : enum hostapd_hw_mode band,
1031 : : struct wpa_driver_scan_params *params)
1032 : : {
1033 : : /* Include only supported channels for the specified band */
1034 : : struct hostapd_hw_modes *mode;
1035 : : int count, i;
1036 : :
1037 : 0 : mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, band);
1038 [ # # ]: 0 : if (mode == NULL) {
1039 : : /* No channels supported in this band - use empty list */
1040 : 0 : params->freqs = os_zalloc(sizeof(int));
1041 : 0 : return;
1042 : : }
1043 : :
1044 : 0 : params->freqs = os_calloc(mode->num_channels + 1, sizeof(int));
1045 [ # # ]: 0 : if (params->freqs == NULL)
1046 : 0 : return;
1047 [ # # ]: 0 : for (count = 0, i = 0; i < mode->num_channels; i++) {
1048 [ # # ]: 0 : if (mode->channels[i].flag & HOSTAPD_CHAN_DISABLED)
1049 : 0 : continue;
1050 : 0 : params->freqs[count++] = mode->channels[i].freq;
1051 : : }
1052 : : }
1053 : :
1054 : :
1055 : 0 : static void sme_obss_scan_timeout(void *eloop_ctx, void *timeout_ctx)
1056 : : {
1057 : 0 : struct wpa_supplicant *wpa_s = eloop_ctx;
1058 : : struct wpa_driver_scan_params params;
1059 : :
1060 [ # # ]: 0 : if (!wpa_s->current_bss) {
1061 : 0 : wpa_printf(MSG_DEBUG, "SME OBSS: Ignore scan request");
1062 : 0 : return;
1063 : : }
1064 : :
1065 : 0 : os_memset(¶ms, 0, sizeof(params));
1066 : 0 : wpa_setband_scan_freqs_list(wpa_s, HOSTAPD_MODE_IEEE80211G, ¶ms);
1067 : 0 : wpa_printf(MSG_DEBUG, "SME OBSS: Request an OBSS scan");
1068 : :
1069 [ # # ]: 0 : if (wpa_supplicant_trigger_scan(wpa_s, ¶ms))
1070 : 0 : wpa_printf(MSG_DEBUG, "SME OBSS: Failed to trigger scan");
1071 : : else
1072 : 0 : wpa_s->sme.sched_obss_scan = 1;
1073 : 0 : os_free(params.freqs);
1074 : :
1075 : 0 : eloop_register_timeout(wpa_s->sme.obss_scan_int, 0,
1076 : : sme_obss_scan_timeout, wpa_s, NULL);
1077 : : }
1078 : :
1079 : :
1080 : 2718 : void sme_sched_obss_scan(struct wpa_supplicant *wpa_s, int enable)
1081 : : {
1082 : : const u8 *ie;
1083 : 2718 : struct wpa_bss *bss = wpa_s->current_bss;
1084 : 2718 : struct wpa_ssid *ssid = wpa_s->current_ssid;
1085 : 2718 : struct hostapd_hw_modes *hw_mode = NULL;
1086 : : int i;
1087 : :
1088 : 2718 : eloop_cancel_timeout(sme_obss_scan_timeout, wpa_s, NULL);
1089 : 2718 : wpa_s->sme.sched_obss_scan = 0;
1090 [ + + ]: 2718 : if (!enable)
1091 : 2314 : return;
1092 : :
1093 : : /*
1094 : : * Schedule OBSS scan if driver is using station SME in wpa_supplicant
1095 : : * or it expects OBSS scan to be performed by wpa_supplicant.
1096 : : */
1097 [ + + ][ - + ]: 404 : if (!((wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) ||
1098 [ + - ]: 401 : (wpa_s->drv_flags & WPA_DRIVER_FLAGS_OBSS_SCAN)) ||
1099 [ + + ]: 401 : ssid == NULL || ssid->mode != IEEE80211_MODE_INFRA)
1100 : 71 : return;
1101 : :
1102 [ - + ]: 333 : if (!wpa_s->hw.modes)
1103 : 0 : return;
1104 : :
1105 : : /* only HT caps in 11g mode are relevant */
1106 [ + - ]: 333 : for (i = 0; i < wpa_s->hw.num_modes; i++) {
1107 : 333 : hw_mode = &wpa_s->hw.modes[i];
1108 [ + - ]: 333 : if (hw_mode->mode == HOSTAPD_MODE_IEEE80211G)
1109 : 333 : break;
1110 : : }
1111 : :
1112 : : /* Driver does not support HT40 for 11g or doesn't have 11g. */
1113 [ + - ][ + - ]: 333 : if (i == wpa_s->hw.num_modes || !hw_mode ||
[ - + ]
1114 : 333 : !(hw_mode->ht_capab & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
1115 : 0 : return;
1116 : :
1117 [ + - ][ + - ]: 333 : if (bss == NULL || bss->freq < 2400 || bss->freq > 2500)
[ - + ]
1118 : 0 : return; /* Not associated on 2.4 GHz band */
1119 : :
1120 : : /* Check whether AP supports HT40 */
1121 : 333 : ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_HT_CAP);
1122 [ + + ]: 494 : if (!ie || ie[1] < 2 ||
[ + - + + ]
1123 : 161 : !(WPA_GET_LE16(ie + 2) & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
1124 : 329 : return; /* AP does not support HT40 */
1125 : :
1126 : 4 : ie = wpa_bss_get_ie(wpa_s->current_bss,
1127 : : WLAN_EID_OVERLAPPING_BSS_SCAN_PARAMS);
1128 [ - + ][ # # ]: 4 : if (!ie || ie[1] < 14)
1129 : 4 : return; /* AP does not request OBSS scans */
1130 : :
1131 : 0 : wpa_s->sme.obss_scan_int = WPA_GET_LE16(ie + 6);
1132 [ # # ]: 0 : if (wpa_s->sme.obss_scan_int < 10) {
1133 : 0 : wpa_printf(MSG_DEBUG, "SME: Invalid OBSS Scan Interval %u "
1134 : : "replaced with the minimum 10 sec",
1135 : 0 : wpa_s->sme.obss_scan_int);
1136 : 0 : wpa_s->sme.obss_scan_int = 10;
1137 : : }
1138 : 0 : wpa_printf(MSG_DEBUG, "SME: OBSS Scan Interval %u sec",
1139 : 0 : wpa_s->sme.obss_scan_int);
1140 : 2718 : eloop_register_timeout(wpa_s->sme.obss_scan_int, 0,
1141 : : sme_obss_scan_timeout, wpa_s, NULL);
1142 : : }
1143 : :
1144 : :
1145 : : #ifdef CONFIG_IEEE80211W
1146 : :
1147 : : static const unsigned int sa_query_max_timeout = 1000;
1148 : : static const unsigned int sa_query_retry_timeout = 201;
1149 : :
1150 : 0 : static int sme_check_sa_query_timeout(struct wpa_supplicant *wpa_s)
1151 : : {
1152 : : u32 tu;
1153 : : struct os_reltime now, passed;
1154 : 0 : os_get_reltime(&now);
1155 : 0 : os_reltime_sub(&now, &wpa_s->sme.sa_query_start, &passed);
1156 : 0 : tu = (passed.sec * 1000000 + passed.usec) / 1024;
1157 [ # # ]: 0 : if (sa_query_max_timeout < tu) {
1158 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: SA Query timed out");
1159 : 0 : sme_stop_sa_query(wpa_s);
1160 : 0 : wpa_supplicant_deauthenticate(
1161 : : wpa_s, WLAN_REASON_PREV_AUTH_NOT_VALID);
1162 : 0 : return 1;
1163 : : }
1164 : :
1165 : 0 : return 0;
1166 : : }
1167 : :
1168 : :
1169 : 0 : static void sme_send_sa_query_req(struct wpa_supplicant *wpa_s,
1170 : : const u8 *trans_id)
1171 : : {
1172 : : u8 req[2 + WLAN_SA_QUERY_TR_ID_LEN];
1173 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Sending SA Query Request to "
1174 : : MACSTR, MAC2STR(wpa_s->bssid));
1175 : 0 : wpa_hexdump(MSG_DEBUG, "SME: SA Query Transaction ID",
1176 : : trans_id, WLAN_SA_QUERY_TR_ID_LEN);
1177 : 0 : req[0] = WLAN_ACTION_SA_QUERY;
1178 : 0 : req[1] = WLAN_SA_QUERY_REQUEST;
1179 : 0 : os_memcpy(req + 2, trans_id, WLAN_SA_QUERY_TR_ID_LEN);
1180 [ # # ]: 0 : if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
1181 : 0 : wpa_s->own_addr, wpa_s->bssid,
1182 : : req, sizeof(req), 0) < 0)
1183 : 0 : wpa_msg(wpa_s, MSG_INFO, "SME: Failed to send SA Query "
1184 : : "Request");
1185 : 0 : }
1186 : :
1187 : :
1188 : 0 : static void sme_sa_query_timer(void *eloop_ctx, void *timeout_ctx)
1189 : : {
1190 : 0 : struct wpa_supplicant *wpa_s = eloop_ctx;
1191 : : unsigned int timeout, sec, usec;
1192 : : u8 *trans_id, *nbuf;
1193 : :
1194 [ # # # # ]: 0 : if (wpa_s->sme.sa_query_count > 0 &&
1195 : 0 : sme_check_sa_query_timeout(wpa_s))
1196 : 0 : return;
1197 : :
1198 : 0 : nbuf = os_realloc_array(wpa_s->sme.sa_query_trans_id,
1199 : 0 : wpa_s->sme.sa_query_count + 1,
1200 : : WLAN_SA_QUERY_TR_ID_LEN);
1201 [ # # ]: 0 : if (nbuf == NULL)
1202 : 0 : return;
1203 [ # # ]: 0 : if (wpa_s->sme.sa_query_count == 0) {
1204 : : /* Starting a new SA Query procedure */
1205 : 0 : os_get_reltime(&wpa_s->sme.sa_query_start);
1206 : : }
1207 : 0 : trans_id = nbuf + wpa_s->sme.sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
1208 : 0 : wpa_s->sme.sa_query_trans_id = nbuf;
1209 : 0 : wpa_s->sme.sa_query_count++;
1210 : :
1211 : 0 : os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN);
1212 : :
1213 : 0 : timeout = sa_query_retry_timeout;
1214 : 0 : sec = ((timeout / 1000) * 1024) / 1000;
1215 : 0 : usec = (timeout % 1000) * 1024;
1216 : 0 : eloop_register_timeout(sec, usec, sme_sa_query_timer, wpa_s, NULL);
1217 : :
1218 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association SA Query attempt %d",
1219 : : wpa_s->sme.sa_query_count);
1220 : :
1221 : 0 : sme_send_sa_query_req(wpa_s, trans_id);
1222 : : }
1223 : :
1224 : :
1225 : 0 : static void sme_start_sa_query(struct wpa_supplicant *wpa_s)
1226 : : {
1227 : 0 : sme_sa_query_timer(wpa_s, NULL);
1228 : 0 : }
1229 : :
1230 : :
1231 : 31 : static void sme_stop_sa_query(struct wpa_supplicant *wpa_s)
1232 : : {
1233 : 31 : eloop_cancel_timeout(sme_sa_query_timer, wpa_s, NULL);
1234 : 31 : os_free(wpa_s->sme.sa_query_trans_id);
1235 : 31 : wpa_s->sme.sa_query_trans_id = NULL;
1236 : 31 : wpa_s->sme.sa_query_count = 0;
1237 : 31 : }
1238 : :
1239 : :
1240 : 0 : void sme_event_unprot_disconnect(struct wpa_supplicant *wpa_s, const u8 *sa,
1241 : : const u8 *da, u16 reason_code)
1242 : : {
1243 : : struct wpa_ssid *ssid;
1244 : :
1245 [ # # ]: 0 : if (wpa_s->wpa_state != WPA_COMPLETED)
1246 : 0 : return;
1247 : 0 : ssid = wpa_s->current_ssid;
1248 [ # # ][ # # ]: 0 : if (ssid == NULL ||
[ # # ]
1249 : 0 : (ssid->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT ?
1250 [ # # ]: 0 : wpa_s->conf->pmf : ssid->ieee80211w) == NO_MGMT_FRAME_PROTECTION)
1251 : 0 : return;
1252 [ # # ]: 0 : if (os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0)
1253 : 0 : return;
1254 [ # # ][ # # ]: 0 : if (reason_code != WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA &&
1255 : : reason_code != WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA)
1256 : 0 : return;
1257 [ # # ]: 0 : if (wpa_s->sme.sa_query_count > 0)
1258 : 0 : return;
1259 : :
1260 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Unprotected disconnect dropped - "
1261 : : "possible AP/STA state mismatch - trigger SA Query");
1262 : 0 : sme_start_sa_query(wpa_s);
1263 : : }
1264 : :
1265 : :
1266 : 0 : void sme_sa_query_rx(struct wpa_supplicant *wpa_s, const u8 *sa,
1267 : : const u8 *data, size_t len)
1268 : : {
1269 : : int i;
1270 : :
1271 [ # # ][ # # ]: 0 : if (wpa_s->sme.sa_query_trans_id == NULL ||
1272 [ # # ]: 0 : len < 1 + WLAN_SA_QUERY_TR_ID_LEN ||
1273 : 0 : data[0] != WLAN_SA_QUERY_RESPONSE)
1274 : 0 : return;
1275 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Received SA Query response from "
1276 : : MACSTR " (trans_id %02x%02x)", MAC2STR(sa), data[1], data[2]);
1277 : :
1278 [ # # ]: 0 : if (os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0)
1279 : 0 : return;
1280 : :
1281 [ # # ]: 0 : for (i = 0; i < wpa_s->sme.sa_query_count; i++) {
1282 [ # # ]: 0 : if (os_memcmp(wpa_s->sme.sa_query_trans_id +
1283 : : i * WLAN_SA_QUERY_TR_ID_LEN,
1284 : : data + 1, WLAN_SA_QUERY_TR_ID_LEN) == 0)
1285 : 0 : break;
1286 : : }
1287 : :
1288 [ # # ]: 0 : if (i >= wpa_s->sme.sa_query_count) {
1289 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: No matching SA Query "
1290 : : "transaction identifier found");
1291 : 0 : return;
1292 : : }
1293 : :
1294 : 0 : wpa_dbg(wpa_s, MSG_DEBUG, "SME: Reply to pending SA Query received "
1295 : : "from " MACSTR, MAC2STR(sa));
1296 : 0 : sme_stop_sa_query(wpa_s);
1297 : : }
1298 : :
1299 : : #endif /* CONFIG_IEEE80211W */
|