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