2017-06-15 20:18:10 +02:00
|
|
|
/*
|
|
|
|
* DPP functionality shared between hostapd and wpa_supplicant
|
|
|
|
* Copyright (c) 2017, Qualcomm Atheros, Inc.
|
2020-01-27 16:04:26 +01:00
|
|
|
* Copyright (c) 2018-2020, The Linux Foundation
|
2017-06-15 20:18:10 +02:00
|
|
|
*
|
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "utils/includes.h"
|
2019-03-24 21:17:49 +01:00
|
|
|
#include <fcntl.h>
|
2017-06-15 20:18:15 +02:00
|
|
|
#include <openssl/opensslv.h>
|
2017-06-15 20:18:10 +02:00
|
|
|
#include <openssl/err.h>
|
|
|
|
|
|
|
|
#include "utils/common.h"
|
|
|
|
#include "utils/base64.h"
|
2017-06-15 20:18:15 +02:00
|
|
|
#include "utils/json.h"
|
2019-03-24 21:17:49 +01:00
|
|
|
#include "utils/ip_addr.h"
|
|
|
|
#include "utils/eloop.h"
|
2017-06-15 20:18:10 +02:00
|
|
|
#include "common/ieee802_11_common.h"
|
2017-06-15 20:18:12 +02:00
|
|
|
#include "common/wpa_ctrl.h"
|
2019-04-03 18:09:59 +02:00
|
|
|
#include "common/gas.h"
|
2017-06-15 20:18:10 +02:00
|
|
|
#include "crypto/crypto.h"
|
2017-06-15 20:18:12 +02:00
|
|
|
#include "crypto/random.h"
|
|
|
|
#include "crypto/aes.h"
|
|
|
|
#include "crypto/aes_siv.h"
|
2017-11-12 11:17:54 +01:00
|
|
|
#include "drivers/driver.h"
|
2017-06-15 20:18:10 +02:00
|
|
|
#include "dpp.h"
|
2020-05-10 15:25:42 +02:00
|
|
|
#include "dpp_i.h"
|
2017-06-15 20:18:10 +02:00
|
|
|
|
|
|
|
|
2019-12-12 01:17:31 +01:00
|
|
|
static const char * dpp_netrole_str(enum dpp_netrole netrole);
|
|
|
|
|
2017-10-22 10:15:21 +02:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
2020-05-01 20:07:42 +02:00
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
int dpp_version_override = 2;
|
|
|
|
#else
|
|
|
|
int dpp_version_override = 1;
|
|
|
|
#endif
|
2017-10-22 10:15:21 +02:00
|
|
|
enum dpp_test_behavior dpp_test = DPP_TEST_DISABLED;
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2018-04-14 22:56:38 +02:00
|
|
|
#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
|
|
|
|
(defined(LIBRESSL_VERSION_NUMBER) && \
|
|
|
|
LIBRESSL_VERSION_NUMBER < 0x20700000L)
|
2017-06-15 20:18:15 +02:00
|
|
|
/* Compatibility wrappers for older versions. */
|
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
#ifdef CONFIG_DPP2
|
2020-03-29 17:56:48 +02:00
|
|
|
static EC_KEY * EVP_PKEY_get0_EC_KEY(EVP_PKEY *pkey)
|
|
|
|
{
|
|
|
|
if (pkey->type != EVP_PKEY_EC)
|
|
|
|
return NULL;
|
|
|
|
return pkey->pkey.ec;
|
|
|
|
}
|
2020-05-10 15:51:46 +02:00
|
|
|
#endif /* CONFIG_DPP2 */
|
2020-03-29 17:56:48 +02:00
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2019-03-24 21:17:49 +01:00
|
|
|
struct dpp_connection {
|
|
|
|
struct dl_list list;
|
|
|
|
struct dpp_controller *ctrl;
|
|
|
|
struct dpp_relay_controller *relay;
|
|
|
|
struct dpp_global *global;
|
|
|
|
struct dpp_authentication *auth;
|
|
|
|
int sock;
|
|
|
|
u8 mac_addr[ETH_ALEN];
|
|
|
|
unsigned int freq;
|
|
|
|
u8 msg_len[4];
|
|
|
|
size_t msg_len_octets;
|
|
|
|
struct wpabuf *msg;
|
|
|
|
struct wpabuf *msg_out;
|
|
|
|
size_t msg_out_pos;
|
|
|
|
unsigned int read_eloop:1;
|
|
|
|
unsigned int write_eloop:1;
|
|
|
|
unsigned int on_tcp_tx_complete_gas_done:1;
|
|
|
|
unsigned int on_tcp_tx_complete_remove:1;
|
|
|
|
unsigned int on_tcp_tx_complete_auth_ok:1;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Remote Controller */
|
|
|
|
struct dpp_relay_controller {
|
|
|
|
struct dl_list list;
|
|
|
|
struct dpp_global *global;
|
|
|
|
u8 pkhash[SHA256_MAC_LEN];
|
|
|
|
struct hostapd_ip_addr ipaddr;
|
|
|
|
void *cb_ctx;
|
|
|
|
void (*tx)(void *ctx, const u8 *addr, unsigned int freq, const u8 *msg,
|
|
|
|
size_t len);
|
|
|
|
void (*gas_resp_tx)(void *ctx, const u8 *addr, u8 dialog_token,
|
|
|
|
int prot, struct wpabuf *buf);
|
|
|
|
struct dl_list conn; /* struct dpp_connection */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Local Controller */
|
|
|
|
struct dpp_controller {
|
|
|
|
struct dpp_global *global;
|
|
|
|
u8 allowed_roles;
|
|
|
|
int qr_mutual;
|
|
|
|
int sock;
|
|
|
|
struct dl_list conn; /* struct dpp_connection */
|
|
|
|
char *configurator_params;
|
|
|
|
};
|
|
|
|
|
2019-08-04 11:10:20 +02:00
|
|
|
|
2020-05-09 15:30:09 +02:00
|
|
|
void dpp_auth_fail(struct dpp_authentication *auth, const char *txt)
|
2017-10-22 16:24:38 +02:00
|
|
|
{
|
|
|
|
wpa_msg(auth->msg_ctx, MSG_INFO, DPP_EVENT_FAIL "%s", txt);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-15 20:18:12 +02:00
|
|
|
struct wpabuf * dpp_alloc_msg(enum dpp_public_action_frame_type type,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
struct wpabuf *msg;
|
|
|
|
|
2017-10-10 00:30:08 +02:00
|
|
|
msg = wpabuf_alloc(8 + len);
|
2017-06-15 20:18:12 +02:00
|
|
|
if (!msg)
|
|
|
|
return NULL;
|
|
|
|
wpabuf_put_u8(msg, WLAN_ACTION_PUBLIC);
|
|
|
|
wpabuf_put_u8(msg, WLAN_PA_VENDOR_SPECIFIC);
|
|
|
|
wpabuf_put_be24(msg, OUI_WFA);
|
|
|
|
wpabuf_put_u8(msg, DPP_OUI_TYPE);
|
2017-10-10 00:30:08 +02:00
|
|
|
wpabuf_put_u8(msg, 1); /* Crypto Suite */
|
2017-06-15 20:18:12 +02:00
|
|
|
wpabuf_put_u8(msg, type);
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const u8 * dpp_get_attr(const u8 *buf, size_t len, u16 req_id, u16 *ret_len)
|
|
|
|
{
|
|
|
|
u16 id, alen;
|
|
|
|
const u8 *pos = buf, *end = buf + len;
|
|
|
|
|
|
|
|
while (end - pos >= 4) {
|
|
|
|
id = WPA_GET_LE16(pos);
|
|
|
|
pos += 2;
|
|
|
|
alen = WPA_GET_LE16(pos);
|
|
|
|
pos += 2;
|
|
|
|
if (alen > end - pos)
|
|
|
|
return NULL;
|
|
|
|
if (id == req_id) {
|
|
|
|
*ret_len = alen;
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
pos += alen;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-27 00:08:56 +02:00
|
|
|
static const u8 * dpp_get_attr_next(const u8 *prev, const u8 *buf, size_t len,
|
|
|
|
u16 req_id, u16 *ret_len)
|
|
|
|
{
|
|
|
|
u16 id, alen;
|
|
|
|
const u8 *pos, *end = buf + len;
|
|
|
|
|
|
|
|
if (!prev)
|
|
|
|
pos = buf;
|
|
|
|
else
|
|
|
|
pos = prev + WPA_GET_LE16(prev - 2);
|
|
|
|
while (end - pos >= 4) {
|
|
|
|
id = WPA_GET_LE16(pos);
|
|
|
|
pos += 2;
|
|
|
|
alen = WPA_GET_LE16(pos);
|
|
|
|
pos += 2;
|
|
|
|
if (alen > end - pos)
|
|
|
|
return NULL;
|
|
|
|
if (id == req_id) {
|
|
|
|
*ret_len = alen;
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
pos += alen;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-15 20:18:12 +02:00
|
|
|
int dpp_check_attrs(const u8 *buf, size_t len)
|
|
|
|
{
|
|
|
|
const u8 *pos, *end;
|
2017-10-22 10:37:56 +02:00
|
|
|
int wrapped_data = 0;
|
2017-06-15 20:18:12 +02:00
|
|
|
|
|
|
|
pos = buf;
|
|
|
|
end = buf + len;
|
|
|
|
while (end - pos >= 4) {
|
|
|
|
u16 id, alen;
|
|
|
|
|
|
|
|
id = WPA_GET_LE16(pos);
|
|
|
|
pos += 2;
|
|
|
|
alen = WPA_GET_LE16(pos);
|
|
|
|
pos += 2;
|
|
|
|
wpa_printf(MSG_MSGDUMP, "DPP: Attribute ID %04x len %u",
|
|
|
|
id, alen);
|
|
|
|
if (alen > end - pos) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Truncated message - not enough room for the attribute - dropped");
|
|
|
|
return -1;
|
|
|
|
}
|
2017-10-22 10:37:56 +02:00
|
|
|
if (wrapped_data) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: An unexpected attribute included after the Wrapped Data attribute");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (id == DPP_ATTR_WRAPPED_DATA)
|
|
|
|
wrapped_data = 1;
|
2017-06-15 20:18:12 +02:00
|
|
|
pos += alen;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (end != pos) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Unexpected octets (%d) after the last attribute",
|
|
|
|
(int) (end - pos));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-15 20:18:10 +02:00
|
|
|
void dpp_bootstrap_info_free(struct dpp_bootstrap_info *info)
|
|
|
|
{
|
|
|
|
if (!info)
|
|
|
|
return;
|
|
|
|
os_free(info->uri);
|
|
|
|
os_free(info->info);
|
2020-01-27 16:04:26 +01:00
|
|
|
os_free(info->chan);
|
|
|
|
os_free(info->pk);
|
2017-06-15 20:18:10 +02:00
|
|
|
EVP_PKEY_free(info->pubkey);
|
2020-03-27 16:14:06 +01:00
|
|
|
str_clear_free(info->configurator_params);
|
2017-06-15 20:18:10 +02:00
|
|
|
os_free(info);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-07-04 14:45:03 +02:00
|
|
|
const char * dpp_bootstrap_type_txt(enum dpp_bootstrap_type type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case DPP_BOOTSTRAP_QR_CODE:
|
|
|
|
return "QRCODE";
|
|
|
|
case DPP_BOOTSTRAP_PKEX:
|
|
|
|
return "PKEX";
|
2019-12-03 17:22:36 +01:00
|
|
|
case DPP_BOOTSTRAP_NFC_URI:
|
|
|
|
return "NFC-URI";
|
2017-07-04 14:45:03 +02:00
|
|
|
}
|
|
|
|
return "??";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-15 20:18:10 +02:00
|
|
|
static int dpp_uri_valid_info(const char *info)
|
|
|
|
{
|
|
|
|
while (*info) {
|
|
|
|
unsigned char val = *info++;
|
|
|
|
|
|
|
|
if (val < 0x20 || val > 0x7e || val == 0x3b)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_clone_uri(struct dpp_bootstrap_info *bi, const char *uri)
|
|
|
|
{
|
|
|
|
bi->uri = os_strdup(uri);
|
|
|
|
return bi->uri ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_parse_uri_chan_list(struct dpp_bootstrap_info *bi,
|
|
|
|
const char *chan_list)
|
|
|
|
{
|
2019-05-23 00:34:24 +02:00
|
|
|
const char *pos = chan_list, *pos2;
|
|
|
|
int opclass = -1, channel, freq;
|
2017-06-15 20:18:10 +02:00
|
|
|
|
|
|
|
while (pos && *pos && *pos != ';') {
|
2019-05-23 00:34:24 +02:00
|
|
|
pos2 = pos;
|
|
|
|
while (*pos2 >= '0' && *pos2 <= '9')
|
|
|
|
pos2++;
|
|
|
|
if (*pos2 == '/') {
|
|
|
|
opclass = atoi(pos);
|
|
|
|
pos = pos2 + 1;
|
|
|
|
}
|
2017-06-15 20:18:10 +02:00
|
|
|
if (opclass <= 0)
|
|
|
|
goto fail;
|
|
|
|
channel = atoi(pos);
|
|
|
|
if (channel <= 0)
|
|
|
|
goto fail;
|
|
|
|
while (*pos >= '0' && *pos <= '9')
|
|
|
|
pos++;
|
|
|
|
freq = ieee80211_chan_to_freq(NULL, opclass, channel);
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: URI channel-list: opclass=%d channel=%d ==> freq=%d",
|
|
|
|
opclass, channel, freq);
|
|
|
|
if (freq < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Ignore unknown URI channel-list channel (opclass=%d channel=%d)",
|
|
|
|
opclass, channel);
|
|
|
|
} else if (bi->num_freq == DPP_BOOTSTRAP_MAX_FREQ) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Too many channels in URI channel-list - ignore list");
|
|
|
|
bi->num_freq = 0;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
bi->freq[bi->num_freq++] = freq;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*pos == ';' || *pos == '\0')
|
|
|
|
break;
|
|
|
|
if (*pos != ',')
|
|
|
|
goto fail;
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
fail:
|
2020-05-10 15:25:42 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Invalid URI channel-list");
|
|
|
|
return -1;
|
2017-11-18 11:14:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
int dpp_parse_uri_mac(struct dpp_bootstrap_info *bi, const char *mac)
|
2017-11-18 11:14:21 +01:00
|
|
|
{
|
2020-05-10 15:25:42 +02:00
|
|
|
if (!mac)
|
|
|
|
return 0;
|
2017-11-18 11:14:21 +01:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
if (hwaddr_aton2(mac, bi->mac_addr) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Invalid URI mac");
|
2017-11-18 11:14:21 +01:00
|
|
|
return -1;
|
2020-05-10 15:25:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: URI mac: " MACSTR, MAC2STR(bi->mac_addr));
|
|
|
|
|
|
|
|
return 0;
|
2017-07-02 11:36:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
int dpp_parse_uri_info(struct dpp_bootstrap_info *bi, const char *info)
|
2017-06-15 20:18:10 +02:00
|
|
|
{
|
2020-05-10 15:25:42 +02:00
|
|
|
const char *end;
|
2017-06-15 20:18:10 +02:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
if (!info)
|
|
|
|
return 0;
|
2017-06-15 20:18:10 +02:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
end = os_strchr(info, ';');
|
|
|
|
if (!end)
|
|
|
|
end = info + os_strlen(info);
|
|
|
|
bi->info = os_malloc(end - info + 1);
|
|
|
|
if (!bi->info)
|
|
|
|
return -1;
|
|
|
|
os_memcpy(bi->info, info, end - info);
|
|
|
|
bi->info[end - info] = '\0';
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: URI(information): %s", bi->info);
|
|
|
|
if (!dpp_uri_valid_info(bi->info)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Invalid URI information payload");
|
|
|
|
return -1;
|
2017-11-29 20:40:31 +01:00
|
|
|
}
|
2017-06-15 20:18:10 +02:00
|
|
|
|
2020-01-27 16:04:26 +01:00
|
|
|
return 0;
|
2017-06-15 20:18:10 +02:00
|
|
|
}
|
2017-06-15 20:18:12 +02:00
|
|
|
|
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
int dpp_parse_uri_version(struct dpp_bootstrap_info *bi, const char *version)
|
2017-06-15 20:18:12 +02:00
|
|
|
{
|
2020-05-10 15:25:42 +02:00
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
if (!version || DPP_VERSION < 2)
|
|
|
|
return 0;
|
2017-06-15 20:18:12 +02:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
if (*version == '1')
|
|
|
|
bi->version = 1;
|
|
|
|
else if (*version == '2')
|
|
|
|
bi->version = 2;
|
|
|
|
else
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Unknown URI version");
|
2017-06-15 20:18:12 +02:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: URI version: %d", bi->version);
|
|
|
|
#endif /* CONFIG_DPP2 */
|
2017-06-15 20:18:12 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
static int dpp_parse_uri_pk(struct dpp_bootstrap_info *bi, const char *info)
|
2017-06-15 20:18:12 +02:00
|
|
|
{
|
2020-05-10 15:25:42 +02:00
|
|
|
u8 *data;
|
|
|
|
size_t data_len;
|
2017-06-15 20:18:12 +02:00
|
|
|
int res;
|
2020-05-10 15:25:42 +02:00
|
|
|
const char *end;
|
2017-06-15 20:18:12 +02:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
end = os_strchr(info, ';');
|
|
|
|
if (!end)
|
2017-06-15 20:18:12 +02:00
|
|
|
return -1;
|
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
data = base64_decode(info, end - info, &data_len);
|
|
|
|
if (!data) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Invalid base64 encoding on URI public-key");
|
2017-06-15 20:18:12 +02:00
|
|
|
return -1;
|
2020-05-10 15:25:42 +02:00
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: Base64 decoded URI public-key",
|
|
|
|
data, data_len);
|
2017-06-15 20:18:12 +02:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
res = dpp_get_subject_public_key(bi, data, data_len);
|
|
|
|
os_free(data);
|
|
|
|
return res;
|
2017-06-15 20:18:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
static struct dpp_bootstrap_info * dpp_parse_uri(const char *uri)
|
2017-06-15 20:18:12 +02:00
|
|
|
{
|
2020-05-10 15:25:42 +02:00
|
|
|
const char *pos = uri;
|
|
|
|
const char *end;
|
|
|
|
const char *chan_list = NULL, *mac = NULL, *info = NULL, *pk = NULL;
|
|
|
|
const char *version = NULL;
|
|
|
|
struct dpp_bootstrap_info *bi;
|
2017-06-15 20:18:12 +02:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, "DPP: URI", uri, os_strlen(uri));
|
|
|
|
|
|
|
|
if (os_strncmp(pos, "DPP:", 4) != 0) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: Not a DPP URI");
|
|
|
|
return NULL;
|
2018-01-13 03:12:46 +01:00
|
|
|
}
|
2020-05-10 15:25:42 +02:00
|
|
|
pos += 4;
|
2018-01-13 03:12:46 +01:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
for (;;) {
|
|
|
|
end = os_strchr(pos, ';');
|
|
|
|
if (!end)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (end == pos) {
|
|
|
|
/* Handle terminating ";;" and ignore unexpected ";"
|
|
|
|
* for parsing robustness. */
|
|
|
|
pos++;
|
|
|
|
continue;
|
2018-01-13 03:12:46 +01:00
|
|
|
}
|
2020-05-10 15:25:42 +02:00
|
|
|
|
|
|
|
if (pos[0] == 'C' && pos[1] == ':' && !chan_list)
|
|
|
|
chan_list = pos + 2;
|
|
|
|
else if (pos[0] == 'M' && pos[1] == ':' && !mac)
|
|
|
|
mac = pos + 2;
|
|
|
|
else if (pos[0] == 'I' && pos[1] == ':' && !info)
|
|
|
|
info = pos + 2;
|
|
|
|
else if (pos[0] == 'K' && pos[1] == ':' && !pk)
|
|
|
|
pk = pos + 2;
|
|
|
|
else if (pos[0] == 'V' && pos[1] == ':' && !version)
|
|
|
|
version = pos + 2;
|
|
|
|
else
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG,
|
|
|
|
"DPP: Ignore unrecognized URI parameter",
|
|
|
|
pos, end - pos);
|
|
|
|
pos = end + 1;
|
2017-06-15 20:18:12 +02:00
|
|
|
}
|
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
if (!pk) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: URI missing public-key");
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-06-15 20:18:12 +02:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
bi = os_zalloc(sizeof(*bi));
|
|
|
|
if (!bi)
|
|
|
|
return NULL;
|
2020-05-08 20:13:32 +02:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
if (dpp_clone_uri(bi, uri) < 0 ||
|
|
|
|
dpp_parse_uri_chan_list(bi, chan_list) < 0 ||
|
|
|
|
dpp_parse_uri_mac(bi, mac) < 0 ||
|
|
|
|
dpp_parse_uri_info(bi, info) < 0 ||
|
|
|
|
dpp_parse_uri_version(bi, version) < 0 ||
|
|
|
|
dpp_parse_uri_pk(bi, pk) < 0) {
|
|
|
|
dpp_bootstrap_info_free(bi);
|
|
|
|
bi = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bi;
|
2017-06-15 20:18:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
void dpp_build_attr_status(struct wpabuf *msg, enum dpp_status_error status)
|
2017-11-19 11:27:14 +01:00
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Status %d", status);
|
|
|
|
wpabuf_put_le16(msg, DPP_ATTR_STATUS);
|
|
|
|
wpabuf_put_le16(msg, 1);
|
|
|
|
wpabuf_put_u8(msg, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-11 00:16:12 +02:00
|
|
|
void dpp_build_attr_r_bootstrap_key_hash(struct wpabuf *msg, const u8 *hash)
|
2017-11-19 11:41:57 +01:00
|
|
|
{
|
|
|
|
if (hash) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: R-Bootstrap Key Hash");
|
|
|
|
wpabuf_put_le16(msg, DPP_ATTR_R_BOOTSTRAP_KEY_HASH);
|
|
|
|
wpabuf_put_le16(msg, SHA256_MAC_LEN);
|
|
|
|
wpabuf_put_data(msg, hash, SHA256_MAC_LEN);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-12 11:17:54 +01:00
|
|
|
static int dpp_channel_ok_init(struct hostapd_hw_modes *own_modes,
|
|
|
|
u16 num_modes, unsigned int freq)
|
|
|
|
{
|
|
|
|
u16 m;
|
|
|
|
int c, flag;
|
|
|
|
|
|
|
|
if (!own_modes || !num_modes)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
for (m = 0; m < num_modes; m++) {
|
|
|
|
for (c = 0; c < own_modes[m].num_channels; c++) {
|
|
|
|
if ((unsigned int) own_modes[m].channels[c].freq !=
|
|
|
|
freq)
|
|
|
|
continue;
|
|
|
|
flag = own_modes[m].channels[c].flag;
|
|
|
|
if (!(flag & (HOSTAPD_CHAN_DISABLED |
|
|
|
|
HOSTAPD_CHAN_NO_IR |
|
|
|
|
HOSTAPD_CHAN_RADAR)))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Peer channel %u MHz not supported", freq);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int freq_included(const unsigned int freqs[], unsigned int num,
|
|
|
|
unsigned int freq)
|
|
|
|
{
|
|
|
|
while (num > 0) {
|
|
|
|
if (freqs[--num] == freq)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void freq_to_start(unsigned int freqs[], unsigned int num,
|
|
|
|
unsigned int freq)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < num; i++) {
|
|
|
|
if (freqs[i] == freq)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == 0 || i >= num)
|
|
|
|
return;
|
|
|
|
os_memmove(&freqs[1], &freqs[0], i * sizeof(freqs[0]));
|
|
|
|
freqs[0] = freq;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_channel_intersect(struct dpp_authentication *auth,
|
|
|
|
struct hostapd_hw_modes *own_modes,
|
|
|
|
u16 num_modes)
|
|
|
|
{
|
|
|
|
struct dpp_bootstrap_info *peer_bi = auth->peer_bi;
|
|
|
|
unsigned int i, freq;
|
|
|
|
|
|
|
|
for (i = 0; i < peer_bi->num_freq; i++) {
|
|
|
|
freq = peer_bi->freq[i];
|
|
|
|
if (freq_included(auth->freq, auth->num_freq, freq))
|
|
|
|
continue;
|
|
|
|
if (dpp_channel_ok_init(own_modes, num_modes, freq))
|
|
|
|
auth->freq[auth->num_freq++] = freq;
|
|
|
|
}
|
|
|
|
if (!auth->num_freq) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"DPP: No available channels for initiating DPP Authentication");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
auth->curr_freq = auth->freq[0];
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_channel_local_list(struct dpp_authentication *auth,
|
|
|
|
struct hostapd_hw_modes *own_modes,
|
|
|
|
u16 num_modes)
|
|
|
|
{
|
|
|
|
u16 m;
|
|
|
|
int c, flag;
|
|
|
|
unsigned int freq;
|
|
|
|
|
|
|
|
auth->num_freq = 0;
|
|
|
|
|
|
|
|
if (!own_modes || !num_modes) {
|
|
|
|
auth->freq[0] = 2412;
|
|
|
|
auth->freq[1] = 2437;
|
|
|
|
auth->freq[2] = 2462;
|
|
|
|
auth->num_freq = 3;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (m = 0; m < num_modes; m++) {
|
|
|
|
for (c = 0; c < own_modes[m].num_channels; c++) {
|
|
|
|
freq = own_modes[m].channels[c].freq;
|
|
|
|
flag = own_modes[m].channels[c].flag;
|
|
|
|
if (flag & (HOSTAPD_CHAN_DISABLED |
|
|
|
|
HOSTAPD_CHAN_NO_IR |
|
|
|
|
HOSTAPD_CHAN_RADAR))
|
|
|
|
continue;
|
|
|
|
if (freq_included(auth->freq, auth->num_freq, freq))
|
|
|
|
continue;
|
|
|
|
auth->freq[auth->num_freq++] = freq;
|
|
|
|
if (auth->num_freq == DPP_BOOTSTRAP_MAX_FREQ) {
|
|
|
|
m = num_modes;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return auth->num_freq == 0 ? -1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-02 19:10:12 +02:00
|
|
|
int dpp_prepare_channel_list(struct dpp_authentication *auth,
|
|
|
|
unsigned int neg_freq,
|
|
|
|
struct hostapd_hw_modes *own_modes, u16 num_modes)
|
2017-11-12 11:17:54 +01:00
|
|
|
{
|
|
|
|
int res;
|
|
|
|
char freqs[DPP_BOOTSTRAP_MAX_FREQ * 6 + 10], *pos, *end;
|
|
|
|
unsigned int i;
|
|
|
|
|
2020-03-27 14:34:09 +01:00
|
|
|
if (!own_modes) {
|
|
|
|
if (!neg_freq)
|
|
|
|
return -1;
|
|
|
|
auth->num_freq = 1;
|
|
|
|
auth->freq[0] = neg_freq;
|
2020-05-09 15:30:09 +02:00
|
|
|
auth->curr_freq = neg_freq;
|
2020-03-27 14:34:09 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-12 11:17:54 +01:00
|
|
|
if (auth->peer_bi->num_freq > 0)
|
|
|
|
res = dpp_channel_intersect(auth, own_modes, num_modes);
|
|
|
|
else
|
|
|
|
res = dpp_channel_local_list(auth, own_modes, num_modes);
|
|
|
|
if (res < 0)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
/* Prioritize 2.4 GHz channels 6, 1, 11 (in this order) to hit the most
|
|
|
|
* likely channels first. */
|
|
|
|
freq_to_start(auth->freq, auth->num_freq, 2462);
|
|
|
|
freq_to_start(auth->freq, auth->num_freq, 2412);
|
|
|
|
freq_to_start(auth->freq, auth->num_freq, 2437);
|
|
|
|
|
|
|
|
auth->freq_idx = 0;
|
|
|
|
auth->curr_freq = auth->freq[0];
|
|
|
|
|
|
|
|
pos = freqs;
|
|
|
|
end = pos + sizeof(freqs);
|
|
|
|
for (i = 0; i < auth->num_freq; i++) {
|
|
|
|
res = os_snprintf(pos, end - pos, " %u", auth->freq[i]);
|
|
|
|
if (os_snprintf_error(end - pos, res))
|
|
|
|
break;
|
|
|
|
pos += res;
|
|
|
|
}
|
|
|
|
*pos = '\0';
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Possible frequencies for initiating:%s",
|
|
|
|
freqs);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-11 00:16:12 +02:00
|
|
|
int dpp_gen_uri(struct dpp_bootstrap_info *bi)
|
2020-01-27 16:04:26 +01:00
|
|
|
{
|
|
|
|
char macstr[ETH_ALEN * 2 + 10];
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
len = 4; /* "DPP:" */
|
|
|
|
if (bi->chan)
|
|
|
|
len += 3 + os_strlen(bi->chan); /* C:...; */
|
|
|
|
if (is_zero_ether_addr(bi->mac_addr))
|
|
|
|
macstr[0] = '\0';
|
|
|
|
else
|
|
|
|
os_snprintf(macstr, sizeof(macstr), "M:" COMPACT_MACSTR ";",
|
|
|
|
MAC2STR(bi->mac_addr));
|
|
|
|
len += os_strlen(macstr); /* M:...; */
|
|
|
|
if (bi->info)
|
|
|
|
len += 3 + os_strlen(bi->info); /* I:...; */
|
2020-05-05 19:48:23 +02:00
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
len += 4; /* V:2; */
|
|
|
|
#endif /* CONFIG_DPP2 */
|
2020-01-27 16:04:26 +01:00
|
|
|
len += 4 + os_strlen(bi->pk); /* K:...;; */
|
|
|
|
|
|
|
|
os_free(bi->uri);
|
|
|
|
bi->uri = os_malloc(len + 1);
|
|
|
|
if (!bi->uri)
|
|
|
|
return -1;
|
2020-05-05 19:48:23 +02:00
|
|
|
os_snprintf(bi->uri, len + 1, "DPP:%s%s%s%s%s%s%s%sK:%s;;",
|
2020-01-27 16:04:26 +01:00
|
|
|
bi->chan ? "C:" : "", bi->chan ? bi->chan : "",
|
|
|
|
bi->chan ? ";" : "",
|
|
|
|
macstr,
|
|
|
|
bi->info ? "I:" : "", bi->info ? bi->info : "",
|
|
|
|
bi->info ? ";" : "",
|
2020-05-05 19:48:23 +02:00
|
|
|
DPP_VERSION == 2 ? "V:2;" : "",
|
2020-01-27 16:04:26 +01:00
|
|
|
bi->pk);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-27 16:08:38 +01:00
|
|
|
struct dpp_authentication *
|
|
|
|
dpp_alloc_auth(struct dpp_global *dpp, void *msg_ctx)
|
2020-02-06 00:18:58 +01:00
|
|
|
{
|
|
|
|
struct dpp_authentication *auth;
|
|
|
|
|
|
|
|
auth = os_zalloc(sizeof(*auth));
|
|
|
|
if (!auth)
|
|
|
|
return NULL;
|
2020-03-27 16:08:38 +01:00
|
|
|
auth->global = dpp;
|
2020-02-06 00:18:58 +01:00
|
|
|
auth->msg_ctx = msg_ctx;
|
|
|
|
auth->conf_resp_status = 255;
|
|
|
|
return auth;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-03 18:09:59 +02:00
|
|
|
static struct wpabuf * dpp_build_conf_req_attr(struct dpp_authentication *auth,
|
|
|
|
const char *json)
|
2017-06-15 20:18:15 +02:00
|
|
|
{
|
|
|
|
size_t nonce_len;
|
|
|
|
size_t json_len, clear_len;
|
|
|
|
struct wpabuf *clear = NULL, *msg = NULL;
|
|
|
|
u8 *wrapped;
|
2017-10-22 10:15:21 +02:00
|
|
|
size_t attr_len;
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Build configuration request");
|
|
|
|
|
|
|
|
nonce_len = auth->curve->nonce_len;
|
|
|
|
if (random_get_bytes(auth->e_nonce, nonce_len)) {
|
|
|
|
wpa_printf(MSG_ERROR, "DPP: Failed to generate E-nonce");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: E-nonce", auth->e_nonce, nonce_len);
|
|
|
|
json_len = os_strlen(json);
|
2019-09-17 12:36:22 +02:00
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, "DPP: configRequest JSON", json, json_len);
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
/* { E-nonce, configAttrib }ke */
|
|
|
|
clear_len = 4 + nonce_len + 4 + json_len;
|
|
|
|
clear = wpabuf_alloc(clear_len);
|
2017-10-22 10:15:21 +02:00
|
|
|
attr_len = 4 + clear_len + AES_BLOCK_SIZE;
|
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_CONF_REQ)
|
2017-11-19 11:32:00 +01:00
|
|
|
attr_len += 5;
|
2017-10-22 10:15:21 +02:00
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
msg = wpabuf_alloc(attr_len);
|
2017-06-15 20:18:15 +02:00
|
|
|
if (!clear || !msg)
|
|
|
|
goto fail;
|
|
|
|
|
2017-11-03 19:39:00 +01:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (dpp_test == DPP_TEST_NO_E_NONCE_CONF_REQ) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - no E-nonce");
|
|
|
|
goto skip_e_nonce;
|
|
|
|
}
|
2017-11-30 21:01:10 +01:00
|
|
|
if (dpp_test == DPP_TEST_INVALID_E_NONCE_CONF_REQ) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - invalid E-nonce");
|
|
|
|
wpabuf_put_le16(clear, DPP_ATTR_ENROLLEE_NONCE);
|
|
|
|
wpabuf_put_le16(clear, nonce_len - 1);
|
|
|
|
wpabuf_put_data(clear, auth->e_nonce, nonce_len - 1);
|
|
|
|
goto skip_e_nonce;
|
|
|
|
}
|
2017-11-03 19:39:00 +01:00
|
|
|
if (dpp_test == DPP_TEST_NO_WRAPPED_DATA_CONF_REQ) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - no Wrapped Data");
|
|
|
|
goto skip_wrapped_data;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
/* E-nonce */
|
|
|
|
wpabuf_put_le16(clear, DPP_ATTR_ENROLLEE_NONCE);
|
|
|
|
wpabuf_put_le16(clear, nonce_len);
|
|
|
|
wpabuf_put_data(clear, auth->e_nonce, nonce_len);
|
|
|
|
|
2017-11-03 19:39:00 +01:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
skip_e_nonce:
|
|
|
|
if (dpp_test == DPP_TEST_NO_CONFIG_ATTR_OBJ_CONF_REQ) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - no configAttrib");
|
|
|
|
goto skip_conf_attr_obj;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
/* configAttrib */
|
|
|
|
wpabuf_put_le16(clear, DPP_ATTR_CONFIG_ATTR_OBJ);
|
|
|
|
wpabuf_put_le16(clear, json_len);
|
|
|
|
wpabuf_put_data(clear, json, json_len);
|
|
|
|
|
2017-11-03 19:39:00 +01:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
skip_conf_attr_obj:
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
wpabuf_put_le16(msg, DPP_ATTR_WRAPPED_DATA);
|
|
|
|
wpabuf_put_le16(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
|
|
|
|
wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
|
|
|
|
|
|
|
|
/* No AES-SIV AD */
|
|
|
|
wpa_hexdump_buf(MSG_DEBUG, "DPP: AES-SIV cleartext", clear);
|
|
|
|
if (aes_siv_encrypt(auth->ke, auth->curve->hash_len,
|
|
|
|
wpabuf_head(clear), wpabuf_len(clear),
|
|
|
|
0, NULL, NULL, wrapped) < 0)
|
|
|
|
goto fail;
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
|
|
|
|
wrapped, wpabuf_len(clear) + AES_BLOCK_SIZE);
|
|
|
|
|
2017-10-22 10:15:21 +02:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_CONF_REQ) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - attr after Wrapped Data");
|
2017-11-19 11:32:00 +01:00
|
|
|
dpp_build_attr_status(msg, DPP_STATUS_OK);
|
2017-10-22 10:15:21 +02:00
|
|
|
}
|
2017-11-03 19:39:00 +01:00
|
|
|
skip_wrapped_data:
|
2017-10-22 10:15:21 +02:00
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
wpa_hexdump_buf(MSG_DEBUG,
|
|
|
|
"DPP: Configuration Request frame attributes", msg);
|
|
|
|
wpabuf_free(clear);
|
|
|
|
return msg;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
wpabuf_free(clear);
|
|
|
|
wpabuf_free(msg);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-03 18:09:59 +02:00
|
|
|
static void dpp_write_adv_proto(struct wpabuf *buf)
|
|
|
|
{
|
|
|
|
/* Advertisement Protocol IE */
|
|
|
|
wpabuf_put_u8(buf, WLAN_EID_ADV_PROTO);
|
|
|
|
wpabuf_put_u8(buf, 8); /* Length */
|
|
|
|
wpabuf_put_u8(buf, 0x7f);
|
|
|
|
wpabuf_put_u8(buf, WLAN_EID_VENDOR_SPECIFIC);
|
|
|
|
wpabuf_put_u8(buf, 5);
|
|
|
|
wpabuf_put_be24(buf, OUI_WFA);
|
|
|
|
wpabuf_put_u8(buf, DPP_OUI_TYPE);
|
|
|
|
wpabuf_put_u8(buf, 0x01);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void dpp_write_gas_query(struct wpabuf *buf, struct wpabuf *query)
|
|
|
|
{
|
|
|
|
/* GAS Query */
|
|
|
|
wpabuf_put_le16(buf, wpabuf_len(query));
|
|
|
|
wpabuf_put_buf(buf, query);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct wpabuf * dpp_build_conf_req(struct dpp_authentication *auth,
|
|
|
|
const char *json)
|
|
|
|
{
|
|
|
|
struct wpabuf *buf, *conf_req;
|
|
|
|
|
|
|
|
conf_req = dpp_build_conf_req_attr(auth, json);
|
|
|
|
if (!conf_req) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No configuration request data available");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf = gas_build_initial_req(0, 10 + 2 + wpabuf_len(conf_req));
|
|
|
|
if (!buf) {
|
|
|
|
wpabuf_free(conf_req);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
dpp_write_adv_proto(buf);
|
|
|
|
dpp_write_gas_query(buf, conf_req);
|
|
|
|
wpabuf_free(conf_req);
|
|
|
|
wpa_hexdump_buf(MSG_MSGDUMP, "DPP: GAS Config Request", buf);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-17 12:36:22 +02:00
|
|
|
struct wpabuf * dpp_build_conf_req_helper(struct dpp_authentication *auth,
|
2019-12-12 01:17:31 +01:00
|
|
|
const char *name,
|
|
|
|
enum dpp_netrole netrole,
|
2019-09-18 23:00:46 +02:00
|
|
|
const char *mud_url, int *opclasses)
|
2019-09-17 12:36:22 +02:00
|
|
|
{
|
2019-11-27 15:07:49 +01:00
|
|
|
size_t len, name_len;
|
2019-09-17 12:36:22 +02:00
|
|
|
const char *tech = "infra";
|
|
|
|
const char *dpp_name;
|
|
|
|
struct wpabuf *buf, *json;
|
|
|
|
|
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (dpp_test == DPP_TEST_INVALID_CONFIG_ATTR_OBJ_CONF_REQ) {
|
|
|
|
static const char *bogus_tech = "knfra";
|
|
|
|
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - invalid Config Attr");
|
|
|
|
tech = bogus_tech;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
|
|
|
dpp_name = name ? name : "Test";
|
2019-11-27 15:07:49 +01:00
|
|
|
name_len = os_strlen(dpp_name);
|
2019-09-17 12:36:22 +02:00
|
|
|
|
2019-11-27 15:07:49 +01:00
|
|
|
len = 100 + name_len * 6 + 1 + int_array_len(opclasses) * 4;
|
2019-09-17 12:36:22 +02:00
|
|
|
if (mud_url && mud_url[0])
|
|
|
|
len += 10 + os_strlen(mud_url);
|
|
|
|
json = wpabuf_alloc(len);
|
2019-11-27 15:07:49 +01:00
|
|
|
if (!json)
|
2019-09-17 12:36:22 +02:00
|
|
|
return NULL;
|
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
json_start_object(json, NULL);
|
|
|
|
if (json_add_string_escape(json, "name", dpp_name, name_len) < 0) {
|
|
|
|
wpabuf_free(json);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
json_value_sep(json);
|
|
|
|
json_add_string(json, "wi-fi_tech", tech);
|
|
|
|
json_value_sep(json);
|
|
|
|
json_add_string(json, "netRole", dpp_netrole_str(netrole));
|
|
|
|
if (mud_url && mud_url[0]) {
|
|
|
|
json_value_sep(json);
|
|
|
|
json_add_string(json, "mudurl", mud_url);
|
|
|
|
}
|
|
|
|
if (opclasses) {
|
|
|
|
int i;
|
2017-06-15 20:18:12 +02:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
json_value_sep(json);
|
|
|
|
json_start_array(json, "bandSupport");
|
|
|
|
for (i = 0; opclasses[i]; i++)
|
|
|
|
wpabuf_printf(json, "%s%u", i ? "," : "", opclasses[i]);
|
|
|
|
json_end_array(json);
|
2017-06-15 20:18:12 +02:00
|
|
|
}
|
2020-05-10 15:25:42 +02:00
|
|
|
json_end_object(json);
|
2017-06-15 20:18:12 +02:00
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
buf = dpp_build_conf_req(auth, wpabuf_head(json));
|
|
|
|
wpabuf_free(json);
|
|
|
|
|
|
|
|
return buf;
|
2017-06-15 20:18:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-16 11:19:10 +01:00
|
|
|
static int bin_str_eq(const char *val, size_t len, const char *cmp)
|
|
|
|
{
|
|
|
|
return os_strlen(cmp) == len && os_memcmp(val, cmp, len) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct dpp_configuration * dpp_configuration_alloc(const char *type)
|
|
|
|
{
|
|
|
|
struct dpp_configuration *conf;
|
|
|
|
const char *end;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
conf = os_zalloc(sizeof(*conf));
|
|
|
|
if (!conf)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
end = os_strchr(type, ' ');
|
|
|
|
if (end)
|
|
|
|
len = end - type;
|
|
|
|
else
|
|
|
|
len = os_strlen(type);
|
|
|
|
|
|
|
|
if (bin_str_eq(type, len, "psk"))
|
|
|
|
conf->akm = DPP_AKM_PSK;
|
|
|
|
else if (bin_str_eq(type, len, "sae"))
|
|
|
|
conf->akm = DPP_AKM_SAE;
|
2019-03-16 16:17:46 +01:00
|
|
|
else if (bin_str_eq(type, len, "psk-sae") ||
|
|
|
|
bin_str_eq(type, len, "psk+sae"))
|
2019-03-16 11:19:10 +01:00
|
|
|
conf->akm = DPP_AKM_PSK_SAE;
|
2019-03-16 16:17:46 +01:00
|
|
|
else if (bin_str_eq(type, len, "sae-dpp") ||
|
|
|
|
bin_str_eq(type, len, "dpp+sae"))
|
|
|
|
conf->akm = DPP_AKM_SAE_DPP;
|
|
|
|
else if (bin_str_eq(type, len, "psk-sae-dpp") ||
|
|
|
|
bin_str_eq(type, len, "dpp+psk+sae"))
|
|
|
|
conf->akm = DPP_AKM_PSK_SAE_DPP;
|
2019-03-16 11:19:10 +01:00
|
|
|
else if (bin_str_eq(type, len, "dpp"))
|
|
|
|
conf->akm = DPP_AKM_DPP;
|
|
|
|
else
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
return conf;
|
|
|
|
fail:
|
|
|
|
dpp_configuration_free(conf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-16 16:17:46 +01:00
|
|
|
int dpp_akm_psk(enum dpp_akm akm)
|
2019-03-16 11:19:10 +01:00
|
|
|
{
|
2019-03-16 16:17:46 +01:00
|
|
|
return akm == DPP_AKM_PSK || akm == DPP_AKM_PSK_SAE ||
|
|
|
|
akm == DPP_AKM_PSK_SAE_DPP;
|
2019-03-16 11:19:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-16 16:17:46 +01:00
|
|
|
int dpp_akm_sae(enum dpp_akm akm)
|
2019-03-16 11:19:10 +01:00
|
|
|
{
|
2019-03-16 16:17:46 +01:00
|
|
|
return akm == DPP_AKM_SAE || akm == DPP_AKM_PSK_SAE ||
|
|
|
|
akm == DPP_AKM_SAE_DPP || akm == DPP_AKM_PSK_SAE_DPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_akm_legacy(enum dpp_akm akm)
|
|
|
|
{
|
|
|
|
return akm == DPP_AKM_PSK || akm == DPP_AKM_PSK_SAE ||
|
|
|
|
akm == DPP_AKM_SAE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_akm_dpp(enum dpp_akm akm)
|
|
|
|
{
|
|
|
|
return akm == DPP_AKM_DPP || akm == DPP_AKM_SAE_DPP ||
|
|
|
|
akm == DPP_AKM_PSK_SAE_DPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_akm_ver2(enum dpp_akm akm)
|
|
|
|
{
|
|
|
|
return akm == DPP_AKM_SAE_DPP || akm == DPP_AKM_PSK_SAE_DPP;
|
2019-03-16 11:19:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_configuration_valid(const struct dpp_configuration *conf)
|
|
|
|
{
|
|
|
|
if (conf->ssid_len == 0)
|
|
|
|
return 0;
|
|
|
|
if (dpp_akm_psk(conf->akm) && !conf->passphrase && !conf->psk_set)
|
|
|
|
return 0;
|
|
|
|
if (dpp_akm_sae(conf->akm) && !conf->passphrase)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
void dpp_configuration_free(struct dpp_configuration *conf)
|
|
|
|
{
|
|
|
|
if (!conf)
|
|
|
|
return;
|
|
|
|
str_clear_free(conf->passphrase);
|
2018-08-10 09:03:14 +02:00
|
|
|
os_free(conf->group_id);
|
2017-06-15 20:18:15 +02:00
|
|
|
bin_clear_free(conf, sizeof(*conf));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-25 02:49:41 +02:00
|
|
|
static int dpp_configuration_parse_helper(struct dpp_authentication *auth,
|
|
|
|
const char *cmd, int idx)
|
2019-03-16 11:19:10 +01:00
|
|
|
{
|
|
|
|
const char *pos, *end;
|
|
|
|
struct dpp_configuration *conf_sta = NULL, *conf_ap = NULL;
|
|
|
|
struct dpp_configuration *conf = NULL;
|
|
|
|
|
|
|
|
pos = os_strstr(cmd, " conf=sta-");
|
|
|
|
if (pos) {
|
|
|
|
conf_sta = dpp_configuration_alloc(pos + 10);
|
|
|
|
if (!conf_sta)
|
|
|
|
goto fail;
|
2019-06-17 15:41:20 +02:00
|
|
|
conf_sta->netrole = DPP_NETROLE_STA;
|
2019-03-16 11:19:10 +01:00
|
|
|
conf = conf_sta;
|
|
|
|
}
|
|
|
|
|
|
|
|
pos = os_strstr(cmd, " conf=ap-");
|
|
|
|
if (pos) {
|
|
|
|
conf_ap = dpp_configuration_alloc(pos + 9);
|
|
|
|
if (!conf_ap)
|
|
|
|
goto fail;
|
2019-06-17 15:41:20 +02:00
|
|
|
conf_ap->netrole = DPP_NETROLE_AP;
|
2019-03-16 11:19:10 +01:00
|
|
|
conf = conf_ap;
|
|
|
|
}
|
|
|
|
|
2020-02-06 02:34:36 +01:00
|
|
|
pos = os_strstr(cmd, " conf=configurator");
|
|
|
|
if (pos)
|
|
|
|
auth->provision_configurator = 1;
|
|
|
|
|
2019-03-16 11:19:10 +01:00
|
|
|
if (!conf)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pos = os_strstr(cmd, " ssid=");
|
|
|
|
if (pos) {
|
|
|
|
pos += 6;
|
|
|
|
end = os_strchr(pos, ' ');
|
|
|
|
conf->ssid_len = end ? (size_t) (end - pos) : os_strlen(pos);
|
|
|
|
conf->ssid_len /= 2;
|
|
|
|
if (conf->ssid_len > sizeof(conf->ssid) ||
|
|
|
|
hexstr2bin(pos, conf->ssid, conf->ssid_len) < 0)
|
|
|
|
goto fail;
|
|
|
|
} else {
|
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
/* use a default SSID for legacy testing reasons */
|
|
|
|
os_memcpy(conf->ssid, "test", 4);
|
|
|
|
conf->ssid_len = 4;
|
|
|
|
#else /* CONFIG_TESTING_OPTIONS */
|
|
|
|
goto fail;
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
}
|
|
|
|
|
2019-11-28 14:20:32 +01:00
|
|
|
pos = os_strstr(cmd, " ssid_charset=");
|
|
|
|
if (pos) {
|
|
|
|
if (conf_ap) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"DPP: ssid64 option (ssid_charset param) not allowed for AP enrollee");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
conf->ssid_charset = atoi(pos + 14);
|
|
|
|
}
|
|
|
|
|
2019-03-16 11:19:10 +01:00
|
|
|
pos = os_strstr(cmd, " pass=");
|
|
|
|
if (pos) {
|
|
|
|
size_t pass_len;
|
|
|
|
|
|
|
|
pos += 6;
|
|
|
|
end = os_strchr(pos, ' ');
|
|
|
|
pass_len = end ? (size_t) (end - pos) : os_strlen(pos);
|
|
|
|
pass_len /= 2;
|
|
|
|
if (pass_len > 63 || pass_len < 8)
|
|
|
|
goto fail;
|
|
|
|
conf->passphrase = os_zalloc(pass_len + 1);
|
|
|
|
if (!conf->passphrase ||
|
|
|
|
hexstr2bin(pos, (u8 *) conf->passphrase, pass_len) < 0)
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
pos = os_strstr(cmd, " psk=");
|
|
|
|
if (pos) {
|
|
|
|
pos += 5;
|
|
|
|
if (hexstr2bin(pos, conf->psk, PMK_LEN) < 0)
|
|
|
|
goto fail;
|
|
|
|
conf->psk_set = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pos = os_strstr(cmd, " group_id=");
|
|
|
|
if (pos) {
|
|
|
|
size_t group_id_len;
|
|
|
|
|
|
|
|
pos += 10;
|
|
|
|
end = os_strchr(pos, ' ');
|
|
|
|
group_id_len = end ? (size_t) (end - pos) : os_strlen(pos);
|
|
|
|
conf->group_id = os_malloc(group_id_len + 1);
|
|
|
|
if (!conf->group_id)
|
|
|
|
goto fail;
|
|
|
|
os_memcpy(conf->group_id, pos, group_id_len);
|
|
|
|
conf->group_id[group_id_len] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
pos = os_strstr(cmd, " expiry=");
|
|
|
|
if (pos) {
|
|
|
|
long int val;
|
|
|
|
|
|
|
|
pos += 8;
|
|
|
|
val = strtol(pos, NULL, 0);
|
|
|
|
if (val <= 0)
|
|
|
|
goto fail;
|
|
|
|
conf->netaccesskey_expiry = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dpp_configuration_valid(conf))
|
|
|
|
goto fail;
|
|
|
|
|
2019-09-25 02:49:41 +02:00
|
|
|
if (idx == 0) {
|
|
|
|
auth->conf_sta = conf_sta;
|
|
|
|
auth->conf_ap = conf_ap;
|
|
|
|
} else if (idx == 1) {
|
|
|
|
auth->conf2_sta = conf_sta;
|
|
|
|
auth->conf2_ap = conf_ap;
|
|
|
|
} else {
|
|
|
|
goto fail;
|
|
|
|
}
|
2019-03-16 11:19:10 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
dpp_configuration_free(conf_sta);
|
|
|
|
dpp_configuration_free(conf_ap);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-25 02:49:41 +02:00
|
|
|
static int dpp_configuration_parse(struct dpp_authentication *auth,
|
|
|
|
const char *cmd)
|
|
|
|
{
|
|
|
|
const char *pos;
|
|
|
|
char *tmp;
|
|
|
|
size_t len;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
pos = os_strstr(cmd, " @CONF-OBJ-SEP@ ");
|
|
|
|
if (!pos)
|
|
|
|
return dpp_configuration_parse_helper(auth, cmd, 0);
|
|
|
|
|
|
|
|
len = pos - cmd;
|
|
|
|
tmp = os_malloc(len + 1);
|
|
|
|
if (!tmp)
|
|
|
|
goto fail;
|
|
|
|
os_memcpy(tmp, cmd, len);
|
|
|
|
tmp[len] = '\0';
|
|
|
|
res = dpp_configuration_parse_helper(auth, cmd, 0);
|
|
|
|
str_clear_free(tmp);
|
|
|
|
if (res)
|
|
|
|
goto fail;
|
|
|
|
res = dpp_configuration_parse_helper(auth, cmd + len, 1);
|
|
|
|
if (res)
|
|
|
|
goto fail;
|
|
|
|
return 0;
|
|
|
|
fail:
|
|
|
|
dpp_configuration_free(auth->conf_sta);
|
|
|
|
dpp_configuration_free(auth->conf2_sta);
|
|
|
|
dpp_configuration_free(auth->conf_ap);
|
|
|
|
dpp_configuration_free(auth->conf2_ap);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-24 15:44:21 +01:00
|
|
|
static struct dpp_configurator *
|
|
|
|
dpp_configurator_get_id(struct dpp_global *dpp, unsigned int id)
|
|
|
|
{
|
|
|
|
struct dpp_configurator *conf;
|
|
|
|
|
|
|
|
if (!dpp)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
dl_list_for_each(conf, &dpp->configurator,
|
|
|
|
struct dpp_configurator, list) {
|
|
|
|
if (conf->id == id)
|
|
|
|
return conf;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-27 16:08:38 +01:00
|
|
|
int dpp_set_configurator(struct dpp_authentication *auth, const char *cmd)
|
2019-03-24 15:44:21 +01:00
|
|
|
{
|
|
|
|
const char *pos;
|
2020-02-11 05:41:33 +01:00
|
|
|
char *tmp = NULL;
|
|
|
|
int ret = -1;
|
2019-03-24 15:44:21 +01:00
|
|
|
|
2020-03-27 16:14:06 +01:00
|
|
|
if (!cmd || auth->configurator_set)
|
2019-03-24 15:44:21 +01:00
|
|
|
return 0;
|
2020-03-27 16:14:06 +01:00
|
|
|
auth->configurator_set = 1;
|
|
|
|
|
2020-02-11 05:41:33 +01:00
|
|
|
if (cmd[0] != ' ') {
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
len = os_strlen(cmd);
|
|
|
|
tmp = os_malloc(len + 2);
|
|
|
|
if (!tmp)
|
|
|
|
goto fail;
|
|
|
|
tmp[0] = ' ';
|
|
|
|
os_memcpy(tmp + 1, cmd, len + 1);
|
|
|
|
cmd = tmp;
|
|
|
|
}
|
2019-03-24 15:44:21 +01:00
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Set configurator parameters: %s", cmd);
|
|
|
|
|
|
|
|
pos = os_strstr(cmd, " configurator=");
|
2020-05-02 19:10:12 +02:00
|
|
|
if (!auth->conf && pos) {
|
2019-03-24 15:44:21 +01:00
|
|
|
pos += 14;
|
2020-03-27 16:08:38 +01:00
|
|
|
auth->conf = dpp_configurator_get_id(auth->global, atoi(pos));
|
2019-03-24 15:44:21 +01:00
|
|
|
if (!auth->conf) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"DPP: Could not find the specified configurator");
|
2020-02-11 05:41:33 +01:00
|
|
|
goto fail;
|
2019-03-24 15:44:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-15 15:19:45 +02:00
|
|
|
pos = os_strstr(cmd, " conn_status=");
|
|
|
|
if (pos) {
|
|
|
|
pos += 13;
|
|
|
|
auth->send_conn_status = atoi(pos);
|
|
|
|
}
|
|
|
|
|
2019-09-27 01:30:33 +02:00
|
|
|
pos = os_strstr(cmd, " akm_use_selector=");
|
|
|
|
if (pos) {
|
|
|
|
pos += 18;
|
|
|
|
auth->akm_use_selector = atoi(pos);
|
|
|
|
}
|
|
|
|
|
2019-03-24 15:44:21 +01:00
|
|
|
if (dpp_configuration_parse(auth, cmd) < 0) {
|
2020-03-27 16:08:38 +01:00
|
|
|
wpa_msg(auth->msg_ctx, MSG_INFO,
|
2019-03-24 15:44:21 +01:00
|
|
|
"DPP: Failed to set configurator parameters");
|
2020-02-11 05:41:33 +01:00
|
|
|
goto fail;
|
2019-03-24 15:44:21 +01:00
|
|
|
}
|
2020-02-11 05:41:33 +01:00
|
|
|
ret = 0;
|
|
|
|
fail:
|
|
|
|
os_free(tmp);
|
|
|
|
return ret;
|
2019-03-24 15:44:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-15 20:18:12 +02:00
|
|
|
void dpp_auth_deinit(struct dpp_authentication *auth)
|
|
|
|
{
|
2019-09-27 00:08:56 +02:00
|
|
|
unsigned int i;
|
|
|
|
|
2017-06-15 20:18:12 +02:00
|
|
|
if (!auth)
|
|
|
|
return;
|
2017-06-15 20:18:15 +02:00
|
|
|
dpp_configuration_free(auth->conf_ap);
|
2019-09-25 02:49:41 +02:00
|
|
|
dpp_configuration_free(auth->conf2_ap);
|
2017-06-15 20:18:15 +02:00
|
|
|
dpp_configuration_free(auth->conf_sta);
|
2019-09-25 02:49:41 +02:00
|
|
|
dpp_configuration_free(auth->conf2_sta);
|
2017-06-15 20:18:12 +02:00
|
|
|
EVP_PKEY_free(auth->own_protocol_key);
|
|
|
|
EVP_PKEY_free(auth->peer_protocol_key);
|
2020-05-09 15:30:09 +02:00
|
|
|
EVP_PKEY_free(auth->reconfig_old_protocol_key);
|
2017-10-18 21:51:30 +02:00
|
|
|
wpabuf_free(auth->req_msg);
|
|
|
|
wpabuf_free(auth->resp_msg);
|
2017-06-15 20:18:15 +02:00
|
|
|
wpabuf_free(auth->conf_req);
|
2020-05-02 19:10:12 +02:00
|
|
|
wpabuf_free(auth->reconfig_req_msg);
|
2020-05-09 15:30:09 +02:00
|
|
|
wpabuf_free(auth->reconfig_resp_msg);
|
2019-09-27 00:08:56 +02:00
|
|
|
for (i = 0; i < auth->num_conf_obj; i++) {
|
|
|
|
struct dpp_config_obj *conf = &auth->conf_obj[i];
|
|
|
|
|
|
|
|
os_free(conf->connector);
|
|
|
|
wpabuf_free(conf->c_sign_key);
|
|
|
|
}
|
2020-05-11 00:30:13 +02:00
|
|
|
#ifdef CONFIG_DPP2
|
2019-12-12 01:28:39 +01:00
|
|
|
dpp_free_asymmetric_key(auth->conf_key_pkg);
|
2020-05-11 00:30:13 +02:00
|
|
|
#endif /* CONFIG_DPP2 */
|
2017-06-15 20:18:15 +02:00
|
|
|
wpabuf_free(auth->net_access_key);
|
2017-11-26 16:41:22 +01:00
|
|
|
dpp_bootstrap_info_free(auth->tmp_own_bi);
|
2017-06-15 20:18:15 +02:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
os_free(auth->config_obj_override);
|
|
|
|
os_free(auth->discovery_override);
|
|
|
|
os_free(auth->groups_override);
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
2017-06-15 20:18:12 +02:00
|
|
|
bin_clear_free(auth, sizeof(*auth));
|
|
|
|
}
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
static struct wpabuf *
|
|
|
|
dpp_build_conf_start(struct dpp_authentication *auth,
|
|
|
|
struct dpp_configuration *conf, size_t tailroom)
|
|
|
|
{
|
|
|
|
struct wpabuf *buf;
|
|
|
|
|
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (auth->discovery_override)
|
|
|
|
tailroom += os_strlen(auth->discovery_override);
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
|
|
|
buf = wpabuf_alloc(200 + tailroom);
|
|
|
|
if (!buf)
|
|
|
|
return NULL;
|
2019-11-27 15:07:49 +01:00
|
|
|
json_start_object(buf, NULL);
|
|
|
|
json_add_string(buf, "wi-fi_tech", "infra");
|
|
|
|
json_value_sep(buf);
|
2017-06-15 20:18:15 +02:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (auth->discovery_override) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: TESTING - discovery override: '%s'",
|
|
|
|
auth->discovery_override);
|
2019-11-27 15:07:49 +01:00
|
|
|
wpabuf_put_str(buf, "\"discovery\":");
|
2017-06-15 20:18:15 +02:00
|
|
|
wpabuf_put_str(buf, auth->discovery_override);
|
2019-11-27 15:07:49 +01:00
|
|
|
json_value_sep(buf);
|
2017-06-15 20:18:15 +02:00
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
2019-11-27 15:07:49 +01:00
|
|
|
json_start_object(buf, "discovery");
|
2019-11-28 14:20:32 +01:00
|
|
|
if (((!conf->ssid_charset || auth->peer_version < 2) &&
|
|
|
|
json_add_string_escape(buf, "ssid", conf->ssid,
|
|
|
|
conf->ssid_len) < 0) ||
|
|
|
|
((conf->ssid_charset && auth->peer_version >= 2) &&
|
|
|
|
json_add_base64url(buf, "ssid64", conf->ssid,
|
|
|
|
conf->ssid_len) < 0)) {
|
2019-11-27 15:07:49 +01:00
|
|
|
wpabuf_free(buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-28 14:20:32 +01:00
|
|
|
if (conf->ssid_charset > 0) {
|
|
|
|
json_value_sep(buf);
|
|
|
|
json_add_int(buf, "ssid_charset", conf->ssid_charset);
|
|
|
|
}
|
2019-11-27 15:07:49 +01:00
|
|
|
json_end_object(buf);
|
|
|
|
json_value_sep(buf);
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-02 19:10:12 +02:00
|
|
|
int dpp_build_jwk(struct wpabuf *buf, const char *name, EVP_PKEY *key,
|
|
|
|
const char *kid, const struct dpp_curve_params *curve)
|
2017-06-15 20:18:15 +02:00
|
|
|
{
|
|
|
|
struct wpabuf *pub;
|
|
|
|
const u8 *pos;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
pub = dpp_get_pubkey_point(key, 0);
|
|
|
|
if (!pub)
|
|
|
|
goto fail;
|
2019-11-27 15:07:49 +01:00
|
|
|
|
|
|
|
json_start_object(buf, name);
|
|
|
|
json_add_string(buf, "kty", "EC");
|
|
|
|
json_value_sep(buf);
|
|
|
|
json_add_string(buf, "crv", curve->jwk_crv);
|
|
|
|
json_value_sep(buf);
|
2017-06-15 20:18:15 +02:00
|
|
|
pos = wpabuf_head(pub);
|
2019-11-27 15:07:49 +01:00
|
|
|
if (json_add_base64url(buf, "x", pos, curve->prime_len) < 0)
|
|
|
|
goto fail;
|
|
|
|
json_value_sep(buf);
|
2017-06-15 20:18:15 +02:00
|
|
|
pos += curve->prime_len;
|
2019-11-27 15:07:49 +01:00
|
|
|
if (json_add_base64url(buf, "y", pos, curve->prime_len) < 0)
|
2017-10-11 17:19:03 +02:00
|
|
|
goto fail;
|
2017-06-15 20:18:15 +02:00
|
|
|
if (kid) {
|
2019-11-27 15:07:49 +01:00
|
|
|
json_value_sep(buf);
|
|
|
|
json_add_string(buf, "kid", kid);
|
2017-06-15 20:18:15 +02:00
|
|
|
}
|
2019-11-27 15:07:49 +01:00
|
|
|
json_end_object(buf);
|
2017-06-15 20:18:15 +02:00
|
|
|
ret = 0;
|
2017-10-11 17:19:03 +02:00
|
|
|
fail:
|
2017-06-15 20:18:15 +02:00
|
|
|
wpabuf_free(pub);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-16 16:17:46 +01:00
|
|
|
static void dpp_build_legacy_cred_params(struct wpabuf *buf,
|
|
|
|
struct dpp_configuration *conf)
|
|
|
|
{
|
|
|
|
if (conf->passphrase && os_strlen(conf->passphrase) < 64) {
|
2019-11-27 15:07:49 +01:00
|
|
|
json_add_string_escape(buf, "pass", conf->passphrase,
|
|
|
|
os_strlen(conf->passphrase));
|
2019-03-16 16:17:46 +01:00
|
|
|
} else if (conf->psk_set) {
|
|
|
|
char psk[2 * sizeof(conf->psk) + 1];
|
|
|
|
|
|
|
|
wpa_snprintf_hex(psk, sizeof(psk),
|
|
|
|
conf->psk, sizeof(conf->psk));
|
2019-11-27 15:07:49 +01:00
|
|
|
json_add_string(buf, "psk_hex", psk);
|
|
|
|
forced_memzero(psk, sizeof(psk));
|
2019-03-16 16:17:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-17 15:41:20 +02:00
|
|
|
static const char * dpp_netrole_str(enum dpp_netrole netrole)
|
|
|
|
{
|
|
|
|
switch (netrole) {
|
|
|
|
case DPP_NETROLE_STA:
|
|
|
|
return "sta";
|
|
|
|
case DPP_NETROLE_AP:
|
|
|
|
return "ap";
|
2019-12-12 01:28:39 +01:00
|
|
|
case DPP_NETROLE_CONFIGURATOR:
|
|
|
|
return "configurator";
|
2019-06-17 15:41:20 +02:00
|
|
|
default:
|
|
|
|
return "??";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-02 18:43:10 +02:00
|
|
|
static struct wpabuf *
|
|
|
|
dpp_build_conf_obj_dpp(struct dpp_authentication *auth,
|
|
|
|
struct dpp_configuration *conf)
|
|
|
|
{
|
|
|
|
struct wpabuf *buf = NULL;
|
|
|
|
char *signed_conn = NULL;
|
|
|
|
size_t tailroom;
|
|
|
|
const struct dpp_curve_params *curve;
|
|
|
|
struct wpabuf *dppcon = NULL;
|
|
|
|
size_t extra_len = 1000;
|
|
|
|
int incl_legacy;
|
|
|
|
enum dpp_akm akm;
|
|
|
|
const char *akm_str;
|
|
|
|
|
|
|
|
if (!auth->conf) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"DPP: No configurator specified - cannot generate DPP config object");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
curve = auth->conf->curve;
|
|
|
|
|
2019-03-16 16:17:46 +01:00
|
|
|
akm = conf->akm;
|
|
|
|
if (dpp_akm_ver2(akm) && auth->peer_version < 2) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Convert DPP+legacy credential to DPP-only for peer that does not support version 2");
|
|
|
|
akm = DPP_AKM_DPP;
|
|
|
|
}
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (auth->groups_override)
|
|
|
|
extra_len += os_strlen(auth->groups_override);
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2018-08-10 09:03:14 +02:00
|
|
|
if (conf->group_id)
|
|
|
|
extra_len += os_strlen(conf->group_id);
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
/* Connector (JSON dppCon object) */
|
|
|
|
dppcon = wpabuf_alloc(extra_len + 2 * auth->curve->prime_len * 4 / 3);
|
|
|
|
if (!dppcon)
|
|
|
|
goto fail;
|
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
2017-08-22 22:46:27 +02:00
|
|
|
if (auth->groups_override) {
|
2017-06-15 20:18:15 +02:00
|
|
|
wpabuf_put_u8(dppcon, '{');
|
|
|
|
if (auth->groups_override) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: TESTING - groups override: '%s'",
|
|
|
|
auth->groups_override);
|
|
|
|
wpabuf_put_str(dppcon, "\"groups\":");
|
|
|
|
wpabuf_put_str(dppcon, auth->groups_override);
|
2019-11-27 15:07:49 +01:00
|
|
|
json_value_sep(dppcon);
|
2017-06-15 20:18:15 +02:00
|
|
|
}
|
|
|
|
goto skip_groups;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
2019-11-27 15:07:49 +01:00
|
|
|
json_start_object(dppcon, NULL);
|
|
|
|
json_start_array(dppcon, "groups");
|
|
|
|
json_start_object(dppcon, NULL);
|
|
|
|
json_add_string(dppcon, "groupId",
|
|
|
|
conf->group_id ? conf->group_id : "*");
|
|
|
|
json_value_sep(dppcon);
|
|
|
|
json_add_string(dppcon, "netRole", dpp_netrole_str(conf->netrole));
|
|
|
|
json_end_object(dppcon);
|
|
|
|
json_end_array(dppcon);
|
|
|
|
json_value_sep(dppcon);
|
2017-06-15 20:18:15 +02:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
skip_groups:
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
2020-05-10 11:55:43 +02:00
|
|
|
if (!auth->peer_protocol_key ||
|
|
|
|
dpp_build_jwk(dppcon, "netAccessKey", auth->peer_protocol_key, NULL,
|
2017-06-15 20:18:15 +02:00
|
|
|
auth->curve) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Failed to build netAccessKey JWK");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (conf->netaccesskey_expiry) {
|
|
|
|
struct os_tm tm;
|
2019-11-27 15:07:49 +01:00
|
|
|
char expiry[30];
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
if (os_gmtime(conf->netaccesskey_expiry, &tm) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Failed to generate expiry string");
|
|
|
|
goto fail;
|
|
|
|
}
|
2019-11-27 15:07:49 +01:00
|
|
|
os_snprintf(expiry, sizeof(expiry),
|
|
|
|
"%04u-%02u-%02uT%02u:%02u:%02uZ",
|
|
|
|
tm.year, tm.month, tm.day,
|
|
|
|
tm.hour, tm.min, tm.sec);
|
|
|
|
json_value_sep(dppcon);
|
|
|
|
json_add_string(dppcon, "expiry", expiry);
|
|
|
|
}
|
|
|
|
json_end_object(dppcon);
|
2017-06-15 20:18:15 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: dppCon: %s",
|
|
|
|
(const char *) wpabuf_head(dppcon));
|
|
|
|
|
2020-05-02 18:43:10 +02:00
|
|
|
signed_conn = dpp_sign_connector(auth->conf, dppcon);
|
|
|
|
if (!signed_conn)
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
|
2019-03-16 16:17:46 +01:00
|
|
|
incl_legacy = dpp_akm_psk(akm) || dpp_akm_sae(akm);
|
2017-06-15 20:18:15 +02:00
|
|
|
tailroom = 1000;
|
|
|
|
tailroom += 2 * curve->prime_len * 4 / 3 + os_strlen(auth->conf->kid);
|
2020-05-02 18:43:10 +02:00
|
|
|
tailroom += os_strlen(signed_conn);
|
2019-03-16 16:17:46 +01:00
|
|
|
if (incl_legacy)
|
|
|
|
tailroom += 1000;
|
2017-06-15 20:18:15 +02:00
|
|
|
buf = dpp_build_conf_start(auth, conf, tailroom);
|
|
|
|
if (!buf)
|
2017-11-29 12:03:48 +01:00
|
|
|
goto fail;
|
2017-06-15 20:18:15 +02:00
|
|
|
|
2019-09-27 01:30:33 +02:00
|
|
|
if (auth->akm_use_selector && dpp_akm_ver2(akm))
|
|
|
|
akm_str = dpp_akm_selector_str(akm);
|
|
|
|
else
|
|
|
|
akm_str = dpp_akm_str(akm);
|
2019-11-27 15:07:49 +01:00
|
|
|
json_start_object(buf, "cred");
|
|
|
|
json_add_string(buf, "akm", akm_str);
|
|
|
|
json_value_sep(buf);
|
2019-03-16 16:17:46 +01:00
|
|
|
if (incl_legacy) {
|
|
|
|
dpp_build_legacy_cred_params(buf, conf);
|
2019-11-27 15:07:49 +01:00
|
|
|
json_value_sep(buf);
|
2019-03-16 16:17:46 +01:00
|
|
|
}
|
|
|
|
wpabuf_put_str(buf, "\"signedConnector\":\"");
|
2020-05-02 18:43:10 +02:00
|
|
|
wpabuf_put_str(buf, signed_conn);
|
2019-11-27 15:07:49 +01:00
|
|
|
wpabuf_put_str(buf, "\"");
|
|
|
|
json_value_sep(buf);
|
2017-06-15 20:18:15 +02:00
|
|
|
if (dpp_build_jwk(buf, "csign", auth->conf->csign, auth->conf->kid,
|
|
|
|
curve) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Failed to build csign JWK");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2019-11-27 15:07:49 +01:00
|
|
|
json_end_object(buf);
|
|
|
|
json_end_object(buf);
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
wpa_hexdump_ascii_key(MSG_DEBUG, "DPP: Configuration Object",
|
|
|
|
wpabuf_head(buf), wpabuf_len(buf));
|
|
|
|
|
|
|
|
out:
|
2020-05-02 18:43:10 +02:00
|
|
|
os_free(signed_conn);
|
2017-06-15 20:18:15 +02:00
|
|
|
wpabuf_free(dppcon);
|
|
|
|
return buf;
|
|
|
|
fail:
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Failed to build configuration object");
|
|
|
|
wpabuf_free(buf);
|
|
|
|
buf = NULL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct wpabuf *
|
2019-06-17 15:41:20 +02:00
|
|
|
dpp_build_conf_obj_legacy(struct dpp_authentication *auth,
|
2017-06-15 20:18:15 +02:00
|
|
|
struct dpp_configuration *conf)
|
|
|
|
{
|
|
|
|
struct wpabuf *buf;
|
2019-09-27 01:30:33 +02:00
|
|
|
const char *akm_str;
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
buf = dpp_build_conf_start(auth, conf, 1000);
|
|
|
|
if (!buf)
|
|
|
|
return NULL;
|
|
|
|
|
2019-09-27 01:30:33 +02:00
|
|
|
if (auth->akm_use_selector && dpp_akm_ver2(conf->akm))
|
|
|
|
akm_str = dpp_akm_selector_str(conf->akm);
|
|
|
|
else
|
|
|
|
akm_str = dpp_akm_str(conf->akm);
|
2019-11-27 15:07:49 +01:00
|
|
|
json_start_object(buf, "cred");
|
|
|
|
json_add_string(buf, "akm", akm_str);
|
|
|
|
json_value_sep(buf);
|
2019-03-16 16:17:46 +01:00
|
|
|
dpp_build_legacy_cred_params(buf, conf);
|
2019-11-27 15:07:49 +01:00
|
|
|
json_end_object(buf);
|
|
|
|
json_end_object(buf);
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
wpa_hexdump_ascii_key(MSG_DEBUG, "DPP: Configuration Object (legacy)",
|
|
|
|
wpabuf_head(buf), wpabuf_len(buf));
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct wpabuf *
|
2019-12-12 01:17:31 +01:00
|
|
|
dpp_build_conf_obj(struct dpp_authentication *auth, enum dpp_netrole netrole,
|
|
|
|
int idx)
|
2017-06-15 20:18:15 +02:00
|
|
|
{
|
2019-12-12 01:17:31 +01:00
|
|
|
struct dpp_configuration *conf = NULL;
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (auth->config_obj_override) {
|
2019-09-25 02:49:41 +02:00
|
|
|
if (idx != 0)
|
|
|
|
return NULL;
|
2017-06-15 20:18:15 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Testing - Config Object override");
|
|
|
|
return wpabuf_alloc_copy(auth->config_obj_override,
|
|
|
|
os_strlen(auth->config_obj_override));
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2019-12-12 01:17:31 +01:00
|
|
|
if (idx == 0) {
|
|
|
|
if (netrole == DPP_NETROLE_STA)
|
|
|
|
conf = auth->conf_sta;
|
|
|
|
else if (netrole == DPP_NETROLE_AP)
|
|
|
|
conf = auth->conf_ap;
|
|
|
|
} else if (idx == 1) {
|
|
|
|
if (netrole == DPP_NETROLE_STA)
|
|
|
|
conf = auth->conf2_sta;
|
|
|
|
else if (netrole == DPP_NETROLE_AP)
|
|
|
|
conf = auth->conf2_ap;
|
|
|
|
}
|
2017-06-15 20:18:15 +02:00
|
|
|
if (!conf) {
|
2019-10-11 12:04:42 +02:00
|
|
|
if (idx == 0)
|
2019-09-25 02:49:41 +02:00
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No configuration available for Enrollee(%s) - reject configuration request",
|
2019-12-12 01:17:31 +01:00
|
|
|
dpp_netrole_str(netrole));
|
2017-06-15 20:18:15 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-04-02 14:35:56 +02:00
|
|
|
if (dpp_akm_dpp(conf->akm) || (auth->peer_version >= 2 && auth->conf))
|
2019-06-17 15:41:20 +02:00
|
|
|
return dpp_build_conf_obj_dpp(auth, conf);
|
|
|
|
return dpp_build_conf_obj_legacy(auth, conf);
|
2017-06-15 20:18:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct wpabuf *
|
|
|
|
dpp_build_conf_resp(struct dpp_authentication *auth, const u8 *e_nonce,
|
2019-12-12 01:17:31 +01:00
|
|
|
u16 e_nonce_len, enum dpp_netrole netrole)
|
2017-06-15 20:18:15 +02:00
|
|
|
{
|
2019-12-12 01:28:39 +01:00
|
|
|
struct wpabuf *conf = NULL, *conf2 = NULL, *env_data = NULL;
|
2017-10-22 10:15:21 +02:00
|
|
|
size_t clear_len, attr_len;
|
2017-06-15 20:18:15 +02:00
|
|
|
struct wpabuf *clear = NULL, *msg = NULL;
|
|
|
|
u8 *wrapped;
|
|
|
|
const u8 *addr[1];
|
|
|
|
size_t len[1];
|
|
|
|
enum dpp_status_error status;
|
|
|
|
|
2019-12-12 01:28:39 +01:00
|
|
|
if (netrole == DPP_NETROLE_CONFIGURATOR) {
|
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
env_data = dpp_build_enveloped_data(auth);
|
|
|
|
#endif /* CONFIG_DPP2 */
|
|
|
|
} else {
|
|
|
|
conf = dpp_build_conf_obj(auth, netrole, 0);
|
|
|
|
if (conf) {
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG,
|
|
|
|
"DPP: configurationObject JSON",
|
|
|
|
wpabuf_head(conf), wpabuf_len(conf));
|
|
|
|
conf2 = dpp_build_conf_obj(auth, netrole, 1);
|
|
|
|
}
|
2017-06-15 20:18:15 +02:00
|
|
|
}
|
2019-12-12 01:28:39 +01:00
|
|
|
status = (conf || env_data) ? DPP_STATUS_OK :
|
|
|
|
DPP_STATUS_CONFIGURE_FAILURE;
|
2019-03-14 16:05:02 +01:00
|
|
|
auth->conf_resp_status = status;
|
2017-06-15 20:18:15 +02:00
|
|
|
|
2019-09-15 15:19:45 +02:00
|
|
|
/* { E-nonce, configurationObject[, sendConnStatus]}ke */
|
2017-06-15 20:18:15 +02:00
|
|
|
clear_len = 4 + e_nonce_len;
|
|
|
|
if (conf)
|
|
|
|
clear_len += 4 + wpabuf_len(conf);
|
2019-09-25 02:49:41 +02:00
|
|
|
if (conf2)
|
|
|
|
clear_len += 4 + wpabuf_len(conf2);
|
2019-12-12 01:28:39 +01:00
|
|
|
if (env_data)
|
|
|
|
clear_len += 4 + wpabuf_len(env_data);
|
2019-12-12 01:17:31 +01:00
|
|
|
if (auth->peer_version >= 2 && auth->send_conn_status &&
|
|
|
|
netrole == DPP_NETROLE_STA)
|
2019-09-15 15:19:45 +02:00
|
|
|
clear_len += 4;
|
2017-06-15 20:18:15 +02:00
|
|
|
clear = wpabuf_alloc(clear_len);
|
2017-10-22 10:15:21 +02:00
|
|
|
attr_len = 4 + 1 + 4 + clear_len + AES_BLOCK_SIZE;
|
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_CONF_RESP)
|
2017-11-19 11:32:00 +01:00
|
|
|
attr_len += 5;
|
2017-10-22 10:15:21 +02:00
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
msg = wpabuf_alloc(attr_len);
|
2017-06-15 20:18:15 +02:00
|
|
|
if (!clear || !msg)
|
|
|
|
goto fail;
|
|
|
|
|
2017-11-03 19:39:00 +01:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (dpp_test == DPP_TEST_NO_E_NONCE_CONF_RESP) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - no E-nonce");
|
|
|
|
goto skip_e_nonce;
|
|
|
|
}
|
2017-11-03 20:11:00 +01:00
|
|
|
if (dpp_test == DPP_TEST_E_NONCE_MISMATCH_CONF_RESP) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - E-nonce mismatch");
|
|
|
|
wpabuf_put_le16(clear, DPP_ATTR_ENROLLEE_NONCE);
|
|
|
|
wpabuf_put_le16(clear, e_nonce_len);
|
|
|
|
wpabuf_put_data(clear, e_nonce, e_nonce_len - 1);
|
|
|
|
wpabuf_put_u8(clear, e_nonce[e_nonce_len - 1] ^ 0x01);
|
|
|
|
goto skip_e_nonce;
|
|
|
|
}
|
2017-11-03 19:39:00 +01:00
|
|
|
if (dpp_test == DPP_TEST_NO_WRAPPED_DATA_CONF_RESP) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - no Wrapped Data");
|
|
|
|
goto skip_wrapped_data;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
/* E-nonce */
|
|
|
|
wpabuf_put_le16(clear, DPP_ATTR_ENROLLEE_NONCE);
|
|
|
|
wpabuf_put_le16(clear, e_nonce_len);
|
|
|
|
wpabuf_put_data(clear, e_nonce, e_nonce_len);
|
|
|
|
|
2017-11-03 19:39:00 +01:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
skip_e_nonce:
|
|
|
|
if (dpp_test == DPP_TEST_NO_CONFIG_OBJ_CONF_RESP) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - Config Object");
|
|
|
|
goto skip_config_obj;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
if (conf) {
|
|
|
|
wpabuf_put_le16(clear, DPP_ATTR_CONFIG_OBJ);
|
|
|
|
wpabuf_put_le16(clear, wpabuf_len(conf));
|
|
|
|
wpabuf_put_buf(clear, conf);
|
|
|
|
}
|
2019-09-25 02:49:41 +02:00
|
|
|
if (auth->peer_version >= 2 && conf2) {
|
|
|
|
wpabuf_put_le16(clear, DPP_ATTR_CONFIG_OBJ);
|
|
|
|
wpabuf_put_le16(clear, wpabuf_len(conf2));
|
|
|
|
wpabuf_put_buf(clear, conf2);
|
|
|
|
} else if (conf2) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Second Config Object available, but peer does not support more than one");
|
|
|
|
}
|
2019-12-12 01:28:39 +01:00
|
|
|
if (env_data) {
|
|
|
|
wpabuf_put_le16(clear, DPP_ATTR_ENVELOPED_DATA);
|
|
|
|
wpabuf_put_le16(clear, wpabuf_len(env_data));
|
|
|
|
wpabuf_put_buf(clear, env_data);
|
|
|
|
}
|
2017-06-15 20:18:15 +02:00
|
|
|
|
2019-12-12 01:17:31 +01:00
|
|
|
if (auth->peer_version >= 2 && auth->send_conn_status &&
|
|
|
|
netrole == DPP_NETROLE_STA) {
|
2019-09-15 15:19:45 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: sendConnStatus");
|
|
|
|
wpabuf_put_le16(clear, DPP_ATTR_SEND_CONN_STATUS);
|
|
|
|
wpabuf_put_le16(clear, 0);
|
|
|
|
}
|
|
|
|
|
2017-11-03 19:39:00 +01:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
skip_config_obj:
|
|
|
|
if (dpp_test == DPP_TEST_NO_STATUS_CONF_RESP) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - Status");
|
|
|
|
goto skip_status;
|
|
|
|
}
|
2017-11-03 20:11:00 +01:00
|
|
|
if (dpp_test == DPP_TEST_INVALID_STATUS_CONF_RESP) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - invalid Status");
|
|
|
|
status = 255;
|
|
|
|
}
|
2017-11-03 19:39:00 +01:00
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
/* DPP Status */
|
2017-11-19 11:27:14 +01:00
|
|
|
dpp_build_attr_status(msg, status);
|
2017-06-15 20:18:15 +02:00
|
|
|
|
2017-11-03 19:39:00 +01:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
skip_status:
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
addr[0] = wpabuf_head(msg);
|
|
|
|
len[0] = wpabuf_len(msg);
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD", addr[0], len[0]);
|
|
|
|
|
|
|
|
wpabuf_put_le16(msg, DPP_ATTR_WRAPPED_DATA);
|
|
|
|
wpabuf_put_le16(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
|
|
|
|
wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
|
|
|
|
|
|
|
|
wpa_hexdump_buf(MSG_DEBUG, "DPP: AES-SIV cleartext", clear);
|
|
|
|
if (aes_siv_encrypt(auth->ke, auth->curve->hash_len,
|
|
|
|
wpabuf_head(clear), wpabuf_len(clear),
|
|
|
|
1, addr, len, wrapped) < 0)
|
|
|
|
goto fail;
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
|
|
|
|
wrapped, wpabuf_len(clear) + AES_BLOCK_SIZE);
|
|
|
|
|
2017-10-22 10:15:21 +02:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (dpp_test == DPP_TEST_AFTER_WRAPPED_DATA_CONF_RESP) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: TESTING - attr after Wrapped Data");
|
2017-11-19 11:32:00 +01:00
|
|
|
dpp_build_attr_status(msg, DPP_STATUS_OK);
|
2017-10-22 10:15:21 +02:00
|
|
|
}
|
2017-11-03 19:39:00 +01:00
|
|
|
skip_wrapped_data:
|
2017-10-22 10:15:21 +02:00
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
wpa_hexdump_buf(MSG_DEBUG,
|
|
|
|
"DPP: Configuration Response attributes", msg);
|
2017-11-03 19:39:00 +01:00
|
|
|
out:
|
2019-12-12 01:28:39 +01:00
|
|
|
wpabuf_clear_free(conf);
|
|
|
|
wpabuf_clear_free(conf2);
|
|
|
|
wpabuf_clear_free(env_data);
|
|
|
|
wpabuf_clear_free(clear);
|
2017-11-03 19:39:00 +01:00
|
|
|
|
|
|
|
return msg;
|
|
|
|
fail:
|
2017-06-15 20:18:15 +02:00
|
|
|
wpabuf_free(msg);
|
2017-11-03 19:39:00 +01:00
|
|
|
msg = NULL;
|
|
|
|
goto out;
|
2017-06-15 20:18:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct wpabuf *
|
|
|
|
dpp_conf_req_rx(struct dpp_authentication *auth, const u8 *attr_start,
|
|
|
|
size_t attr_len)
|
|
|
|
{
|
|
|
|
const u8 *wrapped_data, *e_nonce, *config_attr;
|
|
|
|
u16 wrapped_data_len, e_nonce_len, config_attr_len;
|
|
|
|
u8 *unwrapped = NULL;
|
|
|
|
size_t unwrapped_len = 0;
|
|
|
|
struct wpabuf *resp = NULL;
|
|
|
|
struct json_token *root = NULL, *token;
|
2019-12-12 01:17:31 +01:00
|
|
|
enum dpp_netrole netrole;
|
2017-06-15 20:18:15 +02:00
|
|
|
|
2017-12-02 00:04:42 +01:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (dpp_test == DPP_TEST_STOP_AT_CONF_REQ) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"DPP: TESTING - stop at Config Request");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
if (dpp_check_attrs(attr_start, attr_len) < 0) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "Invalid attribute in config request");
|
2017-06-15 20:18:15 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
wrapped_data = dpp_get_attr(attr_start, attr_len, DPP_ATTR_WRAPPED_DATA,
|
|
|
|
&wrapped_data_len);
|
|
|
|
if (!wrapped_data || wrapped_data_len < AES_BLOCK_SIZE) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing or invalid required Wrapped Data attribute");
|
2017-06-15 20:18:15 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
|
|
|
|
wrapped_data, wrapped_data_len);
|
|
|
|
unwrapped_len = wrapped_data_len - AES_BLOCK_SIZE;
|
|
|
|
unwrapped = os_malloc(unwrapped_len);
|
|
|
|
if (!unwrapped)
|
|
|
|
return NULL;
|
|
|
|
if (aes_siv_decrypt(auth->ke, auth->curve->hash_len,
|
|
|
|
wrapped_data, wrapped_data_len,
|
|
|
|
0, NULL, NULL, unwrapped) < 0) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "AES-SIV decryption failed");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV cleartext",
|
|
|
|
unwrapped, unwrapped_len);
|
|
|
|
|
|
|
|
if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "Invalid attribute in unwrapped data");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
e_nonce = dpp_get_attr(unwrapped, unwrapped_len,
|
|
|
|
DPP_ATTR_ENROLLEE_NONCE,
|
|
|
|
&e_nonce_len);
|
|
|
|
if (!e_nonce || e_nonce_len != auth->curve->nonce_len) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing or invalid Enrollee Nonce attribute");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: Enrollee Nonce", e_nonce, e_nonce_len);
|
2019-03-14 16:05:02 +01:00
|
|
|
os_memcpy(auth->e_nonce, e_nonce, e_nonce_len);
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
config_attr = dpp_get_attr(unwrapped, unwrapped_len,
|
|
|
|
DPP_ATTR_CONFIG_ATTR_OBJ,
|
|
|
|
&config_attr_len);
|
|
|
|
if (!config_attr) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing or invalid Config Attributes attribute");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, "DPP: Config Attributes",
|
|
|
|
config_attr, config_attr_len);
|
|
|
|
|
|
|
|
root = json_parse((const char *) config_attr, config_attr_len);
|
|
|
|
if (!root) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "Could not parse Config Attributes");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
token = json_get_member(root, "name");
|
|
|
|
if (!token || token->type != JSON_STRING) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "No Config Attributes - name");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Enrollee name = '%s'", token->string);
|
|
|
|
|
|
|
|
token = json_get_member(root, "wi-fi_tech");
|
|
|
|
if (!token || token->type != JSON_STRING) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "No Config Attributes - wi-fi_tech");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: wi-fi_tech = '%s'", token->string);
|
|
|
|
if (os_strcmp(token->string, "infra") != 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Unsupported wi-fi_tech '%s'",
|
|
|
|
token->string);
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "Unsupported wi-fi_tech");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
token = json_get_member(root, "netRole");
|
|
|
|
if (!token || token->type != JSON_STRING) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "No Config Attributes - netRole");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: netRole = '%s'", token->string);
|
|
|
|
if (os_strcmp(token->string, "sta") == 0) {
|
2019-12-12 01:17:31 +01:00
|
|
|
netrole = DPP_NETROLE_STA;
|
2017-06-15 20:18:15 +02:00
|
|
|
} else if (os_strcmp(token->string, "ap") == 0) {
|
2019-12-12 01:17:31 +01:00
|
|
|
netrole = DPP_NETROLE_AP;
|
2019-12-12 01:28:39 +01:00
|
|
|
} else if (os_strcmp(token->string, "configurator") == 0) {
|
|
|
|
netrole = DPP_NETROLE_CONFIGURATOR;
|
2017-06-15 20:18:15 +02:00
|
|
|
} else {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Unsupported netRole '%s'",
|
|
|
|
token->string);
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "Unsupported netRole");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2019-09-17 12:36:22 +02:00
|
|
|
token = json_get_member(root, "mudurl");
|
2020-05-04 14:31:14 +02:00
|
|
|
if (token && token->type == JSON_STRING) {
|
2019-09-17 12:36:22 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: mudurl = '%s'", token->string);
|
2020-05-04 14:31:14 +02:00
|
|
|
wpa_msg(auth->msg_ctx, MSG_INFO, DPP_EVENT_MUD_URL "%s",
|
|
|
|
token->string);
|
|
|
|
}
|
2019-09-17 12:36:22 +02:00
|
|
|
|
2019-09-18 23:12:27 +02:00
|
|
|
token = json_get_member(root, "bandSupport");
|
|
|
|
if (token && token->type == JSON_ARRAY) {
|
2020-05-04 14:31:14 +02:00
|
|
|
int *opclass = NULL;
|
|
|
|
char txt[200], *pos, *end;
|
|
|
|
int i, res;
|
|
|
|
|
2019-09-18 23:12:27 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: bandSupport");
|
|
|
|
token = token->child;
|
|
|
|
while (token) {
|
2020-05-04 14:31:14 +02:00
|
|
|
if (token->type != JSON_NUMBER) {
|
2019-09-18 23:12:27 +02:00
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Invalid bandSupport array member type");
|
2020-05-04 14:31:14 +02:00
|
|
|
} else {
|
2019-09-18 23:12:27 +02:00
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Supported global operating class: %d",
|
|
|
|
token->number);
|
2020-05-04 14:31:14 +02:00
|
|
|
int_array_add_unique(&opclass, token->number);
|
|
|
|
}
|
2019-09-18 23:12:27 +02:00
|
|
|
token = token->sibling;
|
|
|
|
}
|
2020-05-04 14:31:14 +02:00
|
|
|
|
|
|
|
txt[0] = '\0';
|
|
|
|
pos = txt;
|
|
|
|
end = txt + sizeof(txt);
|
|
|
|
for (i = 0; opclass && opclass[i]; i++) {
|
|
|
|
res = os_snprintf(pos, end - pos, "%s%d",
|
|
|
|
pos == txt ? "" : ",", opclass[i]);
|
|
|
|
if (os_snprintf_error(end - pos, res)) {
|
|
|
|
*pos = '\0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pos += res;
|
|
|
|
}
|
|
|
|
os_free(opclass);
|
|
|
|
wpa_msg(auth->msg_ctx, MSG_INFO, DPP_EVENT_BAND_SUPPORT "%s",
|
|
|
|
txt);
|
2019-09-18 23:12:27 +02:00
|
|
|
}
|
|
|
|
|
2019-12-12 01:17:31 +01:00
|
|
|
resp = dpp_build_conf_resp(auth, e_nonce, e_nonce_len, netrole);
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
fail:
|
|
|
|
json_free(root);
|
|
|
|
os_free(unwrapped);
|
|
|
|
return resp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-27 00:08:56 +02:00
|
|
|
static int dpp_parse_cred_legacy(struct dpp_config_obj *conf,
|
2017-06-15 20:18:15 +02:00
|
|
|
struct json_token *cred)
|
|
|
|
{
|
|
|
|
struct json_token *pass, *psk_hex;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Legacy akm=psk credential");
|
|
|
|
|
|
|
|
pass = json_get_member(cred, "pass");
|
|
|
|
psk_hex = json_get_member(cred, "psk_hex");
|
|
|
|
|
|
|
|
if (pass && pass->type == JSON_STRING) {
|
2017-06-21 17:01:51 +02:00
|
|
|
size_t len = os_strlen(pass->string);
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
wpa_hexdump_ascii_key(MSG_DEBUG, "DPP: Legacy passphrase",
|
2017-06-21 17:01:51 +02:00
|
|
|
pass->string, len);
|
|
|
|
if (len < 8 || len > 63)
|
|
|
|
return -1;
|
2019-09-27 00:08:56 +02:00
|
|
|
os_strlcpy(conf->passphrase, pass->string,
|
|
|
|
sizeof(conf->passphrase));
|
2017-06-15 20:18:15 +02:00
|
|
|
} else if (psk_hex && psk_hex->type == JSON_STRING) {
|
2019-09-27 00:08:56 +02:00
|
|
|
if (dpp_akm_sae(conf->akm) && !dpp_akm_psk(conf->akm)) {
|
2017-11-22 20:04:41 +01:00
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Unexpected psk_hex with akm=sae");
|
|
|
|
return -1;
|
|
|
|
}
|
2017-06-21 17:01:51 +02:00
|
|
|
if (os_strlen(psk_hex->string) != PMK_LEN * 2 ||
|
2019-09-27 00:08:56 +02:00
|
|
|
hexstr2bin(psk_hex->string, conf->psk, PMK_LEN) < 0) {
|
2017-06-15 20:18:15 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Invalid psk_hex encoding");
|
|
|
|
return -1;
|
|
|
|
}
|
2017-06-21 17:01:51 +02:00
|
|
|
wpa_hexdump_key(MSG_DEBUG, "DPP: Legacy PSK",
|
2019-09-27 00:08:56 +02:00
|
|
|
conf->psk, PMK_LEN);
|
|
|
|
conf->psk_set = 1;
|
2017-06-15 20:18:15 +02:00
|
|
|
} else {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No pass or psk_hex strings found");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2019-09-27 00:08:56 +02:00
|
|
|
if (dpp_akm_sae(conf->akm) && !conf->passphrase[0]) {
|
2017-11-22 20:04:41 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No pass for sae found");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-09 15:30:09 +02:00
|
|
|
EVP_PKEY * dpp_parse_jwk(struct json_token *jwk,
|
|
|
|
const struct dpp_curve_params **key_curve)
|
2017-06-15 20:18:15 +02:00
|
|
|
{
|
|
|
|
struct json_token *token;
|
|
|
|
const struct dpp_curve_params *curve;
|
|
|
|
struct wpabuf *x = NULL, *y = NULL;
|
|
|
|
EC_GROUP *group;
|
|
|
|
EVP_PKEY *pkey = NULL;
|
|
|
|
|
|
|
|
token = json_get_member(jwk, "kty");
|
|
|
|
if (!token || token->type != JSON_STRING) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No kty in JWK");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (os_strcmp(token->string, "EC") != 0) {
|
2018-11-25 16:31:49 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Unexpected JWK kty '%s'",
|
2017-06-15 20:18:15 +02:00
|
|
|
token->string);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
token = json_get_member(jwk, "crv");
|
|
|
|
if (!token || token->type != JSON_STRING) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No crv in JWK");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
curve = dpp_get_curve_jwk_crv(token->string);
|
|
|
|
if (!curve) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Unsupported JWK crv '%s'",
|
|
|
|
token->string);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
x = json_get_member_base64url(jwk, "x");
|
|
|
|
if (!x) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No x in JWK");
|
|
|
|
goto fail;
|
|
|
|
}
|
2017-07-02 11:36:01 +02:00
|
|
|
wpa_hexdump_buf(MSG_DEBUG, "DPP: JWK x", x);
|
2017-06-15 20:18:15 +02:00
|
|
|
if (wpabuf_len(x) != curve->prime_len) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
2017-07-02 11:36:01 +02:00
|
|
|
"DPP: Unexpected JWK x length %u (expected %u for curve %s)",
|
2017-06-15 20:18:15 +02:00
|
|
|
(unsigned int) wpabuf_len(x),
|
|
|
|
(unsigned int) curve->prime_len, curve->name);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
y = json_get_member_base64url(jwk, "y");
|
|
|
|
if (!y) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No y in JWK");
|
|
|
|
goto fail;
|
|
|
|
}
|
2017-07-02 11:36:01 +02:00
|
|
|
wpa_hexdump_buf(MSG_DEBUG, "DPP: JWK y", y);
|
2017-06-15 20:18:15 +02:00
|
|
|
if (wpabuf_len(y) != curve->prime_len) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
2017-07-02 11:36:01 +02:00
|
|
|
"DPP: Unexpected JWK y length %u (expected %u for curve %s)",
|
2017-06-15 20:18:15 +02:00
|
|
|
(unsigned int) wpabuf_len(y),
|
|
|
|
(unsigned int) curve->prime_len, curve->name);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
group = EC_GROUP_new_by_curve_name(OBJ_txt2nid(curve->name));
|
|
|
|
if (!group) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Could not prepare group for JWK");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
pkey = dpp_set_pubkey_point_group(group, wpabuf_head(x), wpabuf_head(y),
|
|
|
|
wpabuf_len(x));
|
2019-05-08 17:32:29 +02:00
|
|
|
EC_GROUP_free(group);
|
2017-06-15 20:18:15 +02:00
|
|
|
*key_curve = curve;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
wpabuf_free(x);
|
|
|
|
wpabuf_free(y);
|
|
|
|
|
|
|
|
return pkey;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_key_expired(const char *timestamp, os_time_t *expiry)
|
|
|
|
{
|
|
|
|
struct os_time now;
|
|
|
|
unsigned int year, month, day, hour, min, sec;
|
|
|
|
os_time_t utime;
|
|
|
|
const char *pos;
|
|
|
|
|
|
|
|
/* ISO 8601 date and time:
|
|
|
|
* <date>T<time>
|
|
|
|
* YYYY-MM-DDTHH:MM:SSZ
|
|
|
|
* YYYY-MM-DDTHH:MM:SS+03:00
|
|
|
|
*/
|
|
|
|
if (os_strlen(timestamp) < 19) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Too short timestamp - assume expired key");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (sscanf(timestamp, "%04u-%02u-%02uT%02u:%02u:%02u",
|
|
|
|
&year, &month, &day, &hour, &min, &sec) != 6) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Failed to parse expiration day - assume expired key");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (os_mktime(year, month, day, hour, min, sec, &utime) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Invalid date/time information - assume expired key");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pos = timestamp + 19;
|
|
|
|
if (*pos == 'Z' || *pos == '\0') {
|
|
|
|
/* In UTC - no need to adjust */
|
|
|
|
} else if (*pos == '-' || *pos == '+') {
|
|
|
|
int items;
|
|
|
|
|
|
|
|
/* Adjust local time to UTC */
|
|
|
|
items = sscanf(pos + 1, "%02u:%02u", &hour, &min);
|
|
|
|
if (items < 1) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Invalid time zone designator (%s) - assume expired key",
|
|
|
|
pos);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (*pos == '-')
|
|
|
|
utime += 3600 * hour;
|
|
|
|
if (*pos == '+')
|
|
|
|
utime -= 3600 * hour;
|
|
|
|
if (items > 1) {
|
|
|
|
if (*pos == '-')
|
|
|
|
utime += 60 * min;
|
|
|
|
if (*pos == '+')
|
|
|
|
utime -= 60 * min;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Invalid time zone designator (%s) - assume expired key",
|
|
|
|
pos);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (expiry)
|
|
|
|
*expiry = utime;
|
|
|
|
|
|
|
|
if (os_get_time(&now) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Cannot get current time - assume expired key");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (now.sec > utime) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Key has expired (%lu < %lu)",
|
|
|
|
utime, now.sec);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_parse_connector(struct dpp_authentication *auth,
|
2019-09-27 00:08:56 +02:00
|
|
|
struct dpp_config_obj *conf,
|
2017-06-15 20:18:15 +02:00
|
|
|
const unsigned char *payload,
|
|
|
|
u16 payload_len)
|
|
|
|
{
|
2017-08-22 22:46:27 +02:00
|
|
|
struct json_token *root, *groups, *netkey, *token;
|
2017-06-15 20:18:15 +02:00
|
|
|
int ret = -1;
|
|
|
|
EVP_PKEY *key = NULL;
|
|
|
|
const struct dpp_curve_params *curve;
|
|
|
|
unsigned int rules = 0;
|
|
|
|
|
|
|
|
root = json_parse((const char *) payload, payload_len);
|
|
|
|
if (!root) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: JSON parsing of connector failed");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
groups = json_get_member(root, "groups");
|
|
|
|
if (!groups || groups->type != JSON_ARRAY) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No groups array found");
|
|
|
|
goto skip_groups;
|
|
|
|
}
|
|
|
|
for (token = groups->child; token; token = token->sibling) {
|
|
|
|
struct json_token *id, *role;
|
|
|
|
|
|
|
|
id = json_get_member(token, "groupId");
|
|
|
|
if (!id || id->type != JSON_STRING) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Missing groupId string");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
role = json_get_member(token, "netRole");
|
|
|
|
if (!role || role->type != JSON_STRING) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Missing netRole string");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: connector group: groupId='%s' netRole='%s'",
|
|
|
|
id->string, role->string);
|
|
|
|
rules++;
|
|
|
|
}
|
|
|
|
skip_groups:
|
|
|
|
|
|
|
|
if (!rules) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
2017-08-22 22:46:27 +02:00
|
|
|
"DPP: Connector includes no groups");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
token = json_get_member(root, "expiry");
|
|
|
|
if (!token || token->type != JSON_STRING) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No expiry string found - connector does not expire");
|
|
|
|
} else {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: expiry = %s", token->string);
|
|
|
|
if (dpp_key_expired(token->string,
|
|
|
|
&auth->net_access_key_expiry)) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Connector (netAccessKey) has expired");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
netkey = json_get_member(root, "netAccessKey");
|
|
|
|
if (!netkey || netkey->type != JSON_OBJECT) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No netAccessKey object found");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
key = dpp_parse_jwk(netkey, &curve);
|
|
|
|
if (!key)
|
|
|
|
goto fail;
|
|
|
|
dpp_debug_print_key("DPP: Received netAccessKey", key);
|
|
|
|
|
|
|
|
if (EVP_PKEY_cmp(key, auth->own_protocol_key) != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: netAccessKey in connector does not match own protocol key");
|
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (auth->ignore_netaccesskey_mismatch) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: TESTING - skip netAccessKey mismatch");
|
|
|
|
} else {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
#else /* CONFIG_TESTING_OPTIONS */
|
|
|
|
goto fail;
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
fail:
|
|
|
|
EVP_PKEY_free(key);
|
|
|
|
json_free(root);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-27 00:08:56 +02:00
|
|
|
static void dpp_copy_csign(struct dpp_config_obj *conf, EVP_PKEY *csign)
|
2017-06-15 20:18:15 +02:00
|
|
|
{
|
|
|
|
unsigned char *der = NULL;
|
|
|
|
int der_len;
|
|
|
|
|
|
|
|
der_len = i2d_PUBKEY(csign, &der);
|
|
|
|
if (der_len <= 0)
|
|
|
|
return;
|
2019-09-27 00:08:56 +02:00
|
|
|
wpabuf_free(conf->c_sign_key);
|
|
|
|
conf->c_sign_key = wpabuf_alloc_copy(der, der_len);
|
2017-06-15 20:18:15 +02:00
|
|
|
OPENSSL_free(der);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-27 00:08:56 +02:00
|
|
|
static void dpp_copy_netaccesskey(struct dpp_authentication *auth,
|
|
|
|
struct dpp_config_obj *conf)
|
2017-06-15 20:18:15 +02:00
|
|
|
{
|
|
|
|
unsigned char *der = NULL;
|
|
|
|
int der_len;
|
|
|
|
EC_KEY *eckey;
|
2020-05-10 22:46:41 +02:00
|
|
|
EVP_PKEY *own_key;
|
2017-06-15 20:18:15 +02:00
|
|
|
|
2020-05-10 22:46:41 +02:00
|
|
|
own_key = auth->own_protocol_key;
|
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
if (auth->reconfig_connector_key == DPP_CONFIG_REUSEKEY &&
|
|
|
|
auth->reconfig_old_protocol_key)
|
|
|
|
own_key = auth->reconfig_old_protocol_key;
|
|
|
|
#endif /* CONFIG_DPP2 */
|
|
|
|
eckey = EVP_PKEY_get1_EC_KEY(own_key);
|
2020-05-10 15:25:42 +02:00
|
|
|
if (!eckey)
|
|
|
|
return;
|
|
|
|
|
|
|
|
der_len = i2d_ECPrivateKey(eckey, &der);
|
|
|
|
if (der_len <= 0) {
|
|
|
|
EC_KEY_free(eckey);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wpabuf_free(auth->net_access_key);
|
|
|
|
auth->net_access_key = wpabuf_alloc_copy(der, der_len);
|
2017-06-15 20:18:15 +02:00
|
|
|
OPENSSL_free(der);
|
2020-05-10 15:25:42 +02:00
|
|
|
EC_KEY_free(eckey);
|
2017-06-15 20:18:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_parse_cred_dpp(struct dpp_authentication *auth,
|
2019-09-27 00:08:56 +02:00
|
|
|
struct dpp_config_obj *conf,
|
2017-06-15 20:18:15 +02:00
|
|
|
struct json_token *cred)
|
|
|
|
{
|
|
|
|
struct dpp_signed_connector_info info;
|
|
|
|
struct json_token *token, *csign;
|
|
|
|
int ret = -1;
|
|
|
|
EVP_PKEY *csign_pub = NULL;
|
|
|
|
const struct dpp_curve_params *key_curve = NULL;
|
|
|
|
const char *signed_connector;
|
|
|
|
|
|
|
|
os_memset(&info, 0, sizeof(info));
|
|
|
|
|
2019-09-27 00:08:56 +02:00
|
|
|
if (dpp_akm_psk(conf->akm) || dpp_akm_sae(conf->akm)) {
|
2019-03-16 16:17:46 +01:00
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Legacy credential included in Connector credential");
|
2019-09-27 00:08:56 +02:00
|
|
|
if (dpp_parse_cred_legacy(conf, cred) < 0)
|
2019-03-16 16:17:46 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Connector credential");
|
|
|
|
|
|
|
|
csign = json_get_member(cred, "csign");
|
|
|
|
if (!csign || csign->type != JSON_OBJECT) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No csign JWK in JSON");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
csign_pub = dpp_parse_jwk(csign, &key_curve);
|
|
|
|
if (!csign_pub) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Failed to parse csign JWK");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
dpp_debug_print_key("DPP: Received C-sign-key", csign_pub);
|
|
|
|
|
|
|
|
token = json_get_member(cred, "signedConnector");
|
|
|
|
if (!token || token->type != JSON_STRING) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No signedConnector string found");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, "DPP: signedConnector",
|
|
|
|
token->string, os_strlen(token->string));
|
|
|
|
signed_connector = token->string;
|
|
|
|
|
|
|
|
if (os_strchr(signed_connector, '"') ||
|
|
|
|
os_strchr(signed_connector, '\n')) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Unexpected character in signedConnector");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dpp_process_signed_connector(&info, csign_pub,
|
2017-10-29 10:43:41 +01:00
|
|
|
signed_connector) != DPP_STATUS_OK)
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
|
2019-09-27 00:08:56 +02:00
|
|
|
if (dpp_parse_connector(auth, conf,
|
|
|
|
info.payload, info.payload_len) < 0) {
|
2017-06-15 20:18:15 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Failed to parse connector");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2019-09-27 00:08:56 +02:00
|
|
|
os_free(conf->connector);
|
|
|
|
conf->connector = os_strdup(signed_connector);
|
2017-06-15 20:18:15 +02:00
|
|
|
|
2019-09-27 00:08:56 +02:00
|
|
|
dpp_copy_csign(conf, csign_pub);
|
2020-04-03 11:43:48 +02:00
|
|
|
if (dpp_akm_dpp(conf->akm) || auth->peer_version >= 2)
|
2020-04-02 14:35:56 +02:00
|
|
|
dpp_copy_netaccesskey(auth, conf);
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
fail:
|
|
|
|
EVP_PKEY_free(csign_pub);
|
|
|
|
os_free(info.payload);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-22 20:04:41 +01:00
|
|
|
const char * dpp_akm_str(enum dpp_akm akm)
|
|
|
|
{
|
|
|
|
switch (akm) {
|
|
|
|
case DPP_AKM_DPP:
|
|
|
|
return "dpp";
|
|
|
|
case DPP_AKM_PSK:
|
|
|
|
return "psk";
|
|
|
|
case DPP_AKM_SAE:
|
|
|
|
return "sae";
|
|
|
|
case DPP_AKM_PSK_SAE:
|
|
|
|
return "psk+sae";
|
2019-03-16 16:17:46 +01:00
|
|
|
case DPP_AKM_SAE_DPP:
|
|
|
|
return "dpp+sae";
|
|
|
|
case DPP_AKM_PSK_SAE_DPP:
|
|
|
|
return "dpp+psk+sae";
|
2017-11-22 20:04:41 +01:00
|
|
|
default:
|
|
|
|
return "??";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-27 01:30:33 +02:00
|
|
|
const char * dpp_akm_selector_str(enum dpp_akm akm)
|
|
|
|
{
|
|
|
|
switch (akm) {
|
|
|
|
case DPP_AKM_DPP:
|
|
|
|
return "506F9A02";
|
|
|
|
case DPP_AKM_PSK:
|
|
|
|
return "000FAC02+000FAC06";
|
|
|
|
case DPP_AKM_SAE:
|
|
|
|
return "000FAC08";
|
|
|
|
case DPP_AKM_PSK_SAE:
|
|
|
|
return "000FAC02+000FAC06+000FAC08";
|
|
|
|
case DPP_AKM_SAE_DPP:
|
|
|
|
return "506F9A02+000FAC08";
|
|
|
|
case DPP_AKM_PSK_SAE_DPP:
|
|
|
|
return "506F9A02+000FAC08+000FAC02+000FAC06";
|
|
|
|
default:
|
|
|
|
return "??";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-22 20:04:41 +01:00
|
|
|
static enum dpp_akm dpp_akm_from_str(const char *akm)
|
|
|
|
{
|
2019-09-27 02:09:09 +02:00
|
|
|
const char *pos;
|
|
|
|
int dpp = 0, psk = 0, sae = 0;
|
|
|
|
|
2017-11-22 20:04:41 +01:00
|
|
|
if (os_strcmp(akm, "psk") == 0)
|
|
|
|
return DPP_AKM_PSK;
|
|
|
|
if (os_strcmp(akm, "sae") == 0)
|
|
|
|
return DPP_AKM_SAE;
|
|
|
|
if (os_strcmp(akm, "psk+sae") == 0)
|
|
|
|
return DPP_AKM_PSK_SAE;
|
|
|
|
if (os_strcmp(akm, "dpp") == 0)
|
|
|
|
return DPP_AKM_DPP;
|
2019-03-16 16:17:46 +01:00
|
|
|
if (os_strcmp(akm, "dpp+sae") == 0)
|
|
|
|
return DPP_AKM_SAE_DPP;
|
|
|
|
if (os_strcmp(akm, "dpp+psk+sae") == 0)
|
|
|
|
return DPP_AKM_PSK_SAE_DPP;
|
2019-09-27 02:09:09 +02:00
|
|
|
|
|
|
|
pos = akm;
|
|
|
|
while (*pos) {
|
|
|
|
if (os_strlen(pos) < 8)
|
|
|
|
break;
|
|
|
|
if (os_strncasecmp(pos, "506F9A02", 8) == 0)
|
|
|
|
dpp = 1;
|
|
|
|
else if (os_strncasecmp(pos, "000FAC02", 8) == 0)
|
|
|
|
psk = 1;
|
|
|
|
else if (os_strncasecmp(pos, "000FAC06", 8) == 0)
|
|
|
|
psk = 1;
|
|
|
|
else if (os_strncasecmp(pos, "000FAC08", 8) == 0)
|
|
|
|
sae = 1;
|
|
|
|
pos += 8;
|
|
|
|
if (*pos != '+')
|
|
|
|
break;
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dpp && psk && sae)
|
|
|
|
return DPP_AKM_PSK_SAE_DPP;
|
|
|
|
if (dpp && sae)
|
|
|
|
return DPP_AKM_SAE_DPP;
|
|
|
|
if (dpp)
|
|
|
|
return DPP_AKM_DPP;
|
|
|
|
if (psk && sae)
|
|
|
|
return DPP_AKM_PSK_SAE;
|
|
|
|
if (sae)
|
|
|
|
return DPP_AKM_SAE;
|
|
|
|
if (psk)
|
|
|
|
return DPP_AKM_PSK;
|
|
|
|
|
2017-11-22 20:04:41 +01:00
|
|
|
return DPP_AKM_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
static int dpp_parse_conf_obj(struct dpp_authentication *auth,
|
|
|
|
const u8 *conf_obj, u16 conf_obj_len)
|
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
struct json_token *root, *token, *discovery, *cred;
|
2019-09-27 00:08:56 +02:00
|
|
|
struct dpp_config_obj *conf;
|
2019-11-28 14:20:32 +01:00
|
|
|
struct wpabuf *ssid64 = NULL;
|
2020-04-02 14:35:56 +02:00
|
|
|
int legacy;
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
root = json_parse((const char *) conf_obj, conf_obj_len);
|
|
|
|
if (!root)
|
|
|
|
return -1;
|
|
|
|
if (root->type != JSON_OBJECT) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "JSON root is not an object");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
token = json_get_member(root, "wi-fi_tech");
|
|
|
|
if (!token || token->type != JSON_STRING) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "No wi-fi_tech string value found");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (os_strcmp(token->string, "infra") != 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Unsupported wi-fi_tech value: '%s'",
|
|
|
|
token->string);
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "Unsupported wi-fi_tech value");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
discovery = json_get_member(root, "discovery");
|
|
|
|
if (!discovery || discovery->type != JSON_OBJECT) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "No discovery object in JSON");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2019-11-28 14:20:32 +01:00
|
|
|
ssid64 = json_get_member_base64url(discovery, "ssid64");
|
|
|
|
if (ssid64) {
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, "DPP: discovery::ssid64",
|
|
|
|
wpabuf_head(ssid64), wpabuf_len(ssid64));
|
|
|
|
if (wpabuf_len(ssid64) > SSID_MAX_LEN) {
|
|
|
|
dpp_auth_fail(auth, "Too long discovery::ssid64 value");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
token = json_get_member(discovery, "ssid");
|
|
|
|
if (!token || token->type != JSON_STRING) {
|
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"No discovery::ssid string value found");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, "DPP: discovery::ssid",
|
|
|
|
token->string, os_strlen(token->string));
|
|
|
|
if (os_strlen(token->string) > SSID_MAX_LEN) {
|
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Too long discovery::ssid string value");
|
|
|
|
goto fail;
|
|
|
|
}
|
2017-06-15 20:18:15 +02:00
|
|
|
}
|
2019-09-27 00:08:56 +02:00
|
|
|
|
|
|
|
if (auth->num_conf_obj == DPP_MAX_CONF_OBJ) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No room for this many Config Objects - ignore this one");
|
2019-11-28 14:20:32 +01:00
|
|
|
ret = 0;
|
|
|
|
goto fail;
|
2019-09-27 00:08:56 +02:00
|
|
|
}
|
|
|
|
conf = &auth->conf_obj[auth->num_conf_obj++];
|
|
|
|
|
2019-11-28 14:20:32 +01:00
|
|
|
if (ssid64) {
|
|
|
|
conf->ssid_len = wpabuf_len(ssid64);
|
|
|
|
os_memcpy(conf->ssid, wpabuf_head(ssid64), conf->ssid_len);
|
|
|
|
} else {
|
|
|
|
conf->ssid_len = os_strlen(token->string);
|
|
|
|
os_memcpy(conf->ssid, token->string, conf->ssid_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
token = json_get_member(discovery, "ssid_charset");
|
|
|
|
if (token && token->type == JSON_NUMBER) {
|
|
|
|
conf->ssid_charset = token->number;
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: ssid_charset=%d",
|
|
|
|
conf->ssid_charset);
|
|
|
|
}
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
cred = json_get_member(root, "cred");
|
|
|
|
if (!cred || cred->type != JSON_OBJECT) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "No cred object in JSON");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
token = json_get_member(cred, "akm");
|
|
|
|
if (!token || token->type != JSON_STRING) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "No cred::akm string value found");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
2019-09-27 00:08:56 +02:00
|
|
|
conf->akm = dpp_akm_from_str(token->string);
|
2017-11-22 20:04:41 +01:00
|
|
|
|
2020-04-02 14:35:56 +02:00
|
|
|
legacy = dpp_akm_legacy(conf->akm);
|
|
|
|
if (legacy && auth->peer_version >= 2) {
|
|
|
|
struct json_token *csign, *s_conn;
|
|
|
|
|
|
|
|
csign = json_get_member(cred, "csign");
|
|
|
|
s_conn = json_get_member(cred, "signedConnector");
|
|
|
|
if (csign && csign->type == JSON_OBJECT &&
|
|
|
|
s_conn && s_conn->type == JSON_STRING)
|
|
|
|
legacy = 0;
|
|
|
|
}
|
|
|
|
if (legacy) {
|
2019-09-27 00:08:56 +02:00
|
|
|
if (dpp_parse_cred_legacy(conf, cred) < 0)
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
2020-04-02 14:35:56 +02:00
|
|
|
} else if (dpp_akm_dpp(conf->akm) ||
|
|
|
|
(auth->peer_version >= 2 && dpp_akm_legacy(conf->akm))) {
|
2019-09-27 00:08:56 +02:00
|
|
|
if (dpp_parse_cred_dpp(auth, conf, cred) < 0)
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
} else {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Unsupported akm: %s",
|
|
|
|
token->string);
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "Unsupported akm");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: JSON parsing completed successfully");
|
|
|
|
ret = 0;
|
|
|
|
fail:
|
2019-11-28 14:20:32 +01:00
|
|
|
wpabuf_free(ssid64);
|
2017-06-15 20:18:15 +02:00
|
|
|
json_free(root);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_conf_resp_rx(struct dpp_authentication *auth,
|
|
|
|
const struct wpabuf *resp)
|
|
|
|
{
|
|
|
|
const u8 *wrapped_data, *e_nonce, *status, *conf_obj;
|
|
|
|
u16 wrapped_data_len, e_nonce_len, status_len, conf_obj_len;
|
2019-12-12 01:28:39 +01:00
|
|
|
const u8 *env_data;
|
|
|
|
u16 env_data_len;
|
2017-06-15 20:18:15 +02:00
|
|
|
const u8 *addr[1];
|
|
|
|
size_t len[1];
|
|
|
|
u8 *unwrapped = NULL;
|
|
|
|
size_t unwrapped_len = 0;
|
|
|
|
int ret = -1;
|
|
|
|
|
2019-03-14 16:05:02 +01:00
|
|
|
auth->conf_resp_status = 255;
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
if (dpp_check_attrs(wpabuf_head(resp), wpabuf_len(resp)) < 0) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "Invalid attribute in config response");
|
2017-06-15 20:18:15 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
wrapped_data = dpp_get_attr(wpabuf_head(resp), wpabuf_len(resp),
|
|
|
|
DPP_ATTR_WRAPPED_DATA,
|
|
|
|
&wrapped_data_len);
|
|
|
|
if (!wrapped_data || wrapped_data_len < AES_BLOCK_SIZE) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing or invalid required Wrapped Data attribute");
|
2017-06-15 20:18:15 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
|
|
|
|
wrapped_data, wrapped_data_len);
|
|
|
|
unwrapped_len = wrapped_data_len - AES_BLOCK_SIZE;
|
|
|
|
unwrapped = os_malloc(unwrapped_len);
|
|
|
|
if (!unwrapped)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
addr[0] = wpabuf_head(resp);
|
|
|
|
len[0] = wrapped_data - 4 - (const u8 *) wpabuf_head(resp);
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD", addr[0], len[0]);
|
|
|
|
|
|
|
|
if (aes_siv_decrypt(auth->ke, auth->curve->hash_len,
|
|
|
|
wrapped_data, wrapped_data_len,
|
|
|
|
1, addr, len, unwrapped) < 0) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "AES-SIV decryption failed");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV cleartext",
|
|
|
|
unwrapped, unwrapped_len);
|
|
|
|
|
|
|
|
if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "Invalid attribute in unwrapped data");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
e_nonce = dpp_get_attr(unwrapped, unwrapped_len,
|
|
|
|
DPP_ATTR_ENROLLEE_NONCE,
|
|
|
|
&e_nonce_len);
|
|
|
|
if (!e_nonce || e_nonce_len != auth->curve->nonce_len) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing or invalid Enrollee Nonce attribute");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: Enrollee Nonce", e_nonce, e_nonce_len);
|
|
|
|
if (os_memcmp(e_nonce, auth->e_nonce, e_nonce_len) != 0) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "Enrollee Nonce mismatch");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = dpp_get_attr(wpabuf_head(resp), wpabuf_len(resp),
|
|
|
|
DPP_ATTR_STATUS, &status_len);
|
|
|
|
if (!status || status_len < 1) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing or invalid required DPP Status attribute");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
2019-03-14 16:05:02 +01:00
|
|
|
auth->conf_resp_status = status[0];
|
2017-06-15 20:18:15 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Status %u", status[0]);
|
|
|
|
if (status[0] != DPP_STATUS_OK) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth, "Configurator rejected configuration");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2019-12-12 01:28:39 +01:00
|
|
|
env_data = dpp_get_attr(unwrapped, unwrapped_len,
|
|
|
|
DPP_ATTR_ENVELOPED_DATA, &env_data_len);
|
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
if (env_data &&
|
|
|
|
dpp_conf_resp_env_data(auth, env_data, env_data_len) < 0)
|
|
|
|
goto fail;
|
|
|
|
#endif /* CONFIG_DPP2 */
|
|
|
|
|
2019-09-27 00:08:56 +02:00
|
|
|
conf_obj = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_CONFIG_OBJ,
|
|
|
|
&conf_obj_len);
|
2019-12-12 01:28:39 +01:00
|
|
|
if (!conf_obj && !env_data) {
|
2017-11-03 19:58:53 +01:00
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing required Configuration Object attribute");
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
2019-09-27 00:08:56 +02:00
|
|
|
while (conf_obj) {
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, "DPP: configurationObject JSON",
|
|
|
|
conf_obj, conf_obj_len);
|
|
|
|
if (dpp_parse_conf_obj(auth, conf_obj, conf_obj_len) < 0)
|
|
|
|
goto fail;
|
|
|
|
conf_obj = dpp_get_attr_next(conf_obj, unwrapped, unwrapped_len,
|
|
|
|
DPP_ATTR_CONFIG_OBJ,
|
|
|
|
&conf_obj_len);
|
|
|
|
}
|
2017-06-15 20:18:15 +02:00
|
|
|
|
2019-09-15 15:19:45 +02:00
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
status = dpp_get_attr(unwrapped, unwrapped_len,
|
|
|
|
DPP_ATTR_SEND_CONN_STATUS, &status_len);
|
|
|
|
if (status) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Configurator requested connection status result");
|
|
|
|
auth->conn_status_requested = 1;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_DPP2 */
|
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
os_free(unwrapped);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-14 16:05:02 +01:00
|
|
|
#ifdef CONFIG_DPP2
|
2019-09-15 15:40:23 +02:00
|
|
|
|
2019-03-14 16:05:02 +01:00
|
|
|
enum dpp_status_error dpp_conf_result_rx(struct dpp_authentication *auth,
|
|
|
|
const u8 *hdr,
|
|
|
|
const u8 *attr_start, size_t attr_len)
|
|
|
|
{
|
|
|
|
const u8 *wrapped_data, *status, *e_nonce;
|
|
|
|
u16 wrapped_data_len, status_len, e_nonce_len;
|
|
|
|
const u8 *addr[2];
|
|
|
|
size_t len[2];
|
|
|
|
u8 *unwrapped = NULL;
|
|
|
|
size_t unwrapped_len = 0;
|
|
|
|
enum dpp_status_error ret = 256;
|
|
|
|
|
|
|
|
wrapped_data = dpp_get_attr(attr_start, attr_len, DPP_ATTR_WRAPPED_DATA,
|
|
|
|
&wrapped_data_len);
|
|
|
|
if (!wrapped_data || wrapped_data_len < AES_BLOCK_SIZE) {
|
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing or invalid required Wrapped Data attribute");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: Wrapped data",
|
|
|
|
wrapped_data, wrapped_data_len);
|
|
|
|
|
|
|
|
attr_len = wrapped_data - 4 - attr_start;
|
|
|
|
|
|
|
|
addr[0] = hdr;
|
|
|
|
len[0] = DPP_HDR_LEN;
|
|
|
|
addr[1] = attr_start;
|
|
|
|
len[1] = attr_len;
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
|
|
|
|
wrapped_data, wrapped_data_len);
|
|
|
|
unwrapped_len = wrapped_data_len - AES_BLOCK_SIZE;
|
|
|
|
unwrapped = os_malloc(unwrapped_len);
|
|
|
|
if (!unwrapped)
|
|
|
|
goto fail;
|
|
|
|
if (aes_siv_decrypt(auth->ke, auth->curve->hash_len,
|
|
|
|
wrapped_data, wrapped_data_len,
|
|
|
|
2, addr, len, unwrapped) < 0) {
|
|
|
|
dpp_auth_fail(auth, "AES-SIV decryption failed");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV cleartext",
|
|
|
|
unwrapped, unwrapped_len);
|
|
|
|
|
|
|
|
if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) {
|
|
|
|
dpp_auth_fail(auth, "Invalid attribute in unwrapped data");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
e_nonce = dpp_get_attr(unwrapped, unwrapped_len,
|
|
|
|
DPP_ATTR_ENROLLEE_NONCE,
|
|
|
|
&e_nonce_len);
|
|
|
|
if (!e_nonce || e_nonce_len != auth->curve->nonce_len) {
|
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing or invalid Enrollee Nonce attribute");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: Enrollee Nonce", e_nonce, e_nonce_len);
|
|
|
|
if (os_memcmp(e_nonce, auth->e_nonce, e_nonce_len) != 0) {
|
|
|
|
dpp_auth_fail(auth, "Enrollee Nonce mismatch");
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: Expected Enrollee Nonce",
|
|
|
|
auth->e_nonce, e_nonce_len);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_STATUS,
|
|
|
|
&status_len);
|
|
|
|
if (!status || status_len < 1) {
|
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing or invalid required DPP Status attribute");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Status %u", status[0]);
|
|
|
|
ret = status[0];
|
|
|
|
|
|
|
|
fail:
|
|
|
|
bin_clear_free(unwrapped, unwrapped_len);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct wpabuf * dpp_build_conf_result(struct dpp_authentication *auth,
|
|
|
|
enum dpp_status_error status)
|
|
|
|
{
|
|
|
|
struct wpabuf *msg, *clear;
|
|
|
|
size_t nonce_len, clear_len, attr_len;
|
|
|
|
const u8 *addr[2];
|
|
|
|
size_t len[2];
|
|
|
|
u8 *wrapped;
|
|
|
|
|
|
|
|
nonce_len = auth->curve->nonce_len;
|
|
|
|
clear_len = 5 + 4 + nonce_len;
|
|
|
|
attr_len = 4 + clear_len + AES_BLOCK_SIZE;
|
|
|
|
clear = wpabuf_alloc(clear_len);
|
|
|
|
msg = dpp_alloc_msg(DPP_PA_CONFIGURATION_RESULT, attr_len);
|
|
|
|
if (!clear || !msg)
|
2019-09-15 15:19:45 +02:00
|
|
|
goto fail;
|
2019-03-14 16:05:02 +01:00
|
|
|
|
|
|
|
/* DPP Status */
|
|
|
|
dpp_build_attr_status(clear, status);
|
|
|
|
|
|
|
|
/* E-nonce */
|
|
|
|
wpabuf_put_le16(clear, DPP_ATTR_ENROLLEE_NONCE);
|
|
|
|
wpabuf_put_le16(clear, nonce_len);
|
|
|
|
wpabuf_put_data(clear, auth->e_nonce, nonce_len);
|
|
|
|
|
|
|
|
/* OUI, OUI type, Crypto Suite, DPP frame type */
|
|
|
|
addr[0] = wpabuf_head_u8(msg) + 2;
|
|
|
|
len[0] = 3 + 1 + 1 + 1;
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
|
|
|
|
|
|
|
|
/* Attributes before Wrapped Data (none) */
|
|
|
|
addr[1] = wpabuf_put(msg, 0);
|
|
|
|
len[1] = 0;
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
|
|
|
|
|
|
|
|
/* Wrapped Data */
|
|
|
|
wpabuf_put_le16(msg, DPP_ATTR_WRAPPED_DATA);
|
|
|
|
wpabuf_put_le16(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
|
|
|
|
wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
|
|
|
|
|
|
|
|
wpa_hexdump_buf(MSG_DEBUG, "DPP: AES-SIV cleartext", clear);
|
|
|
|
if (aes_siv_encrypt(auth->ke, auth->curve->hash_len,
|
|
|
|
wpabuf_head(clear), wpabuf_len(clear),
|
|
|
|
2, addr, len, wrapped) < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
wpa_hexdump_buf(MSG_DEBUG, "DPP: Configuration Result attributes", msg);
|
|
|
|
wpabuf_free(clear);
|
|
|
|
return msg;
|
|
|
|
fail:
|
|
|
|
wpabuf_free(clear);
|
|
|
|
wpabuf_free(msg);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-09-15 15:19:45 +02:00
|
|
|
|
|
|
|
static int valid_channel_list(const char *val)
|
|
|
|
{
|
|
|
|
while (*val) {
|
|
|
|
if (!((*val >= '0' && *val <= '9') ||
|
|
|
|
*val == '/' || *val == ','))
|
|
|
|
return 0;
|
|
|
|
val++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
enum dpp_status_error dpp_conn_status_result_rx(struct dpp_authentication *auth,
|
|
|
|
const u8 *hdr,
|
|
|
|
const u8 *attr_start,
|
|
|
|
size_t attr_len,
|
|
|
|
u8 *ssid, size_t *ssid_len,
|
|
|
|
char **channel_list)
|
|
|
|
{
|
|
|
|
const u8 *wrapped_data, *status, *e_nonce;
|
|
|
|
u16 wrapped_data_len, status_len, e_nonce_len;
|
|
|
|
const u8 *addr[2];
|
|
|
|
size_t len[2];
|
|
|
|
u8 *unwrapped = NULL;
|
|
|
|
size_t unwrapped_len = 0;
|
|
|
|
enum dpp_status_error ret = 256;
|
|
|
|
struct json_token *root = NULL, *token;
|
2019-11-27 14:19:08 +01:00
|
|
|
struct wpabuf *ssid64;
|
2019-09-15 15:19:45 +02:00
|
|
|
|
|
|
|
*ssid_len = 0;
|
|
|
|
*channel_list = NULL;
|
|
|
|
|
|
|
|
wrapped_data = dpp_get_attr(attr_start, attr_len, DPP_ATTR_WRAPPED_DATA,
|
|
|
|
&wrapped_data_len);
|
|
|
|
if (!wrapped_data || wrapped_data_len < AES_BLOCK_SIZE) {
|
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing or invalid required Wrapped Data attribute");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: Wrapped data",
|
|
|
|
wrapped_data, wrapped_data_len);
|
|
|
|
|
|
|
|
attr_len = wrapped_data - 4 - attr_start;
|
|
|
|
|
|
|
|
addr[0] = hdr;
|
|
|
|
len[0] = DPP_HDR_LEN;
|
|
|
|
addr[1] = attr_start;
|
|
|
|
len[1] = attr_len;
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV ciphertext",
|
|
|
|
wrapped_data, wrapped_data_len);
|
|
|
|
unwrapped_len = wrapped_data_len - AES_BLOCK_SIZE;
|
|
|
|
unwrapped = os_malloc(unwrapped_len);
|
|
|
|
if (!unwrapped)
|
|
|
|
goto fail;
|
|
|
|
if (aes_siv_decrypt(auth->ke, auth->curve->hash_len,
|
|
|
|
wrapped_data, wrapped_data_len,
|
|
|
|
2, addr, len, unwrapped) < 0) {
|
|
|
|
dpp_auth_fail(auth, "AES-SIV decryption failed");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: AES-SIV cleartext",
|
|
|
|
unwrapped, unwrapped_len);
|
|
|
|
|
|
|
|
if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) {
|
|
|
|
dpp_auth_fail(auth, "Invalid attribute in unwrapped data");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
e_nonce = dpp_get_attr(unwrapped, unwrapped_len,
|
|
|
|
DPP_ATTR_ENROLLEE_NONCE,
|
|
|
|
&e_nonce_len);
|
|
|
|
if (!e_nonce || e_nonce_len != auth->curve->nonce_len) {
|
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing or invalid Enrollee Nonce attribute");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: Enrollee Nonce", e_nonce, e_nonce_len);
|
|
|
|
if (os_memcmp(e_nonce, auth->e_nonce, e_nonce_len) != 0) {
|
|
|
|
dpp_auth_fail(auth, "Enrollee Nonce mismatch");
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DPP: Expected Enrollee Nonce",
|
|
|
|
auth->e_nonce, e_nonce_len);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_CONN_STATUS,
|
|
|
|
&status_len);
|
|
|
|
if (!status) {
|
|
|
|
dpp_auth_fail(auth,
|
|
|
|
"Missing required DPP Connection Status attribute");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, "DPP: connStatus JSON",
|
|
|
|
status, status_len);
|
|
|
|
|
|
|
|
root = json_parse((const char *) status, status_len);
|
|
|
|
if (!root) {
|
|
|
|
dpp_auth_fail(auth, "Could not parse connStatus");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2019-11-27 14:19:08 +01:00
|
|
|
ssid64 = json_get_member_base64url(root, "ssid64");
|
|
|
|
if (ssid64 && wpabuf_len(ssid64) <= SSID_MAX_LEN) {
|
|
|
|
*ssid_len = wpabuf_len(ssid64);
|
|
|
|
os_memcpy(ssid, wpabuf_head(ssid64), *ssid_len);
|
2019-09-15 15:19:45 +02:00
|
|
|
}
|
2019-11-27 14:19:08 +01:00
|
|
|
wpabuf_free(ssid64);
|
2019-09-15 15:19:45 +02:00
|
|
|
|
|
|
|
token = json_get_member(root, "channelList");
|
|
|
|
if (token && token->type == JSON_STRING &&
|
|
|
|
valid_channel_list(token->string))
|
|
|
|
*channel_list = os_strdup(token->string);
|
|
|
|
|
|
|
|
token = json_get_member(root, "result");
|
|
|
|
if (!token || token->type != JSON_NUMBER) {
|
|
|
|
dpp_auth_fail(auth, "No connStatus - result");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: result %d", token->number);
|
|
|
|
ret = token->number;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
json_free(root);
|
|
|
|
bin_clear_free(unwrapped, unwrapped_len);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-09-15 15:19:45 +02:00
|
|
|
|
2020-05-09 15:40:44 +02:00
|
|
|
struct wpabuf * dpp_build_conn_status(enum dpp_status_error result,
|
|
|
|
const u8 *ssid, size_t ssid_len,
|
|
|
|
const char *channel_list)
|
2019-09-15 15:19:45 +02:00
|
|
|
{
|
2020-05-09 15:40:44 +02:00
|
|
|
struct wpabuf *json;
|
2019-09-15 15:19:45 +02:00
|
|
|
|
|
|
|
json = wpabuf_alloc(1000);
|
|
|
|
if (!json)
|
|
|
|
return NULL;
|
2019-11-27 15:07:49 +01:00
|
|
|
json_start_object(json, NULL);
|
|
|
|
json_add_int(json, "result", result);
|
2019-09-15 15:19:45 +02:00
|
|
|
if (ssid) {
|
2019-11-27 15:07:49 +01:00
|
|
|
json_value_sep(json);
|
2020-05-09 15:40:44 +02:00
|
|
|
if (json_add_base64url(json, "ssid64", ssid, ssid_len) < 0) {
|
|
|
|
wpabuf_free(json);
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-27 15:07:49 +01:00
|
|
|
}
|
|
|
|
if (channel_list) {
|
|
|
|
json_value_sep(json);
|
|
|
|
json_add_string(json, "channelList", channel_list);
|
|
|
|
}
|
|
|
|
json_end_object(json);
|
2019-09-15 15:19:45 +02:00
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, "DPP: connStatus JSON",
|
|
|
|
wpabuf_head(json), wpabuf_len(json));
|
|
|
|
|
2020-05-09 15:40:44 +02:00
|
|
|
return json;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct wpabuf * dpp_build_conn_status_result(struct dpp_authentication *auth,
|
|
|
|
enum dpp_status_error result,
|
|
|
|
const u8 *ssid, size_t ssid_len,
|
|
|
|
const char *channel_list)
|
|
|
|
{
|
|
|
|
struct wpabuf *msg = NULL, *clear = NULL, *json;
|
|
|
|
size_t nonce_len, clear_len, attr_len;
|
|
|
|
const u8 *addr[2];
|
|
|
|
size_t len[2];
|
|
|
|
u8 *wrapped;
|
|
|
|
|
|
|
|
json = dpp_build_conn_status(result, ssid, ssid_len, channel_list);
|
|
|
|
if (!json)
|
|
|
|
return NULL;
|
|
|
|
|
2019-09-15 15:19:45 +02:00
|
|
|
nonce_len = auth->curve->nonce_len;
|
|
|
|
clear_len = 5 + 4 + nonce_len + 4 + wpabuf_len(json);
|
|
|
|
attr_len = 4 + clear_len + AES_BLOCK_SIZE;
|
|
|
|
clear = wpabuf_alloc(clear_len);
|
|
|
|
msg = dpp_alloc_msg(DPP_PA_CONNECTION_STATUS_RESULT, attr_len);
|
|
|
|
if (!clear || !msg)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* E-nonce */
|
|
|
|
wpabuf_put_le16(clear, DPP_ATTR_ENROLLEE_NONCE);
|
|
|
|
wpabuf_put_le16(clear, nonce_len);
|
|
|
|
wpabuf_put_data(clear, auth->e_nonce, nonce_len);
|
|
|
|
|
|
|
|
/* DPP Connection Status */
|
|
|
|
wpabuf_put_le16(clear, DPP_ATTR_CONN_STATUS);
|
|
|
|
wpabuf_put_le16(clear, wpabuf_len(json));
|
|
|
|
wpabuf_put_buf(clear, json);
|
|
|
|
|
|
|
|
/* OUI, OUI type, Crypto Suite, DPP frame type */
|
|
|
|
addr[0] = wpabuf_head_u8(msg) + 2;
|
|
|
|
len[0] = 3 + 1 + 1 + 1;
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[0]", addr[0], len[0]);
|
|
|
|
|
|
|
|
/* Attributes before Wrapped Data (none) */
|
|
|
|
addr[1] = wpabuf_put(msg, 0);
|
|
|
|
len[1] = 0;
|
|
|
|
wpa_hexdump(MSG_DEBUG, "DDP: AES-SIV AD[1]", addr[1], len[1]);
|
|
|
|
|
|
|
|
/* Wrapped Data */
|
|
|
|
wpabuf_put_le16(msg, DPP_ATTR_WRAPPED_DATA);
|
|
|
|
wpabuf_put_le16(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
|
|
|
|
wrapped = wpabuf_put(msg, wpabuf_len(clear) + AES_BLOCK_SIZE);
|
|
|
|
|
|
|
|
wpa_hexdump_buf(MSG_DEBUG, "DPP: AES-SIV cleartext", clear);
|
|
|
|
if (aes_siv_encrypt(auth->ke, auth->curve->hash_len,
|
|
|
|
wpabuf_head(clear), wpabuf_len(clear),
|
|
|
|
2, addr, len, wrapped) < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
wpa_hexdump_buf(MSG_DEBUG, "DPP: Connection Status Result attributes",
|
|
|
|
msg);
|
|
|
|
wpabuf_free(json);
|
|
|
|
wpabuf_free(clear);
|
|
|
|
return msg;
|
|
|
|
fail:
|
|
|
|
wpabuf_free(json);
|
|
|
|
wpabuf_free(clear);
|
|
|
|
wpabuf_free(msg);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-09-15 15:40:23 +02:00
|
|
|
#endif /* CONFIG_DPP2 */
|
|
|
|
|
2019-03-14 16:05:02 +01:00
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
void dpp_configurator_free(struct dpp_configurator *conf)
|
|
|
|
{
|
|
|
|
if (!conf)
|
|
|
|
return;
|
|
|
|
EVP_PKEY_free(conf->csign);
|
|
|
|
os_free(conf->kid);
|
2020-05-02 19:10:12 +02:00
|
|
|
os_free(conf->connector);
|
|
|
|
EVP_PKEY_free(conf->connector_key);
|
2017-06-15 20:18:15 +02:00
|
|
|
os_free(conf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-16 11:04:21 +01:00
|
|
|
int dpp_configurator_get_key(const struct dpp_configurator *conf, char *buf,
|
|
|
|
size_t buflen)
|
|
|
|
{
|
|
|
|
EC_KEY *eckey;
|
|
|
|
int key_len, ret = -1;
|
|
|
|
unsigned char *key = NULL;
|
|
|
|
|
|
|
|
if (!conf->csign)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
eckey = EVP_PKEY_get1_EC_KEY(conf->csign);
|
|
|
|
if (!eckey)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
key_len = i2d_ECPrivateKey(eckey, &key);
|
|
|
|
if (key_len > 0)
|
|
|
|
ret = wpa_snprintf_hex(buf, buflen, key, key_len);
|
|
|
|
|
|
|
|
EC_KEY_free(eckey);
|
|
|
|
OPENSSL_free(key);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-30 22:56:31 +01:00
|
|
|
static int dpp_configurator_gen_kid(struct dpp_configurator *conf)
|
2017-06-15 20:18:15 +02:00
|
|
|
{
|
|
|
|
struct wpabuf *csign_pub = NULL;
|
|
|
|
const u8 *addr[1];
|
|
|
|
size_t len[1];
|
2020-01-30 22:56:31 +01:00
|
|
|
int res;
|
|
|
|
|
|
|
|
csign_pub = dpp_get_pubkey_point(conf->csign, 1);
|
|
|
|
if (!csign_pub) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: Failed to extract C-sign-key");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* kid = SHA256(ANSI X9.63 uncompressed C-sign-key) */
|
|
|
|
addr[0] = wpabuf_head(csign_pub);
|
|
|
|
len[0] = wpabuf_len(csign_pub);
|
2020-05-01 23:16:05 +02:00
|
|
|
res = sha256_vector(1, addr, len, conf->kid_hash);
|
2020-01-30 22:56:31 +01:00
|
|
|
wpabuf_free(csign_pub);
|
|
|
|
if (res < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Failed to derive kid for C-sign-key");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-05-01 23:16:05 +02:00
|
|
|
conf->kid = base64_url_encode(conf->kid_hash, sizeof(conf->kid_hash),
|
|
|
|
NULL);
|
2020-01-30 22:56:31 +01:00
|
|
|
return conf->kid ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct dpp_configurator *
|
|
|
|
dpp_keygen_configurator(const char *curve, const u8 *privkey,
|
|
|
|
size_t privkey_len)
|
|
|
|
{
|
|
|
|
struct dpp_configurator *conf;
|
2017-06-15 20:18:15 +02:00
|
|
|
|
|
|
|
conf = os_zalloc(sizeof(*conf));
|
|
|
|
if (!conf)
|
|
|
|
return NULL;
|
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
conf->curve = dpp_get_curve_name(curve);
|
|
|
|
if (!conf->curve) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: Unsupported curve: %s", curve);
|
|
|
|
os_free(conf);
|
|
|
|
return NULL;
|
2017-06-15 20:18:15 +02:00
|
|
|
}
|
2020-05-10 15:25:42 +02:00
|
|
|
|
2017-06-15 20:18:15 +02:00
|
|
|
if (privkey)
|
|
|
|
conf->csign = dpp_set_keypair(&conf->curve, privkey,
|
|
|
|
privkey_len);
|
|
|
|
else
|
|
|
|
conf->csign = dpp_gen_keypair(conf->curve);
|
|
|
|
if (!conf->csign)
|
|
|
|
goto fail;
|
|
|
|
conf->own = 1;
|
|
|
|
|
2020-01-30 22:56:31 +01:00
|
|
|
if (dpp_configurator_gen_kid(conf) < 0)
|
2017-06-15 20:18:15 +02:00
|
|
|
goto fail;
|
|
|
|
return conf;
|
|
|
|
fail:
|
|
|
|
dpp_configurator_free(conf);
|
2020-01-30 22:56:31 +01:00
|
|
|
return NULL;
|
2017-06-15 20:18:15 +02:00
|
|
|
}
|
2017-06-18 19:19:57 +02:00
|
|
|
|
|
|
|
|
2017-07-04 16:48:44 +02:00
|
|
|
int dpp_configurator_own_config(struct dpp_authentication *auth,
|
2017-11-27 11:43:40 +01:00
|
|
|
const char *curve, int ap)
|
2017-07-04 16:48:44 +02:00
|
|
|
{
|
|
|
|
struct wpabuf *conf_obj;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (!auth->conf) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No configurator specified");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-05-10 15:25:42 +02:00
|
|
|
auth->curve = dpp_get_curve_name(curve);
|
|
|
|
if (!auth->curve) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: Unsupported curve: %s", curve);
|
|
|
|
return -1;
|
2017-07-04 16:48:44 +02:00
|
|
|
}
|
2020-05-10 15:25:42 +02:00
|
|
|
|
2017-07-04 16:48:44 +02:00
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Building own configuration/connector with curve %s",
|
|
|
|
auth->curve->name);
|
|
|
|
|
|
|
|
auth->own_protocol_key = dpp_gen_keypair(auth->curve);
|
|
|
|
if (!auth->own_protocol_key)
|
|
|
|
return -1;
|
2019-09-27 00:08:56 +02:00
|
|
|
dpp_copy_netaccesskey(auth, &auth->conf_obj[0]);
|
2017-07-04 16:48:44 +02:00
|
|
|
auth->peer_protocol_key = auth->own_protocol_key;
|
2019-09-27 00:08:56 +02:00
|
|
|
dpp_copy_csign(&auth->conf_obj[0], auth->conf->csign);
|
2017-07-04 16:48:44 +02:00
|
|
|
|
2019-09-25 02:49:41 +02:00
|
|
|
conf_obj = dpp_build_conf_obj(auth, ap, 0);
|
2019-12-20 20:21:25 +01:00
|
|
|
if (!conf_obj) {
|
|
|
|
wpabuf_free(auth->conf_obj[0].c_sign_key);
|
|
|
|
auth->conf_obj[0].c_sign_key = NULL;
|
2017-07-04 16:48:44 +02:00
|
|
|
goto fail;
|
2019-12-20 20:21:25 +01:00
|
|
|
}
|
2017-07-04 16:48:44 +02:00
|
|
|
ret = dpp_parse_conf_obj(auth, wpabuf_head(conf_obj),
|
|
|
|
wpabuf_len(conf_obj));
|
|
|
|
fail:
|
|
|
|
wpabuf_free(conf_obj);
|
|
|
|
auth->peer_protocol_key = NULL;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-18 19:19:57 +02:00
|
|
|
static int dpp_compatible_netrole(const char *role1, const char *role2)
|
|
|
|
{
|
|
|
|
return (os_strcmp(role1, "sta") == 0 && os_strcmp(role2, "ap") == 0) ||
|
|
|
|
(os_strcmp(role1, "ap") == 0 && os_strcmp(role2, "sta") == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_connector_compatible_group(struct json_token *root,
|
|
|
|
const char *group_id,
|
2020-05-09 15:42:37 +02:00
|
|
|
const char *net_role,
|
|
|
|
bool reconfig)
|
2017-06-18 19:19:57 +02:00
|
|
|
{
|
|
|
|
struct json_token *groups, *token;
|
|
|
|
|
|
|
|
groups = json_get_member(root, "groups");
|
|
|
|
if (!groups || groups->type != JSON_ARRAY)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (token = groups->child; token; token = token->sibling) {
|
|
|
|
struct json_token *id, *role;
|
|
|
|
|
|
|
|
id = json_get_member(token, "groupId");
|
|
|
|
if (!id || id->type != JSON_STRING)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
role = json_get_member(token, "netRole");
|
|
|
|
if (!role || role->type != JSON_STRING)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (os_strcmp(id->string, "*") != 0 &&
|
|
|
|
os_strcmp(group_id, "*") != 0 &&
|
|
|
|
os_strcmp(id->string, group_id) != 0)
|
|
|
|
continue;
|
|
|
|
|
2020-05-09 15:42:37 +02:00
|
|
|
if (reconfig && os_strcmp(net_role, "configurator") == 0)
|
|
|
|
return 1;
|
|
|
|
if (!reconfig && dpp_compatible_netrole(role->string, net_role))
|
2017-06-18 19:19:57 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-09 15:42:37 +02:00
|
|
|
int dpp_connector_match_groups(struct json_token *own_root,
|
|
|
|
struct json_token *peer_root, bool reconfig)
|
2017-06-18 19:19:57 +02:00
|
|
|
{
|
|
|
|
struct json_token *groups, *token;
|
|
|
|
|
|
|
|
groups = json_get_member(peer_root, "groups");
|
|
|
|
if (!groups || groups->type != JSON_ARRAY) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No peer groups array found");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (token = groups->child; token; token = token->sibling) {
|
|
|
|
struct json_token *id, *role;
|
|
|
|
|
|
|
|
id = json_get_member(token, "groupId");
|
|
|
|
if (!id || id->type != JSON_STRING) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Missing peer groupId string");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
role = json_get_member(token, "netRole");
|
|
|
|
if (!role || role->type != JSON_STRING) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Missing peer groups::netRole string");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: peer connector group: groupId='%s' netRole='%s'",
|
|
|
|
id->string, role->string);
|
|
|
|
if (dpp_connector_compatible_group(own_root, id->string,
|
2020-05-09 15:42:37 +02:00
|
|
|
role->string, reconfig)) {
|
2017-06-18 19:19:57 +02:00
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Compatible group/netRole in own connector");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-09 15:35:21 +02:00
|
|
|
struct json_token * dpp_parse_own_connector(const char *own_connector)
|
|
|
|
{
|
|
|
|
unsigned char *own_conn;
|
|
|
|
size_t own_conn_len;
|
|
|
|
const char *pos, *end;
|
|
|
|
struct json_token *own_root;
|
|
|
|
|
|
|
|
pos = os_strchr(own_connector, '.');
|
|
|
|
if (!pos) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Own connector is missing the first dot (.)");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
pos++;
|
|
|
|
end = os_strchr(pos, '.');
|
|
|
|
if (!end) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Own connector is missing the second dot (.)");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
own_conn = base64_url_decode(pos, end - pos, &own_conn_len);
|
|
|
|
if (!own_conn) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Failed to base64url decode own signedConnector JWS Payload");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
own_root = json_parse((const char *) own_conn, own_conn_len);
|
|
|
|
os_free(own_conn);
|
|
|
|
if (!own_root)
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Failed to parse local connector");
|
|
|
|
|
|
|
|
return own_root;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-10-29 10:43:41 +01:00
|
|
|
enum dpp_status_error
|
|
|
|
dpp_peer_intro(struct dpp_introduction *intro, const char *own_connector,
|
|
|
|
const u8 *net_access_key, size_t net_access_key_len,
|
|
|
|
const u8 *csign_key, size_t csign_key_len,
|
|
|
|
const u8 *peer_connector, size_t peer_connector_len,
|
|
|
|
os_time_t *expiry)
|
2017-06-18 19:19:57 +02:00
|
|
|
{
|
|
|
|
struct json_token *root = NULL, *netkey, *token;
|
|
|
|
struct json_token *own_root = NULL;
|
2017-10-29 10:43:41 +01:00
|
|
|
enum dpp_status_error ret = 255, res;
|
2017-06-18 19:19:57 +02:00
|
|
|
EVP_PKEY *own_key = NULL, *peer_key = NULL;
|
|
|
|
struct wpabuf *own_key_pub = NULL;
|
|
|
|
const struct dpp_curve_params *curve, *own_curve;
|
|
|
|
struct dpp_signed_connector_info info;
|
|
|
|
size_t Nx_len;
|
|
|
|
u8 Nx[DPP_MAX_SHARED_SECRET_LEN];
|
|
|
|
|
|
|
|
os_memset(intro, 0, sizeof(*intro));
|
|
|
|
os_memset(&info, 0, sizeof(info));
|
2017-07-02 11:36:41 +02:00
|
|
|
if (expiry)
|
|
|
|
*expiry = 0;
|
2017-06-18 19:19:57 +02:00
|
|
|
|
|
|
|
own_key = dpp_set_keypair(&own_curve, net_access_key,
|
|
|
|
net_access_key_len);
|
|
|
|
if (!own_key) {
|
|
|
|
wpa_printf(MSG_ERROR, "DPP: Failed to parse own netAccessKey");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2020-05-09 15:35:21 +02:00
|
|
|
own_root = dpp_parse_own_connector(own_connector);
|
|
|
|
if (!own_root)
|
2017-06-18 19:19:57 +02:00
|
|
|
goto fail;
|
|
|
|
|
2020-05-10 12:41:51 +02:00
|
|
|
res = dpp_check_signed_connector(&info, csign_key, csign_key_len,
|
|
|
|
peer_connector, peer_connector_len);
|
2017-10-29 10:43:41 +01:00
|
|
|
if (res != DPP_STATUS_OK) {
|
|
|
|
ret = res;
|
2017-06-18 19:19:57 +02:00
|
|
|
goto fail;
|
2017-10-29 10:43:41 +01:00
|
|
|
}
|
2017-06-18 19:19:57 +02:00
|
|
|
|
|
|
|
root = json_parse((const char *) info.payload, info.payload_len);
|
|
|
|
if (!root) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: JSON parsing of connector failed");
|
2017-10-29 10:43:41 +01:00
|
|
|
ret = DPP_STATUS_INVALID_CONNECTOR;
|
2017-06-18 19:19:57 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2020-05-09 15:42:37 +02:00
|
|
|
if (!dpp_connector_match_groups(own_root, root, false)) {
|
2017-06-18 19:19:57 +02:00
|
|
|
wpa_printf(MSG_DEBUG,
|
2017-08-22 22:46:27 +02:00
|
|
|
"DPP: Peer connector does not include compatible group netrole with own connector");
|
2017-10-29 10:43:41 +01:00
|
|
|
ret = DPP_STATUS_NO_MATCH;
|
2017-06-18 19:19:57 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
token = json_get_member(root, "expiry");
|
|
|
|
if (!token || token->type != JSON_STRING) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No expiry string found - connector does not expire");
|
|
|
|
} else {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: expiry = %s", token->string);
|
2017-07-02 11:36:41 +02:00
|
|
|
if (dpp_key_expired(token->string, expiry)) {
|
2017-06-18 19:19:57 +02:00
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Connector (netAccessKey) has expired");
|
2017-10-29 10:43:41 +01:00
|
|
|
ret = DPP_STATUS_INVALID_CONNECTOR;
|
2017-06-18 19:19:57 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
netkey = json_get_member(root, "netAccessKey");
|
|
|
|
if (!netkey || netkey->type != JSON_OBJECT) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No netAccessKey object found");
|
2017-10-29 10:43:41 +01:00
|
|
|
ret = DPP_STATUS_INVALID_CONNECTOR;
|
2017-06-18 19:19:57 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
peer_key = dpp_parse_jwk(netkey, &curve);
|
2017-10-29 10:43:41 +01:00
|
|
|
if (!peer_key) {
|
|
|
|
ret = DPP_STATUS_INVALID_CONNECTOR;
|
2017-06-18 19:19:57 +02:00
|
|
|
goto fail;
|
2017-10-29 10:43:41 +01:00
|
|
|
}
|
2017-06-18 19:19:57 +02:00
|
|
|
dpp_debug_print_key("DPP: Received netAccessKey", peer_key);
|
|
|
|
|
|
|
|
if (own_curve != curve) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Mismatching netAccessKey curves (%s != %s)",
|
|
|
|
own_curve->name, curve->name);
|
2017-10-29 10:43:41 +01:00
|
|
|
ret = DPP_STATUS_INVALID_CONNECTOR;
|
2017-06-18 19:19:57 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECDH: N = nk * PK */
|
2019-08-04 11:10:20 +02:00
|
|
|
if (dpp_ecdh(own_key, peer_key, Nx, &Nx_len) < 0)
|
2017-06-18 19:19:57 +02:00
|
|
|
goto fail;
|
|
|
|
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "DPP: ECDH shared secret (N.x)",
|
|
|
|
Nx, Nx_len);
|
|
|
|
|
|
|
|
/* PMK = HKDF(<>, "DPP PMK", N.x) */
|
|
|
|
if (dpp_derive_pmk(Nx, Nx_len, intro->pmk, curve->hash_len) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "DPP: Failed to derive PMK");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
intro->pmk_len = curve->hash_len;
|
|
|
|
|
|
|
|
/* PMKID = Truncate-128(H(min(NK.x, PK.x) | max(NK.x, PK.x))) */
|
|
|
|
if (dpp_derive_pmkid(curve, own_key, peer_key, intro->pmkid) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "DPP: Failed to derive PMKID");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2017-10-29 10:43:41 +01:00
|
|
|
ret = DPP_STATUS_OK;
|
2017-06-18 19:19:57 +02:00
|
|
|
fail:
|
2017-10-29 10:43:41 +01:00
|
|
|
if (ret != DPP_STATUS_OK)
|
2017-06-18 19:19:57 +02:00
|
|
|
os_memset(intro, 0, sizeof(*intro));
|
|
|
|
os_memset(Nx, 0, sizeof(Nx));
|
|
|
|
os_free(info.payload);
|
|
|
|
EVP_PKEY_free(own_key);
|
|
|
|
wpabuf_free(own_key_pub);
|
|
|
|
EVP_PKEY_free(peer_key);
|
|
|
|
json_free(root);
|
|
|
|
json_free(own_root);
|
|
|
|
return ret;
|
|
|
|
}
|
2017-07-02 11:36:23 +02:00
|
|
|
|
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
unsigned int dpp_next_id(struct dpp_global *dpp)
|
2017-07-02 11:36:23 +02:00
|
|
|
{
|
2020-05-10 15:51:46 +02:00
|
|
|
struct dpp_bootstrap_info *bi;
|
|
|
|
unsigned int max_id = 0;
|
2017-07-02 11:36:23 +02:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
dl_list_for_each(bi, &dpp->bootstrap, struct dpp_bootstrap_info, list) {
|
|
|
|
if (bi->id > max_id)
|
|
|
|
max_id = bi->id;
|
2017-11-02 22:53:55 +01:00
|
|
|
}
|
2020-05-10 15:51:46 +02:00
|
|
|
return max_id + 1;
|
|
|
|
}
|
2017-11-02 22:53:55 +01:00
|
|
|
|
2017-07-02 11:36:23 +02:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
static int dpp_bootstrap_del(struct dpp_global *dpp, unsigned int id)
|
|
|
|
{
|
|
|
|
struct dpp_bootstrap_info *bi, *tmp;
|
|
|
|
int found = 0;
|
2017-11-02 22:53:55 +01:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
if (!dpp)
|
|
|
|
return -1;
|
2017-07-02 11:36:23 +02:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
dl_list_for_each_safe(bi, tmp, &dpp->bootstrap,
|
|
|
|
struct dpp_bootstrap_info, list) {
|
|
|
|
if (id && bi->id != id)
|
|
|
|
continue;
|
|
|
|
found = 1;
|
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
if (dpp->remove_bi)
|
|
|
|
dpp->remove_bi(dpp->cb_ctx, bi);
|
|
|
|
#endif /* CONFIG_DPP2 */
|
|
|
|
dl_list_del(&bi->list);
|
|
|
|
dpp_bootstrap_info_free(bi);
|
2017-11-02 22:53:55 +01:00
|
|
|
}
|
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
if (id == 0)
|
|
|
|
return 0; /* flush succeeds regardless of entries found */
|
|
|
|
return found ? 0 : -1;
|
|
|
|
}
|
2017-07-02 11:36:23 +02:00
|
|
|
|
2017-11-02 23:42:54 +01:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
struct dpp_bootstrap_info * dpp_add_qr_code(struct dpp_global *dpp,
|
|
|
|
const char *uri)
|
|
|
|
{
|
|
|
|
struct dpp_bootstrap_info *bi;
|
2017-07-02 11:36:23 +02:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
if (!dpp)
|
|
|
|
return NULL;
|
2017-07-02 11:36:23 +02:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
bi = dpp_parse_uri(uri);
|
|
|
|
if (!bi)
|
|
|
|
return NULL;
|
2017-07-02 11:36:23 +02:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
bi->type = DPP_BOOTSTRAP_QR_CODE;
|
|
|
|
bi->id = dpp_next_id(dpp);
|
|
|
|
dl_list_add(&dpp->bootstrap, &bi->list);
|
|
|
|
return bi;
|
2017-11-02 11:21:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
struct dpp_bootstrap_info * dpp_add_nfc_uri(struct dpp_global *dpp,
|
|
|
|
const char *uri)
|
2017-07-02 11:36:23 +02:00
|
|
|
{
|
2020-05-10 15:51:46 +02:00
|
|
|
struct dpp_bootstrap_info *bi;
|
2017-07-02 11:36:23 +02:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
if (!dpp)
|
|
|
|
return NULL;
|
2017-11-23 22:47:52 +01:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
bi = dpp_parse_uri(uri);
|
|
|
|
if (!bi)
|
2017-07-02 11:36:23 +02:00
|
|
|
return NULL;
|
2020-05-10 15:51:46 +02:00
|
|
|
|
|
|
|
bi->type = DPP_BOOTSTRAP_NFC_URI;
|
|
|
|
bi->id = dpp_next_id(dpp);
|
|
|
|
dl_list_add(&dpp->bootstrap, &bi->list);
|
|
|
|
return bi;
|
2017-07-02 11:36:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
int dpp_bootstrap_gen(struct dpp_global *dpp, const char *cmd)
|
2017-11-02 20:13:43 +01:00
|
|
|
{
|
2020-05-10 15:51:46 +02:00
|
|
|
char *mac = NULL, *info = NULL, *curve = NULL;
|
|
|
|
char *key = NULL;
|
|
|
|
u8 *privkey = NULL;
|
|
|
|
size_t privkey_len = 0;
|
|
|
|
int ret = -1;
|
|
|
|
struct dpp_bootstrap_info *bi;
|
2017-11-02 22:53:55 +01:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
if (!dpp)
|
|
|
|
return -1;
|
2017-11-02 20:13:43 +01:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
bi = os_zalloc(sizeof(*bi));
|
|
|
|
if (!bi)
|
|
|
|
goto fail;
|
2017-11-03 15:43:58 +01:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
if (os_strstr(cmd, "type=qrcode"))
|
|
|
|
bi->type = DPP_BOOTSTRAP_QR_CODE;
|
|
|
|
else if (os_strstr(cmd, "type=pkex"))
|
|
|
|
bi->type = DPP_BOOTSTRAP_PKEX;
|
|
|
|
else if (os_strstr(cmd, "type=nfc-uri"))
|
|
|
|
bi->type = DPP_BOOTSTRAP_NFC_URI;
|
|
|
|
else
|
|
|
|
goto fail;
|
2017-11-02 22:53:55 +01:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
bi->chan = get_param(cmd, " chan=");
|
|
|
|
mac = get_param(cmd, " mac=");
|
|
|
|
info = get_param(cmd, " info=");
|
|
|
|
curve = get_param(cmd, " curve=");
|
|
|
|
key = get_param(cmd, " key=");
|
2017-11-02 20:13:43 +01:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
if (key) {
|
|
|
|
privkey_len = os_strlen(key) / 2;
|
|
|
|
privkey = os_malloc(privkey_len);
|
|
|
|
if (!privkey ||
|
|
|
|
hexstr2bin(key, privkey, privkey_len) < 0)
|
2017-11-02 23:42:54 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
if (dpp_keygen(bi, curve, privkey, privkey_len) < 0 ||
|
|
|
|
dpp_parse_uri_chan_list(bi, bi->chan) < 0 ||
|
|
|
|
dpp_parse_uri_mac(bi, mac) < 0 ||
|
|
|
|
dpp_parse_uri_info(bi, info) < 0 ||
|
|
|
|
dpp_gen_uri(bi) < 0)
|
2017-11-02 20:13:43 +01:00
|
|
|
goto fail;
|
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
bi->id = dpp_next_id(dpp);
|
|
|
|
dl_list_add(&dpp->bootstrap, &bi->list);
|
|
|
|
ret = bi->id;
|
|
|
|
bi = NULL;
|
2017-11-02 20:13:43 +01:00
|
|
|
fail:
|
2020-05-10 15:51:46 +02:00
|
|
|
os_free(curve);
|
|
|
|
os_free(mac);
|
|
|
|
os_free(info);
|
|
|
|
str_clear_free(key);
|
|
|
|
bin_clear_free(privkey, privkey_len);
|
|
|
|
dpp_bootstrap_info_free(bi);
|
|
|
|
return ret;
|
2017-11-02 20:13:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
struct dpp_bootstrap_info *
|
|
|
|
dpp_bootstrap_get_id(struct dpp_global *dpp, unsigned int id)
|
2018-12-02 11:30:11 +01:00
|
|
|
{
|
2020-05-10 15:51:46 +02:00
|
|
|
struct dpp_bootstrap_info *bi;
|
2018-12-02 11:30:11 +01:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
if (!dpp)
|
|
|
|
return NULL;
|
2018-12-02 11:30:11 +01:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
dl_list_for_each(bi, &dpp->bootstrap, struct dpp_bootstrap_info, list) {
|
|
|
|
if (bi->id == id)
|
|
|
|
return bi;
|
2018-12-02 11:30:11 +01:00
|
|
|
}
|
2020-05-10 15:51:46 +02:00
|
|
|
return NULL;
|
2018-12-02 11:30:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
int dpp_bootstrap_remove(struct dpp_global *dpp, const char *id)
|
2017-07-02 11:36:23 +02:00
|
|
|
{
|
2020-05-10 15:51:46 +02:00
|
|
|
unsigned int id_val;
|
2017-07-02 11:36:23 +02:00
|
|
|
|
2020-05-10 15:51:46 +02:00
|
|
|
if (os_strcmp(id, "*") == 0) {
|
|
|
|
id_val = 0;
|
|
|
|
} else {
|
|
|
|
id_val = atoi(id);
|
|
|
|
if (id_val == 0)
|
|
|
|
return -1;
|
2019-03-24 15:44:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return dpp_bootstrap_del(dpp, id_val);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char * dpp_bootstrap_get_uri(struct dpp_global *dpp, unsigned int id)
|
|
|
|
{
|
|
|
|
struct dpp_bootstrap_info *bi;
|
|
|
|
|
|
|
|
bi = dpp_bootstrap_get_id(dpp, id);
|
|
|
|
if (!bi)
|
|
|
|
return NULL;
|
|
|
|
return bi->uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_bootstrap_info(struct dpp_global *dpp, int id,
|
|
|
|
char *reply, int reply_size)
|
|
|
|
{
|
|
|
|
struct dpp_bootstrap_info *bi;
|
2019-03-24 21:17:49 +01:00
|
|
|
char pkhash[2 * SHA256_MAC_LEN + 1];
|
2019-03-24 15:44:21 +01:00
|
|
|
|
|
|
|
bi = dpp_bootstrap_get_id(dpp, id);
|
|
|
|
if (!bi)
|
|
|
|
return -1;
|
2019-03-24 21:17:49 +01:00
|
|
|
wpa_snprintf_hex(pkhash, sizeof(pkhash), bi->pubkey_hash,
|
|
|
|
SHA256_MAC_LEN);
|
2019-03-24 15:44:21 +01:00
|
|
|
return os_snprintf(reply, reply_size, "type=%s\n"
|
|
|
|
"mac_addr=" MACSTR "\n"
|
|
|
|
"info=%s\n"
|
|
|
|
"num_freq=%u\n"
|
2020-01-27 16:31:10 +01:00
|
|
|
"use_freq=%u\n"
|
2019-03-24 21:17:49 +01:00
|
|
|
"curve=%s\n"
|
2020-05-05 19:48:23 +02:00
|
|
|
"pkhash=%s\n"
|
|
|
|
"version=%d\n",
|
2019-03-24 15:44:21 +01:00
|
|
|
dpp_bootstrap_type_txt(bi->type),
|
|
|
|
MAC2STR(bi->mac_addr),
|
|
|
|
bi->info ? bi->info : "",
|
|
|
|
bi->num_freq,
|
2020-01-27 16:31:10 +01:00
|
|
|
bi->num_freq == 1 ? bi->freq[0] : 0,
|
2019-03-24 21:17:49 +01:00
|
|
|
bi->curve->name,
|
2020-05-05 19:48:23 +02:00
|
|
|
pkhash,
|
|
|
|
bi->version);
|
2019-03-24 15:44:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-27 16:28:59 +01:00
|
|
|
int dpp_bootstrap_set(struct dpp_global *dpp, int id, const char *params)
|
|
|
|
{
|
|
|
|
struct dpp_bootstrap_info *bi;
|
|
|
|
|
|
|
|
bi = dpp_bootstrap_get_id(dpp, id);
|
|
|
|
if (!bi)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
str_clear_free(bi->configurator_params);
|
|
|
|
|
|
|
|
if (params) {
|
|
|
|
bi->configurator_params = os_strdup(params);
|
|
|
|
return bi->configurator_params ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bi->configurator_params = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-24 15:44:21 +01:00
|
|
|
void dpp_bootstrap_find_pair(struct dpp_global *dpp, const u8 *i_bootstrap,
|
|
|
|
const u8 *r_bootstrap,
|
|
|
|
struct dpp_bootstrap_info **own_bi,
|
|
|
|
struct dpp_bootstrap_info **peer_bi)
|
|
|
|
{
|
|
|
|
struct dpp_bootstrap_info *bi;
|
|
|
|
|
|
|
|
*own_bi = NULL;
|
|
|
|
*peer_bi = NULL;
|
|
|
|
if (!dpp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
dl_list_for_each(bi, &dpp->bootstrap, struct dpp_bootstrap_info, list) {
|
|
|
|
if (!*own_bi && bi->own &&
|
|
|
|
os_memcmp(bi->pubkey_hash, r_bootstrap,
|
|
|
|
SHA256_MAC_LEN) == 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Found matching own bootstrapping information");
|
|
|
|
*own_bi = bi;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!*peer_bi && !bi->own &&
|
|
|
|
os_memcmp(bi->pubkey_hash, i_bootstrap,
|
|
|
|
SHA256_MAC_LEN) == 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Found matching peer bootstrapping information");
|
|
|
|
*peer_bi = bi;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*own_bi && *peer_bi)
|
|
|
|
break;
|
|
|
|
}
|
2020-03-27 14:34:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
struct dpp_bootstrap_info * dpp_bootstrap_find_chirp(struct dpp_global *dpp,
|
|
|
|
const u8 *hash)
|
|
|
|
{
|
|
|
|
struct dpp_bootstrap_info *bi;
|
2019-03-24 15:44:21 +01:00
|
|
|
|
2020-03-27 14:34:09 +01:00
|
|
|
if (!dpp)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
dl_list_for_each(bi, &dpp->bootstrap, struct dpp_bootstrap_info, list) {
|
|
|
|
if (!bi->own && os_memcmp(bi->pubkey_hash_chirp, hash,
|
|
|
|
SHA256_MAC_LEN) == 0)
|
|
|
|
return bi;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2019-03-24 15:44:21 +01:00
|
|
|
}
|
2020-03-27 14:34:09 +01:00
|
|
|
#endif /* CONFIG_DPP2 */
|
2019-03-24 15:44:21 +01:00
|
|
|
|
|
|
|
|
2020-01-27 16:04:26 +01:00
|
|
|
static int dpp_nfc_update_bi_channel(struct dpp_bootstrap_info *own_bi,
|
|
|
|
struct dpp_bootstrap_info *peer_bi)
|
|
|
|
{
|
|
|
|
unsigned int i, freq = 0;
|
|
|
|
enum hostapd_hw_mode mode;
|
|
|
|
u8 op_class, channel;
|
|
|
|
char chan[20];
|
|
|
|
|
|
|
|
if (peer_bi->num_freq == 0)
|
|
|
|
return 0; /* no channel preference/constraint */
|
|
|
|
|
|
|
|
for (i = 0; i < peer_bi->num_freq; i++) {
|
|
|
|
if (own_bi->num_freq == 0 ||
|
|
|
|
freq_included(own_bi->freq, own_bi->num_freq,
|
|
|
|
peer_bi->freq[i])) {
|
|
|
|
freq = peer_bi->freq[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!freq) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No common channel found");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
mode = ieee80211_freq_to_channel_ext(freq, 0, 0, &op_class, &channel);
|
|
|
|
if (mode == NUM_HOSTAPD_MODES) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Could not determine operating class or channel number for %u MHz",
|
|
|
|
freq);
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Selected %u MHz (op_class %u channel %u) as the negotiation channel based on information from NFC negotiated handover",
|
|
|
|
freq, op_class, channel);
|
|
|
|
os_snprintf(chan, sizeof(chan), "%u/%u", op_class, channel);
|
|
|
|
os_free(own_bi->chan);
|
|
|
|
own_bi->chan = os_strdup(chan);
|
|
|
|
own_bi->freq[0] = freq;
|
|
|
|
own_bi->num_freq = 1;
|
|
|
|
os_free(peer_bi->chan);
|
|
|
|
peer_bi->chan = os_strdup(chan);
|
|
|
|
peer_bi->freq[0] = freq;
|
|
|
|
peer_bi->num_freq = 1;
|
|
|
|
|
|
|
|
return dpp_gen_uri(own_bi);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_nfc_update_bi_key(struct dpp_bootstrap_info *own_bi,
|
|
|
|
struct dpp_bootstrap_info *peer_bi)
|
|
|
|
{
|
|
|
|
if (peer_bi->curve == own_bi->curve)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Update own bootstrapping key to match peer curve from NFC handover");
|
|
|
|
|
|
|
|
EVP_PKEY_free(own_bi->pubkey);
|
|
|
|
own_bi->pubkey = NULL;
|
|
|
|
|
|
|
|
if (dpp_keygen(own_bi, peer_bi->curve->name, NULL, 0) < 0 ||
|
|
|
|
dpp_gen_uri(own_bi) < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
fail:
|
|
|
|
dl_list_del(&own_bi->list);
|
|
|
|
dpp_bootstrap_info_free(own_bi);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_nfc_update_bi(struct dpp_bootstrap_info *own_bi,
|
|
|
|
struct dpp_bootstrap_info *peer_bi)
|
|
|
|
{
|
|
|
|
if (dpp_nfc_update_bi_channel(own_bi, peer_bi) < 0 ||
|
|
|
|
dpp_nfc_update_bi_key(own_bi, peer_bi) < 0)
|
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-24 15:44:21 +01:00
|
|
|
static unsigned int dpp_next_configurator_id(struct dpp_global *dpp)
|
|
|
|
{
|
|
|
|
struct dpp_configurator *conf;
|
|
|
|
unsigned int max_id = 0;
|
|
|
|
|
|
|
|
dl_list_for_each(conf, &dpp->configurator, struct dpp_configurator,
|
|
|
|
list) {
|
|
|
|
if (conf->id > max_id)
|
|
|
|
max_id = conf->id;
|
|
|
|
}
|
|
|
|
return max_id + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_configurator_add(struct dpp_global *dpp, const char *cmd)
|
|
|
|
{
|
|
|
|
char *curve = NULL;
|
|
|
|
char *key = NULL;
|
|
|
|
u8 *privkey = NULL;
|
|
|
|
size_t privkey_len = 0;
|
|
|
|
int ret = -1;
|
|
|
|
struct dpp_configurator *conf = NULL;
|
|
|
|
|
|
|
|
curve = get_param(cmd, " curve=");
|
|
|
|
key = get_param(cmd, " key=");
|
|
|
|
|
|
|
|
if (key) {
|
|
|
|
privkey_len = os_strlen(key) / 2;
|
|
|
|
privkey = os_malloc(privkey_len);
|
|
|
|
if (!privkey ||
|
|
|
|
hexstr2bin(key, privkey, privkey_len) < 0)
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
conf = dpp_keygen_configurator(curve, privkey, privkey_len);
|
|
|
|
if (!conf)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
conf->id = dpp_next_configurator_id(dpp);
|
|
|
|
dl_list_add(&dpp->configurator, &conf->list);
|
|
|
|
ret = conf->id;
|
|
|
|
conf = NULL;
|
|
|
|
fail:
|
|
|
|
os_free(curve);
|
|
|
|
str_clear_free(key);
|
|
|
|
bin_clear_free(privkey, privkey_len);
|
|
|
|
dpp_configurator_free(conf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_configurator_del(struct dpp_global *dpp, unsigned int id)
|
|
|
|
{
|
|
|
|
struct dpp_configurator *conf, *tmp;
|
|
|
|
int found = 0;
|
|
|
|
|
|
|
|
if (!dpp)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
dl_list_for_each_safe(conf, tmp, &dpp->configurator,
|
|
|
|
struct dpp_configurator, list) {
|
|
|
|
if (id && conf->id != id)
|
|
|
|
continue;
|
|
|
|
found = 1;
|
|
|
|
dl_list_del(&conf->list);
|
|
|
|
dpp_configurator_free(conf);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id == 0)
|
|
|
|
return 0; /* flush succeeds regardless of entries found */
|
|
|
|
return found ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_configurator_remove(struct dpp_global *dpp, const char *id)
|
|
|
|
{
|
|
|
|
unsigned int id_val;
|
|
|
|
|
|
|
|
if (os_strcmp(id, "*") == 0) {
|
|
|
|
id_val = 0;
|
|
|
|
} else {
|
|
|
|
id_val = atoi(id);
|
|
|
|
if (id_val == 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dpp_configurator_del(dpp, id_val);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_configurator_get_key_id(struct dpp_global *dpp, unsigned int id,
|
|
|
|
char *buf, size_t buflen)
|
|
|
|
{
|
|
|
|
struct dpp_configurator *conf;
|
|
|
|
|
|
|
|
conf = dpp_configurator_get_id(dpp, id);
|
|
|
|
if (!conf)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return dpp_configurator_get_key(conf, buf, buflen);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-24 21:17:49 +01:00
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
|
2020-01-30 22:56:31 +01:00
|
|
|
int dpp_configurator_from_backup(struct dpp_global *dpp,
|
|
|
|
struct dpp_asymmetric_key *key)
|
|
|
|
{
|
|
|
|
struct dpp_configurator *conf;
|
|
|
|
const EC_KEY *eckey;
|
|
|
|
const EC_GROUP *group;
|
|
|
|
int nid;
|
|
|
|
const struct dpp_curve_params *curve;
|
|
|
|
|
|
|
|
if (!key->csign)
|
|
|
|
return -1;
|
|
|
|
eckey = EVP_PKEY_get0_EC_KEY(key->csign);
|
|
|
|
if (!eckey)
|
|
|
|
return -1;
|
|
|
|
group = EC_KEY_get0_group(eckey);
|
|
|
|
if (!group)
|
|
|
|
return -1;
|
|
|
|
nid = EC_GROUP_get_curve_name(group);
|
|
|
|
curve = dpp_get_curve_nid(nid);
|
|
|
|
if (!curve) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: Unsupported group in c-sign-key");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
conf = os_zalloc(sizeof(*conf));
|
|
|
|
if (!conf)
|
|
|
|
return -1;
|
|
|
|
conf->curve = curve;
|
|
|
|
conf->csign = key->csign;
|
|
|
|
key->csign = NULL;
|
|
|
|
conf->own = 1;
|
|
|
|
if (dpp_configurator_gen_kid(conf) < 0) {
|
|
|
|
dpp_configurator_free(conf);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
conf->id = dpp_next_configurator_id(dpp);
|
|
|
|
dl_list_add(&dpp->configurator, &conf->list);
|
|
|
|
return conf->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-01 23:16:05 +02:00
|
|
|
struct dpp_configurator * dpp_configurator_find_kid(struct dpp_global *dpp,
|
|
|
|
const u8 *kid)
|
|
|
|
{
|
|
|
|
struct dpp_configurator *conf;
|
|
|
|
|
|
|
|
if (!dpp)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
dl_list_for_each(conf, &dpp->configurator,
|
|
|
|
struct dpp_configurator, list) {
|
|
|
|
if (os_memcmp(conf->kid_hash, kid, SHA256_MAC_LEN) == 0)
|
|
|
|
return conf;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-15 15:19:45 +02:00
|
|
|
static void dpp_controller_conn_status_result_wait_timeout(void *eloop_ctx,
|
|
|
|
void *timeout_ctx);
|
|
|
|
|
|
|
|
|
2019-03-24 21:17:49 +01:00
|
|
|
static void dpp_connection_free(struct dpp_connection *conn)
|
|
|
|
{
|
|
|
|
if (conn->sock >= 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Close Controller socket %d",
|
|
|
|
conn->sock);
|
|
|
|
eloop_unregister_sock(conn->sock, EVENT_TYPE_READ);
|
|
|
|
eloop_unregister_sock(conn->sock, EVENT_TYPE_WRITE);
|
|
|
|
close(conn->sock);
|
|
|
|
}
|
2019-09-15 15:19:45 +02:00
|
|
|
eloop_cancel_timeout(dpp_controller_conn_status_result_wait_timeout,
|
|
|
|
conn, NULL);
|
2019-03-24 21:17:49 +01:00
|
|
|
wpabuf_free(conn->msg);
|
|
|
|
wpabuf_free(conn->msg_out);
|
|
|
|
dpp_auth_deinit(conn->auth);
|
|
|
|
os_free(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void dpp_connection_remove(struct dpp_connection *conn)
|
|
|
|
{
|
|
|
|
dl_list_del(&conn->list);
|
|
|
|
dpp_connection_free(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void dpp_tcp_init_flush(struct dpp_global *dpp)
|
|
|
|
{
|
|
|
|
struct dpp_connection *conn, *tmp;
|
|
|
|
|
|
|
|
dl_list_for_each_safe(conn, tmp, &dpp->tcp_init, struct dpp_connection,
|
|
|
|
list)
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void dpp_relay_controller_free(struct dpp_relay_controller *ctrl)
|
|
|
|
{
|
|
|
|
struct dpp_connection *conn, *tmp;
|
|
|
|
|
|
|
|
dl_list_for_each_safe(conn, tmp, &ctrl->conn, struct dpp_connection,
|
|
|
|
list)
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
os_free(ctrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void dpp_relay_flush_controllers(struct dpp_global *dpp)
|
|
|
|
{
|
|
|
|
struct dpp_relay_controller *ctrl, *tmp;
|
|
|
|
|
|
|
|
if (!dpp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
dl_list_for_each_safe(ctrl, tmp, &dpp->controllers,
|
|
|
|
struct dpp_relay_controller, list) {
|
|
|
|
dl_list_del(&ctrl->list);
|
|
|
|
dpp_relay_controller_free(ctrl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_DPP2 */
|
|
|
|
|
|
|
|
|
2019-04-21 20:18:24 +02:00
|
|
|
struct dpp_global * dpp_global_init(struct dpp_global_config *config)
|
2019-03-24 15:44:21 +01:00
|
|
|
{
|
|
|
|
struct dpp_global *dpp;
|
|
|
|
|
|
|
|
dpp = os_zalloc(sizeof(*dpp));
|
|
|
|
if (!dpp)
|
|
|
|
return NULL;
|
2019-04-21 20:18:24 +02:00
|
|
|
dpp->msg_ctx = config->msg_ctx;
|
2019-03-24 21:17:49 +01:00
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
dpp->cb_ctx = config->cb_ctx;
|
|
|
|
dpp->process_conf_obj = config->process_conf_obj;
|
2020-03-27 11:42:00 +01:00
|
|
|
dpp->remove_bi = config->remove_bi;
|
2019-03-24 21:17:49 +01:00
|
|
|
#endif /* CONFIG_DPP2 */
|
2019-03-24 15:44:21 +01:00
|
|
|
|
|
|
|
dl_list_init(&dpp->bootstrap);
|
|
|
|
dl_list_init(&dpp->configurator);
|
2019-03-24 21:17:49 +01:00
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
dl_list_init(&dpp->controllers);
|
|
|
|
dl_list_init(&dpp->tcp_init);
|
|
|
|
#endif /* CONFIG_DPP2 */
|
2019-03-24 15:44:21 +01:00
|
|
|
|
|
|
|
return dpp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void dpp_global_clear(struct dpp_global *dpp)
|
|
|
|
{
|
|
|
|
if (!dpp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
dpp_bootstrap_del(dpp, 0);
|
|
|
|
dpp_configurator_del(dpp, 0);
|
2019-03-24 21:17:49 +01:00
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
dpp_tcp_init_flush(dpp);
|
|
|
|
dpp_relay_flush_controllers(dpp);
|
|
|
|
dpp_controller_stop(dpp);
|
|
|
|
#endif /* CONFIG_DPP2 */
|
2019-03-24 15:44:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void dpp_global_deinit(struct dpp_global *dpp)
|
|
|
|
{
|
|
|
|
dpp_global_clear(dpp);
|
|
|
|
os_free(dpp);
|
|
|
|
}
|
2019-03-24 21:17:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_DPP2
|
|
|
|
|
|
|
|
static void dpp_controller_rx(int sd, void *eloop_ctx, void *sock_ctx);
|
|
|
|
static void dpp_conn_tx_ready(int sock, void *eloop_ctx, void *sock_ctx);
|
|
|
|
static void dpp_controller_auth_success(struct dpp_connection *conn,
|
|
|
|
int initiator);
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_relay_add_controller(struct dpp_global *dpp,
|
|
|
|
struct dpp_relay_config *config)
|
|
|
|
{
|
|
|
|
struct dpp_relay_controller *ctrl;
|
|
|
|
|
|
|
|
if (!dpp)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
ctrl = os_zalloc(sizeof(*ctrl));
|
|
|
|
if (!ctrl)
|
|
|
|
return -1;
|
|
|
|
dl_list_init(&ctrl->conn);
|
|
|
|
ctrl->global = dpp;
|
|
|
|
os_memcpy(&ctrl->ipaddr, config->ipaddr, sizeof(*config->ipaddr));
|
|
|
|
os_memcpy(ctrl->pkhash, config->pkhash, SHA256_MAC_LEN);
|
|
|
|
ctrl->cb_ctx = config->cb_ctx;
|
|
|
|
ctrl->tx = config->tx;
|
|
|
|
ctrl->gas_resp_tx = config->gas_resp_tx;
|
|
|
|
dl_list_add(&dpp->controllers, &ctrl->list);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct dpp_relay_controller *
|
|
|
|
dpp_relay_controller_get(struct dpp_global *dpp, const u8 *pkhash)
|
|
|
|
{
|
|
|
|
struct dpp_relay_controller *ctrl;
|
|
|
|
|
|
|
|
if (!dpp)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
dl_list_for_each(ctrl, &dpp->controllers, struct dpp_relay_controller,
|
|
|
|
list) {
|
|
|
|
if (os_memcmp(pkhash, ctrl->pkhash, SHA256_MAC_LEN) == 0)
|
|
|
|
return ctrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void dpp_controller_gas_done(struct dpp_connection *conn)
|
|
|
|
{
|
|
|
|
struct dpp_authentication *auth = conn->auth;
|
|
|
|
|
|
|
|
if (auth->peer_version >= 2 &&
|
|
|
|
auth->conf_resp_status == DPP_STATUS_OK) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Wait for Configuration Result");
|
|
|
|
auth->waiting_conf_result = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_msg(conn->ctrl->global->msg_ctx, MSG_INFO, DPP_EVENT_CONF_SENT);
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_tcp_send(struct dpp_connection *conn)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (!conn->msg_out) {
|
|
|
|
eloop_unregister_sock(conn->sock, EVENT_TYPE_WRITE);
|
|
|
|
conn->write_eloop = 0;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
res = send(conn->sock,
|
|
|
|
wpabuf_head_u8(conn->msg_out) + conn->msg_out_pos,
|
|
|
|
wpabuf_len(conn->msg_out) - conn->msg_out_pos, 0);
|
|
|
|
if (res < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Failed to send buffer: %s",
|
|
|
|
strerror(errno));
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
conn->msg_out_pos += res;
|
|
|
|
if (wpabuf_len(conn->msg_out) > conn->msg_out_pos) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: %u/%u bytes of message sent to Controller",
|
|
|
|
(unsigned int) conn->msg_out_pos,
|
|
|
|
(unsigned int) wpabuf_len(conn->msg_out));
|
|
|
|
if (!conn->write_eloop &&
|
|
|
|
eloop_register_sock(conn->sock, EVENT_TYPE_WRITE,
|
|
|
|
dpp_conn_tx_ready, conn, NULL) == 0)
|
|
|
|
conn->write_eloop = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Full message sent over TCP");
|
|
|
|
wpabuf_free(conn->msg_out);
|
|
|
|
conn->msg_out = NULL;
|
|
|
|
conn->msg_out_pos = 0;
|
|
|
|
eloop_unregister_sock(conn->sock, EVENT_TYPE_WRITE);
|
|
|
|
conn->write_eloop = 0;
|
|
|
|
if (!conn->read_eloop &&
|
|
|
|
eloop_register_sock(conn->sock, EVENT_TYPE_READ,
|
|
|
|
dpp_controller_rx, conn, NULL) == 0)
|
|
|
|
conn->read_eloop = 1;
|
|
|
|
if (conn->on_tcp_tx_complete_remove) {
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
} else if (conn->ctrl && conn->on_tcp_tx_complete_gas_done &&
|
|
|
|
conn->auth) {
|
|
|
|
dpp_controller_gas_done(conn);
|
|
|
|
} else if (conn->on_tcp_tx_complete_auth_ok) {
|
|
|
|
conn->on_tcp_tx_complete_auth_ok = 0;
|
|
|
|
dpp_controller_auth_success(conn, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-27 18:44:11 +01:00
|
|
|
static int dpp_tcp_send_msg(struct dpp_connection *conn,
|
|
|
|
const struct wpabuf *msg)
|
|
|
|
{
|
|
|
|
wpabuf_free(conn->msg_out);
|
|
|
|
conn->msg_out_pos = 0;
|
|
|
|
conn->msg_out = wpabuf_alloc(4 + wpabuf_len(msg) - 1);
|
|
|
|
if (!conn->msg_out)
|
|
|
|
return -1;
|
|
|
|
wpabuf_put_be32(conn->msg_out, wpabuf_len(msg) - 1);
|
|
|
|
wpabuf_put_data(conn->msg_out, wpabuf_head_u8(msg) + 1,
|
|
|
|
wpabuf_len(msg) - 1);
|
|
|
|
|
|
|
|
if (dpp_tcp_send(conn) == 1) {
|
|
|
|
if (!conn->write_eloop) {
|
|
|
|
if (eloop_register_sock(conn->sock, EVENT_TYPE_WRITE,
|
|
|
|
dpp_conn_tx_ready,
|
|
|
|
conn, NULL) < 0)
|
|
|
|
return -1;
|
|
|
|
conn->write_eloop = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-24 21:17:49 +01:00
|
|
|
static void dpp_controller_start_gas_client(struct dpp_connection *conn)
|
|
|
|
{
|
|
|
|
struct dpp_authentication *auth = conn->auth;
|
|
|
|
struct wpabuf *buf;
|
|
|
|
int netrole_ap = 0; /* TODO: make this configurable */
|
|
|
|
|
2019-09-18 23:00:46 +02:00
|
|
|
buf = dpp_build_conf_req_helper(auth, "Test", netrole_ap, NULL, NULL);
|
2019-03-24 21:17:49 +01:00
|
|
|
if (!buf) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No configuration request data available");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-27 18:44:11 +01:00
|
|
|
dpp_tcp_send_msg(conn, buf);
|
2019-03-24 21:17:49 +01:00
|
|
|
wpabuf_free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void dpp_controller_auth_success(struct dpp_connection *conn,
|
|
|
|
int initiator)
|
|
|
|
{
|
|
|
|
struct dpp_authentication *auth = conn->auth;
|
|
|
|
|
|
|
|
if (!auth)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Authentication succeeded");
|
|
|
|
wpa_msg(conn->global->msg_ctx, MSG_INFO,
|
|
|
|
DPP_EVENT_AUTH_SUCCESS "init=%d", initiator);
|
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
if (dpp_test == DPP_TEST_STOP_AT_AUTH_CONF) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"DPP: TESTING - stop at Authentication Confirm");
|
|
|
|
if (auth->configurator) {
|
|
|
|
/* Prevent GAS response */
|
|
|
|
auth->auth_success = 0;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
|
|
|
if (!auth->configurator)
|
|
|
|
dpp_controller_start_gas_client(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void dpp_conn_tx_ready(int sock, void *eloop_ctx, void *sock_ctx)
|
|
|
|
{
|
|
|
|
struct dpp_connection *conn = eloop_ctx;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: TCP socket %d ready for TX", sock);
|
|
|
|
dpp_tcp_send(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_ipaddr_to_sockaddr(struct sockaddr *addr, socklen_t *addrlen,
|
|
|
|
const struct hostapd_ip_addr *ipaddr,
|
|
|
|
int port)
|
|
|
|
{
|
|
|
|
struct sockaddr_in *dst;
|
|
|
|
#ifdef CONFIG_IPV6
|
|
|
|
struct sockaddr_in6 *dst6;
|
|
|
|
#endif /* CONFIG_IPV6 */
|
|
|
|
|
|
|
|
switch (ipaddr->af) {
|
|
|
|
case AF_INET:
|
|
|
|
dst = (struct sockaddr_in *) addr;
|
|
|
|
os_memset(dst, 0, sizeof(*dst));
|
|
|
|
dst->sin_family = AF_INET;
|
|
|
|
dst->sin_addr.s_addr = ipaddr->u.v4.s_addr;
|
|
|
|
dst->sin_port = htons(port);
|
|
|
|
*addrlen = sizeof(*dst);
|
|
|
|
break;
|
|
|
|
#ifdef CONFIG_IPV6
|
|
|
|
case AF_INET6:
|
|
|
|
dst6 = (struct sockaddr_in6 *) addr;
|
|
|
|
os_memset(dst6, 0, sizeof(*dst6));
|
|
|
|
dst6->sin6_family = AF_INET6;
|
|
|
|
os_memcpy(&dst6->sin6_addr, &ipaddr->u.v6,
|
|
|
|
sizeof(struct in6_addr));
|
|
|
|
dst6->sin6_port = htons(port);
|
|
|
|
*addrlen = sizeof(*dst6);
|
|
|
|
break;
|
|
|
|
#endif /* CONFIG_IPV6 */
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct dpp_connection *
|
|
|
|
dpp_relay_new_conn(struct dpp_relay_controller *ctrl, const u8 *src,
|
|
|
|
unsigned int freq)
|
|
|
|
{
|
|
|
|
struct dpp_connection *conn;
|
|
|
|
struct sockaddr_storage addr;
|
|
|
|
socklen_t addrlen;
|
|
|
|
char txt[100];
|
|
|
|
|
|
|
|
if (dl_list_len(&ctrl->conn) >= 15) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Too many ongoing Relay connections to the Controller - cannot start a new one");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dpp_ipaddr_to_sockaddr((struct sockaddr *) &addr, &addrlen,
|
|
|
|
&ctrl->ipaddr, DPP_TCP_PORT) < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
conn = os_zalloc(sizeof(*conn));
|
|
|
|
if (!conn)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
conn->global = ctrl->global;
|
|
|
|
conn->relay = ctrl;
|
|
|
|
os_memcpy(conn->mac_addr, src, ETH_ALEN);
|
|
|
|
conn->freq = freq;
|
|
|
|
|
|
|
|
conn->sock = socket(AF_INET, SOCK_STREAM, 0);
|
|
|
|
if (conn->sock < 0)
|
|
|
|
goto fail;
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: TCP relay socket %d connection to %s",
|
|
|
|
conn->sock, hostapd_ip_txt(&ctrl->ipaddr, txt, sizeof(txt)));
|
|
|
|
|
|
|
|
if (fcntl(conn->sock, F_SETFL, O_NONBLOCK) != 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: fnctl(O_NONBLOCK) failed: %s",
|
|
|
|
strerror(errno));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (connect(conn->sock, (struct sockaddr *) &addr, addrlen) < 0) {
|
|
|
|
if (errno != EINPROGRESS) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Failed to connect: %s",
|
|
|
|
strerror(errno));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Continue connecting in the background; eloop will call us
|
|
|
|
* once the connection is ready (or failed).
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
if (eloop_register_sock(conn->sock, EVENT_TYPE_WRITE,
|
|
|
|
dpp_conn_tx_ready, conn, NULL) < 0)
|
|
|
|
goto fail;
|
|
|
|
conn->write_eloop = 1;
|
|
|
|
|
|
|
|
/* TODO: eloop timeout to clear a connection if it does not complete
|
|
|
|
* properly */
|
|
|
|
|
|
|
|
dl_list_add(&ctrl->conn, &conn->list);
|
|
|
|
return conn;
|
|
|
|
fail:
|
|
|
|
dpp_connection_free(conn);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct wpabuf * dpp_tcp_encaps(const u8 *hdr, const u8 *buf, size_t len)
|
|
|
|
{
|
|
|
|
struct wpabuf *msg;
|
|
|
|
|
|
|
|
msg = wpabuf_alloc(4 + 1 + DPP_HDR_LEN + len);
|
|
|
|
if (!msg)
|
|
|
|
return NULL;
|
|
|
|
wpabuf_put_be32(msg, 1 + DPP_HDR_LEN + len);
|
|
|
|
wpabuf_put_u8(msg, WLAN_PA_VENDOR_SPECIFIC);
|
|
|
|
wpabuf_put_data(msg, hdr, DPP_HDR_LEN);
|
|
|
|
wpabuf_put_data(msg, buf, len);
|
|
|
|
wpa_hexdump_buf(MSG_MSGDUMP, "DPP: Outgoing TCP message", msg);
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_relay_tx(struct dpp_connection *conn, const u8 *hdr,
|
|
|
|
const u8 *buf, size_t len)
|
|
|
|
{
|
|
|
|
u8 type = hdr[DPP_HDR_LEN - 1];
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Continue already established Relay/Controller connection for this session");
|
|
|
|
wpabuf_free(conn->msg_out);
|
|
|
|
conn->msg_out_pos = 0;
|
|
|
|
conn->msg_out = dpp_tcp_encaps(hdr, buf, len);
|
|
|
|
if (!conn->msg_out) {
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: for proto ver 1, need to do remove connection based on GAS Resp
|
|
|
|
* TX status */
|
|
|
|
if (type == DPP_PA_CONFIGURATION_RESULT)
|
|
|
|
conn->on_tcp_tx_complete_remove = 1;
|
|
|
|
dpp_tcp_send(conn);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_relay_rx_action(struct dpp_global *dpp, const u8 *src, const u8 *hdr,
|
|
|
|
const u8 *buf, size_t len, unsigned int freq,
|
|
|
|
const u8 *i_bootstrap, const u8 *r_bootstrap)
|
|
|
|
{
|
|
|
|
struct dpp_relay_controller *ctrl;
|
|
|
|
struct dpp_connection *conn;
|
|
|
|
u8 type = hdr[DPP_HDR_LEN - 1];
|
|
|
|
|
|
|
|
/* Check if there is an already started session for this peer and if so,
|
|
|
|
* continue that session (send this over TCP) and return 0.
|
|
|
|
*/
|
|
|
|
if (type != DPP_PA_PEER_DISCOVERY_REQ &&
|
2020-03-27 18:16:42 +01:00
|
|
|
type != DPP_PA_PEER_DISCOVERY_RESP &&
|
|
|
|
type != DPP_PA_PRESENCE_ANNOUNCEMENT) {
|
2019-03-24 21:17:49 +01:00
|
|
|
dl_list_for_each(ctrl, &dpp->controllers,
|
|
|
|
struct dpp_relay_controller, list) {
|
|
|
|
dl_list_for_each(conn, &ctrl->conn,
|
|
|
|
struct dpp_connection, list) {
|
|
|
|
if (os_memcmp(src, conn->mac_addr,
|
|
|
|
ETH_ALEN) == 0)
|
|
|
|
return dpp_relay_tx(conn, hdr, buf, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!r_bootstrap)
|
|
|
|
return -1;
|
|
|
|
|
2020-03-27 18:16:42 +01:00
|
|
|
if (type == DPP_PA_PRESENCE_ANNOUNCEMENT) {
|
|
|
|
/* TODO: Could send this to all configured Controllers. For now,
|
|
|
|
* only the first Controller is supported. */
|
|
|
|
ctrl = dl_list_first(&dpp->controllers,
|
|
|
|
struct dpp_relay_controller, list);
|
|
|
|
} else {
|
|
|
|
ctrl = dpp_relay_controller_get(dpp, r_bootstrap);
|
|
|
|
}
|
2019-03-24 21:17:49 +01:00
|
|
|
if (!ctrl)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Authentication Request for a configured Controller");
|
|
|
|
conn = dpp_relay_new_conn(ctrl, src, freq);
|
|
|
|
if (!conn)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
conn->msg_out = dpp_tcp_encaps(hdr, buf, len);
|
|
|
|
if (!conn->msg_out) {
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
/* Message will be sent in dpp_conn_tx_ready() */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_relay_rx_gas_req(struct dpp_global *dpp, const u8 *src, const u8 *data,
|
|
|
|
size_t data_len)
|
|
|
|
{
|
|
|
|
struct dpp_relay_controller *ctrl;
|
|
|
|
struct dpp_connection *conn, *found = NULL;
|
|
|
|
struct wpabuf *msg;
|
|
|
|
|
|
|
|
/* Check if there is a successfully completed authentication for this
|
|
|
|
* and if so, continue that session (send this over TCP) and return 0.
|
|
|
|
*/
|
|
|
|
dl_list_for_each(ctrl, &dpp->controllers,
|
|
|
|
struct dpp_relay_controller, list) {
|
|
|
|
if (found)
|
|
|
|
break;
|
|
|
|
dl_list_for_each(conn, &ctrl->conn,
|
|
|
|
struct dpp_connection, list) {
|
|
|
|
if (os_memcmp(src, conn->mac_addr,
|
|
|
|
ETH_ALEN) == 0) {
|
|
|
|
found = conn;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
msg = wpabuf_alloc(4 + 1 + data_len);
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
wpabuf_put_be32(msg, 1 + data_len);
|
|
|
|
wpabuf_put_u8(msg, WLAN_PA_GAS_INITIAL_REQ);
|
|
|
|
wpabuf_put_data(msg, data, data_len);
|
|
|
|
wpa_hexdump_buf(MSG_MSGDUMP, "DPP: Outgoing TCP message", msg);
|
|
|
|
|
|
|
|
wpabuf_free(conn->msg_out);
|
|
|
|
conn->msg_out_pos = 0;
|
|
|
|
conn->msg_out = msg;
|
|
|
|
dpp_tcp_send(conn);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void dpp_controller_free(struct dpp_controller *ctrl)
|
|
|
|
{
|
|
|
|
struct dpp_connection *conn, *tmp;
|
|
|
|
|
|
|
|
if (!ctrl)
|
|
|
|
return;
|
|
|
|
|
|
|
|
dl_list_for_each_safe(conn, tmp, &ctrl->conn, struct dpp_connection,
|
|
|
|
list)
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
|
|
|
|
if (ctrl->sock >= 0) {
|
|
|
|
close(ctrl->sock);
|
|
|
|
eloop_unregister_sock(ctrl->sock, EVENT_TYPE_READ);
|
|
|
|
}
|
|
|
|
os_free(ctrl->configurator_params);
|
|
|
|
os_free(ctrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_controller_rx_auth_req(struct dpp_connection *conn,
|
|
|
|
const u8 *hdr, const u8 *buf, size_t len)
|
|
|
|
{
|
|
|
|
const u8 *r_bootstrap, *i_bootstrap;
|
|
|
|
u16 r_bootstrap_len, i_bootstrap_len;
|
|
|
|
struct dpp_bootstrap_info *own_bi = NULL, *peer_bi = NULL;
|
|
|
|
|
2019-04-28 19:28:46 +02:00
|
|
|
if (!conn->ctrl)
|
|
|
|
return 0;
|
|
|
|
|
2019-03-24 21:17:49 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Authentication Request");
|
|
|
|
|
|
|
|
r_bootstrap = dpp_get_attr(buf, len, DPP_ATTR_R_BOOTSTRAP_KEY_HASH,
|
|
|
|
&r_bootstrap_len);
|
|
|
|
if (!r_bootstrap || r_bootstrap_len != SHA256_MAC_LEN) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"Missing or invalid required Responder Bootstrapping Key Hash attribute");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_MSGDUMP, "DPP: Responder Bootstrapping Key Hash",
|
|
|
|
r_bootstrap, r_bootstrap_len);
|
|
|
|
|
|
|
|
i_bootstrap = dpp_get_attr(buf, len, DPP_ATTR_I_BOOTSTRAP_KEY_HASH,
|
|
|
|
&i_bootstrap_len);
|
|
|
|
if (!i_bootstrap || i_bootstrap_len != SHA256_MAC_LEN) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"Missing or invalid required Initiator Bootstrapping Key Hash attribute");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_MSGDUMP, "DPP: Initiator Bootstrapping Key Hash",
|
|
|
|
i_bootstrap, i_bootstrap_len);
|
|
|
|
|
|
|
|
/* Try to find own and peer bootstrapping key matches based on the
|
|
|
|
* received hash values */
|
|
|
|
dpp_bootstrap_find_pair(conn->ctrl->global, i_bootstrap, r_bootstrap,
|
|
|
|
&own_bi, &peer_bi);
|
|
|
|
if (!own_bi) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"No matching own bootstrapping key found - ignore message");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (conn->auth) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"Already in DPP authentication exchange - ignore new one");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-03-27 16:08:38 +01:00
|
|
|
conn->auth = dpp_auth_req_rx(conn->ctrl->global,
|
|
|
|
conn->ctrl->global->msg_ctx,
|
2019-03-24 21:17:49 +01:00
|
|
|
conn->ctrl->allowed_roles,
|
|
|
|
conn->ctrl->qr_mutual,
|
|
|
|
peer_bi, own_bi, -1, hdr, buf, len);
|
|
|
|
if (!conn->auth) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No response generated");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-03-27 16:08:38 +01:00
|
|
|
if (dpp_set_configurator(conn->auth,
|
2019-03-24 21:17:49 +01:00
|
|
|
conn->ctrl->configurator_params) < 0) {
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-03-27 18:44:11 +01:00
|
|
|
return dpp_tcp_send_msg(conn, conn->auth->resp_msg);
|
2019-03-24 21:17:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_controller_rx_auth_resp(struct dpp_connection *conn,
|
|
|
|
const u8 *hdr, const u8 *buf, size_t len)
|
|
|
|
{
|
|
|
|
struct dpp_authentication *auth = conn->auth;
|
|
|
|
struct wpabuf *msg;
|
2020-03-27 18:44:11 +01:00
|
|
|
int res;
|
2019-03-24 21:17:49 +01:00
|
|
|
|
|
|
|
if (!auth)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Authentication Response");
|
|
|
|
|
|
|
|
msg = dpp_auth_resp_rx(auth, hdr, buf, len);
|
|
|
|
if (!msg) {
|
|
|
|
if (auth->auth_resp_status == DPP_STATUS_RESPONSE_PENDING) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Start wait for full response");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No confirm generated");
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
conn->on_tcp_tx_complete_auth_ok = 1;
|
2020-03-27 18:44:11 +01:00
|
|
|
res = dpp_tcp_send_msg(conn, msg);
|
|
|
|
wpabuf_free(msg);
|
|
|
|
return res;
|
2019-03-24 21:17:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_controller_rx_auth_conf(struct dpp_connection *conn,
|
|
|
|
const u8 *hdr, const u8 *buf, size_t len)
|
|
|
|
{
|
|
|
|
struct dpp_authentication *auth = conn->auth;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Authentication Confirmation");
|
|
|
|
|
|
|
|
if (!auth) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No DPP Authentication in progress - drop");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dpp_auth_conf_rx(auth, hdr, buf, len) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Authentication failed");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
dpp_controller_auth_success(conn, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-15 15:19:45 +02:00
|
|
|
static void dpp_controller_conn_status_result_wait_timeout(void *eloop_ctx,
|
|
|
|
void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct dpp_connection *conn = eloop_ctx;
|
|
|
|
|
|
|
|
if (!conn->auth->waiting_conf_result)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Timeout while waiting for Connection Status Result");
|
|
|
|
wpa_msg(conn->ctrl->global->msg_ctx, MSG_INFO,
|
|
|
|
DPP_EVENT_CONN_STATUS_RESULT "timeout");
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-24 21:17:49 +01:00
|
|
|
static int dpp_controller_rx_conf_result(struct dpp_connection *conn,
|
|
|
|
const u8 *hdr, const u8 *buf,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
struct dpp_authentication *auth = conn->auth;
|
|
|
|
enum dpp_status_error status;
|
|
|
|
|
|
|
|
if (!conn->ctrl)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Configuration Result");
|
|
|
|
|
|
|
|
if (!auth || !auth->waiting_conf_result) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No DPP Configuration waiting for result - drop");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = dpp_conf_result_rx(auth, hdr, buf, len);
|
2019-09-15 15:19:45 +02:00
|
|
|
if (status == DPP_STATUS_OK && auth->send_conn_status) {
|
|
|
|
wpa_msg(conn->ctrl->global->msg_ctx, MSG_INFO,
|
|
|
|
DPP_EVENT_CONF_SENT "wait_conn_status=1");
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Wait for Connection Status Result");
|
|
|
|
eloop_cancel_timeout(
|
|
|
|
dpp_controller_conn_status_result_wait_timeout,
|
|
|
|
conn, NULL);
|
|
|
|
eloop_register_timeout(
|
|
|
|
16, 0, dpp_controller_conn_status_result_wait_timeout,
|
|
|
|
conn, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
2019-03-24 21:17:49 +01:00
|
|
|
if (status == DPP_STATUS_OK)
|
|
|
|
wpa_msg(conn->ctrl->global->msg_ctx, MSG_INFO,
|
|
|
|
DPP_EVENT_CONF_SENT);
|
|
|
|
else
|
|
|
|
wpa_msg(conn->ctrl->global->msg_ctx, MSG_INFO,
|
|
|
|
DPP_EVENT_CONF_FAILED);
|
|
|
|
return -1; /* to remove the completed connection */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-15 15:19:45 +02:00
|
|
|
static int dpp_controller_rx_conn_status_result(struct dpp_connection *conn,
|
|
|
|
const u8 *hdr, const u8 *buf,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
struct dpp_authentication *auth = conn->auth;
|
|
|
|
enum dpp_status_error status;
|
|
|
|
u8 ssid[SSID_MAX_LEN];
|
|
|
|
size_t ssid_len = 0;
|
|
|
|
char *channel_list = NULL;
|
|
|
|
|
|
|
|
if (!conn->ctrl)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Connection Status Result");
|
|
|
|
|
|
|
|
if (!auth || !auth->waiting_conn_status_result) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No DPP Configuration waiting for connection status result - drop");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = dpp_conn_status_result_rx(auth, hdr, buf, len,
|
|
|
|
ssid, &ssid_len, &channel_list);
|
|
|
|
wpa_msg(conn->ctrl->global->msg_ctx, MSG_INFO,
|
|
|
|
DPP_EVENT_CONN_STATUS_RESULT
|
|
|
|
"result=%d ssid=%s channel_list=%s",
|
|
|
|
status, wpa_ssid_txt(ssid, ssid_len),
|
|
|
|
channel_list ? channel_list : "N/A");
|
|
|
|
os_free(channel_list);
|
|
|
|
return -1; /* to remove the completed connection */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-27 18:29:44 +01:00
|
|
|
static int dpp_controller_rx_presence_announcement(struct dpp_connection *conn,
|
|
|
|
const u8 *hdr, const u8 *buf,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
const u8 *r_bootstrap;
|
|
|
|
u16 r_bootstrap_len;
|
|
|
|
struct dpp_bootstrap_info *peer_bi;
|
|
|
|
struct dpp_authentication *auth;
|
|
|
|
struct dpp_global *dpp = conn->ctrl->global;
|
|
|
|
|
|
|
|
if (conn->auth) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Ignore Presence Announcement during ongoing Authentication");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Presence Announcement");
|
|
|
|
|
|
|
|
r_bootstrap = dpp_get_attr(buf, len, DPP_ATTR_R_BOOTSTRAP_KEY_HASH,
|
|
|
|
&r_bootstrap_len);
|
|
|
|
if (!r_bootstrap || r_bootstrap_len != SHA256_MAC_LEN) {
|
|
|
|
wpa_msg(dpp->msg_ctx, MSG_INFO, DPP_EVENT_FAIL
|
|
|
|
"Missing or invalid required Responder Bootstrapping Key Hash attribute");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_MSGDUMP, "DPP: Responder Bootstrapping Key Hash",
|
|
|
|
r_bootstrap, r_bootstrap_len);
|
|
|
|
peer_bi = dpp_bootstrap_find_chirp(dpp, r_bootstrap);
|
|
|
|
if (!peer_bi) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No matching bootstrapping information found");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
auth = dpp_auth_init(dpp, dpp->msg_ctx, peer_bi, NULL,
|
|
|
|
DPP_CAPAB_CONFIGURATOR, -1, NULL, 0);
|
|
|
|
if (!auth)
|
|
|
|
return -1;
|
|
|
|
if (dpp_set_configurator(conn->auth,
|
|
|
|
conn->ctrl->configurator_params) < 0) {
|
|
|
|
dpp_auth_deinit(auth);
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
conn->auth = auth;
|
2020-03-27 18:44:11 +01:00
|
|
|
return dpp_tcp_send_msg(conn, conn->auth->req_msg);
|
2020-03-27 18:29:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-01 23:16:05 +02:00
|
|
|
static int dpp_controller_rx_reconfig_announcement(struct dpp_connection *conn,
|
|
|
|
const u8 *hdr, const u8 *buf,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
const u8 *csign_hash;
|
|
|
|
u16 csign_hash_len;
|
|
|
|
struct dpp_configurator *conf;
|
|
|
|
struct dpp_global *dpp = conn->ctrl->global;
|
|
|
|
|
|
|
|
if (conn->auth) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Ignore Reconfig Announcement during ongoing Authentication");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Reconfig Announcement");
|
|
|
|
|
|
|
|
csign_hash = dpp_get_attr(buf, len, DPP_ATTR_C_SIGN_KEY_HASH,
|
|
|
|
&csign_hash_len);
|
|
|
|
if (!csign_hash || csign_hash_len != SHA256_MAC_LEN) {
|
|
|
|
wpa_msg(dpp->msg_ctx, MSG_INFO, DPP_EVENT_FAIL
|
|
|
|
"Missing or invalid required Configurator C-sign key Hash attribute");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_MSGDUMP, "DPP: Configurator C-sign key Hash (kid)",
|
|
|
|
csign_hash, csign_hash_len);
|
|
|
|
conf = dpp_configurator_find_kid(dpp, csign_hash);
|
|
|
|
if (!conf) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No matching Configurator information found");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: Initiate Reconfig Authentication */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-24 21:17:49 +01:00
|
|
|
static int dpp_controller_rx_action(struct dpp_connection *conn, const u8 *msg,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
const u8 *pos, *end;
|
|
|
|
u8 type;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Received DPP Action frame over TCP");
|
|
|
|
pos = msg;
|
|
|
|
end = msg + len;
|
|
|
|
|
|
|
|
if (end - pos < DPP_HDR_LEN ||
|
|
|
|
WPA_GET_BE24(pos) != OUI_WFA ||
|
|
|
|
pos[3] != DPP_OUI_TYPE) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Unrecognized header");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pos[4] != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Unsupported Crypto Suite %u",
|
|
|
|
pos[4]);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
type = pos[5];
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Received message type %u", type);
|
|
|
|
pos += DPP_HDR_LEN;
|
|
|
|
|
|
|
|
wpa_hexdump(MSG_MSGDUMP, "DPP: Received message attributes",
|
|
|
|
pos, end - pos);
|
|
|
|
if (dpp_check_attrs(pos, end - pos) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (conn->relay) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Relay - send over WLAN");
|
|
|
|
conn->relay->tx(conn->relay->cb_ctx, conn->mac_addr,
|
|
|
|
conn->freq, msg, len);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case DPP_PA_AUTHENTICATION_REQ:
|
|
|
|
return dpp_controller_rx_auth_req(conn, msg, pos, end - pos);
|
|
|
|
case DPP_PA_AUTHENTICATION_RESP:
|
|
|
|
return dpp_controller_rx_auth_resp(conn, msg, pos, end - pos);
|
|
|
|
case DPP_PA_AUTHENTICATION_CONF:
|
|
|
|
return dpp_controller_rx_auth_conf(conn, msg, pos, end - pos);
|
|
|
|
case DPP_PA_CONFIGURATION_RESULT:
|
|
|
|
return dpp_controller_rx_conf_result(conn, msg, pos, end - pos);
|
2019-09-15 15:19:45 +02:00
|
|
|
case DPP_PA_CONNECTION_STATUS_RESULT:
|
|
|
|
return dpp_controller_rx_conn_status_result(conn, msg, pos,
|
|
|
|
end - pos);
|
2020-03-27 18:29:44 +01:00
|
|
|
case DPP_PA_PRESENCE_ANNOUNCEMENT:
|
|
|
|
return dpp_controller_rx_presence_announcement(conn, msg, pos,
|
|
|
|
end - pos);
|
2020-05-01 23:16:05 +02:00
|
|
|
case DPP_PA_RECONFIG_ANNOUNCEMENT:
|
|
|
|
return dpp_controller_rx_reconfig_announcement(conn, msg, pos,
|
|
|
|
end - pos);
|
2019-03-24 21:17:49 +01:00
|
|
|
default:
|
|
|
|
/* TODO: missing messages types */
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Unsupported frame subtype %d", type);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_controller_rx_gas_req(struct dpp_connection *conn, const u8 *msg,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
const u8 *pos, *end, *next;
|
|
|
|
u8 dialog_token;
|
|
|
|
const u8 *adv_proto;
|
|
|
|
u16 slen;
|
|
|
|
struct wpabuf *resp, *buf;
|
|
|
|
struct dpp_authentication *auth = conn->auth;
|
|
|
|
|
|
|
|
if (len < 1 + 2)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Received DPP Configuration Request over TCP");
|
|
|
|
|
|
|
|
if (!conn->ctrl || !auth || !auth->auth_success) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No matching exchange in progress");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pos = msg;
|
|
|
|
end = msg + len;
|
|
|
|
|
|
|
|
dialog_token = *pos++;
|
|
|
|
adv_proto = pos++;
|
|
|
|
slen = *pos++;
|
|
|
|
if (*adv_proto != WLAN_EID_ADV_PROTO ||
|
|
|
|
slen > end - pos || slen < 2)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
next = pos + slen;
|
|
|
|
pos++; /* skip QueryRespLenLimit and PAME-BI */
|
|
|
|
|
|
|
|
if (slen != 8 || *pos != WLAN_EID_VENDOR_SPECIFIC ||
|
|
|
|
pos[1] != 5 || WPA_GET_BE24(&pos[2]) != OUI_WFA ||
|
|
|
|
pos[5] != DPP_OUI_TYPE || pos[6] != 0x01)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
pos = next;
|
|
|
|
/* Query Request */
|
|
|
|
if (end - pos < 2)
|
|
|
|
return -1;
|
|
|
|
slen = WPA_GET_LE16(pos);
|
|
|
|
pos += 2;
|
|
|
|
if (slen > end - pos)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
resp = dpp_conf_req_rx(auth, pos, slen);
|
|
|
|
if (!resp)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
buf = wpabuf_alloc(4 + 18 + wpabuf_len(resp));
|
|
|
|
if (!buf) {
|
|
|
|
wpabuf_free(resp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpabuf_put_be32(buf, 18 + wpabuf_len(resp));
|
|
|
|
|
|
|
|
wpabuf_put_u8(buf, WLAN_PA_GAS_INITIAL_RESP);
|
|
|
|
wpabuf_put_u8(buf, dialog_token);
|
|
|
|
wpabuf_put_le16(buf, WLAN_STATUS_SUCCESS);
|
|
|
|
wpabuf_put_le16(buf, 0); /* GAS Comeback Delay */
|
|
|
|
|
|
|
|
dpp_write_adv_proto(buf);
|
|
|
|
dpp_write_gas_query(buf, resp);
|
|
|
|
wpabuf_free(resp);
|
|
|
|
|
|
|
|
/* Send Config Response over TCP; GAS fragmentation is taken care of by
|
|
|
|
* the Relay */
|
|
|
|
wpa_hexdump_buf(MSG_MSGDUMP, "DPP: Outgoing TCP message", buf);
|
|
|
|
wpabuf_free(conn->msg_out);
|
|
|
|
conn->msg_out_pos = 0;
|
|
|
|
conn->msg_out = buf;
|
|
|
|
conn->on_tcp_tx_complete_gas_done = 1;
|
|
|
|
dpp_tcp_send(conn);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_tcp_rx_gas_resp(struct dpp_connection *conn, struct wpabuf *resp)
|
|
|
|
{
|
|
|
|
struct dpp_authentication *auth = conn->auth;
|
|
|
|
int res;
|
2020-03-27 18:44:11 +01:00
|
|
|
struct wpabuf *msg;
|
2019-03-24 21:17:49 +01:00
|
|
|
enum dpp_status_error status;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Configuration Response for local stack from TCP");
|
|
|
|
|
|
|
|
res = dpp_conf_resp_rx(auth, resp);
|
|
|
|
wpabuf_free(resp);
|
|
|
|
if (res < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Configuration attempt failed");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (conn->global->process_conf_obj)
|
|
|
|
res = conn->global->process_conf_obj(conn->global->cb_ctx,
|
|
|
|
auth);
|
|
|
|
else
|
|
|
|
res = 0;
|
|
|
|
|
|
|
|
if (auth->peer_version < 2 || auth->conf_resp_status != DPP_STATUS_OK)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Send DPP Configuration Result");
|
|
|
|
status = res < 0 ? DPP_STATUS_CONFIG_REJECTED : DPP_STATUS_OK;
|
|
|
|
msg = dpp_build_conf_result(auth, status);
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
conn->on_tcp_tx_complete_remove = 1;
|
2020-03-27 18:44:11 +01:00
|
|
|
res = dpp_tcp_send_msg(conn, msg);
|
|
|
|
wpabuf_free(msg);
|
2019-03-24 21:17:49 +01:00
|
|
|
|
|
|
|
/* This exchange will be terminated in the TX status handler */
|
|
|
|
|
2020-03-27 18:44:11 +01:00
|
|
|
return res;
|
2019-03-24 21:17:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dpp_rx_gas_resp(struct dpp_connection *conn, const u8 *msg,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
struct wpabuf *buf;
|
|
|
|
u8 dialog_token;
|
|
|
|
const u8 *pos, *end, *next, *adv_proto;
|
|
|
|
u16 status, slen;
|
|
|
|
|
|
|
|
if (len < 5 + 2)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Received DPP Configuration Response over TCP");
|
|
|
|
|
|
|
|
pos = msg;
|
|
|
|
end = msg + len;
|
|
|
|
|
|
|
|
dialog_token = *pos++;
|
|
|
|
status = WPA_GET_LE16(pos);
|
|
|
|
if (status != WLAN_STATUS_SUCCESS) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Unexpected Status Code %u", status);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
pos += 2;
|
|
|
|
pos += 2; /* ignore GAS Comeback Delay */
|
|
|
|
|
|
|
|
adv_proto = pos++;
|
|
|
|
slen = *pos++;
|
|
|
|
if (*adv_proto != WLAN_EID_ADV_PROTO ||
|
|
|
|
slen > end - pos || slen < 2)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
next = pos + slen;
|
|
|
|
pos++; /* skip QueryRespLenLimit and PAME-BI */
|
|
|
|
|
|
|
|
if (slen != 8 || *pos != WLAN_EID_VENDOR_SPECIFIC ||
|
|
|
|
pos[1] != 5 || WPA_GET_BE24(&pos[2]) != OUI_WFA ||
|
|
|
|
pos[5] != DPP_OUI_TYPE || pos[6] != 0x01)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
pos = next;
|
|
|
|
/* Query Response */
|
|
|
|
if (end - pos < 2)
|
|
|
|
return -1;
|
|
|
|
slen = WPA_GET_LE16(pos);
|
|
|
|
pos += 2;
|
|
|
|
if (slen > end - pos)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
buf = wpabuf_alloc(slen);
|
|
|
|
if (!buf)
|
|
|
|
return -1;
|
|
|
|
wpabuf_put_data(buf, pos, slen);
|
|
|
|
|
|
|
|
if (!conn->relay && !conn->ctrl)
|
|
|
|
return dpp_tcp_rx_gas_resp(conn, buf);
|
|
|
|
|
|
|
|
if (!conn->relay) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No matching exchange in progress");
|
|
|
|
wpabuf_free(buf);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Relay - send over WLAN");
|
|
|
|
conn->relay->gas_resp_tx(conn->relay->cb_ctx, conn->mac_addr,
|
|
|
|
dialog_token, 0, buf);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void dpp_controller_rx(int sd, void *eloop_ctx, void *sock_ctx)
|
|
|
|
{
|
|
|
|
struct dpp_connection *conn = eloop_ctx;
|
|
|
|
int res;
|
|
|
|
const u8 *pos;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: TCP data available for reading (sock %d)",
|
|
|
|
sd);
|
|
|
|
|
|
|
|
if (conn->msg_len_octets < 4) {
|
|
|
|
u32 msglen;
|
|
|
|
|
|
|
|
res = recv(sd, &conn->msg_len[conn->msg_len_octets],
|
|
|
|
4 - conn->msg_len_octets, 0);
|
|
|
|
if (res < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: recv failed: %s",
|
|
|
|
strerror(errno));
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (res == 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No more data available over TCP");
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Received %d/%d octet(s) of message length field",
|
|
|
|
res, (int) (4 - conn->msg_len_octets));
|
|
|
|
conn->msg_len_octets += res;
|
|
|
|
|
|
|
|
if (conn->msg_len_octets < 4) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Need %d more octets of message length field",
|
|
|
|
(int) (4 - conn->msg_len_octets));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
msglen = WPA_GET_BE32(conn->msg_len);
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Message length: %u", msglen);
|
|
|
|
if (msglen > 65535) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: Unexpectedly long message");
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpabuf_free(conn->msg);
|
|
|
|
conn->msg = wpabuf_alloc(msglen);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!conn->msg) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: No buffer available for receiving the message");
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Need %u more octets of message payload",
|
|
|
|
(unsigned int) wpabuf_tailroom(conn->msg));
|
|
|
|
|
|
|
|
res = recv(sd, wpabuf_put(conn->msg, 0), wpabuf_tailroom(conn->msg), 0);
|
|
|
|
if (res < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: recv failed: %s", strerror(errno));
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (res == 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: No more data available over TCP");
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Received %d octets", res);
|
|
|
|
wpabuf_put(conn->msg, res);
|
|
|
|
|
|
|
|
if (wpabuf_tailroom(conn->msg) > 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Need %u more octets of message payload",
|
|
|
|
(unsigned int) wpabuf_tailroom(conn->msg));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
conn->msg_len_octets = 0;
|
|
|
|
wpa_hexdump_buf(MSG_DEBUG, "DPP: Received TCP message", conn->msg);
|
|
|
|
if (wpabuf_len(conn->msg) < 1) {
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pos = wpabuf_head(conn->msg);
|
|
|
|
switch (*pos) {
|
|
|
|
case WLAN_PA_VENDOR_SPECIFIC:
|
|
|
|
if (dpp_controller_rx_action(conn, pos + 1,
|
|
|
|
wpabuf_len(conn->msg) - 1) < 0)
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
break;
|
|
|
|
case WLAN_PA_GAS_INITIAL_REQ:
|
|
|
|
if (dpp_controller_rx_gas_req(conn, pos + 1,
|
|
|
|
wpabuf_len(conn->msg) - 1) < 0)
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
break;
|
|
|
|
case WLAN_PA_GAS_INITIAL_RESP:
|
|
|
|
if (dpp_rx_gas_resp(conn, pos + 1,
|
|
|
|
wpabuf_len(conn->msg) - 1) < 0)
|
|
|
|
dpp_connection_remove(conn);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Ignore unsupported message type %u",
|
|
|
|
*pos);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void dpp_controller_tcp_cb(int sd, void *eloop_ctx, void *sock_ctx)
|
|
|
|
{
|
|
|
|
struct dpp_controller *ctrl = eloop_ctx;
|
|
|
|
struct sockaddr_in addr;
|
|
|
|
socklen_t addr_len = sizeof(addr);
|
|
|
|
int fd;
|
|
|
|
struct dpp_connection *conn;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: New TCP connection");
|
|
|
|
|
|
|
|
fd = accept(ctrl->sock, (struct sockaddr *) &addr, &addr_len);
|
|
|
|
if (fd < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: Failed to accept new connection: %s",
|
|
|
|
strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Connection from %s:%d",
|
|
|
|
inet_ntoa(addr.sin_addr), ntohs(addr.sin_port));
|
|
|
|
|
|
|
|
conn = os_zalloc(sizeof(*conn));
|
|
|
|
if (!conn)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
conn->global = ctrl->global;
|
|
|
|
conn->ctrl = ctrl;
|
|
|
|
conn->sock = fd;
|
|
|
|
|
|
|
|
if (fcntl(conn->sock, F_SETFL, O_NONBLOCK) != 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: fnctl(O_NONBLOCK) failed: %s",
|
|
|
|
strerror(errno));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (eloop_register_sock(conn->sock, EVENT_TYPE_READ,
|
|
|
|
dpp_controller_rx, conn, NULL) < 0)
|
|
|
|
goto fail;
|
|
|
|
conn->read_eloop = 1;
|
|
|
|
|
|
|
|
/* TODO: eloop timeout to expire connections that do not complete in
|
|
|
|
* reasonable time */
|
|
|
|
dl_list_add(&ctrl->conn, &conn->list);
|
|
|
|
return;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
close(fd);
|
|
|
|
os_free(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_tcp_init(struct dpp_global *dpp, struct dpp_authentication *auth,
|
|
|
|
const struct hostapd_ip_addr *addr, int port)
|
|
|
|
{
|
|
|
|
struct dpp_connection *conn;
|
|
|
|
struct sockaddr_storage saddr;
|
|
|
|
socklen_t addrlen;
|
|
|
|
const u8 *hdr, *pos, *end;
|
|
|
|
char txt[100];
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Initialize TCP connection to %s port %d",
|
|
|
|
hostapd_ip_txt(addr, txt, sizeof(txt)), port);
|
|
|
|
if (dpp_ipaddr_to_sockaddr((struct sockaddr *) &saddr, &addrlen,
|
|
|
|
addr, port) < 0) {
|
|
|
|
dpp_auth_deinit(auth);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
conn = os_zalloc(sizeof(*conn));
|
|
|
|
if (!conn) {
|
|
|
|
dpp_auth_deinit(auth);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
conn->global = dpp;
|
|
|
|
conn->auth = auth;
|
|
|
|
conn->sock = socket(AF_INET, SOCK_STREAM, 0);
|
|
|
|
if (conn->sock < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (fcntl(conn->sock, F_SETFL, O_NONBLOCK) != 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: fnctl(O_NONBLOCK) failed: %s",
|
|
|
|
strerror(errno));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (connect(conn->sock, (struct sockaddr *) &saddr, addrlen) < 0) {
|
|
|
|
if (errno != EINPROGRESS) {
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Failed to connect: %s",
|
|
|
|
strerror(errno));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Continue connecting in the background; eloop will call us
|
|
|
|
* once the connection is ready (or failed).
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
if (eloop_register_sock(conn->sock, EVENT_TYPE_WRITE,
|
|
|
|
dpp_conn_tx_ready, conn, NULL) < 0)
|
|
|
|
goto fail;
|
|
|
|
conn->write_eloop = 1;
|
|
|
|
|
|
|
|
hdr = wpabuf_head(auth->req_msg);
|
|
|
|
end = hdr + wpabuf_len(auth->req_msg);
|
|
|
|
hdr += 2; /* skip Category and Actiom */
|
|
|
|
pos = hdr + DPP_HDR_LEN;
|
|
|
|
conn->msg_out = dpp_tcp_encaps(hdr, pos, end - pos);
|
|
|
|
if (!conn->msg_out)
|
|
|
|
goto fail;
|
|
|
|
/* Message will be sent in dpp_conn_tx_ready() */
|
|
|
|
|
|
|
|
/* TODO: eloop timeout to clear a connection if it does not complete
|
|
|
|
* properly */
|
|
|
|
dl_list_add(&dpp->tcp_init, &conn->list);
|
|
|
|
return 0;
|
|
|
|
fail:
|
|
|
|
dpp_connection_free(conn);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dpp_controller_start(struct dpp_global *dpp,
|
|
|
|
struct dpp_controller_config *config)
|
|
|
|
{
|
|
|
|
struct dpp_controller *ctrl;
|
|
|
|
int on = 1;
|
|
|
|
struct sockaddr_in sin;
|
|
|
|
int port;
|
|
|
|
|
|
|
|
if (!dpp || dpp->controller)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
ctrl = os_zalloc(sizeof(*ctrl));
|
|
|
|
if (!ctrl)
|
|
|
|
return -1;
|
|
|
|
ctrl->global = dpp;
|
|
|
|
if (config->configurator_params)
|
|
|
|
ctrl->configurator_params =
|
|
|
|
os_strdup(config->configurator_params);
|
|
|
|
dl_list_init(&ctrl->conn);
|
|
|
|
/* TODO: configure these somehow */
|
|
|
|
ctrl->allowed_roles = DPP_CAPAB_ENROLLEE | DPP_CAPAB_CONFIGURATOR;
|
|
|
|
ctrl->qr_mutual = 0;
|
|
|
|
|
|
|
|
ctrl->sock = socket(AF_INET, SOCK_STREAM, 0);
|
|
|
|
if (ctrl->sock < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (setsockopt(ctrl->sock, SOL_SOCKET, SO_REUSEADDR,
|
|
|
|
&on, sizeof(on)) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"DPP: setsockopt(SO_REUSEADDR) failed: %s",
|
|
|
|
strerror(errno));
|
|
|
|
/* try to continue anyway */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fcntl(ctrl->sock, F_SETFL, O_NONBLOCK) < 0) {
|
|
|
|
wpa_printf(MSG_INFO, "DPP: fnctl(O_NONBLOCK) failed: %s",
|
|
|
|
strerror(errno));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: IPv6 */
|
|
|
|
os_memset(&sin, 0, sizeof(sin));
|
|
|
|
sin.sin_family = AF_INET;
|
|
|
|
sin.sin_addr.s_addr = INADDR_ANY;
|
|
|
|
port = config->tcp_port ? config->tcp_port : DPP_TCP_PORT;
|
|
|
|
sin.sin_port = htons(port);
|
|
|
|
if (bind(ctrl->sock, (struct sockaddr *) &sin, sizeof(sin)) < 0) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"DPP: Failed to bind Controller TCP port: %s",
|
|
|
|
strerror(errno));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (listen(ctrl->sock, 10 /* max backlog */) < 0 ||
|
|
|
|
fcntl(ctrl->sock, F_SETFL, O_NONBLOCK) < 0 ||
|
|
|
|
eloop_register_sock(ctrl->sock, EVENT_TYPE_READ,
|
|
|
|
dpp_controller_tcp_cb, ctrl, NULL))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
dpp->controller = ctrl;
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Controller started on TCP port %d", port);
|
|
|
|
return 0;
|
|
|
|
fail:
|
|
|
|
dpp_controller_free(ctrl);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void dpp_controller_stop(struct dpp_global *dpp)
|
|
|
|
{
|
|
|
|
if (dpp) {
|
|
|
|
dpp_controller_free(dpp->controller);
|
|
|
|
dpp->controller = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-26 22:41:27 +01:00
|
|
|
|
|
|
|
struct wpabuf * dpp_build_presence_announcement(struct dpp_bootstrap_info *bi)
|
|
|
|
{
|
|
|
|
struct wpabuf *msg;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "DPP: Build Presence Announcement frame");
|
|
|
|
|
|
|
|
msg = dpp_alloc_msg(DPP_PA_PRESENCE_ANNOUNCEMENT, 4 + SHA256_MAC_LEN);
|
|
|
|
if (!msg)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Responder Bootstrapping Key Hash */
|
|
|
|
dpp_build_attr_r_bootstrap_key_hash(msg, bi->pubkey_hash_chirp);
|
|
|
|
wpa_hexdump_buf(MSG_DEBUG,
|
|
|
|
"DPP: Presence Announcement frame attributes", msg);
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2019-03-24 21:17:49 +01:00
|
|
|
#endif /* CONFIG_DPP2 */
|