blob: ab71f6d92ff3692333b76e16467c799d22f919c4 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * wpa_supplicant - SME
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003 * Copyright (c) 2009-2014, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
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"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080017#include "common/sae.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070018#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"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070027#include "bss.h"
28#include "scan.h"
29#include "sme.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070030#include "hs20_supplicant.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070031
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);
Dmitry Shmidt04949592012-07-19 12:16:46 -070037static void sme_obss_scan_timeout(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070038#ifdef CONFIG_IEEE80211W
39static void sme_stop_sa_query(struct wpa_supplicant *wpa_s);
40#endif /* CONFIG_IEEE80211W */
41
42
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080043#ifdef CONFIG_SAE
44
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080045static int index_within_array(const int *array, int idx)
46{
47 int i;
48 for (i = 0; i < idx; i++) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -080049 if (array[i] <= 0)
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080050 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;
Dmitry Shmidtcce06662013-11-04 18:44:24 -080059 int default_groups[] = { 19, 20, 21, 25, 26, 0 };
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080060
Dmitry Shmidtcce06662013-11-04 18:44:24 -080061 if (!groups || groups[0] <= 0)
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080062 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];
Dmitry Shmidt41712582015-06-29 11:02:15 -070070 if (group <= 0)
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080071 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
84static struct wpabuf * sme_auth_build_sae_commit(struct wpa_supplicant *wpa_s,
85 struct wpa_ssid *ssid,
86 const u8 *bssid)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080087{
88 struct wpabuf *buf;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080089 size_t len;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080090
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080091 if (ssid->passphrase == NULL) {
92 wpa_printf(MSG_DEBUG, "SAE: No password available");
93 return NULL;
94 }
95
96 if (sme_set_sae_group(wpa_s) < 0) {
97 wpa_printf(MSG_DEBUG, "SAE: Failed to select group");
98 return NULL;
99 }
100
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
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);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800111 if (buf == NULL)
112 return NULL;
113
114 wpabuf_put_le16(buf, 1); /* Transaction seq# */
115 wpabuf_put_le16(buf, WLAN_STATUS_SUCCESS);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800116 sae_write_commit(&wpa_s->sme.sae, buf, wpa_s->sme.sae_token);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800117
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
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800126 buf = wpabuf_alloc(4 + SAE_CONFIRM_MAX_LEN);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800127 if (buf == NULL)
128 return NULL;
129
130 wpabuf_put_le16(buf, 2); /* Transaction seq# */
131 wpabuf_put_le16(buf, WLAN_STATUS_SUCCESS);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800132 sae_write_confirm(&wpa_s->sme.sae, buf);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800133
134 return buf;
135}
136
137#endif /* CONFIG_SAE */
138
139
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800140/**
141 * sme_auth_handle_rrm - Handle RRM aspects of current authentication attempt
142 * @wpa_s: Pointer to wpa_supplicant data
143 * @bss: Pointer to the bss which is the target of authentication attempt
144 */
145static void sme_auth_handle_rrm(struct wpa_supplicant *wpa_s,
146 struct wpa_bss *bss)
147{
148 const u8 rrm_ie_len = 5;
149 u8 *pos;
150 const u8 *rrm_ie;
151
152 wpa_s->rrm.rrm_used = 0;
153
154 wpa_printf(MSG_DEBUG,
155 "RRM: Determining whether RRM can be used - device support: 0x%x",
156 wpa_s->drv_rrm_flags);
157
158 rrm_ie = wpa_bss_get_ie(bss, WLAN_EID_RRM_ENABLED_CAPABILITIES);
159 if (!rrm_ie || !(bss->caps & IEEE80211_CAP_RRM)) {
160 wpa_printf(MSG_DEBUG, "RRM: No RRM in network");
161 return;
162 }
163
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700164 if (!((wpa_s->drv_rrm_flags &
165 WPA_DRIVER_FLAGS_DS_PARAM_SET_IE_IN_PROBES) &&
166 (wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_QUIET)) &&
167 !(wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_SUPPORT_RRM)) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800168 wpa_printf(MSG_DEBUG,
169 "RRM: Insufficient RRM support in driver - do not use RRM");
170 return;
171 }
172
173 if (sizeof(wpa_s->sme.assoc_req_ie) <
174 wpa_s->sme.assoc_req_ie_len + rrm_ie_len + 2) {
175 wpa_printf(MSG_INFO,
176 "RRM: Unable to use RRM, no room for RRM IE");
177 return;
178 }
179
180 wpa_printf(MSG_DEBUG, "RRM: Adding RRM IE to Association Request");
181 pos = wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len;
182 os_memset(pos, 0, 2 + rrm_ie_len);
183 *pos++ = WLAN_EID_RRM_ENABLED_CAPABILITIES;
184 *pos++ = rrm_ie_len;
185
186 /* Set supported capabilites flags */
187 if (wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_TX_POWER_INSERTION)
188 *pos |= WLAN_RRM_CAPS_LINK_MEASUREMENT;
189
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700190 if (wpa_s->lci)
191 pos[1] |= WLAN_RRM_CAPS_LCI_MEASUREMENT;
192
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800193 wpa_s->sme.assoc_req_ie_len += rrm_ie_len + 2;
194 wpa_s->rrm.rrm_used = 1;
195}
196
197
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800198static void sme_send_authentication(struct wpa_supplicant *wpa_s,
199 struct wpa_bss *bss, struct wpa_ssid *ssid,
200 int start)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700201{
202 struct wpa_driver_auth_params params;
203 struct wpa_ssid *old_ssid;
204#ifdef CONFIG_IEEE80211R
205 const u8 *ie;
206#endif /* CONFIG_IEEE80211R */
207#ifdef CONFIG_IEEE80211R
208 const u8 *md = NULL;
209#endif /* CONFIG_IEEE80211R */
210 int i, bssid_changed;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800211 struct wpabuf *resp = NULL;
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -0700212 u8 ext_capab[18];
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800213 int ext_capab_len;
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800214 int skip_auth;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800215#ifdef CONFIG_MBO
216 const u8 *mbo;
217#endif /* CONFIG_MBO */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700218
219 if (bss == NULL) {
220 wpa_msg(wpa_s, MSG_ERROR, "SME: No scan result available for "
221 "the network");
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800222 wpas_connect_work_done(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700223 return;
224 }
225
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800226 skip_auth = wpa_s->conf->reassoc_same_bss_optim &&
227 wpa_s->reassoc_same_bss;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700228 wpa_s->current_bss = bss;
229
230 os_memset(&params, 0, sizeof(params));
231 wpa_s->reassociate = 0;
232
233 params.freq = bss->freq;
234 params.bssid = bss->bssid;
235 params.ssid = bss->ssid;
236 params.ssid_len = bss->ssid_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800237 params.p2p = ssid->p2p_group;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700238
239 if (wpa_s->sme.ssid_len != params.ssid_len ||
240 os_memcmp(wpa_s->sme.ssid, params.ssid, params.ssid_len) != 0)
241 wpa_s->sme.prev_bssid_set = 0;
242
243 wpa_s->sme.freq = params.freq;
244 os_memcpy(wpa_s->sme.ssid, params.ssid, params.ssid_len);
245 wpa_s->sme.ssid_len = params.ssid_len;
246
247 params.auth_alg = WPA_AUTH_ALG_OPEN;
248#ifdef IEEE8021X_EAPOL
249 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
250 if (ssid->leap) {
251 if (ssid->non_leap == 0)
252 params.auth_alg = WPA_AUTH_ALG_LEAP;
253 else
254 params.auth_alg |= WPA_AUTH_ALG_LEAP;
255 }
256 }
257#endif /* IEEE8021X_EAPOL */
258 wpa_dbg(wpa_s, MSG_DEBUG, "Automatic auth_alg selection: 0x%x",
259 params.auth_alg);
260 if (ssid->auth_alg) {
261 params.auth_alg = ssid->auth_alg;
262 wpa_dbg(wpa_s, MSG_DEBUG, "Overriding auth_alg selection: "
263 "0x%x", params.auth_alg);
264 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800265#ifdef CONFIG_SAE
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800266 wpa_s->sme.sae_pmksa_caching = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800267 if (wpa_key_mgmt_sae(ssid->key_mgmt)) {
268 const u8 *rsn;
269 struct wpa_ie_data ied;
270
271 rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800272 if (!rsn) {
273 wpa_dbg(wpa_s, MSG_DEBUG,
274 "SAE enabled, but target BSS does not advertise RSN");
275 } else if (wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ied) == 0 &&
276 wpa_key_mgmt_sae(ied.key_mgmt)) {
277 wpa_dbg(wpa_s, MSG_DEBUG, "Using SAE auth_alg");
278 params.auth_alg = WPA_AUTH_ALG_SAE;
279 } else {
280 wpa_dbg(wpa_s, MSG_DEBUG,
281 "SAE enabled, but target BSS does not advertise SAE AKM for RSN");
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800282 }
283 }
284#endif /* CONFIG_SAE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700285
286 for (i = 0; i < NUM_WEP_KEYS; i++) {
287 if (ssid->wep_key_len[i])
288 params.wep_key[i] = ssid->wep_key[i];
289 params.wep_key_len[i] = ssid->wep_key_len[i];
290 }
291 params.wep_tx_keyidx = ssid->wep_tx_keyidx;
292
293 bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
294 os_memset(wpa_s->bssid, 0, ETH_ALEN);
295 os_memcpy(wpa_s->pending_bssid, bss->bssid, ETH_ALEN);
296 if (bssid_changed)
297 wpas_notify_bssid_changed(wpa_s);
298
299 if ((wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE) ||
300 wpa_bss_get_ie(bss, WLAN_EID_RSN)) &&
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800301 wpa_key_mgmt_wpa(ssid->key_mgmt)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700302 int try_opportunistic;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800303 try_opportunistic = (ssid->proactive_key_caching < 0 ?
304 wpa_s->conf->okc :
305 ssid->proactive_key_caching) &&
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700306 (ssid->proto & WPA_PROTO_RSN);
307 if (pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid,
308 wpa_s->current_ssid,
309 try_opportunistic) == 0)
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800310 eapol_sm_notify_pmkid_attempt(wpa_s->eapol);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700311 wpa_s->sme.assoc_req_ie_len = sizeof(wpa_s->sme.assoc_req_ie);
312 if (wpa_supplicant_set_suites(wpa_s, bss, ssid,
313 wpa_s->sme.assoc_req_ie,
314 &wpa_s->sme.assoc_req_ie_len)) {
315 wpa_msg(wpa_s, MSG_WARNING, "SME: Failed to set WPA "
316 "key management and encryption suites");
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800317 wpas_connect_work_done(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700318 return;
319 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700320 } else if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
321 wpa_key_mgmt_wpa_ieee8021x(ssid->key_mgmt)) {
322 /*
323 * Both WPA and non-WPA IEEE 802.1X enabled in configuration -
324 * use non-WPA since the scan results did not indicate that the
325 * AP is using WPA or WPA2.
326 */
327 wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
328 wpa_s->sme.assoc_req_ie_len = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800329 } else if (wpa_key_mgmt_wpa_any(ssid->key_mgmt)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700330 wpa_s->sme.assoc_req_ie_len = sizeof(wpa_s->sme.assoc_req_ie);
331 if (wpa_supplicant_set_suites(wpa_s, NULL, ssid,
332 wpa_s->sme.assoc_req_ie,
333 &wpa_s->sme.assoc_req_ie_len)) {
334 wpa_msg(wpa_s, MSG_WARNING, "SME: Failed to set WPA "
335 "key management and encryption suites (no "
336 "scan results)");
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800337 wpas_connect_work_done(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700338 return;
339 }
340#ifdef CONFIG_WPS
341 } else if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
342 struct wpabuf *wps_ie;
343 wps_ie = wps_build_assoc_req_ie(wpas_wps_get_req_type(ssid));
344 if (wps_ie && wpabuf_len(wps_ie) <=
345 sizeof(wpa_s->sme.assoc_req_ie)) {
346 wpa_s->sme.assoc_req_ie_len = wpabuf_len(wps_ie);
347 os_memcpy(wpa_s->sme.assoc_req_ie, wpabuf_head(wps_ie),
348 wpa_s->sme.assoc_req_ie_len);
349 } else
350 wpa_s->sme.assoc_req_ie_len = 0;
351 wpabuf_free(wps_ie);
352 wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
353#endif /* CONFIG_WPS */
354 } else {
355 wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
356 wpa_s->sme.assoc_req_ie_len = 0;
357 }
358
359#ifdef CONFIG_IEEE80211R
360 ie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
361 if (ie && ie[1] >= MOBILITY_DOMAIN_ID_LEN)
362 md = ie + 2;
363 wpa_sm_set_ft_params(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0);
364 if (md) {
365 /* Prepare for the next transition */
366 wpa_ft_prepare_auth_request(wpa_s->wpa, ie);
367 }
368
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800369 if (md && wpa_key_mgmt_ft(ssid->key_mgmt)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700370 if (wpa_s->sme.assoc_req_ie_len + 5 <
371 sizeof(wpa_s->sme.assoc_req_ie)) {
372 struct rsn_mdie *mdie;
373 u8 *pos = wpa_s->sme.assoc_req_ie +
374 wpa_s->sme.assoc_req_ie_len;
375 *pos++ = WLAN_EID_MOBILITY_DOMAIN;
376 *pos++ = sizeof(*mdie);
377 mdie = (struct rsn_mdie *) pos;
378 os_memcpy(mdie->mobility_domain, md,
379 MOBILITY_DOMAIN_ID_LEN);
380 mdie->ft_capab = md[MOBILITY_DOMAIN_ID_LEN];
381 wpa_s->sme.assoc_req_ie_len += 5;
382 }
383
384 if (wpa_s->sme.ft_used &&
385 os_memcmp(md, wpa_s->sme.mobility_domain, 2) == 0 &&
386 wpa_sm_has_ptk(wpa_s->wpa)) {
387 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying to use FT "
388 "over-the-air");
389 params.auth_alg = WPA_AUTH_ALG_FT;
390 params.ie = wpa_s->sme.ft_ies;
391 params.ie_len = wpa_s->sme.ft_ies_len;
392 }
393 }
394#endif /* CONFIG_IEEE80211R */
395
396#ifdef CONFIG_IEEE80211W
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800397 wpa_s->sme.mfp = wpas_get_ssid_pmf(wpa_s, ssid);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800398 if (wpa_s->sme.mfp != NO_MGMT_FRAME_PROTECTION) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700399 const u8 *rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
400 struct wpa_ie_data _ie;
401 if (rsn && wpa_parse_wpa_ie(rsn, 2 + rsn[1], &_ie) == 0 &&
402 _ie.capabilities &
403 (WPA_CAPABILITY_MFPC | WPA_CAPABILITY_MFPR)) {
404 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected AP supports "
405 "MFP: require MFP");
406 wpa_s->sme.mfp = MGMT_FRAME_PROTECTION_REQUIRED;
407 }
408 }
409#endif /* CONFIG_IEEE80211W */
410
411#ifdef CONFIG_P2P
412 if (wpa_s->global->p2p) {
413 u8 *pos;
414 size_t len;
415 int res;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700416 pos = wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len;
417 len = sizeof(wpa_s->sme.assoc_req_ie) -
418 wpa_s->sme.assoc_req_ie_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800419 res = wpas_p2p_assoc_req_ie(wpa_s, bss, pos, len,
420 ssid->p2p_group);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700421 if (res >= 0)
422 wpa_s->sme.assoc_req_ie_len += res;
423 }
424#endif /* CONFIG_P2P */
425
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800426#ifdef CONFIG_FST
427 if (wpa_s->fst_ies) {
428 int fst_ies_len = wpabuf_len(wpa_s->fst_ies);
429
430 if (wpa_s->sme.assoc_req_ie_len + fst_ies_len <=
431 sizeof(wpa_s->sme.assoc_req_ie)) {
432 os_memcpy(wpa_s->sme.assoc_req_ie +
433 wpa_s->sme.assoc_req_ie_len,
434 wpabuf_head(wpa_s->fst_ies),
435 fst_ies_len);
436 wpa_s->sme.assoc_req_ie_len += fst_ies_len;
437 }
438 }
439#endif /* CONFIG_FST */
440
441 sme_auth_handle_rrm(wpa_s, bss);
442
443#ifdef CONFIG_MBO
444 mbo = wpa_bss_get_vendor_ie(bss, MBO_IE_VENDOR_TYPE);
445 if (mbo) {
446 int len;
447
448 len = wpas_mbo_supp_op_class_ie(
449 wpa_s, bss->freq,
450 wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len,
451 sizeof(wpa_s->sme.assoc_req_ie) -
452 wpa_s->sme.assoc_req_ie_len);
453 if (len > 0)
454 wpa_s->sme.assoc_req_ie_len += len;
455 }
456#endif /* CONFIG_MBO */
457
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700458 if (params.p2p)
459 wpa_drv_get_ext_capa(wpa_s, WPA_IF_P2P_CLIENT);
460 else
461 wpa_drv_get_ext_capa(wpa_s, WPA_IF_STATION);
462
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800463 ext_capab_len = wpas_build_ext_capab(wpa_s, ext_capab,
464 sizeof(ext_capab));
465 if (ext_capab_len > 0) {
466 u8 *pos = wpa_s->sme.assoc_req_ie;
467 if (wpa_s->sme.assoc_req_ie_len > 0 && pos[0] == WLAN_EID_RSN)
468 pos += 2 + pos[1];
469 os_memmove(pos + ext_capab_len, pos,
470 wpa_s->sme.assoc_req_ie_len -
471 (pos - wpa_s->sme.assoc_req_ie));
472 wpa_s->sme.assoc_req_ie_len += ext_capab_len;
473 os_memcpy(pos, ext_capab, ext_capab_len);
474 }
475
Dmitry Shmidt04949592012-07-19 12:16:46 -0700476#ifdef CONFIG_HS20
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -0700477 if (is_hs20_network(wpa_s, ssid, bss)) {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700478 struct wpabuf *hs20;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800479
Dmitry Shmidt04949592012-07-19 12:16:46 -0700480 hs20 = wpabuf_alloc(20);
481 if (hs20) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800482 int pps_mo_id = hs20_get_pps_mo_id(wpa_s, ssid);
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700483 size_t len;
484
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800485 wpas_hs20_add_indication(hs20, pps_mo_id);
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700486 len = sizeof(wpa_s->sme.assoc_req_ie) -
487 wpa_s->sme.assoc_req_ie_len;
488 if (wpabuf_len(hs20) <= len) {
489 os_memcpy(wpa_s->sme.assoc_req_ie +
490 wpa_s->sme.assoc_req_ie_len,
491 wpabuf_head(hs20), wpabuf_len(hs20));
492 wpa_s->sme.assoc_req_ie_len += wpabuf_len(hs20);
493 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700494 wpabuf_free(hs20);
495 }
496 }
497#endif /* CONFIG_HS20 */
498
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800499 if (wpa_s->vendor_elem[VENDOR_ELEM_ASSOC_REQ]) {
500 struct wpabuf *buf = wpa_s->vendor_elem[VENDOR_ELEM_ASSOC_REQ];
501 size_t len;
502
503 len = sizeof(wpa_s->sme.assoc_req_ie) -
504 wpa_s->sme.assoc_req_ie_len;
505 if (wpabuf_len(buf) <= len) {
506 os_memcpy(wpa_s->sme.assoc_req_ie +
507 wpa_s->sme.assoc_req_ie_len,
508 wpabuf_head(buf), wpabuf_len(buf));
509 wpa_s->sme.assoc_req_ie_len += wpabuf_len(buf);
510 }
511 }
512
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800513#ifdef CONFIG_MBO
514 if (mbo) {
515 int len;
516
517 len = wpas_mbo_ie(wpa_s, wpa_s->sme.assoc_req_ie +
518 wpa_s->sme.assoc_req_ie_len,
519 sizeof(wpa_s->sme.assoc_req_ie) -
520 wpa_s->sme.assoc_req_ie_len);
521 if (len >= 0)
522 wpa_s->sme.assoc_req_ie_len += len;
523 }
524#endif /* CONFIG_MBO */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800525
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800526#ifdef CONFIG_SAE
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800527 if (!skip_auth && params.auth_alg == WPA_AUTH_ALG_SAE &&
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800528 pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid, ssid, 0) == 0)
529 {
530 wpa_dbg(wpa_s, MSG_DEBUG,
531 "PMKSA cache entry found - try to use PMKSA caching instead of new SAE authentication");
532 params.auth_alg = WPA_AUTH_ALG_OPEN;
533 wpa_s->sme.sae_pmksa_caching = 1;
534 }
535
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800536 if (!skip_auth && params.auth_alg == WPA_AUTH_ALG_SAE) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800537 if (start)
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800538 resp = sme_auth_build_sae_commit(wpa_s, ssid,
539 bss->bssid);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800540 else
541 resp = sme_auth_build_sae_confirm(wpa_s);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800542 if (resp == NULL) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800543 wpas_connection_failed(wpa_s, bss->bssid);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800544 return;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800545 }
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800546 params.auth_data = wpabuf_head(resp);
547 params.auth_data_len = wpabuf_len(resp);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800548 wpa_s->sme.sae.state = start ? SAE_COMMITTED : SAE_CONFIRMED;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800549 }
550#endif /* CONFIG_SAE */
551
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800552 old_ssid = wpa_s->current_ssid;
553 wpa_s->current_ssid = ssid;
554 wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
555 wpa_supplicant_initiate_eapol(wpa_s);
556
557#ifdef CONFIG_FILS
558 /* TODO: FILS operations can in some cases be done between different
559 * network_ctx (i.e., same credentials can be used with multiple
560 * networks). */
561 if (params.auth_alg == WPA_AUTH_ALG_OPEN &&
562 wpa_key_mgmt_fils(ssid->key_mgmt)) {
563 if (pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid,
564 ssid, 0) == 0)
565 wpa_printf(MSG_DEBUG,
566 "SME: Try to use FILS with PMKSA caching");
567 resp = fils_build_auth(wpa_s->wpa);
568 if (resp) {
569 params.auth_alg = WPA_AUTH_ALG_FILS;
570 params.auth_data = wpabuf_head(resp);
571 params.auth_data_len = wpabuf_len(resp);
572 wpa_s->sme.auth_alg = WPA_AUTH_ALG_FILS;
573 }
574 }
575#endif /* CONFIG_FILS */
576
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800577 wpa_supplicant_cancel_sched_scan(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700578 wpa_supplicant_cancel_scan(wpa_s);
579
580 wpa_msg(wpa_s, MSG_INFO, "SME: Trying to authenticate with " MACSTR
581 " (SSID='%s' freq=%d MHz)", MAC2STR(params.bssid),
582 wpa_ssid_txt(params.ssid, params.ssid_len), params.freq);
583
584 wpa_clear_keys(wpa_s, bss->bssid);
585 wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700586 if (old_ssid != wpa_s->current_ssid)
587 wpas_notify_network_changed(wpa_s);
588
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700589#ifdef CONFIG_HS20
590 hs20_configure_frame_filters(wpa_s);
591#endif /* CONFIG_HS20 */
592
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -0700593#ifdef CONFIG_P2P
594 /*
595 * If multi-channel concurrency is not supported, check for any
596 * frequency conflict. In case of any frequency conflict, remove the
597 * least prioritized connection.
598 */
599 if (wpa_s->num_multichan_concurrent < 2) {
600 int freq, num;
601 num = get_shared_radio_freqs(wpa_s, &freq, 1);
602 if (num > 0 && freq > 0 && freq != params.freq) {
603 wpa_printf(MSG_DEBUG,
604 "Conflicting frequency found (%d != %d)",
605 freq, params.freq);
606 if (wpas_p2p_handle_frequency_conflicts(wpa_s,
607 params.freq,
608 ssid) < 0) {
609 wpas_connection_failed(wpa_s, bss->bssid);
610 wpa_supplicant_mark_disassoc(wpa_s);
611 wpabuf_free(resp);
612 wpas_connect_work_done(wpa_s);
613 return;
614 }
615 }
616 }
617#endif /* CONFIG_P2P */
618
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800619 if (skip_auth) {
620 wpa_msg(wpa_s, MSG_DEBUG,
621 "SME: Skip authentication step on reassoc-to-same-BSS");
622 wpabuf_free(resp);
623 sme_associate(wpa_s, ssid->mode, bss->bssid, WLAN_AUTH_OPEN);
624 return;
625 }
626
627
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700628 wpa_s->sme.auth_alg = params.auth_alg;
629 if (wpa_drv_authenticate(wpa_s, &params) < 0) {
630 wpa_msg(wpa_s, MSG_INFO, "SME: Authentication request to the "
631 "driver failed");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800632 wpas_connection_failed(wpa_s, bss->bssid);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800633 wpa_supplicant_mark_disassoc(wpa_s);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800634 wpabuf_free(resp);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800635 wpas_connect_work_done(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700636 return;
637 }
638
639 eloop_register_timeout(SME_AUTH_TIMEOUT, 0, sme_auth_timer, wpa_s,
640 NULL);
641
642 /*
643 * Association will be started based on the authentication event from
644 * the driver.
645 */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800646
647 wpabuf_free(resp);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700648}
649
650
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800651static void sme_auth_start_cb(struct wpa_radio_work *work, int deinit)
652{
653 struct wpa_connect_work *cwork = work->ctx;
654 struct wpa_supplicant *wpa_s = work->wpa_s;
655
656 if (deinit) {
Dmitry Shmidtbd14a572014-02-18 10:33:49 -0800657 if (work->started)
658 wpa_s->connect_work = NULL;
659
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800660 wpas_connect_work_free(cwork);
661 return;
662 }
663
664 wpa_s->connect_work = work;
665
Dmitry Shmidt2e425d62014-11-10 11:18:27 -0800666 if (cwork->bss_removed ||
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800667 !wpas_valid_bss_ssid(wpa_s, cwork->bss, cwork->ssid) ||
668 wpas_network_disabled(wpa_s, cwork->ssid)) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800669 wpa_dbg(wpa_s, MSG_DEBUG, "SME: BSS/SSID entry for authentication not valid anymore - drop connection attempt");
670 wpas_connect_work_done(wpa_s);
671 return;
672 }
673
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800674 /* Starting new connection, so clear the possibly used WPA IE from the
675 * previous association. */
676 wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
677
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800678 sme_send_authentication(wpa_s, cwork->bss, cwork->ssid, 1);
679}
680
681
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800682void sme_authenticate(struct wpa_supplicant *wpa_s,
683 struct wpa_bss *bss, struct wpa_ssid *ssid)
684{
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800685 struct wpa_connect_work *cwork;
686
687 if (bss == NULL || ssid == NULL)
688 return;
689 if (wpa_s->connect_work) {
690 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Reject sme_authenticate() call since connect_work exist");
691 return;
692 }
693
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800694 if (radio_work_pending(wpa_s, "sme-connect")) {
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700695 /*
696 * The previous sme-connect work might no longer be valid due to
697 * the fact that the BSS list was updated. In addition, it makes
698 * sense to adhere to the 'newer' decision.
699 */
700 wpa_dbg(wpa_s, MSG_DEBUG,
701 "SME: Remove previous pending sme-connect");
702 radio_remove_works(wpa_s, "sme-connect", 0);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800703 }
704
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -0800705 wpas_abort_ongoing_scan(wpa_s);
706
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800707 cwork = os_zalloc(sizeof(*cwork));
708 if (cwork == NULL)
709 return;
710 cwork->bss = bss;
711 cwork->ssid = ssid;
712 cwork->sme = 1;
713
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800714#ifdef CONFIG_SAE
715 wpa_s->sme.sae.state = SAE_NOTHING;
716 wpa_s->sme.sae.send_confirm = 0;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800717 wpa_s->sme.sae_group_index = 0;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800718#endif /* CONFIG_SAE */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800719
720 if (radio_add_work(wpa_s, bss->freq, "sme-connect", 1,
721 sme_auth_start_cb, cwork) < 0)
722 wpas_connect_work_free(cwork);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800723}
724
725
726#ifdef CONFIG_SAE
727
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800728static int sme_sae_auth(struct wpa_supplicant *wpa_s, u16 auth_transaction,
729 u16 status_code, const u8 *data, size_t len)
730{
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800731 int *groups;
732
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800733 wpa_dbg(wpa_s, MSG_DEBUG, "SME: SAE authentication transaction %u "
734 "status code %u", auth_transaction, status_code);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800735
736 if (auth_transaction == 1 &&
737 status_code == WLAN_STATUS_ANTI_CLOGGING_TOKEN_REQ &&
738 wpa_s->sme.sae.state == SAE_COMMITTED &&
739 wpa_s->current_bss && wpa_s->current_ssid) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800740 int default_groups[] = { 19, 20, 21, 25, 26, 0 };
741 u16 group;
742
743 groups = wpa_s->conf->sae_groups;
744 if (!groups || groups[0] <= 0)
745 groups = default_groups;
746
747 if (len < sizeof(le16)) {
748 wpa_dbg(wpa_s, MSG_DEBUG,
749 "SME: Too short SAE anti-clogging token request");
750 return -1;
751 }
752 group = WPA_GET_LE16(data);
753 wpa_dbg(wpa_s, MSG_DEBUG,
754 "SME: SAE anti-clogging token requested (group %u)",
755 group);
756 if (sae_group_allowed(&wpa_s->sme.sae, groups, group) !=
757 WLAN_STATUS_SUCCESS) {
758 wpa_dbg(wpa_s, MSG_ERROR,
759 "SME: SAE group %u of anti-clogging request is invalid",
760 group);
761 return -1;
762 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800763 wpabuf_free(wpa_s->sme.sae_token);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800764 wpa_s->sme.sae_token = wpabuf_alloc_copy(data + sizeof(le16),
765 len - sizeof(le16));
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800766 sme_send_authentication(wpa_s, wpa_s->current_bss,
767 wpa_s->current_ssid, 1);
768 return 0;
769 }
770
771 if (auth_transaction == 1 &&
772 status_code == WLAN_STATUS_FINITE_CYCLIC_GROUP_NOT_SUPPORTED &&
773 wpa_s->sme.sae.state == SAE_COMMITTED &&
774 wpa_s->current_bss && wpa_s->current_ssid) {
775 wpa_dbg(wpa_s, MSG_DEBUG, "SME: SAE group not supported");
776 wpa_s->sme.sae_group_index++;
777 if (sme_set_sae_group(wpa_s) < 0)
778 return -1; /* no other groups enabled */
779 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Try next enabled SAE group");
780 sme_send_authentication(wpa_s, wpa_s->current_bss,
781 wpa_s->current_ssid, 1);
782 return 0;
783 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800784
785 if (status_code != WLAN_STATUS_SUCCESS)
786 return -1;
787
788 if (auth_transaction == 1) {
Dmitry Shmidt41712582015-06-29 11:02:15 -0700789 u16 res;
790
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800791 groups = wpa_s->conf->sae_groups;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800792
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800793 wpa_dbg(wpa_s, MSG_DEBUG, "SME SAE commit");
794 if (wpa_s->current_bss == NULL ||
795 wpa_s->current_ssid == NULL)
796 return -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800797 if (wpa_s->sme.sae.state != SAE_COMMITTED)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800798 return -1;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800799 if (groups && groups[0] <= 0)
800 groups = NULL;
Dmitry Shmidt41712582015-06-29 11:02:15 -0700801 res = sae_parse_commit(&wpa_s->sme.sae, data, len, NULL, NULL,
802 groups);
803 if (res == SAE_SILENTLY_DISCARD) {
804 wpa_printf(MSG_DEBUG,
805 "SAE: Drop commit message due to reflection attack");
806 return 0;
807 }
808 if (res != WLAN_STATUS_SUCCESS)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800809 return -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800810
811 if (sae_process_commit(&wpa_s->sme.sae) < 0) {
812 wpa_printf(MSG_DEBUG, "SAE: Failed to process peer "
813 "commit");
814 return -1;
815 }
816
817 wpabuf_free(wpa_s->sme.sae_token);
818 wpa_s->sme.sae_token = NULL;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800819 sme_send_authentication(wpa_s, wpa_s->current_bss,
820 wpa_s->current_ssid, 0);
821 return 0;
822 } else if (auth_transaction == 2) {
823 wpa_dbg(wpa_s, MSG_DEBUG, "SME SAE confirm");
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800824 if (wpa_s->sme.sae.state != SAE_CONFIRMED)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800825 return -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800826 if (sae_check_confirm(&wpa_s->sme.sae, data, len) < 0)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800827 return -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800828 wpa_s->sme.sae.state = SAE_ACCEPTED;
829 sae_clear_temp_data(&wpa_s->sme.sae);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800830 return 1;
831 }
832
833 return -1;
834}
835#endif /* CONFIG_SAE */
836
837
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700838void sme_event_auth(struct wpa_supplicant *wpa_s, union wpa_event_data *data)
839{
840 struct wpa_ssid *ssid = wpa_s->current_ssid;
841
842 if (ssid == NULL) {
843 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication event "
844 "when network is not selected");
845 return;
846 }
847
848 if (wpa_s->wpa_state != WPA_AUTHENTICATING) {
849 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication event "
850 "when not in authenticating state");
851 return;
852 }
853
854 if (os_memcmp(wpa_s->pending_bssid, data->auth.peer, ETH_ALEN) != 0) {
855 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication with "
856 "unexpected peer " MACSTR,
857 MAC2STR(data->auth.peer));
858 return;
859 }
860
861 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Authentication response: peer=" MACSTR
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800862 " auth_type=%d auth_transaction=%d status_code=%d",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700863 MAC2STR(data->auth.peer), data->auth.auth_type,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800864 data->auth.auth_transaction, data->auth.status_code);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700865 wpa_hexdump(MSG_MSGDUMP, "SME: Authentication response IEs",
866 data->auth.ies, data->auth.ies_len);
867
868 eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
869
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800870#ifdef CONFIG_SAE
871 if (data->auth.auth_type == WLAN_AUTH_SAE) {
872 int res;
873 res = sme_sae_auth(wpa_s, data->auth.auth_transaction,
874 data->auth.status_code, data->auth.ies,
875 data->auth.ies_len);
876 if (res < 0) {
877 wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
878 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
879
880 }
881 if (res != 1)
882 return;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800883
884 wpa_printf(MSG_DEBUG, "SME: SAE completed - setting PMK for "
885 "4-way handshake");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800886 wpa_sm_set_pmk(wpa_s->wpa, wpa_s->sme.sae.pmk, PMK_LEN,
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800887 wpa_s->sme.sae.pmkid, wpa_s->pending_bssid);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800888 }
889#endif /* CONFIG_SAE */
890
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700891 if (data->auth.status_code != WLAN_STATUS_SUCCESS) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800892 char *ie_txt = NULL;
893
894 if (data->auth.ies && data->auth.ies_len) {
895 size_t buflen = 2 * data->auth.ies_len + 1;
896 ie_txt = os_malloc(buflen);
897 if (ie_txt) {
898 wpa_snprintf_hex(ie_txt, buflen, data->auth.ies,
899 data->auth.ies_len);
900 }
901 }
902 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_AUTH_REJECT MACSTR
903 " auth_type=%u auth_transaction=%u status_code=%u ie=%s",
904 MAC2STR(data->auth.peer), data->auth.auth_type,
905 data->auth.auth_transaction, data->auth.status_code,
906 ie_txt);
907 os_free(ie_txt);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700908
909 if (data->auth.status_code !=
910 WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG ||
911 wpa_s->sme.auth_alg == data->auth.auth_type ||
912 wpa_s->current_ssid->auth_alg == WPA_AUTH_ALG_LEAP) {
913 wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700914 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700915 return;
916 }
917
Dmitry Shmidt97672262014-02-03 13:02:54 -0800918 wpas_connect_work_done(wpa_s);
919
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700920 switch (data->auth.auth_type) {
921 case WLAN_AUTH_OPEN:
922 wpa_s->current_ssid->auth_alg = WPA_AUTH_ALG_SHARED;
923
924 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying SHARED auth");
925 wpa_supplicant_associate(wpa_s, wpa_s->current_bss,
926 wpa_s->current_ssid);
927 return;
928
929 case WLAN_AUTH_SHARED_KEY:
930 wpa_s->current_ssid->auth_alg = WPA_AUTH_ALG_LEAP;
931
932 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying LEAP auth");
933 wpa_supplicant_associate(wpa_s, wpa_s->current_bss,
934 wpa_s->current_ssid);
935 return;
936
937 default:
938 return;
939 }
940 }
941
942#ifdef CONFIG_IEEE80211R
943 if (data->auth.auth_type == WLAN_AUTH_FT) {
Dmitry Shmidt41712582015-06-29 11:02:15 -0700944 if (wpa_ft_process_response(wpa_s->wpa, data->auth.ies,
945 data->auth.ies_len, 0,
946 data->auth.peer, NULL, 0) < 0) {
947 wpa_dbg(wpa_s, MSG_DEBUG,
948 "SME: FT Authentication response processing failed");
949 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid="
950 MACSTR
951 " reason=%d locally_generated=1",
952 MAC2STR(wpa_s->pending_bssid),
953 WLAN_REASON_DEAUTH_LEAVING);
954 wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
955 wpa_supplicant_mark_disassoc(wpa_s);
956 return;
957 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700958 }
959#endif /* CONFIG_IEEE80211R */
960
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800961#ifdef CONFIG_FILS
962 if (data->auth.auth_type == WLAN_AUTH_FILS_SK) {
963 if (fils_process_auth(wpa_s->wpa, data->auth.ies,
964 data->auth.ies_len) < 0) {
965 wpa_dbg(wpa_s, MSG_DEBUG,
966 "SME: FILS Authentication response processing failed");
967 wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid="
968 MACSTR
969 " reason=%d locally_generated=1",
970 MAC2STR(wpa_s->pending_bssid),
971 WLAN_REASON_DEAUTH_LEAVING);
972 wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
973 wpa_supplicant_mark_disassoc(wpa_s);
974 return;
975 }
976 }
977#endif /* CONFIG_FILS */
978
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700979 sme_associate(wpa_s, ssid->mode, data->auth.peer,
980 data->auth.auth_type);
981}
982
983
984void sme_associate(struct wpa_supplicant *wpa_s, enum wpas_mode mode,
985 const u8 *bssid, u16 auth_type)
986{
987 struct wpa_driver_associate_params params;
988 struct ieee802_11_elems elems;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800989#ifdef CONFIG_FILS
990 u8 nonces[2 * FILS_NONCE_LEN];
991#endif /* CONFIG_FILS */
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800992#ifdef CONFIG_HT_OVERRIDES
993 struct ieee80211_ht_capabilities htcaps;
994 struct ieee80211_ht_capabilities htcaps_mask;
995#endif /* CONFIG_HT_OVERRIDES */
Dmitry Shmidt2f023192013-03-12 12:44:17 -0700996#ifdef CONFIG_VHT_OVERRIDES
997 struct ieee80211_vht_capabilities vhtcaps;
998 struct ieee80211_vht_capabilities vhtcaps_mask;
999#endif /* CONFIG_VHT_OVERRIDES */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001000
1001 os_memset(&params, 0, sizeof(params));
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -08001002
1003#ifdef CONFIG_FILS
1004 if (auth_type == WLAN_AUTH_FILS_SK) {
1005 struct wpabuf *buf;
1006 const u8 *snonce, *anonce;
1007
1008 buf = fils_build_assoc_req(wpa_s->wpa, &params.fils_kek,
1009 &params.fils_kek_len, &snonce,
1010 &anonce);
1011 if (!buf)
1012 return;
1013 /* TODO: Make wpa_s->sme.assoc_req_ie use dynamic allocation */
1014 if (wpa_s->sme.assoc_req_ie_len + wpabuf_len(buf) >
1015 sizeof(wpa_s->sme.assoc_req_ie)) {
1016 wpa_printf(MSG_ERROR,
1017 "FILS: Not enough buffer room for own AssocReq elements");
1018 wpabuf_free(buf);
1019 return;
1020 }
1021 os_memcpy(wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len,
1022 wpabuf_head(buf), wpabuf_len(buf));
1023 wpa_s->sme.assoc_req_ie_len += wpabuf_len(buf);
1024 wpabuf_free(buf);
1025
1026 os_memcpy(nonces, snonce, FILS_NONCE_LEN);
1027 os_memcpy(nonces + FILS_NONCE_LEN, anonce, FILS_NONCE_LEN);
1028 params.fils_nonces = nonces;
1029 params.fils_nonces_len = sizeof(nonces);
1030 }
1031#endif /* CONFIG_FILS */
1032
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001033 params.bssid = bssid;
1034 params.ssid = wpa_s->sme.ssid;
1035 params.ssid_len = wpa_s->sme.ssid_len;
Dmitry Shmidt9ead16e2014-10-07 13:15:23 -07001036 params.freq.freq = wpa_s->sme.freq;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001037 params.bg_scan_period = wpa_s->current_ssid ?
1038 wpa_s->current_ssid->bg_scan_period : -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001039 params.wpa_ie = wpa_s->sme.assoc_req_ie_len ?
1040 wpa_s->sme.assoc_req_ie : NULL;
1041 params.wpa_ie_len = wpa_s->sme.assoc_req_ie_len;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001042 params.pairwise_suite = wpa_s->pairwise_cipher;
1043 params.group_suite = wpa_s->group_cipher;
Dmitry Shmidt15907092014-03-25 10:42:57 -07001044 params.key_mgmt_suite = wpa_s->key_mgmt;
1045 params.wpa_proto = wpa_s->wpa_proto;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08001046#ifdef CONFIG_HT_OVERRIDES
1047 os_memset(&htcaps, 0, sizeof(htcaps));
1048 os_memset(&htcaps_mask, 0, sizeof(htcaps_mask));
1049 params.htcaps = (u8 *) &htcaps;
1050 params.htcaps_mask = (u8 *) &htcaps_mask;
1051 wpa_supplicant_apply_ht_overrides(wpa_s, wpa_s->current_ssid, &params);
1052#endif /* CONFIG_HT_OVERRIDES */
Dmitry Shmidt2f023192013-03-12 12:44:17 -07001053#ifdef CONFIG_VHT_OVERRIDES
1054 os_memset(&vhtcaps, 0, sizeof(vhtcaps));
1055 os_memset(&vhtcaps_mask, 0, sizeof(vhtcaps_mask));
1056 params.vhtcaps = &vhtcaps;
1057 params.vhtcaps_mask = &vhtcaps_mask;
1058 wpa_supplicant_apply_vht_overrides(wpa_s, wpa_s->current_ssid, &params);
1059#endif /* CONFIG_VHT_OVERRIDES */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001060#ifdef CONFIG_IEEE80211R
1061 if (auth_type == WLAN_AUTH_FT && wpa_s->sme.ft_ies) {
1062 params.wpa_ie = wpa_s->sme.ft_ies;
1063 params.wpa_ie_len = wpa_s->sme.ft_ies_len;
1064 }
1065#endif /* CONFIG_IEEE80211R */
1066 params.mode = mode;
1067 params.mgmt_frame_protection = wpa_s->sme.mfp;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001068 params.rrm_used = wpa_s->rrm.rrm_used;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001069 if (wpa_s->sme.prev_bssid_set)
1070 params.prev_bssid = wpa_s->sme.prev_bssid;
1071
1072 wpa_msg(wpa_s, MSG_INFO, "Trying to associate with " MACSTR
1073 " (SSID='%s' freq=%d MHz)", MAC2STR(params.bssid),
1074 params.ssid ? wpa_ssid_txt(params.ssid, params.ssid_len) : "",
Dmitry Shmidt9ead16e2014-10-07 13:15:23 -07001075 params.freq.freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001076
1077 wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATING);
1078
1079 if (params.wpa_ie == NULL ||
1080 ieee802_11_parse_elems(params.wpa_ie, params.wpa_ie_len, &elems, 0)
1081 < 0) {
1082 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Could not parse own IEs?!");
1083 os_memset(&elems, 0, sizeof(elems));
1084 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001085 if (elems.rsn_ie) {
1086 params.wpa_proto = WPA_PROTO_RSN;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001087 wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.rsn_ie - 2,
1088 elems.rsn_ie_len + 2);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001089 } else if (elems.wpa_ie) {
1090 params.wpa_proto = WPA_PROTO_WPA;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001091 wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.wpa_ie - 2,
1092 elems.wpa_ie_len + 2);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001093 } else if (elems.osen) {
1094 params.wpa_proto = WPA_PROTO_OSEN;
1095 wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.osen - 2,
1096 elems.osen_len + 2);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001097 } else
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001098 wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001099 if (wpa_s->current_ssid && wpa_s->current_ssid->p2p_group)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001100 params.p2p = 1;
1101
Dmitry Shmidt9c175262016-03-03 10:20:07 -08001102 if (wpa_s->p2pdev->set_sta_uapsd)
1103 params.uapsd = wpa_s->p2pdev->sta_uapsd;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001104 else
1105 params.uapsd = -1;
1106
1107 if (wpa_drv_associate(wpa_s, &params) < 0) {
1108 wpa_msg(wpa_s, MSG_INFO, "SME: Association request to the "
1109 "driver failed");
1110 wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001111 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001112 os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
1113 return;
1114 }
1115
1116 eloop_register_timeout(SME_ASSOC_TIMEOUT, 0, sme_assoc_timer, wpa_s,
1117 NULL);
1118}
1119
1120
1121int sme_update_ft_ies(struct wpa_supplicant *wpa_s, const u8 *md,
1122 const u8 *ies, size_t ies_len)
1123{
1124 if (md == NULL || ies == NULL) {
1125 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Remove mobility domain");
1126 os_free(wpa_s->sme.ft_ies);
1127 wpa_s->sme.ft_ies = NULL;
1128 wpa_s->sme.ft_ies_len = 0;
1129 wpa_s->sme.ft_used = 0;
1130 return 0;
1131 }
1132
1133 os_memcpy(wpa_s->sme.mobility_domain, md, MOBILITY_DOMAIN_ID_LEN);
1134 wpa_hexdump(MSG_DEBUG, "SME: FT IEs", ies, ies_len);
1135 os_free(wpa_s->sme.ft_ies);
1136 wpa_s->sme.ft_ies = os_malloc(ies_len);
1137 if (wpa_s->sme.ft_ies == NULL)
1138 return -1;
1139 os_memcpy(wpa_s->sme.ft_ies, ies, ies_len);
1140 wpa_s->sme.ft_ies_len = ies_len;
1141 return 0;
1142}
1143
1144
1145static void sme_deauth(struct wpa_supplicant *wpa_s)
1146{
1147 int bssid_changed;
1148
1149 bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
1150
1151 if (wpa_drv_deauthenticate(wpa_s, wpa_s->pending_bssid,
1152 WLAN_REASON_DEAUTH_LEAVING) < 0) {
1153 wpa_msg(wpa_s, MSG_INFO, "SME: Deauth request to the driver "
1154 "failed");
1155 }
1156 wpa_s->sme.prev_bssid_set = 0;
1157
1158 wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
1159 wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
1160 os_memset(wpa_s->bssid, 0, ETH_ALEN);
1161 os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
1162 if (bssid_changed)
1163 wpas_notify_bssid_changed(wpa_s);
1164}
1165
1166
1167void sme_event_assoc_reject(struct wpa_supplicant *wpa_s,
1168 union wpa_event_data *data)
1169{
1170 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association with " MACSTR " failed: "
1171 "status code %d", MAC2STR(wpa_s->pending_bssid),
1172 data->assoc_reject.status_code);
1173
1174 eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
1175
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001176#ifdef CONFIG_SAE
1177 if (wpa_s->sme.sae_pmksa_caching && wpa_s->current_ssid &&
1178 wpa_key_mgmt_sae(wpa_s->current_ssid->key_mgmt)) {
1179 wpa_dbg(wpa_s, MSG_DEBUG,
1180 "PMKSA caching attempt rejected - drop PMKSA cache entry and fall back to SAE authentication");
1181 wpa_sm_aborted_cached(wpa_s->wpa);
1182 wpa_sm_pmksa_cache_flush(wpa_s->wpa, wpa_s->current_ssid);
1183 if (wpa_s->current_bss) {
1184 struct wpa_bss *bss = wpa_s->current_bss;
1185 struct wpa_ssid *ssid = wpa_s->current_ssid;
1186
1187 wpa_drv_deauthenticate(wpa_s, wpa_s->pending_bssid,
1188 WLAN_REASON_DEAUTH_LEAVING);
1189 wpas_connect_work_done(wpa_s);
1190 wpa_supplicant_mark_disassoc(wpa_s);
1191 wpa_supplicant_connect(wpa_s, bss, ssid);
1192 return;
1193 }
1194 }
1195#endif /* CONFIG_SAE */
1196
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001197 /*
1198 * For now, unconditionally terminate the previous authentication. In
1199 * theory, this should not be needed, but mac80211 gets quite confused
1200 * if the authentication is left pending.. Some roaming cases might
1201 * benefit from using the previous authentication, so this could be
1202 * optimized in the future.
1203 */
1204 sme_deauth(wpa_s);
1205}
1206
1207
1208void sme_event_auth_timed_out(struct wpa_supplicant *wpa_s,
1209 union wpa_event_data *data)
1210{
1211 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Authentication timed out");
1212 wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08001213 wpa_supplicant_mark_disassoc(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001214}
1215
1216
1217void sme_event_assoc_timed_out(struct wpa_supplicant *wpa_s,
1218 union wpa_event_data *data)
1219{
1220 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association timed out");
1221 wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
1222 wpa_supplicant_mark_disassoc(wpa_s);
1223}
1224
1225
1226void sme_event_disassoc(struct wpa_supplicant *wpa_s,
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07001227 struct disassoc_info *info)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001228{
1229 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Disassociation event received");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001230 if (wpa_s->sme.prev_bssid_set) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001231 /*
1232 * cfg80211/mac80211 can get into somewhat confused state if
1233 * the AP only disassociates us and leaves us in authenticated
1234 * state. For now, force the state to be cleared to avoid
1235 * confusing errors if we try to associate with the AP again.
1236 */
1237 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Deauthenticate to clear "
1238 "driver state");
1239 wpa_drv_deauthenticate(wpa_s, wpa_s->sme.prev_bssid,
1240 WLAN_REASON_DEAUTH_LEAVING);
1241 }
1242}
1243
1244
1245static void sme_auth_timer(void *eloop_ctx, void *timeout_ctx)
1246{
1247 struct wpa_supplicant *wpa_s = eloop_ctx;
1248 if (wpa_s->wpa_state == WPA_AUTHENTICATING) {
1249 wpa_msg(wpa_s, MSG_DEBUG, "SME: Authentication timeout");
1250 sme_deauth(wpa_s);
1251 }
1252}
1253
1254
1255static void sme_assoc_timer(void *eloop_ctx, void *timeout_ctx)
1256{
1257 struct wpa_supplicant *wpa_s = eloop_ctx;
1258 if (wpa_s->wpa_state == WPA_ASSOCIATING) {
1259 wpa_msg(wpa_s, MSG_DEBUG, "SME: Association timeout");
1260 sme_deauth(wpa_s);
1261 }
1262}
1263
1264
1265void sme_state_changed(struct wpa_supplicant *wpa_s)
1266{
1267 /* Make sure timers are cleaned up appropriately. */
1268 if (wpa_s->wpa_state != WPA_ASSOCIATING)
1269 eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
1270 if (wpa_s->wpa_state != WPA_AUTHENTICATING)
1271 eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
1272}
1273
1274
1275void sme_disassoc_while_authenticating(struct wpa_supplicant *wpa_s,
1276 const u8 *prev_pending_bssid)
1277{
1278 /*
1279 * mac80211-workaround to force deauth on failed auth cmd,
1280 * requires us to remain in authenticating state to allow the
1281 * second authentication attempt to be continued properly.
1282 */
1283 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Allow pending authentication "
1284 "to proceed after disconnection event");
1285 wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
1286 os_memcpy(wpa_s->pending_bssid, prev_pending_bssid, ETH_ALEN);
1287
1288 /*
1289 * Re-arm authentication timer in case auth fails for whatever reason.
1290 */
1291 eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
1292 eloop_register_timeout(SME_AUTH_TIMEOUT, 0, sme_auth_timer, wpa_s,
1293 NULL);
1294}
1295
1296
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001297void sme_clear_on_disassoc(struct wpa_supplicant *wpa_s)
1298{
1299 wpa_s->sme.prev_bssid_set = 0;
1300#ifdef CONFIG_SAE
1301 wpabuf_free(wpa_s->sme.sae_token);
1302 wpa_s->sme.sae_token = NULL;
1303 sae_clear_data(&wpa_s->sme.sae);
1304#endif /* CONFIG_SAE */
1305#ifdef CONFIG_IEEE80211R
1306 if (wpa_s->sme.ft_ies)
1307 sme_update_ft_ies(wpa_s, NULL, NULL, 0);
1308#endif /* CONFIG_IEEE80211R */
1309}
1310
1311
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001312void sme_deinit(struct wpa_supplicant *wpa_s)
1313{
1314 os_free(wpa_s->sme.ft_ies);
1315 wpa_s->sme.ft_ies = NULL;
1316 wpa_s->sme.ft_ies_len = 0;
1317#ifdef CONFIG_IEEE80211W
1318 sme_stop_sa_query(wpa_s);
1319#endif /* CONFIG_IEEE80211W */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001320 sme_clear_on_disassoc(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001321
1322 eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
1323 eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001324 eloop_cancel_timeout(sme_obss_scan_timeout, wpa_s, NULL);
1325}
1326
1327
1328static void sme_send_2040_bss_coex(struct wpa_supplicant *wpa_s,
1329 const u8 *chan_list, u8 num_channels,
1330 u8 num_intol)
1331{
1332 struct ieee80211_2040_bss_coex_ie *bc_ie;
1333 struct ieee80211_2040_intol_chan_report *ic_report;
1334 struct wpabuf *buf;
1335
Dmitry Shmidtd11f0192014-03-24 12:09:47 -07001336 wpa_printf(MSG_DEBUG, "SME: Send 20/40 BSS Coexistence to " MACSTR
1337 " (num_channels=%u num_intol=%u)",
1338 MAC2STR(wpa_s->bssid), num_channels, num_intol);
1339 wpa_hexdump(MSG_DEBUG, "SME: 20/40 BSS Intolerant Channels",
1340 chan_list, num_channels);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001341
1342 buf = wpabuf_alloc(2 + /* action.category + action_code */
1343 sizeof(struct ieee80211_2040_bss_coex_ie) +
1344 sizeof(struct ieee80211_2040_intol_chan_report) +
1345 num_channels);
1346 if (buf == NULL)
1347 return;
1348
1349 wpabuf_put_u8(buf, WLAN_ACTION_PUBLIC);
1350 wpabuf_put_u8(buf, WLAN_PA_20_40_BSS_COEX);
1351
1352 bc_ie = wpabuf_put(buf, sizeof(*bc_ie));
1353 bc_ie->element_id = WLAN_EID_20_40_BSS_COEXISTENCE;
1354 bc_ie->length = 1;
1355 if (num_intol)
1356 bc_ie->coex_param |= WLAN_20_40_BSS_COEX_20MHZ_WIDTH_REQ;
1357
1358 if (num_channels > 0) {
1359 ic_report = wpabuf_put(buf, sizeof(*ic_report));
1360 ic_report->element_id = WLAN_EID_20_40_BSS_INTOLERANT;
1361 ic_report->length = num_channels + 1;
1362 ic_report->op_class = 0;
1363 os_memcpy(wpabuf_put(buf, num_channels), chan_list,
1364 num_channels);
1365 }
1366
1367 if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
1368 wpa_s->own_addr, wpa_s->bssid,
1369 wpabuf_head(buf), wpabuf_len(buf), 0) < 0) {
1370 wpa_msg(wpa_s, MSG_INFO,
1371 "SME: Failed to send 20/40 BSS Coexistence frame");
1372 }
1373
1374 wpabuf_free(buf);
1375}
1376
1377
Dmitry Shmidt04949592012-07-19 12:16:46 -07001378int sme_proc_obss_scan(struct wpa_supplicant *wpa_s)
1379{
1380 struct wpa_bss *bss;
1381 const u8 *ie;
1382 u16 ht_cap;
1383 u8 chan_list[P2P_MAX_CHANNELS], channel;
1384 u8 num_channels = 0, num_intol = 0, i;
1385
1386 if (!wpa_s->sme.sched_obss_scan)
1387 return 0;
1388
1389 wpa_s->sme.sched_obss_scan = 0;
1390 if (!wpa_s->current_bss || wpa_s->wpa_state != WPA_COMPLETED)
1391 return 1;
1392
1393 /*
1394 * Check whether AP uses regulatory triplet or channel triplet in
1395 * country info. Right now the operating class of the BSS channel
1396 * width trigger event is "unknown" (IEEE Std 802.11-2012 10.15.12),
1397 * based on the assumption that operating class triplet is not used in
1398 * beacon frame. If the First Channel Number/Operating Extension
1399 * Identifier octet has a positive integer value of 201 or greater,
1400 * then its operating class triplet.
1401 *
1402 * TODO: If Supported Operating Classes element is present in beacon
1403 * frame, have to lookup operating class in Annex E and fill them in
1404 * 2040 coex frame.
1405 */
1406 ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_COUNTRY);
1407 if (ie && (ie[1] >= 6) && (ie[5] >= 201))
1408 return 1;
1409
1410 os_memset(chan_list, 0, sizeof(chan_list));
1411
1412 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
1413 /* Skip other band bss */
Dmitry Shmidt4b060592013-04-29 16:42:49 -07001414 enum hostapd_hw_mode mode;
1415 mode = ieee80211_freq_to_chan(bss->freq, &channel);
1416 if (mode != HOSTAPD_MODE_IEEE80211G &&
1417 mode != HOSTAPD_MODE_IEEE80211B)
Dmitry Shmidt04949592012-07-19 12:16:46 -07001418 continue;
1419
1420 ie = wpa_bss_get_ie(bss, WLAN_EID_HT_CAP);
1421 ht_cap = (ie && (ie[1] == 26)) ? WPA_GET_LE16(ie + 2) : 0;
Dmitry Shmidtd11f0192014-03-24 12:09:47 -07001422 wpa_printf(MSG_DEBUG, "SME OBSS scan BSS " MACSTR
1423 " freq=%u chan=%u ht_cap=0x%x",
1424 MAC2STR(bss->bssid), bss->freq, channel, ht_cap);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001425
1426 if (!ht_cap || (ht_cap & HT_CAP_INFO_40MHZ_INTOLERANT)) {
Dmitry Shmidtd11f0192014-03-24 12:09:47 -07001427 if (ht_cap & HT_CAP_INFO_40MHZ_INTOLERANT)
1428 num_intol++;
1429
Dmitry Shmidt04949592012-07-19 12:16:46 -07001430 /* Check whether the channel is already considered */
1431 for (i = 0; i < num_channels; i++) {
1432 if (channel == chan_list[i])
1433 break;
1434 }
1435 if (i != num_channels)
1436 continue;
1437
Dmitry Shmidt04949592012-07-19 12:16:46 -07001438 chan_list[num_channels++] = channel;
1439 }
1440 }
1441
1442 sme_send_2040_bss_coex(wpa_s, chan_list, num_channels, num_intol);
1443 return 1;
1444}
1445
1446
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001447static void wpa_obss_scan_freqs_list(struct wpa_supplicant *wpa_s,
1448 struct wpa_driver_scan_params *params)
Dmitry Shmidt04949592012-07-19 12:16:46 -07001449{
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001450 /* Include only affected channels */
Dmitry Shmidt04949592012-07-19 12:16:46 -07001451 struct hostapd_hw_modes *mode;
1452 int count, i;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001453 int start, end;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001454
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001455 mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes,
1456 HOSTAPD_MODE_IEEE80211G);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001457 if (mode == NULL) {
1458 /* No channels supported in this band - use empty list */
1459 params->freqs = os_zalloc(sizeof(int));
1460 return;
1461 }
1462
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001463 if (wpa_s->sme.ht_sec_chan == HT_SEC_CHAN_UNKNOWN &&
1464 wpa_s->current_bss) {
1465 const u8 *ie;
1466
1467 ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_HT_OPERATION);
1468 if (ie && ie[1] >= 2) {
1469 u8 o;
1470
1471 o = ie[3] & HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK;
1472 if (o == HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE)
1473 wpa_s->sme.ht_sec_chan = HT_SEC_CHAN_ABOVE;
1474 else if (o == HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW)
1475 wpa_s->sme.ht_sec_chan = HT_SEC_CHAN_BELOW;
1476 }
1477 }
1478
1479 start = wpa_s->assoc_freq - 10;
1480 end = wpa_s->assoc_freq + 10;
1481 switch (wpa_s->sme.ht_sec_chan) {
1482 case HT_SEC_CHAN_UNKNOWN:
1483 /* HT40+ possible on channels 1..9 */
1484 if (wpa_s->assoc_freq <= 2452)
1485 start -= 20;
1486 /* HT40- possible on channels 5-13 */
1487 if (wpa_s->assoc_freq >= 2432)
1488 end += 20;
1489 break;
1490 case HT_SEC_CHAN_ABOVE:
1491 end += 20;
1492 break;
1493 case HT_SEC_CHAN_BELOW:
1494 start -= 20;
1495 break;
1496 }
1497 wpa_printf(MSG_DEBUG,
1498 "OBSS: assoc_freq %d possible affected range %d-%d",
1499 wpa_s->assoc_freq, start, end);
1500
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001501 params->freqs = os_calloc(mode->num_channels + 1, sizeof(int));
Dmitry Shmidt04949592012-07-19 12:16:46 -07001502 if (params->freqs == NULL)
1503 return;
1504 for (count = 0, i = 0; i < mode->num_channels; i++) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001505 int freq;
1506
Dmitry Shmidt04949592012-07-19 12:16:46 -07001507 if (mode->channels[i].flag & HOSTAPD_CHAN_DISABLED)
1508 continue;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001509 freq = mode->channels[i].freq;
1510 if (freq - 10 >= end || freq + 10 <= start)
1511 continue; /* not affected */
1512 params->freqs[count++] = freq;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001513 }
1514}
1515
1516
1517static void sme_obss_scan_timeout(void *eloop_ctx, void *timeout_ctx)
1518{
1519 struct wpa_supplicant *wpa_s = eloop_ctx;
1520 struct wpa_driver_scan_params params;
1521
1522 if (!wpa_s->current_bss) {
1523 wpa_printf(MSG_DEBUG, "SME OBSS: Ignore scan request");
1524 return;
1525 }
1526
1527 os_memset(&params, 0, sizeof(params));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001528 wpa_obss_scan_freqs_list(wpa_s, &params);
Dmitry Shmidt2271d3f2014-06-23 12:16:31 -07001529 params.low_priority = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001530 wpa_printf(MSG_DEBUG, "SME OBSS: Request an OBSS scan");
1531
1532 if (wpa_supplicant_trigger_scan(wpa_s, &params))
1533 wpa_printf(MSG_DEBUG, "SME OBSS: Failed to trigger scan");
1534 else
1535 wpa_s->sme.sched_obss_scan = 1;
1536 os_free(params.freqs);
1537
1538 eloop_register_timeout(wpa_s->sme.obss_scan_int, 0,
1539 sme_obss_scan_timeout, wpa_s, NULL);
1540}
1541
1542
1543void sme_sched_obss_scan(struct wpa_supplicant *wpa_s, int enable)
1544{
1545 const u8 *ie;
1546 struct wpa_bss *bss = wpa_s->current_bss;
1547 struct wpa_ssid *ssid = wpa_s->current_ssid;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001548 struct hostapd_hw_modes *hw_mode = NULL;
1549 int i;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001550
1551 eloop_cancel_timeout(sme_obss_scan_timeout, wpa_s, NULL);
1552 wpa_s->sme.sched_obss_scan = 0;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001553 wpa_s->sme.ht_sec_chan = HT_SEC_CHAN_UNKNOWN;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001554 if (!enable)
1555 return;
1556
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001557 /*
1558 * Schedule OBSS scan if driver is using station SME in wpa_supplicant
1559 * or it expects OBSS scan to be performed by wpa_supplicant.
1560 */
1561 if (!((wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) ||
1562 (wpa_s->drv_flags & WPA_DRIVER_FLAGS_OBSS_SCAN)) ||
1563 ssid == NULL || ssid->mode != IEEE80211_MODE_INFRA)
1564 return;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001565
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001566 if (!wpa_s->hw.modes)
1567 return;
1568
1569 /* only HT caps in 11g mode are relevant */
1570 for (i = 0; i < wpa_s->hw.num_modes; i++) {
1571 hw_mode = &wpa_s->hw.modes[i];
1572 if (hw_mode->mode == HOSTAPD_MODE_IEEE80211G)
1573 break;
1574 }
1575
1576 /* Driver does not support HT40 for 11g or doesn't have 11g. */
1577 if (i == wpa_s->hw.num_modes || !hw_mode ||
1578 !(hw_mode->ht_capab & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
1579 return;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001580
1581 if (bss == NULL || bss->freq < 2400 || bss->freq > 2500)
1582 return; /* Not associated on 2.4 GHz band */
1583
1584 /* Check whether AP supports HT40 */
1585 ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_HT_CAP);
1586 if (!ie || ie[1] < 2 ||
1587 !(WPA_GET_LE16(ie + 2) & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
1588 return; /* AP does not support HT40 */
1589
1590 ie = wpa_bss_get_ie(wpa_s->current_bss,
1591 WLAN_EID_OVERLAPPING_BSS_SCAN_PARAMS);
1592 if (!ie || ie[1] < 14)
1593 return; /* AP does not request OBSS scans */
1594
1595 wpa_s->sme.obss_scan_int = WPA_GET_LE16(ie + 6);
1596 if (wpa_s->sme.obss_scan_int < 10) {
1597 wpa_printf(MSG_DEBUG, "SME: Invalid OBSS Scan Interval %u "
1598 "replaced with the minimum 10 sec",
1599 wpa_s->sme.obss_scan_int);
1600 wpa_s->sme.obss_scan_int = 10;
1601 }
1602 wpa_printf(MSG_DEBUG, "SME: OBSS Scan Interval %u sec",
1603 wpa_s->sme.obss_scan_int);
1604 eloop_register_timeout(wpa_s->sme.obss_scan_int, 0,
1605 sme_obss_scan_timeout, wpa_s, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001606}
1607
1608
1609#ifdef CONFIG_IEEE80211W
1610
1611static const unsigned int sa_query_max_timeout = 1000;
1612static const unsigned int sa_query_retry_timeout = 201;
1613
1614static int sme_check_sa_query_timeout(struct wpa_supplicant *wpa_s)
1615{
1616 u32 tu;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001617 struct os_reltime now, passed;
1618 os_get_reltime(&now);
1619 os_reltime_sub(&now, &wpa_s->sme.sa_query_start, &passed);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001620 tu = (passed.sec * 1000000 + passed.usec) / 1024;
1621 if (sa_query_max_timeout < tu) {
1622 wpa_dbg(wpa_s, MSG_DEBUG, "SME: SA Query timed out");
1623 sme_stop_sa_query(wpa_s);
1624 wpa_supplicant_deauthenticate(
1625 wpa_s, WLAN_REASON_PREV_AUTH_NOT_VALID);
1626 return 1;
1627 }
1628
1629 return 0;
1630}
1631
1632
1633static void sme_send_sa_query_req(struct wpa_supplicant *wpa_s,
1634 const u8 *trans_id)
1635{
1636 u8 req[2 + WLAN_SA_QUERY_TR_ID_LEN];
1637 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Sending SA Query Request to "
1638 MACSTR, MAC2STR(wpa_s->bssid));
1639 wpa_hexdump(MSG_DEBUG, "SME: SA Query Transaction ID",
1640 trans_id, WLAN_SA_QUERY_TR_ID_LEN);
1641 req[0] = WLAN_ACTION_SA_QUERY;
1642 req[1] = WLAN_SA_QUERY_REQUEST;
1643 os_memcpy(req + 2, trans_id, WLAN_SA_QUERY_TR_ID_LEN);
1644 if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
1645 wpa_s->own_addr, wpa_s->bssid,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001646 req, sizeof(req), 0) < 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001647 wpa_msg(wpa_s, MSG_INFO, "SME: Failed to send SA Query "
1648 "Request");
1649}
1650
1651
1652static void sme_sa_query_timer(void *eloop_ctx, void *timeout_ctx)
1653{
1654 struct wpa_supplicant *wpa_s = eloop_ctx;
1655 unsigned int timeout, sec, usec;
1656 u8 *trans_id, *nbuf;
1657
1658 if (wpa_s->sme.sa_query_count > 0 &&
1659 sme_check_sa_query_timeout(wpa_s))
1660 return;
1661
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001662 nbuf = os_realloc_array(wpa_s->sme.sa_query_trans_id,
1663 wpa_s->sme.sa_query_count + 1,
1664 WLAN_SA_QUERY_TR_ID_LEN);
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -07001665 if (nbuf == NULL) {
1666 sme_stop_sa_query(wpa_s);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001667 return;
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -07001668 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001669 if (wpa_s->sme.sa_query_count == 0) {
1670 /* Starting a new SA Query procedure */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001671 os_get_reltime(&wpa_s->sme.sa_query_start);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001672 }
1673 trans_id = nbuf + wpa_s->sme.sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
1674 wpa_s->sme.sa_query_trans_id = nbuf;
1675 wpa_s->sme.sa_query_count++;
1676
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001677 if (os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0) {
1678 wpa_printf(MSG_DEBUG, "Could not generate SA Query ID");
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -07001679 sme_stop_sa_query(wpa_s);
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001680 return;
1681 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001682
1683 timeout = sa_query_retry_timeout;
1684 sec = ((timeout / 1000) * 1024) / 1000;
1685 usec = (timeout % 1000) * 1024;
1686 eloop_register_timeout(sec, usec, sme_sa_query_timer, wpa_s, NULL);
1687
1688 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association SA Query attempt %d",
1689 wpa_s->sme.sa_query_count);
1690
1691 sme_send_sa_query_req(wpa_s, trans_id);
1692}
1693
1694
1695static void sme_start_sa_query(struct wpa_supplicant *wpa_s)
1696{
1697 sme_sa_query_timer(wpa_s, NULL);
1698}
1699
1700
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001701static void sme_stop_sa_query(struct wpa_supplicant *wpa_s)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001702{
1703 eloop_cancel_timeout(sme_sa_query_timer, wpa_s, NULL);
1704 os_free(wpa_s->sme.sa_query_trans_id);
1705 wpa_s->sme.sa_query_trans_id = NULL;
1706 wpa_s->sme.sa_query_count = 0;
1707}
1708
1709
1710void sme_event_unprot_disconnect(struct wpa_supplicant *wpa_s, const u8 *sa,
1711 const u8 *da, u16 reason_code)
1712{
1713 struct wpa_ssid *ssid;
Dmitry Shmidt0c08fdc2014-06-20 10:16:40 -07001714 struct os_reltime now;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001715
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001716 if (wpa_s->wpa_state != WPA_COMPLETED)
1717 return;
1718 ssid = wpa_s->current_ssid;
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001719 if (wpas_get_ssid_pmf(wpa_s, ssid) == NO_MGMT_FRAME_PROTECTION)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001720 return;
1721 if (os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0)
1722 return;
1723 if (reason_code != WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA &&
1724 reason_code != WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA)
1725 return;
1726 if (wpa_s->sme.sa_query_count > 0)
1727 return;
1728
Dmitry Shmidt0c08fdc2014-06-20 10:16:40 -07001729 os_get_reltime(&now);
1730 if (wpa_s->sme.last_unprot_disconnect.sec &&
1731 !os_reltime_expired(&now, &wpa_s->sme.last_unprot_disconnect, 10))
1732 return; /* limit SA Query procedure frequency */
1733 wpa_s->sme.last_unprot_disconnect = now;
1734
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001735 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Unprotected disconnect dropped - "
1736 "possible AP/STA state mismatch - trigger SA Query");
1737 sme_start_sa_query(wpa_s);
1738}
1739
1740
1741void sme_sa_query_rx(struct wpa_supplicant *wpa_s, const u8 *sa,
1742 const u8 *data, size_t len)
1743{
1744 int i;
1745
1746 if (wpa_s->sme.sa_query_trans_id == NULL ||
1747 len < 1 + WLAN_SA_QUERY_TR_ID_LEN ||
1748 data[0] != WLAN_SA_QUERY_RESPONSE)
1749 return;
1750 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Received SA Query response from "
1751 MACSTR " (trans_id %02x%02x)", MAC2STR(sa), data[1], data[2]);
1752
1753 if (os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0)
1754 return;
1755
1756 for (i = 0; i < wpa_s->sme.sa_query_count; i++) {
1757 if (os_memcmp(wpa_s->sme.sa_query_trans_id +
1758 i * WLAN_SA_QUERY_TR_ID_LEN,
1759 data + 1, WLAN_SA_QUERY_TR_ID_LEN) == 0)
1760 break;
1761 }
1762
1763 if (i >= wpa_s->sme.sa_query_count) {
1764 wpa_dbg(wpa_s, MSG_DEBUG, "SME: No matching SA Query "
1765 "transaction identifier found");
1766 return;
1767 }
1768
1769 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Reply to pending SA Query received "
1770 "from " MACSTR, MAC2STR(sa));
1771 sme_stop_sa_query(wpa_s);
1772}
1773
1774#endif /* CONFIG_IEEE80211W */