2009-03-20 21:26:41 +01:00
|
|
|
/*
|
|
|
|
* wpa_supplicant - SME
|
2014-01-03 15:50:32 +01:00
|
|
|
* Copyright (c) 2009-2014, Jouni Malinen <j@w1.fi>
|
2009-03-20 21:26:41 +01:00
|
|
|
*
|
2012-02-11 15:46:35 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2009-03-20 21:26:41 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
|
|
|
#include "common.h"
|
2010-12-19 10:58:00 +01:00
|
|
|
#include "utils/eloop.h"
|
2009-11-29 16:51:55 +01:00
|
|
|
#include "common/ieee802_11_defs.h"
|
2010-04-07 09:31:06 +02:00
|
|
|
#include "common/ieee802_11_common.h"
|
2009-03-20 21:26:41 +01:00
|
|
|
#include "eapol_supp/eapol_supp_sm.h"
|
2009-11-29 16:51:55 +01:00
|
|
|
#include "common/wpa_common.h"
|
2012-12-30 20:48:19 +01:00
|
|
|
#include "common/sae.h"
|
2009-11-29 17:28:08 +01:00
|
|
|
#include "rsn_supp/wpa.h"
|
|
|
|
#include "rsn_supp/pmksa_cache.h"
|
2009-03-20 21:26:41 +01:00
|
|
|
#include "config.h"
|
|
|
|
#include "wpa_supplicant_i.h"
|
2009-03-26 19:37:05 +01:00
|
|
|
#include "driver_i.h"
|
2009-03-20 21:26:41 +01:00
|
|
|
#include "wpas_glue.h"
|
|
|
|
#include "wps_supplicant.h"
|
2010-07-18 23:30:25 +02:00
|
|
|
#include "p2p_supplicant.h"
|
2009-09-13 19:53:32 +02:00
|
|
|
#include "notify.h"
|
2010-01-02 15:16:02 +01:00
|
|
|
#include "bss.h"
|
2010-01-03 17:48:11 +01:00
|
|
|
#include "scan.h"
|
2009-03-20 21:26:41 +01:00
|
|
|
#include "sme.h"
|
2011-10-03 17:10:23 +02:00
|
|
|
#include "hs20_supplicant.h"
|
2009-03-20 21:26:41 +01:00
|
|
|
|
2011-02-24 15:59:46 +01:00
|
|
|
#define SME_AUTH_TIMEOUT 5
|
|
|
|
#define SME_ASSOC_TIMEOUT 5
|
|
|
|
|
|
|
|
static void sme_auth_timer(void *eloop_ctx, void *timeout_ctx);
|
|
|
|
static void sme_assoc_timer(void *eloop_ctx, void *timeout_ctx);
|
2012-05-03 11:13:43 +02:00
|
|
|
static void sme_obss_scan_timeout(void *eloop_ctx, void *timeout_ctx);
|
2011-02-24 15:59:46 +01:00
|
|
|
#ifdef CONFIG_IEEE80211W
|
|
|
|
static void sme_stop_sa_query(struct wpa_supplicant *wpa_s);
|
|
|
|
#endif /* CONFIG_IEEE80211W */
|
|
|
|
|
|
|
|
|
2012-09-30 18:51:07 +02:00
|
|
|
#ifdef CONFIG_SAE
|
|
|
|
|
2013-01-01 15:23:47 +01:00
|
|
|
static int index_within_array(const int *array, int idx)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < idx; i++) {
|
2013-11-02 17:07:49 +01:00
|
|
|
if (array[i] <= 0)
|
2013-01-01 15:23:47 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int sme_set_sae_group(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
int *groups = wpa_s->conf->sae_groups;
|
2013-11-02 17:07:49 +01:00
|
|
|
int default_groups[] = { 19, 20, 21, 25, 26, 0 };
|
2013-01-01 15:23:47 +01:00
|
|
|
|
2013-11-02 17:07:49 +01:00
|
|
|
if (!groups || groups[0] <= 0)
|
2013-01-01 15:23:47 +01:00
|
|
|
groups = default_groups;
|
|
|
|
|
|
|
|
/* Configuration may have changed, so validate current index */
|
|
|
|
if (!index_within_array(groups, wpa_s->sme.sae_group_index))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
int group = groups[wpa_s->sme.sae_group_index];
|
2015-06-20 22:29:57 +02:00
|
|
|
if (group <= 0)
|
2013-01-01 15:23:47 +01:00
|
|
|
break;
|
|
|
|
if (sae_set_group(&wpa_s->sme.sae, group) == 0) {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected SAE group %d",
|
|
|
|
wpa_s->sme.sae.group);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
wpa_s->sme.sae_group_index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-30 21:06:11 +01:00
|
|
|
static struct wpabuf * sme_auth_build_sae_commit(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid,
|
|
|
|
const u8 *bssid)
|
2012-09-30 18:51:07 +02:00
|
|
|
{
|
|
|
|
struct wpabuf *buf;
|
2012-12-31 15:58:36 +01:00
|
|
|
size_t len;
|
2012-09-30 18:51:07 +02:00
|
|
|
|
2012-12-30 21:06:11 +01:00
|
|
|
if (ssid->passphrase == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "SAE: No password available");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-01-01 15:23:47 +01:00
|
|
|
if (sme_set_sae_group(wpa_s) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "SAE: Failed to select group");
|
2013-01-01 10:29:53 +01:00
|
|
|
return NULL;
|
2013-01-01 15:23:47 +01:00
|
|
|
}
|
2013-01-01 10:29:53 +01:00
|
|
|
|
2012-12-30 21:06:11 +01:00
|
|
|
if (sae_prepare_commit(wpa_s->own_addr, bssid,
|
|
|
|
(u8 *) ssid->passphrase,
|
|
|
|
os_strlen(ssid->passphrase),
|
|
|
|
&wpa_s->sme.sae) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "SAE: Could not pick PWE");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-12-31 15:58:36 +01:00
|
|
|
len = wpa_s->sme.sae_token ? wpabuf_len(wpa_s->sme.sae_token) : 0;
|
|
|
|
buf = wpabuf_alloc(4 + SAE_COMMIT_MAX_LEN + len);
|
2012-09-30 18:51:07 +02:00
|
|
|
if (buf == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
wpabuf_put_le16(buf, 1); /* Transaction seq# */
|
|
|
|
wpabuf_put_le16(buf, WLAN_STATUS_SUCCESS);
|
2012-12-31 15:58:36 +01:00
|
|
|
sae_write_commit(&wpa_s->sme.sae, buf, wpa_s->sme.sae_token);
|
2012-09-30 18:51:07 +02:00
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct wpabuf * sme_auth_build_sae_confirm(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
struct wpabuf *buf;
|
|
|
|
|
2012-12-30 21:28:57 +01:00
|
|
|
buf = wpabuf_alloc(4 + SAE_CONFIRM_MAX_LEN);
|
2012-09-30 18:51:07 +02:00
|
|
|
if (buf == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
wpabuf_put_le16(buf, 2); /* Transaction seq# */
|
|
|
|
wpabuf_put_le16(buf, WLAN_STATUS_SUCCESS);
|
2012-12-30 21:28:57 +01:00
|
|
|
sae_write_confirm(&wpa_s->sme.sae, buf);
|
2012-09-30 18:51:07 +02:00
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_SAE */
|
|
|
|
|
|
|
|
|
2014-11-05 09:42:48 +01:00
|
|
|
/**
|
|
|
|
* sme_auth_handle_rrm - Handle RRM aspects of current authentication attempt
|
|
|
|
* @wpa_s: Pointer to wpa_supplicant data
|
|
|
|
* @bss: Pointer to the bss which is the target of authentication attempt
|
|
|
|
*/
|
|
|
|
static void sme_auth_handle_rrm(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_bss *bss)
|
|
|
|
{
|
|
|
|
const u8 rrm_ie_len = 5;
|
|
|
|
u8 *pos;
|
|
|
|
const u8 *rrm_ie;
|
|
|
|
|
|
|
|
wpa_s->rrm.rrm_used = 0;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"RRM: Determining whether RRM can be used - device support: 0x%x",
|
|
|
|
wpa_s->drv_rrm_flags);
|
|
|
|
|
|
|
|
rrm_ie = wpa_bss_get_ie(bss, WLAN_EID_RRM_ENABLED_CAPABILITIES);
|
|
|
|
if (!rrm_ie || !(bss->caps & IEEE80211_CAP_RRM)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "RRM: No RRM in network");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-06 18:42:17 +02:00
|
|
|
if (!((wpa_s->drv_rrm_flags &
|
|
|
|
WPA_DRIVER_FLAGS_DS_PARAM_SET_IE_IN_PROBES) &&
|
|
|
|
(wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_QUIET)) &&
|
|
|
|
!(wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_SUPPORT_RRM)) {
|
2014-11-05 09:42:48 +01:00
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"RRM: Insufficient RRM support in driver - do not use RRM");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-11-25 00:07:16 +01:00
|
|
|
if (sizeof(wpa_s->sme.assoc_req_ie) <
|
|
|
|
wpa_s->sme.assoc_req_ie_len + rrm_ie_len + 2) {
|
2014-11-05 09:42:48 +01:00
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"RRM: Unable to use RRM, no room for RRM IE");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "RRM: Adding RRM IE to Association Request");
|
|
|
|
pos = wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len;
|
|
|
|
os_memset(pos, 0, 2 + rrm_ie_len);
|
|
|
|
*pos++ = WLAN_EID_RRM_ENABLED_CAPABILITIES;
|
|
|
|
*pos++ = rrm_ie_len;
|
2014-11-05 09:42:56 +01:00
|
|
|
|
|
|
|
/* Set supported capabilites flags */
|
|
|
|
if (wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_TX_POWER_INSERTION)
|
|
|
|
*pos |= WLAN_RRM_CAPS_LINK_MEASUREMENT;
|
|
|
|
|
2016-04-06 18:42:13 +02:00
|
|
|
if (wpa_s->lci)
|
|
|
|
pos[1] |= WLAN_RRM_CAPS_LCI_MEASUREMENT;
|
|
|
|
|
2014-11-05 09:42:48 +01:00
|
|
|
wpa_s->sme.assoc_req_ie_len += rrm_ie_len + 2;
|
|
|
|
wpa_s->rrm.rrm_used = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-25 14:47:43 +01:00
|
|
|
static void sme_send_authentication(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_bss *bss, struct wpa_ssid *ssid,
|
|
|
|
int start)
|
2009-03-20 21:26:41 +01:00
|
|
|
{
|
|
|
|
struct wpa_driver_auth_params params;
|
2009-09-13 19:53:32 +02:00
|
|
|
struct wpa_ssid *old_ssid;
|
2010-01-03 12:05:54 +01:00
|
|
|
#ifdef CONFIG_IEEE80211R
|
2009-03-20 21:26:41 +01:00
|
|
|
const u8 *ie;
|
2010-01-03 12:05:54 +01:00
|
|
|
#endif /* CONFIG_IEEE80211R */
|
2009-03-20 21:26:41 +01:00
|
|
|
#ifdef CONFIG_IEEE80211R
|
|
|
|
const u8 *md = NULL;
|
|
|
|
#endif /* CONFIG_IEEE80211R */
|
2009-09-13 19:53:32 +02:00
|
|
|
int i, bssid_changed;
|
2012-09-30 18:51:07 +02:00
|
|
|
struct wpabuf *resp = NULL;
|
2014-06-07 15:33:28 +02:00
|
|
|
u8 ext_capab[18];
|
2012-12-22 18:17:15 +01:00
|
|
|
int ext_capab_len;
|
2015-02-19 15:35:39 +01:00
|
|
|
int skip_auth;
|
2016-02-15 15:53:34 +01:00
|
|
|
#ifdef CONFIG_MBO
|
|
|
|
const u8 *mbo;
|
|
|
|
#endif /* CONFIG_MBO */
|
2009-03-20 21:26:41 +01:00
|
|
|
|
|
|
|
if (bss == NULL) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_msg(wpa_s, MSG_ERROR, "SME: No scan result available for "
|
|
|
|
"the network");
|
2014-01-03 15:50:32 +01:00
|
|
|
wpas_connect_work_done(wpa_s);
|
2009-03-20 21:26:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-02-19 15:35:39 +01:00
|
|
|
skip_auth = wpa_s->conf->reassoc_same_bss_optim &&
|
|
|
|
wpa_s->reassoc_same_bss;
|
2010-01-02 15:59:19 +01:00
|
|
|
wpa_s->current_bss = bss;
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
os_memset(¶ms, 0, sizeof(params));
|
|
|
|
wpa_s->reassociate = 0;
|
|
|
|
|
|
|
|
params.freq = bss->freq;
|
|
|
|
params.bssid = bss->bssid;
|
2010-01-02 15:16:02 +01:00
|
|
|
params.ssid = bss->ssid;
|
|
|
|
params.ssid_len = bss->ssid_len;
|
2011-07-17 19:25:58 +02:00
|
|
|
params.p2p = ssid->p2p_group;
|
2009-03-20 21:26:41 +01:00
|
|
|
|
2009-11-17 18:25:05 +01:00
|
|
|
if (wpa_s->sme.ssid_len != params.ssid_len ||
|
|
|
|
os_memcmp(wpa_s->sme.ssid, params.ssid, params.ssid_len) != 0)
|
|
|
|
wpa_s->sme.prev_bssid_set = 0;
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_s->sme.freq = params.freq;
|
|
|
|
os_memcpy(wpa_s->sme.ssid, params.ssid, params.ssid_len);
|
|
|
|
wpa_s->sme.ssid_len = params.ssid_len;
|
|
|
|
|
2010-01-03 20:14:40 +01:00
|
|
|
params.auth_alg = WPA_AUTH_ALG_OPEN;
|
2009-03-20 21:26:41 +01:00
|
|
|
#ifdef IEEE8021X_EAPOL
|
|
|
|
if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
|
|
|
|
if (ssid->leap) {
|
|
|
|
if (ssid->non_leap == 0)
|
2010-01-03 20:14:40 +01:00
|
|
|
params.auth_alg = WPA_AUTH_ALG_LEAP;
|
2009-03-20 21:26:41 +01:00
|
|
|
else
|
2010-01-03 20:14:40 +01:00
|
|
|
params.auth_alg |= WPA_AUTH_ALG_LEAP;
|
2009-03-20 21:26:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* IEEE8021X_EAPOL */
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "Automatic auth_alg selection: 0x%x",
|
|
|
|
params.auth_alg);
|
2009-03-20 21:26:41 +01:00
|
|
|
if (ssid->auth_alg) {
|
2010-01-03 20:14:40 +01:00
|
|
|
params.auth_alg = ssid->auth_alg;
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "Overriding auth_alg selection: "
|
|
|
|
"0x%x", params.auth_alg);
|
2009-03-20 21:26:41 +01:00
|
|
|
}
|
2012-09-30 18:51:07 +02:00
|
|
|
#ifdef CONFIG_SAE
|
2014-10-18 12:02:02 +02:00
|
|
|
wpa_s->sme.sae_pmksa_caching = 0;
|
2012-09-30 18:51:07 +02:00
|
|
|
if (wpa_key_mgmt_sae(ssid->key_mgmt)) {
|
|
|
|
const u8 *rsn;
|
|
|
|
struct wpa_ie_data ied;
|
|
|
|
|
|
|
|
rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
|
2014-12-22 12:49:52 +01:00
|
|
|
if (!rsn) {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG,
|
|
|
|
"SAE enabled, but target BSS does not advertise RSN");
|
|
|
|
} else if (wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ied) == 0 &&
|
|
|
|
wpa_key_mgmt_sae(ied.key_mgmt)) {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "Using SAE auth_alg");
|
|
|
|
params.auth_alg = WPA_AUTH_ALG_SAE;
|
|
|
|
} else {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG,
|
|
|
|
"SAE enabled, but target BSS does not advertise SAE AKM for RSN");
|
2012-09-30 18:51:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_SAE */
|
2009-03-20 21:26:41 +01:00
|
|
|
|
2009-04-04 15:58:16 +02:00
|
|
|
for (i = 0; i < NUM_WEP_KEYS; i++) {
|
|
|
|
if (ssid->wep_key_len[i])
|
|
|
|
params.wep_key[i] = ssid->wep_key[i];
|
|
|
|
params.wep_key_len[i] = ssid->wep_key_len[i];
|
|
|
|
}
|
|
|
|
params.wep_tx_keyidx = ssid->wep_tx_keyidx;
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
|
2009-03-20 21:26:41 +01:00
|
|
|
os_memset(wpa_s->bssid, 0, ETH_ALEN);
|
|
|
|
os_memcpy(wpa_s->pending_bssid, bss->bssid, ETH_ALEN);
|
2009-09-13 19:53:32 +02:00
|
|
|
if (bssid_changed)
|
|
|
|
wpas_notify_bssid_changed(wpa_s);
|
2009-03-20 21:26:41 +01:00
|
|
|
|
2010-01-10 20:31:54 +01:00
|
|
|
if ((wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE) ||
|
|
|
|
wpa_bss_get_ie(bss, WLAN_EID_RSN)) &&
|
2011-11-24 21:46:14 +01:00
|
|
|
wpa_key_mgmt_wpa(ssid->key_mgmt)) {
|
2009-03-20 21:26:41 +01:00
|
|
|
int try_opportunistic;
|
2012-11-12 19:07:53 +01:00
|
|
|
try_opportunistic = (ssid->proactive_key_caching < 0 ?
|
|
|
|
wpa_s->conf->okc :
|
|
|
|
ssid->proactive_key_caching) &&
|
2009-03-20 21:26:41 +01:00
|
|
|
(ssid->proto & WPA_PROTO_RSN);
|
|
|
|
if (pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid,
|
|
|
|
wpa_s->current_ssid,
|
|
|
|
try_opportunistic) == 0)
|
2015-01-28 00:26:14 +01:00
|
|
|
eapol_sm_notify_pmkid_attempt(wpa_s->eapol);
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_s->sme.assoc_req_ie_len = sizeof(wpa_s->sme.assoc_req_ie);
|
|
|
|
if (wpa_supplicant_set_suites(wpa_s, bss, ssid,
|
|
|
|
wpa_s->sme.assoc_req_ie,
|
|
|
|
&wpa_s->sme.assoc_req_ie_len)) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_msg(wpa_s, MSG_WARNING, "SME: Failed to set WPA "
|
|
|
|
"key management and encryption suites");
|
2014-01-03 15:50:32 +01:00
|
|
|
wpas_connect_work_done(wpa_s);
|
2009-03-20 21:26:41 +01:00
|
|
|
return;
|
|
|
|
}
|
2012-08-15 18:34:04 +02:00
|
|
|
} else if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) &&
|
|
|
|
wpa_key_mgmt_wpa_ieee8021x(ssid->key_mgmt)) {
|
|
|
|
/*
|
|
|
|
* Both WPA and non-WPA IEEE 802.1X enabled in configuration -
|
|
|
|
* use non-WPA since the scan results did not indicate that the
|
|
|
|
* AP is using WPA or WPA2.
|
|
|
|
*/
|
|
|
|
wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
|
|
|
|
wpa_s->sme.assoc_req_ie_len = 0;
|
2011-11-24 21:46:14 +01:00
|
|
|
} else if (wpa_key_mgmt_wpa_any(ssid->key_mgmt)) {
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_s->sme.assoc_req_ie_len = sizeof(wpa_s->sme.assoc_req_ie);
|
|
|
|
if (wpa_supplicant_set_suites(wpa_s, NULL, ssid,
|
|
|
|
wpa_s->sme.assoc_req_ie,
|
|
|
|
&wpa_s->sme.assoc_req_ie_len)) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_msg(wpa_s, MSG_WARNING, "SME: Failed to set WPA "
|
|
|
|
"key management and encryption suites (no "
|
|
|
|
"scan results)");
|
2014-01-03 15:50:32 +01:00
|
|
|
wpas_connect_work_done(wpa_s);
|
2009-03-20 21:26:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#ifdef CONFIG_WPS
|
|
|
|
} else if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
|
|
|
|
struct wpabuf *wps_ie;
|
|
|
|
wps_ie = wps_build_assoc_req_ie(wpas_wps_get_req_type(ssid));
|
|
|
|
if (wps_ie && wpabuf_len(wps_ie) <=
|
|
|
|
sizeof(wpa_s->sme.assoc_req_ie)) {
|
|
|
|
wpa_s->sme.assoc_req_ie_len = wpabuf_len(wps_ie);
|
|
|
|
os_memcpy(wpa_s->sme.assoc_req_ie, wpabuf_head(wps_ie),
|
|
|
|
wpa_s->sme.assoc_req_ie_len);
|
|
|
|
} else
|
|
|
|
wpa_s->sme.assoc_req_ie_len = 0;
|
|
|
|
wpabuf_free(wps_ie);
|
|
|
|
wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
|
|
|
|
#endif /* CONFIG_WPS */
|
|
|
|
} else {
|
|
|
|
wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
|
|
|
|
wpa_s->sme.assoc_req_ie_len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_IEEE80211R
|
2010-01-02 15:16:02 +01:00
|
|
|
ie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
|
2009-03-20 21:26:41 +01:00
|
|
|
if (ie && ie[1] >= MOBILITY_DOMAIN_ID_LEN)
|
|
|
|
md = ie + 2;
|
2010-04-10 10:36:35 +02:00
|
|
|
wpa_sm_set_ft_params(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0);
|
2009-03-20 21:26:41 +01:00
|
|
|
if (md) {
|
|
|
|
/* Prepare for the next transition */
|
2010-04-09 15:26:20 +02:00
|
|
|
wpa_ft_prepare_auth_request(wpa_s->wpa, ie);
|
2009-03-20 21:26:41 +01:00
|
|
|
}
|
|
|
|
|
2011-11-24 21:46:14 +01:00
|
|
|
if (md && wpa_key_mgmt_ft(ssid->key_mgmt)) {
|
2009-03-20 21:26:41 +01:00
|
|
|
if (wpa_s->sme.assoc_req_ie_len + 5 <
|
|
|
|
sizeof(wpa_s->sme.assoc_req_ie)) {
|
|
|
|
struct rsn_mdie *mdie;
|
|
|
|
u8 *pos = wpa_s->sme.assoc_req_ie +
|
|
|
|
wpa_s->sme.assoc_req_ie_len;
|
|
|
|
*pos++ = WLAN_EID_MOBILITY_DOMAIN;
|
|
|
|
*pos++ = sizeof(*mdie);
|
|
|
|
mdie = (struct rsn_mdie *) pos;
|
|
|
|
os_memcpy(mdie->mobility_domain, md,
|
|
|
|
MOBILITY_DOMAIN_ID_LEN);
|
2010-04-09 15:41:57 +02:00
|
|
|
mdie->ft_capab = md[MOBILITY_DOMAIN_ID_LEN];
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_s->sme.assoc_req_ie_len += 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wpa_s->sme.ft_used &&
|
2010-04-10 21:39:49 +02:00
|
|
|
os_memcmp(md, wpa_s->sme.mobility_domain, 2) == 0 &&
|
|
|
|
wpa_sm_has_ptk(wpa_s->wpa)) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying to use FT "
|
|
|
|
"over-the-air");
|
2010-01-03 20:14:40 +01:00
|
|
|
params.auth_alg = WPA_AUTH_ALG_FT;
|
2009-03-20 21:26:41 +01:00
|
|
|
params.ie = wpa_s->sme.ft_ies;
|
|
|
|
params.ie_len = wpa_s->sme.ft_ies_len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_IEEE80211R */
|
|
|
|
|
|
|
|
#ifdef CONFIG_IEEE80211W
|
2015-01-26 16:40:22 +01:00
|
|
|
wpa_s->sme.mfp = wpas_get_ssid_pmf(wpa_s, ssid);
|
2012-11-24 21:21:29 +01:00
|
|
|
if (wpa_s->sme.mfp != NO_MGMT_FRAME_PROTECTION) {
|
2010-01-02 15:16:02 +01:00
|
|
|
const u8 *rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
|
2009-03-20 21:26:41 +01:00
|
|
|
struct wpa_ie_data _ie;
|
|
|
|
if (rsn && wpa_parse_wpa_ie(rsn, 2 + rsn[1], &_ie) == 0 &&
|
|
|
|
_ie.capabilities &
|
|
|
|
(WPA_CAPABILITY_MFPC | WPA_CAPABILITY_MFPR)) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected AP supports "
|
|
|
|
"MFP: require MFP");
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_s->sme.mfp = MGMT_FRAME_PROTECTION_REQUIRED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_IEEE80211W */
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
#ifdef CONFIG_P2P
|
|
|
|
if (wpa_s->global->p2p) {
|
|
|
|
u8 *pos;
|
|
|
|
size_t len;
|
|
|
|
int res;
|
|
|
|
pos = wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len;
|
|
|
|
len = sizeof(wpa_s->sme.assoc_req_ie) -
|
|
|
|
wpa_s->sme.assoc_req_ie_len;
|
2011-07-17 19:52:49 +02:00
|
|
|
res = wpas_p2p_assoc_req_ie(wpa_s, bss, pos, len,
|
|
|
|
ssid->p2p_group);
|
2010-07-18 23:30:25 +02:00
|
|
|
if (res >= 0)
|
|
|
|
wpa_s->sme.assoc_req_ie_len += res;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_P2P */
|
|
|
|
|
2014-11-16 16:28:53 +01:00
|
|
|
#ifdef CONFIG_FST
|
|
|
|
if (wpa_s->fst_ies) {
|
|
|
|
int fst_ies_len = wpabuf_len(wpa_s->fst_ies);
|
|
|
|
|
|
|
|
if (wpa_s->sme.assoc_req_ie_len + fst_ies_len <=
|
|
|
|
sizeof(wpa_s->sme.assoc_req_ie)) {
|
|
|
|
os_memcpy(wpa_s->sme.assoc_req_ie +
|
|
|
|
wpa_s->sme.assoc_req_ie_len,
|
|
|
|
wpabuf_head(wpa_s->fst_ies),
|
|
|
|
fst_ies_len);
|
|
|
|
wpa_s->sme.assoc_req_ie_len += fst_ies_len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_FST */
|
|
|
|
|
2016-02-15 15:53:48 +01:00
|
|
|
sme_auth_handle_rrm(wpa_s, bss);
|
|
|
|
|
2016-02-15 15:53:34 +01:00
|
|
|
#ifdef CONFIG_MBO
|
|
|
|
mbo = wpa_bss_get_vendor_ie(bss, MBO_IE_VENDOR_TYPE);
|
|
|
|
if (mbo) {
|
|
|
|
int len;
|
|
|
|
|
|
|
|
len = wpas_mbo_supp_op_class_ie(
|
|
|
|
wpa_s, bss->freq,
|
|
|
|
wpa_s->sme.assoc_req_ie + wpa_s->sme.assoc_req_ie_len,
|
|
|
|
sizeof(wpa_s->sme.assoc_req_ie) -
|
|
|
|
wpa_s->sme.assoc_req_ie_len);
|
|
|
|
if (len > 0)
|
|
|
|
wpa_s->sme.assoc_req_ie_len += len;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_MBO */
|
|
|
|
|
2016-04-12 10:01:42 +02:00
|
|
|
if (params.p2p)
|
|
|
|
wpa_drv_get_ext_capa(wpa_s, WPA_IF_P2P_CLIENT);
|
|
|
|
else
|
|
|
|
wpa_drv_get_ext_capa(wpa_s, WPA_IF_STATION);
|
|
|
|
|
2014-06-07 15:33:28 +02:00
|
|
|
ext_capab_len = wpas_build_ext_capab(wpa_s, ext_capab,
|
|
|
|
sizeof(ext_capab));
|
2012-12-22 18:17:15 +01:00
|
|
|
if (ext_capab_len > 0) {
|
2011-10-16 18:04:46 +02:00
|
|
|
u8 *pos = wpa_s->sme.assoc_req_ie;
|
|
|
|
if (wpa_s->sme.assoc_req_ie_len > 0 && pos[0] == WLAN_EID_RSN)
|
|
|
|
pos += 2 + pos[1];
|
2012-12-22 18:17:15 +01:00
|
|
|
os_memmove(pos + ext_capab_len, pos,
|
2011-10-16 18:04:46 +02:00
|
|
|
wpa_s->sme.assoc_req_ie_len -
|
|
|
|
(pos - wpa_s->sme.assoc_req_ie));
|
2012-12-22 18:17:15 +01:00
|
|
|
wpa_s->sme.assoc_req_ie_len += ext_capab_len;
|
|
|
|
os_memcpy(pos, ext_capab, ext_capab_len);
|
2011-10-16 18:04:46 +02:00
|
|
|
}
|
|
|
|
|
2016-02-15 15:53:48 +01:00
|
|
|
#ifdef CONFIG_HS20
|
|
|
|
if (is_hs20_network(wpa_s, ssid, bss)) {
|
|
|
|
struct wpabuf *hs20;
|
|
|
|
|
|
|
|
hs20 = wpabuf_alloc(20);
|
|
|
|
if (hs20) {
|
|
|
|
int pps_mo_id = hs20_get_pps_mo_id(wpa_s, ssid);
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
wpas_hs20_add_indication(hs20, pps_mo_id);
|
|
|
|
len = sizeof(wpa_s->sme.assoc_req_ie) -
|
|
|
|
wpa_s->sme.assoc_req_ie_len;
|
|
|
|
if (wpabuf_len(hs20) <= len) {
|
|
|
|
os_memcpy(wpa_s->sme.assoc_req_ie +
|
|
|
|
wpa_s->sme.assoc_req_ie_len,
|
|
|
|
wpabuf_head(hs20), wpabuf_len(hs20));
|
|
|
|
wpa_s->sme.assoc_req_ie_len += wpabuf_len(hs20);
|
|
|
|
}
|
|
|
|
wpabuf_free(hs20);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_HS20 */
|
|
|
|
|
2015-01-13 23:50:58 +01:00
|
|
|
if (wpa_s->vendor_elem[VENDOR_ELEM_ASSOC_REQ]) {
|
|
|
|
struct wpabuf *buf = wpa_s->vendor_elem[VENDOR_ELEM_ASSOC_REQ];
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
len = sizeof(wpa_s->sme.assoc_req_ie) -
|
|
|
|
wpa_s->sme.assoc_req_ie_len;
|
|
|
|
if (wpabuf_len(buf) <= len) {
|
|
|
|
os_memcpy(wpa_s->sme.assoc_req_ie +
|
|
|
|
wpa_s->sme.assoc_req_ie_len,
|
|
|
|
wpabuf_head(buf), wpabuf_len(buf));
|
|
|
|
wpa_s->sme.assoc_req_ie_len += wpabuf_len(buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-15 15:53:24 +01:00
|
|
|
#ifdef CONFIG_MBO
|
2016-02-15 15:53:34 +01:00
|
|
|
if (mbo) {
|
|
|
|
int len;
|
2016-02-15 15:53:24 +01:00
|
|
|
|
2016-02-15 15:53:34 +01:00
|
|
|
len = wpas_mbo_ie(wpa_s, wpa_s->sme.assoc_req_ie +
|
|
|
|
wpa_s->sme.assoc_req_ie_len,
|
|
|
|
sizeof(wpa_s->sme.assoc_req_ie) -
|
|
|
|
wpa_s->sme.assoc_req_ie_len);
|
|
|
|
if (len >= 0)
|
|
|
|
wpa_s->sme.assoc_req_ie_len += len;
|
2016-02-15 15:53:24 +01:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_MBO */
|
|
|
|
|
2012-09-30 18:51:07 +02:00
|
|
|
#ifdef CONFIG_SAE
|
2015-02-19 15:35:39 +01:00
|
|
|
if (!skip_auth && params.auth_alg == WPA_AUTH_ALG_SAE &&
|
2014-10-18 12:02:02 +02:00
|
|
|
pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid, ssid, 0) == 0)
|
|
|
|
{
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG,
|
|
|
|
"PMKSA cache entry found - try to use PMKSA caching instead of new SAE authentication");
|
|
|
|
params.auth_alg = WPA_AUTH_ALG_OPEN;
|
|
|
|
wpa_s->sme.sae_pmksa_caching = 1;
|
|
|
|
}
|
|
|
|
|
2015-02-19 15:35:39 +01:00
|
|
|
if (!skip_auth && params.auth_alg == WPA_AUTH_ALG_SAE) {
|
2012-09-30 18:51:07 +02:00
|
|
|
if (start)
|
2012-12-30 21:06:11 +01:00
|
|
|
resp = sme_auth_build_sae_commit(wpa_s, ssid,
|
|
|
|
bss->bssid);
|
2012-09-30 18:51:07 +02:00
|
|
|
else
|
|
|
|
resp = sme_auth_build_sae_confirm(wpa_s);
|
2014-01-03 15:50:32 +01:00
|
|
|
if (resp == NULL) {
|
2014-12-14 15:48:38 +01:00
|
|
|
wpas_connection_failed(wpa_s, bss->bssid);
|
2012-09-30 18:51:07 +02:00
|
|
|
return;
|
2014-01-03 15:50:32 +01:00
|
|
|
}
|
2012-09-30 18:51:07 +02:00
|
|
|
params.sae_data = wpabuf_head(resp);
|
|
|
|
params.sae_data_len = wpabuf_len(resp);
|
2012-12-31 10:05:42 +01:00
|
|
|
wpa_s->sme.sae.state = start ? SAE_COMMITTED : SAE_CONFIRMED;
|
2012-09-30 18:51:07 +02:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_SAE */
|
|
|
|
|
2011-09-27 21:21:31 +02:00
|
|
|
wpa_supplicant_cancel_sched_scan(wpa_s);
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_supplicant_cancel_scan(wpa_s);
|
|
|
|
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_msg(wpa_s, MSG_INFO, "SME: Trying to authenticate with " MACSTR
|
2009-03-20 21:26:41 +01:00
|
|
|
" (SSID='%s' freq=%d MHz)", MAC2STR(params.bssid),
|
|
|
|
wpa_ssid_txt(params.ssid, params.ssid_len), params.freq);
|
|
|
|
|
|
|
|
wpa_clear_keys(wpa_s, bss->bssid);
|
|
|
|
wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
|
2009-09-13 19:53:32 +02:00
|
|
|
old_ssid = wpa_s->current_ssid;
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_s->current_ssid = ssid;
|
|
|
|
wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
|
|
|
|
wpa_supplicant_initiate_eapol(wpa_s);
|
2009-09-13 19:53:32 +02:00
|
|
|
if (old_ssid != wpa_s->current_ssid)
|
|
|
|
wpas_notify_network_changed(wpa_s);
|
2009-03-20 21:26:41 +01:00
|
|
|
|
2016-04-06 16:14:41 +02:00
|
|
|
#ifdef CONFIG_HS20
|
|
|
|
hs20_configure_frame_filters(wpa_s);
|
|
|
|
#endif /* CONFIG_HS20 */
|
|
|
|
|
2014-04-24 07:45:40 +02:00
|
|
|
#ifdef CONFIG_P2P
|
|
|
|
/*
|
|
|
|
* If multi-channel concurrency is not supported, check for any
|
|
|
|
* frequency conflict. In case of any frequency conflict, remove the
|
|
|
|
* least prioritized connection.
|
|
|
|
*/
|
|
|
|
if (wpa_s->num_multichan_concurrent < 2) {
|
|
|
|
int freq, num;
|
|
|
|
num = get_shared_radio_freqs(wpa_s, &freq, 1);
|
|
|
|
if (num > 0 && freq > 0 && freq != params.freq) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"Conflicting frequency found (%d != %d)",
|
|
|
|
freq, params.freq);
|
|
|
|
if (wpas_p2p_handle_frequency_conflicts(wpa_s,
|
|
|
|
params.freq,
|
|
|
|
ssid) < 0) {
|
|
|
|
wpas_connection_failed(wpa_s, bss->bssid);
|
|
|
|
wpa_supplicant_mark_disassoc(wpa_s);
|
|
|
|
wpabuf_free(resp);
|
|
|
|
wpas_connect_work_done(wpa_s);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_P2P */
|
|
|
|
|
2015-02-19 15:35:39 +01:00
|
|
|
if (skip_auth) {
|
|
|
|
wpa_msg(wpa_s, MSG_DEBUG,
|
|
|
|
"SME: Skip authentication step on reassoc-to-same-BSS");
|
|
|
|
wpabuf_free(resp);
|
|
|
|
sme_associate(wpa_s, ssid->mode, bss->bssid, WLAN_AUTH_OPEN);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-13 20:13:18 +01:00
|
|
|
wpa_s->sme.auth_alg = params.auth_alg;
|
2009-03-20 21:26:41 +01:00
|
|
|
if (wpa_drv_authenticate(wpa_s, ¶ms) < 0) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_msg(wpa_s, MSG_INFO, "SME: Authentication request to the "
|
2009-03-20 21:26:41 +01:00
|
|
|
"driver failed");
|
2011-12-04 20:04:24 +01:00
|
|
|
wpas_connection_failed(wpa_s, bss->bssid);
|
2012-01-29 16:44:31 +01:00
|
|
|
wpa_supplicant_mark_disassoc(wpa_s);
|
2012-09-30 18:51:07 +02:00
|
|
|
wpabuf_free(resp);
|
2014-01-03 15:50:32 +01:00
|
|
|
wpas_connect_work_done(wpa_s);
|
2009-03-20 21:26:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-24 15:59:46 +01:00
|
|
|
eloop_register_timeout(SME_AUTH_TIMEOUT, 0, sme_auth_timer, wpa_s,
|
|
|
|
NULL);
|
2009-03-20 21:26:41 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Association will be started based on the authentication event from
|
|
|
|
* the driver.
|
|
|
|
*/
|
2012-09-30 18:51:07 +02:00
|
|
|
|
|
|
|
wpabuf_free(resp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-03 15:50:32 +01:00
|
|
|
static void sme_auth_start_cb(struct wpa_radio_work *work, int deinit)
|
|
|
|
{
|
|
|
|
struct wpa_connect_work *cwork = work->ctx;
|
|
|
|
struct wpa_supplicant *wpa_s = work->wpa_s;
|
|
|
|
|
|
|
|
if (deinit) {
|
2014-02-13 10:24:00 +01:00
|
|
|
if (work->started)
|
|
|
|
wpa_s->connect_work = NULL;
|
|
|
|
|
2014-01-03 15:50:32 +01:00
|
|
|
wpas_connect_work_free(cwork);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_s->connect_work = work;
|
|
|
|
|
2014-10-27 23:19:24 +01:00
|
|
|
if (cwork->bss_removed ||
|
2015-08-10 21:12:59 +02:00
|
|
|
!wpas_valid_bss_ssid(wpa_s, cwork->bss, cwork->ssid) ||
|
|
|
|
wpas_network_disabled(wpa_s, cwork->ssid)) {
|
2014-01-03 15:50:32 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: BSS/SSID entry for authentication not valid anymore - drop connection attempt");
|
|
|
|
wpas_connect_work_done(wpa_s);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sme_send_authentication(wpa_s, cwork->bss, cwork->ssid, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-30 18:51:07 +02:00
|
|
|
void sme_authenticate(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_bss *bss, struct wpa_ssid *ssid)
|
|
|
|
{
|
2014-01-03 15:50:32 +01:00
|
|
|
struct wpa_connect_work *cwork;
|
|
|
|
|
|
|
|
if (bss == NULL || ssid == NULL)
|
|
|
|
return;
|
|
|
|
if (wpa_s->connect_work) {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Reject sme_authenticate() call since connect_work exist");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-24 14:22:35 +01:00
|
|
|
if (radio_work_pending(wpa_s, "sme-connect")) {
|
2014-03-27 07:58:33 +01:00
|
|
|
/*
|
|
|
|
* The previous sme-connect work might no longer be valid due to
|
|
|
|
* the fact that the BSS list was updated. In addition, it makes
|
|
|
|
* sense to adhere to the 'newer' decision.
|
|
|
|
*/
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG,
|
|
|
|
"SME: Remove previous pending sme-connect");
|
|
|
|
radio_remove_works(wpa_s, "sme-connect", 0);
|
2014-02-24 14:22:35 +01:00
|
|
|
}
|
|
|
|
|
2015-10-19 16:00:34 +02:00
|
|
|
wpas_abort_ongoing_scan(wpa_s);
|
|
|
|
|
2014-01-03 15:50:32 +01:00
|
|
|
cwork = os_zalloc(sizeof(*cwork));
|
|
|
|
if (cwork == NULL)
|
|
|
|
return;
|
|
|
|
cwork->bss = bss;
|
|
|
|
cwork->ssid = ssid;
|
|
|
|
cwork->sme = 1;
|
|
|
|
|
2012-12-30 20:48:19 +01:00
|
|
|
#ifdef CONFIG_SAE
|
2012-12-31 10:05:42 +01:00
|
|
|
wpa_s->sme.sae.state = SAE_NOTHING;
|
2012-12-30 20:48:19 +01:00
|
|
|
wpa_s->sme.sae.send_confirm = 0;
|
2013-11-02 17:07:49 +01:00
|
|
|
wpa_s->sme.sae_group_index = 0;
|
2012-12-30 20:48:19 +01:00
|
|
|
#endif /* CONFIG_SAE */
|
2014-01-03 15:50:32 +01:00
|
|
|
|
|
|
|
if (radio_add_work(wpa_s, bss->freq, "sme-connect", 1,
|
|
|
|
sme_auth_start_cb, cwork) < 0)
|
|
|
|
wpas_connect_work_free(cwork);
|
2009-03-20 21:26:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-30 18:51:07 +02:00
|
|
|
#ifdef CONFIG_SAE
|
2012-10-06 18:30:54 +02:00
|
|
|
|
2012-09-30 18:51:07 +02:00
|
|
|
static int sme_sae_auth(struct wpa_supplicant *wpa_s, u16 auth_transaction,
|
|
|
|
u16 status_code, const u8 *data, size_t len)
|
|
|
|
{
|
2014-11-25 03:04:41 +01:00
|
|
|
int *groups;
|
|
|
|
|
2012-09-30 18:51:07 +02:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: SAE authentication transaction %u "
|
|
|
|
"status code %u", auth_transaction, status_code);
|
|
|
|
|
2012-12-31 15:58:36 +01:00
|
|
|
if (auth_transaction == 1 &&
|
|
|
|
status_code == WLAN_STATUS_ANTI_CLOGGING_TOKEN_REQ &&
|
|
|
|
wpa_s->sme.sae.state == SAE_COMMITTED &&
|
|
|
|
wpa_s->current_bss && wpa_s->current_ssid) {
|
2014-11-25 03:04:41 +01:00
|
|
|
int default_groups[] = { 19, 20, 21, 25, 26, 0 };
|
|
|
|
u16 group;
|
|
|
|
|
|
|
|
groups = wpa_s->conf->sae_groups;
|
|
|
|
if (!groups || groups[0] <= 0)
|
|
|
|
groups = default_groups;
|
|
|
|
|
|
|
|
if (len < sizeof(le16)) {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG,
|
|
|
|
"SME: Too short SAE anti-clogging token request");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
group = WPA_GET_LE16(data);
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG,
|
|
|
|
"SME: SAE anti-clogging token requested (group %u)",
|
|
|
|
group);
|
|
|
|
if (sae_group_allowed(&wpa_s->sme.sae, groups, group) !=
|
|
|
|
WLAN_STATUS_SUCCESS) {
|
|
|
|
wpa_dbg(wpa_s, MSG_ERROR,
|
|
|
|
"SME: SAE group %u of anti-clogging request is invalid",
|
|
|
|
group);
|
|
|
|
return -1;
|
|
|
|
}
|
2012-12-31 15:58:36 +01:00
|
|
|
wpabuf_free(wpa_s->sme.sae_token);
|
2014-11-25 03:04:41 +01:00
|
|
|
wpa_s->sme.sae_token = wpabuf_alloc_copy(data + sizeof(le16),
|
|
|
|
len - sizeof(le16));
|
2012-12-31 15:58:36 +01:00
|
|
|
sme_send_authentication(wpa_s, wpa_s->current_bss,
|
|
|
|
wpa_s->current_ssid, 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-01-01 15:23:47 +01:00
|
|
|
if (auth_transaction == 1 &&
|
|
|
|
status_code == WLAN_STATUS_FINITE_CYCLIC_GROUP_NOT_SUPPORTED &&
|
|
|
|
wpa_s->sme.sae.state == SAE_COMMITTED &&
|
|
|
|
wpa_s->current_bss && wpa_s->current_ssid) {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: SAE group not supported");
|
|
|
|
wpa_s->sme.sae_group_index++;
|
|
|
|
if (sme_set_sae_group(wpa_s) < 0)
|
|
|
|
return -1; /* no other groups enabled */
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Try next enabled SAE group");
|
|
|
|
sme_send_authentication(wpa_s, wpa_s->current_bss,
|
|
|
|
wpa_s->current_ssid, 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-30 18:51:07 +02:00
|
|
|
if (status_code != WLAN_STATUS_SUCCESS)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (auth_transaction == 1) {
|
2015-06-23 21:30:15 +02:00
|
|
|
u16 res;
|
|
|
|
|
2014-11-25 03:04:41 +01:00
|
|
|
groups = wpa_s->conf->sae_groups;
|
2013-11-02 17:07:49 +01:00
|
|
|
|
2012-09-30 18:51:07 +02:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME SAE commit");
|
|
|
|
if (wpa_s->current_bss == NULL ||
|
|
|
|
wpa_s->current_ssid == NULL)
|
|
|
|
return -1;
|
2012-12-31 10:05:42 +01:00
|
|
|
if (wpa_s->sme.sae.state != SAE_COMMITTED)
|
2012-10-06 18:30:54 +02:00
|
|
|
return -1;
|
2013-11-02 17:07:49 +01:00
|
|
|
if (groups && groups[0] <= 0)
|
|
|
|
groups = NULL;
|
2015-06-23 21:30:15 +02:00
|
|
|
res = sae_parse_commit(&wpa_s->sme.sae, data, len, NULL, NULL,
|
|
|
|
groups);
|
|
|
|
if (res == SAE_SILENTLY_DISCARD) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"SAE: Drop commit message due to reflection attack");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (res != WLAN_STATUS_SUCCESS)
|
2012-10-06 18:30:54 +02:00
|
|
|
return -1;
|
2012-12-30 21:16:18 +01:00
|
|
|
|
|
|
|
if (sae_process_commit(&wpa_s->sme.sae) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "SAE: Failed to process peer "
|
|
|
|
"commit");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-12-31 15:58:36 +01:00
|
|
|
wpabuf_free(wpa_s->sme.sae_token);
|
|
|
|
wpa_s->sme.sae_token = NULL;
|
2012-09-30 18:51:07 +02:00
|
|
|
sme_send_authentication(wpa_s, wpa_s->current_bss,
|
|
|
|
wpa_s->current_ssid, 0);
|
|
|
|
return 0;
|
|
|
|
} else if (auth_transaction == 2) {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME SAE confirm");
|
2012-12-31 10:05:42 +01:00
|
|
|
if (wpa_s->sme.sae.state != SAE_CONFIRMED)
|
2012-10-06 18:30:54 +02:00
|
|
|
return -1;
|
2012-12-30 21:31:19 +01:00
|
|
|
if (sae_check_confirm(&wpa_s->sme.sae, data, len) < 0)
|
2012-10-06 18:30:54 +02:00
|
|
|
return -1;
|
2012-12-31 10:05:42 +01:00
|
|
|
wpa_s->sme.sae.state = SAE_ACCEPTED;
|
2013-01-06 18:06:59 +01:00
|
|
|
sae_clear_temp_data(&wpa_s->sme.sae);
|
2012-09-30 18:51:07 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_SAE */
|
|
|
|
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
void sme_event_auth(struct wpa_supplicant *wpa_s, union wpa_event_data *data)
|
|
|
|
{
|
|
|
|
struct wpa_ssid *ssid = wpa_s->current_ssid;
|
|
|
|
|
|
|
|
if (ssid == NULL) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication event "
|
|
|
|
"when network is not selected");
|
2009-03-20 21:26:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wpa_s->wpa_state != WPA_AUTHENTICATING) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication event "
|
|
|
|
"when not in authenticating state");
|
2009-03-20 21:26:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (os_memcmp(wpa_s->pending_bssid, data->auth.peer, ETH_ALEN) != 0) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Ignore authentication with "
|
|
|
|
"unexpected peer " MACSTR,
|
|
|
|
MAC2STR(data->auth.peer));
|
2009-03-20 21:26:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Authentication response: peer=" MACSTR
|
2012-09-30 18:51:07 +02:00
|
|
|
" auth_type=%d auth_transaction=%d status_code=%d",
|
2011-02-10 19:14:46 +01:00
|
|
|
MAC2STR(data->auth.peer), data->auth.auth_type,
|
2012-09-30 18:51:07 +02:00
|
|
|
data->auth.auth_transaction, data->auth.status_code);
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_hexdump(MSG_MSGDUMP, "SME: Authentication response IEs",
|
|
|
|
data->auth.ies, data->auth.ies_len);
|
|
|
|
|
2011-02-24 15:59:46 +01:00
|
|
|
eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
|
|
|
|
|
2012-09-30 18:51:07 +02:00
|
|
|
#ifdef CONFIG_SAE
|
|
|
|
if (data->auth.auth_type == WLAN_AUTH_SAE) {
|
2012-10-06 18:30:54 +02:00
|
|
|
int res;
|
|
|
|
res = sme_sae_auth(wpa_s, data->auth.auth_transaction,
|
|
|
|
data->auth.status_code, data->auth.ies,
|
|
|
|
data->auth.ies_len);
|
|
|
|
if (res < 0) {
|
|
|
|
wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
|
|
|
|
wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
|
|
|
|
|
|
|
|
}
|
|
|
|
if (res != 1)
|
2012-09-30 18:51:07 +02:00
|
|
|
return;
|
2012-12-30 21:35:59 +01:00
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "SME: SAE completed - setting PMK for "
|
|
|
|
"4-way handshake");
|
2014-10-18 12:02:02 +02:00
|
|
|
wpa_sm_set_pmk(wpa_s->wpa, wpa_s->sme.sae.pmk, PMK_LEN,
|
2016-02-15 03:23:37 +01:00
|
|
|
wpa_s->sme.sae.pmkid, wpa_s->pending_bssid);
|
2012-09-30 18:51:07 +02:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_SAE */
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
if (data->auth.status_code != WLAN_STATUS_SUCCESS) {
|
2015-09-05 17:33:35 +02:00
|
|
|
char *ie_txt = NULL;
|
|
|
|
|
|
|
|
if (data->auth.ies && data->auth.ies_len) {
|
|
|
|
size_t buflen = 2 * data->auth.ies_len + 1;
|
|
|
|
ie_txt = os_malloc(buflen);
|
|
|
|
if (ie_txt) {
|
|
|
|
wpa_snprintf_hex(ie_txt, buflen, data->auth.ies,
|
|
|
|
data->auth.ies_len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_AUTH_REJECT MACSTR
|
|
|
|
" auth_type=%u auth_transaction=%u status_code=%u ie=%s",
|
|
|
|
MAC2STR(data->auth.peer), data->auth.auth_type,
|
|
|
|
data->auth.auth_transaction, data->auth.status_code,
|
|
|
|
ie_txt);
|
|
|
|
os_free(ie_txt);
|
2010-08-17 15:39:33 +02:00
|
|
|
|
|
|
|
if (data->auth.status_code !=
|
|
|
|
WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG ||
|
|
|
|
wpa_s->sme.auth_alg == data->auth.auth_type ||
|
2010-11-25 21:00:04 +01:00
|
|
|
wpa_s->current_ssid->auth_alg == WPA_AUTH_ALG_LEAP) {
|
2010-11-26 10:36:03 +01:00
|
|
|
wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
|
2012-06-25 13:23:25 +02:00
|
|
|
wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
|
2010-08-17 15:39:33 +02:00
|
|
|
return;
|
2010-11-25 21:00:04 +01:00
|
|
|
}
|
2010-08-17 15:39:33 +02:00
|
|
|
|
2014-01-31 22:31:26 +01:00
|
|
|
wpas_connect_work_done(wpa_s);
|
|
|
|
|
2010-08-17 15:39:33 +02:00
|
|
|
switch (data->auth.auth_type) {
|
|
|
|
case WLAN_AUTH_OPEN:
|
|
|
|
wpa_s->current_ssid->auth_alg = WPA_AUTH_ALG_SHARED;
|
|
|
|
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying SHARED auth");
|
2010-08-17 15:39:33 +02:00
|
|
|
wpa_supplicant_associate(wpa_s, wpa_s->current_bss,
|
|
|
|
wpa_s->current_ssid);
|
|
|
|
return;
|
|
|
|
|
|
|
|
case WLAN_AUTH_SHARED_KEY:
|
|
|
|
wpa_s->current_ssid->auth_alg = WPA_AUTH_ALG_LEAP;
|
|
|
|
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Trying LEAP auth");
|
2010-08-17 15:39:33 +02:00
|
|
|
wpa_supplicant_associate(wpa_s, wpa_s->current_bss,
|
|
|
|
wpa_s->current_ssid);
|
|
|
|
return;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
2009-03-20 21:26:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_IEEE80211R
|
|
|
|
if (data->auth.auth_type == WLAN_AUTH_FT) {
|
2015-06-20 16:36:58 +02:00
|
|
|
if (wpa_ft_process_response(wpa_s->wpa, data->auth.ies,
|
|
|
|
data->auth.ies_len, 0,
|
|
|
|
data->auth.peer, NULL, 0) < 0) {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG,
|
|
|
|
"SME: FT Authentication response processing failed");
|
|
|
|
wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_DISCONNECTED "bssid="
|
|
|
|
MACSTR
|
|
|
|
" reason=%d locally_generated=1",
|
|
|
|
MAC2STR(wpa_s->pending_bssid),
|
|
|
|
WLAN_REASON_DEAUTH_LEAVING);
|
|
|
|
wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
|
|
|
|
wpa_supplicant_mark_disassoc(wpa_s);
|
|
|
|
return;
|
|
|
|
}
|
2009-03-20 21:26:41 +01:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_IEEE80211R */
|
|
|
|
|
2010-03-13 16:14:41 +01:00
|
|
|
sme_associate(wpa_s, ssid->mode, data->auth.peer,
|
|
|
|
data->auth.auth_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void sme_associate(struct wpa_supplicant *wpa_s, enum wpas_mode mode,
|
|
|
|
const u8 *bssid, u16 auth_type)
|
|
|
|
{
|
|
|
|
struct wpa_driver_associate_params params;
|
2010-04-07 09:31:06 +02:00
|
|
|
struct ieee802_11_elems elems;
|
2012-01-29 20:01:31 +01:00
|
|
|
#ifdef CONFIG_HT_OVERRIDES
|
|
|
|
struct ieee80211_ht_capabilities htcaps;
|
|
|
|
struct ieee80211_ht_capabilities htcaps_mask;
|
|
|
|
#endif /* CONFIG_HT_OVERRIDES */
|
2013-03-10 17:04:39 +01:00
|
|
|
#ifdef CONFIG_VHT_OVERRIDES
|
|
|
|
struct ieee80211_vht_capabilities vhtcaps;
|
|
|
|
struct ieee80211_vht_capabilities vhtcaps_mask;
|
|
|
|
#endif /* CONFIG_VHT_OVERRIDES */
|
2010-03-13 16:14:41 +01:00
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
os_memset(¶ms, 0, sizeof(params));
|
2010-03-13 16:14:41 +01:00
|
|
|
params.bssid = bssid;
|
2009-03-20 21:26:41 +01:00
|
|
|
params.ssid = wpa_s->sme.ssid;
|
|
|
|
params.ssid_len = wpa_s->sme.ssid_len;
|
2014-10-01 09:52:53 +02:00
|
|
|
params.freq.freq = wpa_s->sme.freq;
|
2012-03-30 14:20:35 +02:00
|
|
|
params.bg_scan_period = wpa_s->current_ssid ?
|
|
|
|
wpa_s->current_ssid->bg_scan_period : -1;
|
2009-03-20 21:26:41 +01:00
|
|
|
params.wpa_ie = wpa_s->sme.assoc_req_ie_len ?
|
|
|
|
wpa_s->sme.assoc_req_ie : NULL;
|
|
|
|
params.wpa_ie_len = wpa_s->sme.assoc_req_ie_len;
|
2013-12-30 18:33:39 +01:00
|
|
|
params.pairwise_suite = wpa_s->pairwise_cipher;
|
|
|
|
params.group_suite = wpa_s->group_cipher;
|
2014-03-25 16:57:54 +01:00
|
|
|
params.key_mgmt_suite = wpa_s->key_mgmt;
|
|
|
|
params.wpa_proto = wpa_s->wpa_proto;
|
2012-01-29 20:01:31 +01:00
|
|
|
#ifdef CONFIG_HT_OVERRIDES
|
|
|
|
os_memset(&htcaps, 0, sizeof(htcaps));
|
|
|
|
os_memset(&htcaps_mask, 0, sizeof(htcaps_mask));
|
|
|
|
params.htcaps = (u8 *) &htcaps;
|
|
|
|
params.htcaps_mask = (u8 *) &htcaps_mask;
|
|
|
|
wpa_supplicant_apply_ht_overrides(wpa_s, wpa_s->current_ssid, ¶ms);
|
|
|
|
#endif /* CONFIG_HT_OVERRIDES */
|
2013-03-10 17:04:39 +01:00
|
|
|
#ifdef CONFIG_VHT_OVERRIDES
|
|
|
|
os_memset(&vhtcaps, 0, sizeof(vhtcaps));
|
|
|
|
os_memset(&vhtcaps_mask, 0, sizeof(vhtcaps_mask));
|
|
|
|
params.vhtcaps = &vhtcaps;
|
|
|
|
params.vhtcaps_mask = &vhtcaps_mask;
|
|
|
|
wpa_supplicant_apply_vht_overrides(wpa_s, wpa_s->current_ssid, ¶ms);
|
|
|
|
#endif /* CONFIG_VHT_OVERRIDES */
|
2009-03-20 21:26:41 +01:00
|
|
|
#ifdef CONFIG_IEEE80211R
|
2010-03-13 16:14:41 +01:00
|
|
|
if (auth_type == WLAN_AUTH_FT && wpa_s->sme.ft_ies) {
|
2009-03-20 21:26:41 +01:00
|
|
|
params.wpa_ie = wpa_s->sme.ft_ies;
|
|
|
|
params.wpa_ie_len = wpa_s->sme.ft_ies_len;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_IEEE80211R */
|
2010-03-13 16:14:41 +01:00
|
|
|
params.mode = mode;
|
2009-03-20 21:26:41 +01:00
|
|
|
params.mgmt_frame_protection = wpa_s->sme.mfp;
|
2014-11-05 09:42:48 +01:00
|
|
|
params.rrm_used = wpa_s->rrm.rrm_used;
|
2009-11-17 18:25:05 +01:00
|
|
|
if (wpa_s->sme.prev_bssid_set)
|
|
|
|
params.prev_bssid = wpa_s->sme.prev_bssid;
|
2009-03-20 21:26:41 +01:00
|
|
|
|
|
|
|
wpa_msg(wpa_s, MSG_INFO, "Trying to associate with " MACSTR
|
|
|
|
" (SSID='%s' freq=%d MHz)", MAC2STR(params.bssid),
|
|
|
|
params.ssid ? wpa_ssid_txt(params.ssid, params.ssid_len) : "",
|
2014-10-01 09:52:53 +02:00
|
|
|
params.freq.freq);
|
2009-03-20 21:26:41 +01:00
|
|
|
|
|
|
|
wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATING);
|
|
|
|
|
2010-04-11 11:19:02 +02:00
|
|
|
if (params.wpa_ie == NULL ||
|
|
|
|
ieee802_11_parse_elems(params.wpa_ie, params.wpa_ie_len, &elems, 0)
|
2010-04-07 09:31:06 +02:00
|
|
|
< 0) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Could not parse own IEs?!");
|
2010-04-07 09:31:06 +02:00
|
|
|
os_memset(&elems, 0, sizeof(elems));
|
|
|
|
}
|
2011-09-02 19:40:23 +02:00
|
|
|
if (elems.rsn_ie) {
|
|
|
|
params.wpa_proto = WPA_PROTO_RSN;
|
2010-04-07 09:31:06 +02:00
|
|
|
wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.rsn_ie - 2,
|
|
|
|
elems.rsn_ie_len + 2);
|
2011-09-02 19:40:23 +02:00
|
|
|
} else if (elems.wpa_ie) {
|
|
|
|
params.wpa_proto = WPA_PROTO_WPA;
|
2010-04-07 09:31:06 +02:00
|
|
|
wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.wpa_ie - 2,
|
|
|
|
elems.wpa_ie_len + 2);
|
2013-07-23 20:24:05 +02:00
|
|
|
} else if (elems.osen) {
|
|
|
|
params.wpa_proto = WPA_PROTO_OSEN;
|
|
|
|
wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, elems.osen - 2,
|
|
|
|
elems.osen_len + 2);
|
2011-09-02 19:40:23 +02:00
|
|
|
} else
|
2010-04-07 09:31:06 +02:00
|
|
|
wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
|
2011-07-17 19:52:49 +02:00
|
|
|
if (wpa_s->current_ssid && wpa_s->current_ssid->p2p_group)
|
2010-07-18 23:30:25 +02:00
|
|
|
params.p2p = 1;
|
2010-04-07 09:31:06 +02:00
|
|
|
|
2016-01-24 16:36:49 +01:00
|
|
|
if (wpa_s->p2pdev->set_sta_uapsd)
|
|
|
|
params.uapsd = wpa_s->p2pdev->sta_uapsd;
|
2010-07-28 19:18:52 +02:00
|
|
|
else
|
|
|
|
params.uapsd = -1;
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
if (wpa_drv_associate(wpa_s, ¶ms) < 0) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_msg(wpa_s, MSG_INFO, "SME: Association request to the "
|
|
|
|
"driver failed");
|
2010-11-26 16:37:22 +01:00
|
|
|
wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
|
2012-06-25 13:23:25 +02:00
|
|
|
wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
|
2010-11-26 16:37:22 +01:00
|
|
|
os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
|
2009-03-20 21:26:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-24 15:59:46 +01:00
|
|
|
eloop_register_timeout(SME_ASSOC_TIMEOUT, 0, sme_assoc_timer, wpa_s,
|
|
|
|
NULL);
|
2009-03-20 21:26:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int sme_update_ft_ies(struct wpa_supplicant *wpa_s, const u8 *md,
|
|
|
|
const u8 *ies, size_t ies_len)
|
|
|
|
{
|
|
|
|
if (md == NULL || ies == NULL) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Remove mobility domain");
|
2009-03-20 21:26:41 +01:00
|
|
|
os_free(wpa_s->sme.ft_ies);
|
|
|
|
wpa_s->sme.ft_ies = NULL;
|
|
|
|
wpa_s->sme.ft_ies_len = 0;
|
|
|
|
wpa_s->sme.ft_used = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
os_memcpy(wpa_s->sme.mobility_domain, md, MOBILITY_DOMAIN_ID_LEN);
|
|
|
|
wpa_hexdump(MSG_DEBUG, "SME: FT IEs", ies, ies_len);
|
|
|
|
os_free(wpa_s->sme.ft_ies);
|
|
|
|
wpa_s->sme.ft_ies = os_malloc(ies_len);
|
|
|
|
if (wpa_s->sme.ft_ies == NULL)
|
|
|
|
return -1;
|
|
|
|
os_memcpy(wpa_s->sme.ft_ies, ies, ies_len);
|
|
|
|
wpa_s->sme.ft_ies_len = ies_len;
|
|
|
|
return 0;
|
|
|
|
}
|
2009-04-01 16:10:36 +02:00
|
|
|
|
|
|
|
|
2011-02-24 15:59:46 +01:00
|
|
|
static void sme_deauth(struct wpa_supplicant *wpa_s)
|
2009-04-01 16:10:36 +02:00
|
|
|
{
|
2009-09-13 19:53:32 +02:00
|
|
|
int bssid_changed;
|
|
|
|
|
|
|
|
bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
|
2009-10-31 22:21:43 +01:00
|
|
|
|
|
|
|
if (wpa_drv_deauthenticate(wpa_s, wpa_s->pending_bssid,
|
|
|
|
WLAN_REASON_DEAUTH_LEAVING) < 0) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_msg(wpa_s, MSG_INFO, "SME: Deauth request to the driver "
|
|
|
|
"failed");
|
2009-10-31 22:21:43 +01:00
|
|
|
}
|
2009-11-17 18:25:05 +01:00
|
|
|
wpa_s->sme.prev_bssid_set = 0;
|
2009-10-31 22:21:43 +01:00
|
|
|
|
2010-11-26 10:36:03 +01:00
|
|
|
wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
|
2009-10-31 22:21:43 +01:00
|
|
|
wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
|
2009-04-01 16:10:36 +02:00
|
|
|
os_memset(wpa_s->bssid, 0, ETH_ALEN);
|
|
|
|
os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
|
2009-09-13 19:53:32 +02:00
|
|
|
if (bssid_changed)
|
|
|
|
wpas_notify_bssid_changed(wpa_s);
|
2009-04-01 16:10:36 +02:00
|
|
|
}
|
2009-04-23 23:08:24 +02:00
|
|
|
|
|
|
|
|
2011-02-24 15:59:46 +01:00
|
|
|
void sme_event_assoc_reject(struct wpa_supplicant *wpa_s,
|
|
|
|
union wpa_event_data *data)
|
|
|
|
{
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association with " MACSTR " failed: "
|
|
|
|
"status code %d", MAC2STR(wpa_s->pending_bssid),
|
|
|
|
data->assoc_reject.status_code);
|
|
|
|
|
|
|
|
eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
|
|
|
|
|
2014-10-18 12:02:02 +02:00
|
|
|
#ifdef CONFIG_SAE
|
|
|
|
if (wpa_s->sme.sae_pmksa_caching && wpa_s->current_ssid &&
|
|
|
|
wpa_key_mgmt_sae(wpa_s->current_ssid->key_mgmt)) {
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG,
|
|
|
|
"PMKSA caching attempt rejected - drop PMKSA cache entry and fall back to SAE authentication");
|
|
|
|
wpa_sm_aborted_cached(wpa_s->wpa);
|
|
|
|
wpa_sm_pmksa_cache_flush(wpa_s->wpa, wpa_s->current_ssid);
|
|
|
|
if (wpa_s->current_bss) {
|
|
|
|
struct wpa_bss *bss = wpa_s->current_bss;
|
|
|
|
struct wpa_ssid *ssid = wpa_s->current_ssid;
|
|
|
|
|
|
|
|
wpa_drv_deauthenticate(wpa_s, wpa_s->pending_bssid,
|
|
|
|
WLAN_REASON_DEAUTH_LEAVING);
|
|
|
|
wpas_connect_work_done(wpa_s);
|
|
|
|
wpa_supplicant_mark_disassoc(wpa_s);
|
|
|
|
wpa_supplicant_connect(wpa_s, bss, ssid);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_SAE */
|
|
|
|
|
2011-02-24 15:59:46 +01:00
|
|
|
/*
|
|
|
|
* For now, unconditionally terminate the previous authentication. In
|
|
|
|
* theory, this should not be needed, but mac80211 gets quite confused
|
|
|
|
* if the authentication is left pending.. Some roaming cases might
|
|
|
|
* benefit from using the previous authentication, so this could be
|
|
|
|
* optimized in the future.
|
|
|
|
*/
|
|
|
|
sme_deauth(wpa_s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-23 23:08:24 +02:00
|
|
|
void sme_event_auth_timed_out(struct wpa_supplicant *wpa_s,
|
|
|
|
union wpa_event_data *data)
|
|
|
|
{
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Authentication timed out");
|
2010-11-26 10:36:03 +01:00
|
|
|
wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
|
2012-01-29 16:44:31 +01:00
|
|
|
wpa_supplicant_mark_disassoc(wpa_s);
|
2009-04-23 23:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void sme_event_assoc_timed_out(struct wpa_supplicant *wpa_s,
|
|
|
|
union wpa_event_data *data)
|
|
|
|
{
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association timed out");
|
2010-11-26 10:36:03 +01:00
|
|
|
wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
|
2009-04-23 23:08:24 +02:00
|
|
|
wpa_supplicant_mark_disassoc(wpa_s);
|
|
|
|
}
|
2009-12-02 16:26:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
void sme_event_disassoc(struct wpa_supplicant *wpa_s,
|
2013-07-21 15:40:40 +02:00
|
|
|
struct disassoc_info *info)
|
2009-12-02 16:26:28 +01:00
|
|
|
{
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Disassociation event received");
|
2011-10-22 21:45:38 +02:00
|
|
|
if (wpa_s->sme.prev_bssid_set) {
|
2009-12-02 16:26:28 +01:00
|
|
|
/*
|
|
|
|
* cfg80211/mac80211 can get into somewhat confused state if
|
|
|
|
* the AP only disassociates us and leaves us in authenticated
|
|
|
|
* state. For now, force the state to be cleared to avoid
|
|
|
|
* confusing errors if we try to associate with the AP again.
|
|
|
|
*/
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Deauthenticate to clear "
|
|
|
|
"driver state");
|
2010-08-18 20:23:26 +02:00
|
|
|
wpa_drv_deauthenticate(wpa_s, wpa_s->sme.prev_bssid,
|
2009-12-02 16:26:28 +01:00
|
|
|
WLAN_REASON_DEAUTH_LEAVING);
|
|
|
|
}
|
|
|
|
}
|
2010-12-19 10:58:00 +01:00
|
|
|
|
|
|
|
|
2011-02-24 15:59:46 +01:00
|
|
|
static void sme_auth_timer(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct wpa_supplicant *wpa_s = eloop_ctx;
|
|
|
|
if (wpa_s->wpa_state == WPA_AUTHENTICATING) {
|
|
|
|
wpa_msg(wpa_s, MSG_DEBUG, "SME: Authentication timeout");
|
|
|
|
sme_deauth(wpa_s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void sme_assoc_timer(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct wpa_supplicant *wpa_s = eloop_ctx;
|
|
|
|
if (wpa_s->wpa_state == WPA_ASSOCIATING) {
|
|
|
|
wpa_msg(wpa_s, MSG_DEBUG, "SME: Association timeout");
|
|
|
|
sme_deauth(wpa_s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void sme_state_changed(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
/* Make sure timers are cleaned up appropriately. */
|
|
|
|
if (wpa_s->wpa_state != WPA_ASSOCIATING)
|
|
|
|
eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
|
|
|
|
if (wpa_s->wpa_state != WPA_AUTHENTICATING)
|
|
|
|
eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void sme_disassoc_while_authenticating(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *prev_pending_bssid)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* mac80211-workaround to force deauth on failed auth cmd,
|
|
|
|
* requires us to remain in authenticating state to allow the
|
|
|
|
* second authentication attempt to be continued properly.
|
|
|
|
*/
|
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Allow pending authentication "
|
|
|
|
"to proceed after disconnection event");
|
|
|
|
wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
|
|
|
|
os_memcpy(wpa_s->pending_bssid, prev_pending_bssid, ETH_ALEN);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Re-arm authentication timer in case auth fails for whatever reason.
|
|
|
|
*/
|
|
|
|
eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
|
|
|
|
eloop_register_timeout(SME_AUTH_TIMEOUT, 0, sme_auth_timer, wpa_s,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-29 17:40:10 +01:00
|
|
|
void sme_clear_on_disassoc(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
wpa_s->sme.prev_bssid_set = 0;
|
|
|
|
#ifdef CONFIG_SAE
|
|
|
|
wpabuf_free(wpa_s->sme.sae_token);
|
|
|
|
wpa_s->sme.sae_token = NULL;
|
|
|
|
sae_clear_data(&wpa_s->sme.sae);
|
|
|
|
#endif /* CONFIG_SAE */
|
|
|
|
#ifdef CONFIG_IEEE80211R
|
|
|
|
if (wpa_s->sme.ft_ies)
|
|
|
|
sme_update_ft_ies(wpa_s, NULL, NULL, 0);
|
|
|
|
#endif /* CONFIG_IEEE80211R */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-24 15:59:46 +01:00
|
|
|
void sme_deinit(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
os_free(wpa_s->sme.ft_ies);
|
|
|
|
wpa_s->sme.ft_ies = NULL;
|
|
|
|
wpa_s->sme.ft_ies_len = 0;
|
|
|
|
#ifdef CONFIG_IEEE80211W
|
|
|
|
sme_stop_sa_query(wpa_s);
|
|
|
|
#endif /* CONFIG_IEEE80211W */
|
2014-12-29 17:40:10 +01:00
|
|
|
sme_clear_on_disassoc(wpa_s);
|
2011-02-24 15:59:46 +01:00
|
|
|
|
|
|
|
eloop_cancel_timeout(sme_assoc_timer, wpa_s, NULL);
|
|
|
|
eloop_cancel_timeout(sme_auth_timer, wpa_s, NULL);
|
2012-05-03 11:13:43 +02:00
|
|
|
eloop_cancel_timeout(sme_obss_scan_timeout, wpa_s, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void sme_send_2040_bss_coex(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *chan_list, u8 num_channels,
|
|
|
|
u8 num_intol)
|
|
|
|
{
|
|
|
|
struct ieee80211_2040_bss_coex_ie *bc_ie;
|
|
|
|
struct ieee80211_2040_intol_chan_report *ic_report;
|
|
|
|
struct wpabuf *buf;
|
|
|
|
|
2014-03-23 22:56:50 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "SME: Send 20/40 BSS Coexistence to " MACSTR
|
|
|
|
" (num_channels=%u num_intol=%u)",
|
|
|
|
MAC2STR(wpa_s->bssid), num_channels, num_intol);
|
|
|
|
wpa_hexdump(MSG_DEBUG, "SME: 20/40 BSS Intolerant Channels",
|
|
|
|
chan_list, num_channels);
|
2012-05-03 11:13:43 +02:00
|
|
|
|
|
|
|
buf = wpabuf_alloc(2 + /* action.category + action_code */
|
|
|
|
sizeof(struct ieee80211_2040_bss_coex_ie) +
|
|
|
|
sizeof(struct ieee80211_2040_intol_chan_report) +
|
|
|
|
num_channels);
|
|
|
|
if (buf == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpabuf_put_u8(buf, WLAN_ACTION_PUBLIC);
|
|
|
|
wpabuf_put_u8(buf, WLAN_PA_20_40_BSS_COEX);
|
|
|
|
|
|
|
|
bc_ie = wpabuf_put(buf, sizeof(*bc_ie));
|
|
|
|
bc_ie->element_id = WLAN_EID_20_40_BSS_COEXISTENCE;
|
|
|
|
bc_ie->length = 1;
|
|
|
|
if (num_intol)
|
|
|
|
bc_ie->coex_param |= WLAN_20_40_BSS_COEX_20MHZ_WIDTH_REQ;
|
|
|
|
|
|
|
|
if (num_channels > 0) {
|
|
|
|
ic_report = wpabuf_put(buf, sizeof(*ic_report));
|
|
|
|
ic_report->element_id = WLAN_EID_20_40_BSS_INTOLERANT;
|
|
|
|
ic_report->length = num_channels + 1;
|
|
|
|
ic_report->op_class = 0;
|
|
|
|
os_memcpy(wpabuf_put(buf, num_channels), chan_list,
|
|
|
|
num_channels);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
|
|
|
|
wpa_s->own_addr, wpa_s->bssid,
|
|
|
|
wpabuf_head(buf), wpabuf_len(buf), 0) < 0) {
|
|
|
|
wpa_msg(wpa_s, MSG_INFO,
|
|
|
|
"SME: Failed to send 20/40 BSS Coexistence frame");
|
|
|
|
}
|
|
|
|
|
|
|
|
wpabuf_free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int sme_proc_obss_scan(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
struct wpa_bss *bss;
|
|
|
|
const u8 *ie;
|
|
|
|
u16 ht_cap;
|
|
|
|
u8 chan_list[P2P_MAX_CHANNELS], channel;
|
|
|
|
u8 num_channels = 0, num_intol = 0, i;
|
|
|
|
|
|
|
|
if (!wpa_s->sme.sched_obss_scan)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
wpa_s->sme.sched_obss_scan = 0;
|
|
|
|
if (!wpa_s->current_bss || wpa_s->wpa_state != WPA_COMPLETED)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check whether AP uses regulatory triplet or channel triplet in
|
|
|
|
* country info. Right now the operating class of the BSS channel
|
|
|
|
* width trigger event is "unknown" (IEEE Std 802.11-2012 10.15.12),
|
|
|
|
* based on the assumption that operating class triplet is not used in
|
|
|
|
* beacon frame. If the First Channel Number/Operating Extension
|
|
|
|
* Identifier octet has a positive integer value of 201 or greater,
|
|
|
|
* then its operating class triplet.
|
|
|
|
*
|
|
|
|
* TODO: If Supported Operating Classes element is present in beacon
|
|
|
|
* frame, have to lookup operating class in Annex E and fill them in
|
|
|
|
* 2040 coex frame.
|
|
|
|
*/
|
|
|
|
ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_COUNTRY);
|
|
|
|
if (ie && (ie[1] >= 6) && (ie[5] >= 201))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
os_memset(chan_list, 0, sizeof(chan_list));
|
|
|
|
|
|
|
|
dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
|
|
|
|
/* Skip other band bss */
|
2013-04-27 20:27:15 +02:00
|
|
|
enum hostapd_hw_mode mode;
|
|
|
|
mode = ieee80211_freq_to_chan(bss->freq, &channel);
|
|
|
|
if (mode != HOSTAPD_MODE_IEEE80211G &&
|
|
|
|
mode != HOSTAPD_MODE_IEEE80211B)
|
2012-05-03 11:13:43 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
ie = wpa_bss_get_ie(bss, WLAN_EID_HT_CAP);
|
|
|
|
ht_cap = (ie && (ie[1] == 26)) ? WPA_GET_LE16(ie + 2) : 0;
|
2014-03-23 22:56:50 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "SME OBSS scan BSS " MACSTR
|
|
|
|
" freq=%u chan=%u ht_cap=0x%x",
|
|
|
|
MAC2STR(bss->bssid), bss->freq, channel, ht_cap);
|
2012-05-03 11:13:43 +02:00
|
|
|
|
|
|
|
if (!ht_cap || (ht_cap & HT_CAP_INFO_40MHZ_INTOLERANT)) {
|
2014-03-23 22:54:50 +01:00
|
|
|
if (ht_cap & HT_CAP_INFO_40MHZ_INTOLERANT)
|
|
|
|
num_intol++;
|
|
|
|
|
2012-05-03 11:13:43 +02:00
|
|
|
/* Check whether the channel is already considered */
|
|
|
|
for (i = 0; i < num_channels; i++) {
|
|
|
|
if (channel == chan_list[i])
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i != num_channels)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
chan_list[num_channels++] = channel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sme_send_2040_bss_coex(wpa_s, chan_list, num_channels, num_intol);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-22 21:07:03 +01:00
|
|
|
static void wpa_obss_scan_freqs_list(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_driver_scan_params *params)
|
2012-05-03 14:51:18 +02:00
|
|
|
{
|
2014-12-22 21:07:03 +01:00
|
|
|
/* Include only affected channels */
|
2012-05-03 14:51:18 +02:00
|
|
|
struct hostapd_hw_modes *mode;
|
|
|
|
int count, i;
|
2014-12-22 21:07:03 +01:00
|
|
|
int start, end;
|
2012-05-03 14:51:18 +02:00
|
|
|
|
2014-12-22 21:07:03 +01:00
|
|
|
mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes,
|
|
|
|
HOSTAPD_MODE_IEEE80211G);
|
2012-05-03 14:51:18 +02:00
|
|
|
if (mode == NULL) {
|
|
|
|
/* No channels supported in this band - use empty list */
|
|
|
|
params->freqs = os_zalloc(sizeof(int));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-12-22 21:07:03 +01:00
|
|
|
if (wpa_s->sme.ht_sec_chan == HT_SEC_CHAN_UNKNOWN &&
|
|
|
|
wpa_s->current_bss) {
|
|
|
|
const u8 *ie;
|
|
|
|
|
|
|
|
ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_HT_OPERATION);
|
|
|
|
if (ie && ie[1] >= 2) {
|
|
|
|
u8 o;
|
|
|
|
|
|
|
|
o = ie[3] & HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK;
|
|
|
|
if (o == HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE)
|
|
|
|
wpa_s->sme.ht_sec_chan = HT_SEC_CHAN_ABOVE;
|
|
|
|
else if (o == HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW)
|
|
|
|
wpa_s->sme.ht_sec_chan = HT_SEC_CHAN_BELOW;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
start = wpa_s->assoc_freq - 10;
|
|
|
|
end = wpa_s->assoc_freq + 10;
|
|
|
|
switch (wpa_s->sme.ht_sec_chan) {
|
|
|
|
case HT_SEC_CHAN_UNKNOWN:
|
|
|
|
/* HT40+ possible on channels 1..9 */
|
|
|
|
if (wpa_s->assoc_freq <= 2452)
|
|
|
|
start -= 20;
|
|
|
|
/* HT40- possible on channels 5-13 */
|
|
|
|
if (wpa_s->assoc_freq >= 2432)
|
|
|
|
end += 20;
|
|
|
|
break;
|
|
|
|
case HT_SEC_CHAN_ABOVE:
|
|
|
|
end += 20;
|
|
|
|
break;
|
|
|
|
case HT_SEC_CHAN_BELOW:
|
|
|
|
start -= 20;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"OBSS: assoc_freq %d possible affected range %d-%d",
|
|
|
|
wpa_s->assoc_freq, start, end);
|
|
|
|
|
2012-08-13 19:44:21 +02:00
|
|
|
params->freqs = os_calloc(mode->num_channels + 1, sizeof(int));
|
2012-05-03 14:51:18 +02:00
|
|
|
if (params->freqs == NULL)
|
|
|
|
return;
|
|
|
|
for (count = 0, i = 0; i < mode->num_channels; i++) {
|
2014-12-22 21:07:03 +01:00
|
|
|
int freq;
|
|
|
|
|
2012-05-03 14:51:18 +02:00
|
|
|
if (mode->channels[i].flag & HOSTAPD_CHAN_DISABLED)
|
|
|
|
continue;
|
2014-12-22 21:07:03 +01:00
|
|
|
freq = mode->channels[i].freq;
|
|
|
|
if (freq - 10 >= end || freq + 10 <= start)
|
|
|
|
continue; /* not affected */
|
|
|
|
params->freqs[count++] = freq;
|
2012-05-03 14:51:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-03 11:13:43 +02:00
|
|
|
static void sme_obss_scan_timeout(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct wpa_supplicant *wpa_s = eloop_ctx;
|
|
|
|
struct wpa_driver_scan_params params;
|
|
|
|
|
|
|
|
if (!wpa_s->current_bss) {
|
|
|
|
wpa_printf(MSG_DEBUG, "SME OBSS: Ignore scan request");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
os_memset(¶ms, 0, sizeof(params));
|
2014-12-22 21:07:03 +01:00
|
|
|
wpa_obss_scan_freqs_list(wpa_s, ¶ms);
|
2014-06-04 11:21:40 +02:00
|
|
|
params.low_priority = 1;
|
2012-05-03 11:13:43 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "SME OBSS: Request an OBSS scan");
|
|
|
|
|
|
|
|
if (wpa_supplicant_trigger_scan(wpa_s, ¶ms))
|
|
|
|
wpa_printf(MSG_DEBUG, "SME OBSS: Failed to trigger scan");
|
|
|
|
else
|
|
|
|
wpa_s->sme.sched_obss_scan = 1;
|
2012-05-03 14:51:18 +02:00
|
|
|
os_free(params.freqs);
|
2012-05-03 11:13:43 +02:00
|
|
|
|
|
|
|
eloop_register_timeout(wpa_s->sme.obss_scan_int, 0,
|
|
|
|
sme_obss_scan_timeout, wpa_s, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void sme_sched_obss_scan(struct wpa_supplicant *wpa_s, int enable)
|
|
|
|
{
|
|
|
|
const u8 *ie;
|
|
|
|
struct wpa_bss *bss = wpa_s->current_bss;
|
|
|
|
struct wpa_ssid *ssid = wpa_s->current_ssid;
|
2012-08-11 16:08:54 +02:00
|
|
|
struct hostapd_hw_modes *hw_mode = NULL;
|
|
|
|
int i;
|
2012-05-03 11:13:43 +02:00
|
|
|
|
|
|
|
eloop_cancel_timeout(sme_obss_scan_timeout, wpa_s, NULL);
|
|
|
|
wpa_s->sme.sched_obss_scan = 0;
|
2014-12-22 21:07:03 +01:00
|
|
|
wpa_s->sme.ht_sec_chan = HT_SEC_CHAN_UNKNOWN;
|
2012-05-03 11:13:43 +02:00
|
|
|
if (!enable)
|
|
|
|
return;
|
|
|
|
|
2012-11-24 17:08:48 +01:00
|
|
|
/*
|
|
|
|
* Schedule OBSS scan if driver is using station SME in wpa_supplicant
|
|
|
|
* or it expects OBSS scan to be performed by wpa_supplicant.
|
|
|
|
*/
|
|
|
|
if (!((wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) ||
|
|
|
|
(wpa_s->drv_flags & WPA_DRIVER_FLAGS_OBSS_SCAN)) ||
|
|
|
|
ssid == NULL || ssid->mode != IEEE80211_MODE_INFRA)
|
|
|
|
return;
|
2012-05-03 11:13:43 +02:00
|
|
|
|
2012-08-11 16:08:54 +02:00
|
|
|
if (!wpa_s->hw.modes)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* only HT caps in 11g mode are relevant */
|
|
|
|
for (i = 0; i < wpa_s->hw.num_modes; i++) {
|
|
|
|
hw_mode = &wpa_s->hw.modes[i];
|
|
|
|
if (hw_mode->mode == HOSTAPD_MODE_IEEE80211G)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Driver does not support HT40 for 11g or doesn't have 11g. */
|
|
|
|
if (i == wpa_s->hw.num_modes || !hw_mode ||
|
|
|
|
!(hw_mode->ht_capab & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
|
|
|
|
return;
|
2012-05-03 11:13:43 +02:00
|
|
|
|
|
|
|
if (bss == NULL || bss->freq < 2400 || bss->freq > 2500)
|
|
|
|
return; /* Not associated on 2.4 GHz band */
|
|
|
|
|
|
|
|
/* Check whether AP supports HT40 */
|
|
|
|
ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_HT_CAP);
|
|
|
|
if (!ie || ie[1] < 2 ||
|
|
|
|
!(WPA_GET_LE16(ie + 2) & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
|
|
|
|
return; /* AP does not support HT40 */
|
|
|
|
|
|
|
|
ie = wpa_bss_get_ie(wpa_s->current_bss,
|
|
|
|
WLAN_EID_OVERLAPPING_BSS_SCAN_PARAMS);
|
|
|
|
if (!ie || ie[1] < 14)
|
|
|
|
return; /* AP does not request OBSS scans */
|
|
|
|
|
|
|
|
wpa_s->sme.obss_scan_int = WPA_GET_LE16(ie + 6);
|
|
|
|
if (wpa_s->sme.obss_scan_int < 10) {
|
|
|
|
wpa_printf(MSG_DEBUG, "SME: Invalid OBSS Scan Interval %u "
|
|
|
|
"replaced with the minimum 10 sec",
|
|
|
|
wpa_s->sme.obss_scan_int);
|
|
|
|
wpa_s->sme.obss_scan_int = 10;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "SME: OBSS Scan Interval %u sec",
|
|
|
|
wpa_s->sme.obss_scan_int);
|
|
|
|
eloop_register_timeout(wpa_s->sme.obss_scan_int, 0,
|
|
|
|
sme_obss_scan_timeout, wpa_s, NULL);
|
2011-02-24 15:59:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-19 10:58:00 +01:00
|
|
|
#ifdef CONFIG_IEEE80211W
|
|
|
|
|
|
|
|
static const unsigned int sa_query_max_timeout = 1000;
|
|
|
|
static const unsigned int sa_query_retry_timeout = 201;
|
|
|
|
|
|
|
|
static int sme_check_sa_query_timeout(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
u32 tu;
|
2013-12-16 21:08:27 +01:00
|
|
|
struct os_reltime now, passed;
|
|
|
|
os_get_reltime(&now);
|
|
|
|
os_reltime_sub(&now, &wpa_s->sme.sa_query_start, &passed);
|
2010-12-19 10:58:00 +01:00
|
|
|
tu = (passed.sec * 1000000 + passed.usec) / 1024;
|
|
|
|
if (sa_query_max_timeout < tu) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: SA Query timed out");
|
2010-12-19 10:58:00 +01:00
|
|
|
sme_stop_sa_query(wpa_s);
|
|
|
|
wpa_supplicant_deauthenticate(
|
|
|
|
wpa_s, WLAN_REASON_PREV_AUTH_NOT_VALID);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void sme_send_sa_query_req(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *trans_id)
|
|
|
|
{
|
|
|
|
u8 req[2 + WLAN_SA_QUERY_TR_ID_LEN];
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Sending SA Query Request to "
|
|
|
|
MACSTR, MAC2STR(wpa_s->bssid));
|
2010-12-19 10:58:00 +01:00
|
|
|
wpa_hexdump(MSG_DEBUG, "SME: SA Query Transaction ID",
|
|
|
|
trans_id, WLAN_SA_QUERY_TR_ID_LEN);
|
|
|
|
req[0] = WLAN_ACTION_SA_QUERY;
|
|
|
|
req[1] = WLAN_SA_QUERY_REQUEST;
|
|
|
|
os_memcpy(req + 2, trans_id, WLAN_SA_QUERY_TR_ID_LEN);
|
2010-12-29 12:59:17 +01:00
|
|
|
if (wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
|
2010-12-19 10:58:00 +01:00
|
|
|
wpa_s->own_addr, wpa_s->bssid,
|
2011-10-29 20:49:46 +02:00
|
|
|
req, sizeof(req), 0) < 0)
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_msg(wpa_s, MSG_INFO, "SME: Failed to send SA Query "
|
|
|
|
"Request");
|
2010-12-19 10:58:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void sme_sa_query_timer(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct wpa_supplicant *wpa_s = eloop_ctx;
|
|
|
|
unsigned int timeout, sec, usec;
|
|
|
|
u8 *trans_id, *nbuf;
|
|
|
|
|
|
|
|
if (wpa_s->sme.sa_query_count > 0 &&
|
|
|
|
sme_check_sa_query_timeout(wpa_s))
|
|
|
|
return;
|
|
|
|
|
2012-08-13 20:21:23 +02:00
|
|
|
nbuf = os_realloc_array(wpa_s->sme.sa_query_trans_id,
|
|
|
|
wpa_s->sme.sa_query_count + 1,
|
|
|
|
WLAN_SA_QUERY_TR_ID_LEN);
|
2016-07-17 23:57:34 +02:00
|
|
|
if (nbuf == NULL) {
|
|
|
|
sme_stop_sa_query(wpa_s);
|
2010-12-19 10:58:00 +01:00
|
|
|
return;
|
2016-07-17 23:57:34 +02:00
|
|
|
}
|
2010-12-19 10:58:00 +01:00
|
|
|
if (wpa_s->sme.sa_query_count == 0) {
|
|
|
|
/* Starting a new SA Query procedure */
|
2013-12-16 21:08:27 +01:00
|
|
|
os_get_reltime(&wpa_s->sme.sa_query_start);
|
2010-12-19 10:58:00 +01:00
|
|
|
}
|
|
|
|
trans_id = nbuf + wpa_s->sme.sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
|
|
|
|
wpa_s->sme.sa_query_trans_id = nbuf;
|
|
|
|
wpa_s->sme.sa_query_count++;
|
|
|
|
|
2014-09-07 17:27:42 +02:00
|
|
|
if (os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "Could not generate SA Query ID");
|
2016-07-17 23:57:34 +02:00
|
|
|
sme_stop_sa_query(wpa_s);
|
2014-09-07 17:27:42 +02:00
|
|
|
return;
|
|
|
|
}
|
2010-12-19 10:58:00 +01:00
|
|
|
|
|
|
|
timeout = sa_query_retry_timeout;
|
|
|
|
sec = ((timeout / 1000) * 1024) / 1000;
|
|
|
|
usec = (timeout % 1000) * 1024;
|
|
|
|
eloop_register_timeout(sec, usec, sme_sa_query_timer, wpa_s, NULL);
|
|
|
|
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Association SA Query attempt %d",
|
|
|
|
wpa_s->sme.sa_query_count);
|
2010-12-19 10:58:00 +01:00
|
|
|
|
|
|
|
sme_send_sa_query_req(wpa_s, trans_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void sme_start_sa_query(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
sme_sa_query_timer(wpa_s, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-18 20:53:36 +01:00
|
|
|
static void sme_stop_sa_query(struct wpa_supplicant *wpa_s)
|
2010-12-19 10:58:00 +01:00
|
|
|
{
|
|
|
|
eloop_cancel_timeout(sme_sa_query_timer, wpa_s, NULL);
|
|
|
|
os_free(wpa_s->sme.sa_query_trans_id);
|
|
|
|
wpa_s->sme.sa_query_trans_id = NULL;
|
|
|
|
wpa_s->sme.sa_query_count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void sme_event_unprot_disconnect(struct wpa_supplicant *wpa_s, const u8 *sa,
|
|
|
|
const u8 *da, u16 reason_code)
|
|
|
|
{
|
|
|
|
struct wpa_ssid *ssid;
|
2014-06-19 19:56:32 +02:00
|
|
|
struct os_reltime now;
|
2010-12-19 10:58:00 +01:00
|
|
|
|
|
|
|
if (wpa_s->wpa_state != WPA_COMPLETED)
|
|
|
|
return;
|
|
|
|
ssid = wpa_s->current_ssid;
|
2015-01-26 16:40:22 +01:00
|
|
|
if (wpas_get_ssid_pmf(wpa_s, ssid) == NO_MGMT_FRAME_PROTECTION)
|
2010-12-19 10:58:00 +01:00
|
|
|
return;
|
|
|
|
if (os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0)
|
|
|
|
return;
|
|
|
|
if (reason_code != WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA &&
|
|
|
|
reason_code != WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA)
|
|
|
|
return;
|
|
|
|
if (wpa_s->sme.sa_query_count > 0)
|
|
|
|
return;
|
|
|
|
|
2014-06-19 19:56:32 +02:00
|
|
|
os_get_reltime(&now);
|
|
|
|
if (wpa_s->sme.last_unprot_disconnect.sec &&
|
|
|
|
!os_reltime_expired(&now, &wpa_s->sme.last_unprot_disconnect, 10))
|
|
|
|
return; /* limit SA Query procedure frequency */
|
|
|
|
wpa_s->sme.last_unprot_disconnect = now;
|
|
|
|
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Unprotected disconnect dropped - "
|
|
|
|
"possible AP/STA state mismatch - trigger SA Query");
|
2010-12-19 10:58:00 +01:00
|
|
|
sme_start_sa_query(wpa_s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void sme_sa_query_rx(struct wpa_supplicant *wpa_s, const u8 *sa,
|
|
|
|
const u8 *data, size_t len)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (wpa_s->sme.sa_query_trans_id == NULL ||
|
|
|
|
len < 1 + WLAN_SA_QUERY_TR_ID_LEN ||
|
|
|
|
data[0] != WLAN_SA_QUERY_RESPONSE)
|
|
|
|
return;
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Received SA Query response from "
|
|
|
|
MACSTR " (trans_id %02x%02x)", MAC2STR(sa), data[1], data[2]);
|
2010-12-19 10:58:00 +01:00
|
|
|
|
|
|
|
if (os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < wpa_s->sme.sa_query_count; i++) {
|
|
|
|
if (os_memcmp(wpa_s->sme.sa_query_trans_id +
|
|
|
|
i * WLAN_SA_QUERY_TR_ID_LEN,
|
|
|
|
data + 1, WLAN_SA_QUERY_TR_ID_LEN) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i >= wpa_s->sme.sa_query_count) {
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: No matching SA Query "
|
|
|
|
"transaction identifier found");
|
2010-12-19 10:58:00 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-10 19:14:46 +01:00
|
|
|
wpa_dbg(wpa_s, MSG_DEBUG, "SME: Reply to pending SA Query received "
|
|
|
|
"from " MACSTR, MAC2STR(sa));
|
2010-12-19 10:58:00 +01:00
|
|
|
sme_stop_sa_query(wpa_s);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_IEEE80211W */
|