2008-11-23 18:34:26 +01:00
|
|
|
/*
|
|
|
|
* Wi-Fi Protected Setup - common functionality
|
|
|
|
* Copyright (c) 2008, Jouni Malinen <j@w1.fi>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of BSD
|
|
|
|
* license.
|
|
|
|
*
|
|
|
|
* See README and COPYING for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "dh_groups.h"
|
|
|
|
#include "sha256.h"
|
|
|
|
#include "aes_wrap.h"
|
|
|
|
#include "crypto.h"
|
|
|
|
#include "wps_i.h"
|
|
|
|
|
|
|
|
|
|
|
|
static int wps_set_attr(struct wps_parse_attr *attr, u16 type,
|
|
|
|
const u8 *pos, u16 len)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case ATTR_VERSION:
|
|
|
|
if (len != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Version length %u",
|
|
|
|
len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->version = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_MSG_TYPE:
|
|
|
|
if (len != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type "
|
|
|
|
"length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->msg_type = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_ENROLLEE_NONCE:
|
|
|
|
if (len != WPS_NONCE_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Enrollee Nonce "
|
|
|
|
"length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->enrollee_nonce = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_REGISTRAR_NONCE:
|
|
|
|
if (len != WPS_NONCE_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Registrar Nonce "
|
|
|
|
"length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->registrar_nonce = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_UUID_E:
|
|
|
|
if (len != WPS_UUID_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid UUID-E length %u",
|
|
|
|
len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->uuid_e = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_UUID_R:
|
|
|
|
if (len != WPS_UUID_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid UUID-R length %u",
|
|
|
|
len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->uuid_r = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_AUTH_TYPE_FLAGS:
|
|
|
|
if (len != 2) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Authentication "
|
|
|
|
"Type Flags length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->auth_type_flags = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_ENCR_TYPE_FLAGS:
|
|
|
|
if (len != 2) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Encryption Type "
|
|
|
|
"Flags length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->encr_type_flags = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_CONN_TYPE_FLAGS:
|
|
|
|
if (len != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Connection Type "
|
|
|
|
"Flags length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->conn_type_flags = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_CONFIG_METHODS:
|
|
|
|
if (len != 2) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Config Methods "
|
|
|
|
"length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->config_methods = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_SELECTED_REGISTRAR_CONFIG_METHODS:
|
|
|
|
if (len != 2) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Selected "
|
|
|
|
"Registrar Config Methods length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->sel_reg_config_methods = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_PRIMARY_DEV_TYPE:
|
|
|
|
if (len != sizeof(struct wps_dev_type)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Primary Device "
|
|
|
|
"Type length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->primary_dev_type = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_RF_BANDS:
|
|
|
|
if (len != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid RF Bands length "
|
|
|
|
"%u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->rf_bands = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_ASSOC_STATE:
|
|
|
|
if (len != 2) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Association State "
|
|
|
|
"length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->assoc_state = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_CONFIG_ERROR:
|
|
|
|
if (len != 2) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Configuration "
|
|
|
|
"Error length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->config_error = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_DEV_PASSWORD_ID:
|
|
|
|
if (len != 2) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Device Password "
|
|
|
|
"ID length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->dev_password_id = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_OS_VERSION:
|
|
|
|
if (len != 4) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid OS Version length "
|
|
|
|
"%u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->os_version = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_WPS_STATE:
|
|
|
|
if (len != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Wi-Fi Protected "
|
|
|
|
"Setup State length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->wps_state = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_AUTHENTICATOR:
|
|
|
|
if (len != WPS_AUTHENTICATOR_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Authenticator "
|
|
|
|
"length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->authenticator = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_R_HASH1:
|
|
|
|
if (len != WPS_HASH_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid R-Hash1 length %u",
|
|
|
|
len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->r_hash1 = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_R_HASH2:
|
|
|
|
if (len != WPS_HASH_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid R-Hash2 length %u",
|
|
|
|
len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->r_hash2 = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_E_HASH1:
|
|
|
|
if (len != WPS_HASH_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid E-Hash1 length %u",
|
|
|
|
len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->e_hash1 = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_E_HASH2:
|
|
|
|
if (len != WPS_HASH_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid E-Hash2 length %u",
|
|
|
|
len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->e_hash2 = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_R_SNONCE1:
|
|
|
|
if (len != WPS_SECRET_NONCE_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid R-SNonce1 length "
|
|
|
|
"%u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->r_snonce1 = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_R_SNONCE2:
|
|
|
|
if (len != WPS_SECRET_NONCE_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid R-SNonce2 length "
|
|
|
|
"%u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->r_snonce2 = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_E_SNONCE1:
|
|
|
|
if (len != WPS_SECRET_NONCE_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid E-SNonce1 length "
|
|
|
|
"%u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->e_snonce1 = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_E_SNONCE2:
|
|
|
|
if (len != WPS_SECRET_NONCE_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid E-SNonce2 length "
|
|
|
|
"%u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->e_snonce2 = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_KEY_WRAP_AUTH:
|
|
|
|
if (len != WPS_KWA_LEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Key Wrap "
|
|
|
|
"Authenticator length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->key_wrap_auth = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_AUTH_TYPE:
|
|
|
|
if (len != 2) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Authentication "
|
|
|
|
"Type length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->auth_type = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_ENCR_TYPE:
|
|
|
|
if (len != 2) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Encryption "
|
|
|
|
"Type length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->encr_type = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_NETWORK_INDEX:
|
|
|
|
if (len != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Network Index "
|
|
|
|
"length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->network_idx = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_NETWORK_KEY_INDEX:
|
|
|
|
if (len != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Network Key Index "
|
|
|
|
"length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->network_key_idx = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_MAC_ADDR:
|
|
|
|
if (len != ETH_ALEN) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid MAC Address "
|
|
|
|
"length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->mac_addr = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_KEY_PROVIDED_AUTO:
|
|
|
|
if (len != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Key Provided "
|
|
|
|
"Automatically length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->key_prov_auto = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_802_1X_ENABLED:
|
|
|
|
if (len != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid 802.1X Enabled "
|
|
|
|
"length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->dot1x_enabled = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_SELECTED_REGISTRAR:
|
|
|
|
if (len != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Selected Registrar"
|
|
|
|
" length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->selected_registrar = pos;
|
|
|
|
break;
|
2008-11-26 20:00:27 +01:00
|
|
|
case ATTR_REQUEST_TYPE:
|
|
|
|
if (len != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Request Type "
|
|
|
|
"length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->request_type = pos;
|
|
|
|
break;
|
|
|
|
case ATTR_RESPONSE_TYPE:
|
|
|
|
if (len != 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid Response Type "
|
|
|
|
"length %u", len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
attr->request_type = pos;
|
|
|
|
break;
|
2008-11-23 18:34:26 +01:00
|
|
|
case ATTR_MANUFACTURER:
|
|
|
|
attr->manufacturer = pos;
|
|
|
|
attr->manufacturer_len = len;
|
|
|
|
break;
|
|
|
|
case ATTR_MODEL_NAME:
|
|
|
|
attr->model_name = pos;
|
|
|
|
attr->model_name_len = len;
|
|
|
|
break;
|
|
|
|
case ATTR_MODEL_NUMBER:
|
|
|
|
attr->model_number = pos;
|
|
|
|
attr->model_number_len = len;
|
|
|
|
break;
|
|
|
|
case ATTR_SERIAL_NUMBER:
|
|
|
|
attr->serial_number = pos;
|
|
|
|
attr->serial_number_len = len;
|
|
|
|
break;
|
|
|
|
case ATTR_DEV_NAME:
|
|
|
|
attr->dev_name = pos;
|
|
|
|
attr->dev_name_len = len;
|
|
|
|
break;
|
|
|
|
case ATTR_PUBLIC_KEY:
|
|
|
|
attr->public_key = pos;
|
|
|
|
attr->public_key_len = len;
|
|
|
|
break;
|
|
|
|
case ATTR_ENCR_SETTINGS:
|
|
|
|
attr->encr_settings = pos;
|
|
|
|
attr->encr_settings_len = len;
|
|
|
|
break;
|
|
|
|
case ATTR_CRED:
|
|
|
|
if (attr->num_cred >= MAX_CRED_COUNT) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Skipped Credential "
|
|
|
|
"attribute (max %d credentials)",
|
|
|
|
MAX_CRED_COUNT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
attr->cred[attr->num_cred] = pos;
|
|
|
|
attr->cred_len[attr->num_cred] = len;
|
|
|
|
attr->num_cred++;
|
|
|
|
break;
|
|
|
|
case ATTR_SSID:
|
|
|
|
attr->ssid = pos;
|
|
|
|
attr->ssid_len = len;
|
|
|
|
break;
|
|
|
|
case ATTR_NETWORK_KEY:
|
|
|
|
attr->network_key = pos;
|
|
|
|
attr->network_key_len = len;
|
|
|
|
break;
|
|
|
|
case ATTR_EAP_TYPE:
|
|
|
|
attr->eap_type = pos;
|
|
|
|
attr->eap_type_len = len;
|
|
|
|
break;
|
|
|
|
case ATTR_EAP_IDENTITY:
|
|
|
|
attr->eap_identity = pos;
|
|
|
|
attr->eap_identity_len = len;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Unsupported attribute type 0x%x "
|
|
|
|
"len=%u", type, len);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_parse_msg(const struct wpabuf *msg, struct wps_parse_attr *attr)
|
|
|
|
{
|
|
|
|
const u8 *pos, *end;
|
|
|
|
u16 type, len;
|
|
|
|
|
|
|
|
os_memset(attr, 0, sizeof(*attr));
|
|
|
|
pos = wpabuf_head(msg);
|
|
|
|
end = pos + wpabuf_len(msg);
|
|
|
|
|
|
|
|
while (pos < end) {
|
|
|
|
if (end - pos < 4) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid message - "
|
|
|
|
"%lu bytes remaining",
|
|
|
|
(unsigned long) (end - pos));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
type = WPA_GET_BE16(pos);
|
|
|
|
pos += 2;
|
|
|
|
len = WPA_GET_BE16(pos);
|
|
|
|
pos += 2;
|
|
|
|
wpa_printf(MSG_MSGDUMP, "WPS: attr type=0x%x len=%u",
|
|
|
|
type, len);
|
|
|
|
if (len > end - pos) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Attribute overflow");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wps_set_attr(attr, type, pos, len) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
pos += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wps_kdf(const u8 *key, const char *label, u8 *res, size_t res_len)
|
|
|
|
{
|
|
|
|
u8 i_buf[4], key_bits[4];
|
|
|
|
const u8 *addr[3];
|
|
|
|
size_t len[3];
|
|
|
|
int i, iter;
|
|
|
|
u8 hash[SHA256_MAC_LEN], *opos;
|
|
|
|
size_t left;
|
|
|
|
|
|
|
|
WPA_PUT_BE32(key_bits, res_len * 8);
|
|
|
|
|
|
|
|
addr[0] = i_buf;
|
|
|
|
len[0] = sizeof(i_buf);
|
|
|
|
addr[1] = (const u8 *) label;
|
|
|
|
len[1] = os_strlen(label);
|
|
|
|
addr[2] = key_bits;
|
|
|
|
len[2] = sizeof(key_bits);
|
|
|
|
|
|
|
|
iter = (res_len + SHA256_MAC_LEN - 1) / SHA256_MAC_LEN;
|
|
|
|
opos = res;
|
|
|
|
left = res_len;
|
|
|
|
|
|
|
|
for (i = 1; i <= iter; i++) {
|
|
|
|
WPA_PUT_BE32(i_buf, i);
|
|
|
|
hmac_sha256_vector(key, SHA256_MAC_LEN, 3, addr, len, hash);
|
|
|
|
if (i < iter) {
|
|
|
|
os_memcpy(opos, hash, SHA256_MAC_LEN);
|
|
|
|
opos += SHA256_MAC_LEN;
|
|
|
|
left -= SHA256_MAC_LEN;
|
|
|
|
} else
|
|
|
|
os_memcpy(opos, hash, left);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_build_public_key(struct wps_data *wps, struct wpabuf *msg)
|
|
|
|
{
|
|
|
|
struct wpabuf *pubkey;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: * Public Key");
|
|
|
|
pubkey = dh_init(dh_groups_get(WPS_DH_GROUP), &wps->dh_privkey);
|
|
|
|
if (pubkey == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Failed to initialize "
|
|
|
|
"Diffie-Hellman handshake");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpabuf_put_be16(msg, ATTR_PUBLIC_KEY);
|
|
|
|
wpabuf_put_be16(msg, wpabuf_len(pubkey));
|
|
|
|
wpabuf_put_buf(msg, pubkey);
|
|
|
|
|
|
|
|
if (wps->registrar) {
|
|
|
|
wpabuf_free(wps->dh_pubkey_r);
|
|
|
|
wps->dh_pubkey_r = pubkey;
|
|
|
|
} else {
|
|
|
|
wpabuf_free(wps->dh_pubkey_e);
|
|
|
|
wps->dh_pubkey_e = pubkey;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_derive_keys(struct wps_data *wps)
|
|
|
|
{
|
|
|
|
struct wpabuf *pubkey, *dh_shared;
|
|
|
|
u8 dhkey[SHA256_MAC_LEN], kdk[SHA256_MAC_LEN];
|
|
|
|
const u8 *addr[3];
|
|
|
|
size_t len[3];
|
|
|
|
u8 keys[WPS_AUTHKEY_LEN + WPS_KEYWRAPKEY_LEN + WPS_EMSK_LEN];
|
|
|
|
|
|
|
|
if (wps->dh_privkey == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Own DH private key not available");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pubkey = wps->registrar ? wps->dh_pubkey_e : wps->dh_pubkey_r;
|
|
|
|
if (pubkey == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Peer DH public key not available");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
dh_shared = dh_derive_shared(pubkey, wps->dh_privkey,
|
|
|
|
dh_groups_get(WPS_DH_GROUP));
|
|
|
|
if (dh_shared == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Failed to derive DH shared key");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Own DH private key is not needed anymore */
|
|
|
|
wpabuf_free(wps->dh_privkey);
|
|
|
|
wps->dh_privkey = NULL;
|
|
|
|
|
|
|
|
wpa_hexdump_buf_key(MSG_DEBUG, "WPS: DH shared key", dh_shared);
|
|
|
|
|
|
|
|
/* DHKey = SHA-256(g^AB mod p) */
|
|
|
|
addr[0] = wpabuf_head(dh_shared);
|
|
|
|
len[0] = wpabuf_len(dh_shared);
|
|
|
|
sha256_vector(1, addr, len, dhkey);
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "WPS: DHKey", dhkey, sizeof(dhkey));
|
|
|
|
wpabuf_free(dh_shared);
|
|
|
|
|
|
|
|
/* KDK = HMAC-SHA-256_DHKey(N1 || EnrolleeMAC || N2) */
|
|
|
|
addr[0] = wps->nonce_e;
|
|
|
|
len[0] = WPS_NONCE_LEN;
|
|
|
|
addr[1] = wps->mac_addr_e;
|
|
|
|
len[1] = ETH_ALEN;
|
|
|
|
addr[2] = wps->nonce_r;
|
|
|
|
len[2] = WPS_NONCE_LEN;
|
|
|
|
hmac_sha256_vector(dhkey, sizeof(dhkey), 3, addr, len, kdk);
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "WPS: KDK", kdk, sizeof(kdk));
|
|
|
|
|
|
|
|
wps_kdf(kdk, "Wi-Fi Easy and Secure Key Derivation",
|
|
|
|
keys, sizeof(keys));
|
|
|
|
os_memcpy(wps->authkey, keys, WPS_AUTHKEY_LEN);
|
|
|
|
os_memcpy(wps->keywrapkey, keys + WPS_AUTHKEY_LEN, WPS_KEYWRAPKEY_LEN);
|
|
|
|
os_memcpy(wps->emsk, keys + WPS_AUTHKEY_LEN + WPS_KEYWRAPKEY_LEN,
|
|
|
|
WPS_EMSK_LEN);
|
|
|
|
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "WPS: AuthKey",
|
|
|
|
wps->authkey, WPS_AUTHKEY_LEN);
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "WPS: KeyWrapKey",
|
|
|
|
wps->keywrapkey, WPS_KEYWRAPKEY_LEN);
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "WPS: EMSK", wps->emsk, WPS_EMSK_LEN);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_build_authenticator(struct wps_data *wps, struct wpabuf *msg)
|
|
|
|
{
|
|
|
|
u8 hash[SHA256_MAC_LEN];
|
|
|
|
const u8 *addr[2];
|
|
|
|
size_t len[2];
|
|
|
|
|
|
|
|
if (wps->last_msg == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Last message not available for "
|
|
|
|
"building authenticator");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Authenticator = HMAC-SHA256_AuthKey(M_prev || M_curr*)
|
|
|
|
* (M_curr* is M_curr without the Authenticator attribute)
|
|
|
|
*/
|
|
|
|
addr[0] = wpabuf_head(wps->last_msg);
|
|
|
|
len[0] = wpabuf_len(wps->last_msg);
|
|
|
|
addr[1] = wpabuf_head(msg);
|
|
|
|
len[1] = wpabuf_len(msg);
|
|
|
|
hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 2, addr, len, hash);
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: * Authenticator");
|
|
|
|
wpabuf_put_be16(msg, ATTR_AUTHENTICATOR);
|
|
|
|
wpabuf_put_be16(msg, WPS_AUTHENTICATOR_LEN);
|
|
|
|
wpabuf_put_data(msg, hash, WPS_AUTHENTICATOR_LEN);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_process_authenticator(struct wps_data *wps, const u8 *authenticator,
|
|
|
|
const struct wpabuf *msg)
|
|
|
|
{
|
|
|
|
u8 hash[SHA256_MAC_LEN];
|
|
|
|
const u8 *addr[2];
|
|
|
|
size_t len[2];
|
|
|
|
|
|
|
|
if (authenticator == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: No Authenticator attribute "
|
|
|
|
"included");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wps->last_msg == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Last message not available for "
|
|
|
|
"validating authenticator");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Authenticator = HMAC-SHA256_AuthKey(M_prev || M_curr*)
|
|
|
|
* (M_curr* is M_curr without the Authenticator attribute)
|
|
|
|
*/
|
|
|
|
addr[0] = wpabuf_head(wps->last_msg);
|
|
|
|
len[0] = wpabuf_len(wps->last_msg);
|
|
|
|
addr[1] = wpabuf_head(msg);
|
|
|
|
len[1] = wpabuf_len(msg) - 4 - WPS_AUTHENTICATOR_LEN;
|
|
|
|
hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 2, addr, len, hash);
|
|
|
|
|
|
|
|
if (os_memcmp(hash, authenticator, WPS_AUTHENTICATOR_LEN) != 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Incorrect Authenticator");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wps_derive_psk(struct wps_data *wps, const u8 *dev_passwd,
|
|
|
|
size_t dev_passwd_len)
|
|
|
|
{
|
|
|
|
u8 hash[SHA256_MAC_LEN];
|
|
|
|
|
|
|
|
hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, dev_passwd,
|
|
|
|
(dev_passwd_len + 1) / 2, hash);
|
|
|
|
os_memcpy(wps->psk1, hash, WPS_PSK_LEN);
|
|
|
|
hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN,
|
|
|
|
dev_passwd + (dev_passwd_len + 1) / 2,
|
|
|
|
dev_passwd_len / 2, hash);
|
|
|
|
os_memcpy(wps->psk2, hash, WPS_PSK_LEN);
|
|
|
|
|
|
|
|
wpa_hexdump_ascii_key(MSG_DEBUG, "WPS: Device Password",
|
|
|
|
dev_passwd, dev_passwd_len);
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "WPS: PSK1", wps->psk1, WPS_PSK_LEN);
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "WPS: PSK2", wps->psk2, WPS_PSK_LEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct wpabuf * wps_decrypt_encr_settings(struct wps_data *wps, const u8 *encr,
|
|
|
|
size_t encr_len)
|
|
|
|
{
|
|
|
|
struct wpabuf *decrypted;
|
|
|
|
const size_t block_size = 16;
|
|
|
|
size_t i;
|
|
|
|
u8 pad;
|
|
|
|
const u8 *pos;
|
|
|
|
|
|
|
|
/* AES-128-CBC */
|
|
|
|
if (encr == NULL || encr_len < 2 * block_size || encr_len % block_size)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: No Encrypted Settings received");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
decrypted = wpabuf_alloc(encr_len - block_size);
|
|
|
|
if (decrypted == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
wpa_hexdump(MSG_MSGDUMP, "WPS: Encrypted Settings", encr, encr_len);
|
|
|
|
wpabuf_put_data(decrypted, encr + block_size, encr_len - block_size);
|
|
|
|
if (aes_128_cbc_decrypt(wps->keywrapkey, encr, wpabuf_mhead(decrypted),
|
|
|
|
wpabuf_len(decrypted))) {
|
|
|
|
wpabuf_free(decrypted);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_hexdump_buf_key(MSG_MSGDUMP, "WPS: Decrypted Encrypted Settings",
|
|
|
|
decrypted);
|
|
|
|
|
|
|
|
pos = wpabuf_head_u8(decrypted) + wpabuf_len(decrypted) - 1;
|
|
|
|
pad = *pos;
|
|
|
|
if (pad > wpabuf_len(decrypted)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid PKCS#5 v2.0 pad value");
|
|
|
|
wpabuf_free(decrypted);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
for (i = 0; i < pad; i++) {
|
|
|
|
if (*pos-- != pad) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid PKCS#5 v2.0 pad "
|
|
|
|
"string");
|
|
|
|
wpabuf_free(decrypted);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
decrypted->used -= pad;
|
|
|
|
|
|
|
|
return decrypted;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_process_key_wrap_auth(struct wps_data *wps, struct wpabuf *msg,
|
|
|
|
const u8 *key_wrap_auth)
|
|
|
|
{
|
|
|
|
u8 hash[SHA256_MAC_LEN];
|
|
|
|
const u8 *head;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
if (key_wrap_auth == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: No KWA in decrypted attribute");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
head = wpabuf_head(msg);
|
|
|
|
len = wpabuf_len(msg) - 4 - WPS_KWA_LEN;
|
|
|
|
if (head + len != key_wrap_auth - 4) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: KWA not in the end of the "
|
|
|
|
"decrypted attribute");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, head, len, hash);
|
|
|
|
if (os_memcmp(hash, key_wrap_auth, WPS_KWA_LEN) != 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: Invalid KWA");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_build_version(struct wpabuf *msg)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: * Version");
|
|
|
|
wpabuf_put_be16(msg, ATTR_VERSION);
|
|
|
|
wpabuf_put_be16(msg, 1);
|
|
|
|
wpabuf_put_u8(msg, WPS_VERSION);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_build_msg_type(struct wpabuf *msg, enum wps_msg_type msg_type)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: * Message Type (%d)", msg_type);
|
|
|
|
wpabuf_put_be16(msg, ATTR_MSG_TYPE);
|
|
|
|
wpabuf_put_be16(msg, 1);
|
|
|
|
wpabuf_put_u8(msg, msg_type);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_build_enrollee_nonce(struct wps_data *wps, struct wpabuf *msg)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: * Enrollee Nonce");
|
|
|
|
wpabuf_put_be16(msg, ATTR_ENROLLEE_NONCE);
|
|
|
|
wpabuf_put_be16(msg, WPS_NONCE_LEN);
|
|
|
|
wpabuf_put_data(msg, wps->nonce_e, WPS_NONCE_LEN);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_build_registrar_nonce(struct wps_data *wps, struct wpabuf *msg)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: * Registrar Nonce");
|
|
|
|
wpabuf_put_be16(msg, ATTR_REGISTRAR_NONCE);
|
|
|
|
wpabuf_put_be16(msg, WPS_NONCE_LEN);
|
|
|
|
wpabuf_put_data(msg, wps->nonce_r, WPS_NONCE_LEN);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_build_auth_type_flags(struct wps_data *wps, struct wpabuf *msg)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: * Authentication Type Flags");
|
|
|
|
wpabuf_put_be16(msg, ATTR_AUTH_TYPE_FLAGS);
|
|
|
|
wpabuf_put_be16(msg, 2);
|
|
|
|
wpabuf_put_be16(msg, WPS_AUTH_TYPES);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_build_encr_type_flags(struct wps_data *wps, struct wpabuf *msg)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: * Encryption Type Flags");
|
|
|
|
wpabuf_put_be16(msg, ATTR_ENCR_TYPE_FLAGS);
|
|
|
|
wpabuf_put_be16(msg, 2);
|
|
|
|
wpabuf_put_be16(msg, WPS_ENCR_TYPES);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_build_conn_type_flags(struct wps_data *wps, struct wpabuf *msg)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: * Connection Type Flags");
|
|
|
|
wpabuf_put_be16(msg, ATTR_CONN_TYPE_FLAGS);
|
|
|
|
wpabuf_put_be16(msg, 1);
|
|
|
|
wpabuf_put_u8(msg, WPS_CONN_ESS);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_build_assoc_state(struct wps_data *wps, struct wpabuf *msg)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: * Association State");
|
|
|
|
wpabuf_put_be16(msg, ATTR_ASSOC_STATE);
|
|
|
|
wpabuf_put_be16(msg, 2);
|
|
|
|
wpabuf_put_be16(msg, WPS_ASSOC_NOT_ASSOC);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_build_key_wrap_auth(struct wps_data *wps, struct wpabuf *msg)
|
|
|
|
{
|
|
|
|
u8 hash[SHA256_MAC_LEN];
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: * Key Wrap Authenticator");
|
|
|
|
hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, wpabuf_head(msg),
|
|
|
|
wpabuf_len(msg), hash);
|
|
|
|
|
|
|
|
wpabuf_put_be16(msg, ATTR_KEY_WRAP_AUTH);
|
|
|
|
wpabuf_put_be16(msg, WPS_KWA_LEN);
|
|
|
|
wpabuf_put_data(msg, hash, WPS_KWA_LEN);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int wps_build_encr_settings(struct wps_data *wps, struct wpabuf *msg,
|
|
|
|
struct wpabuf *plain)
|
|
|
|
{
|
|
|
|
size_t pad_len;
|
|
|
|
const size_t block_size = 16;
|
|
|
|
u8 *iv, *data;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "WPS: * Encrypted Settings");
|
|
|
|
|
|
|
|
/* PKCS#5 v2.0 pad */
|
|
|
|
pad_len = block_size - wpabuf_len(plain) % block_size;
|
|
|
|
os_memset(wpabuf_put(plain, pad_len), pad_len, pad_len);
|
|
|
|
|
|
|
|
wpabuf_put_be16(msg, ATTR_ENCR_SETTINGS);
|
|
|
|
wpabuf_put_be16(msg, block_size + wpabuf_len(plain));
|
|
|
|
|
|
|
|
iv = wpabuf_put(msg, block_size);
|
|
|
|
if (os_get_random(iv, block_size) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
data = wpabuf_put(msg, 0);
|
|
|
|
wpabuf_put_buf(msg, plain);
|
|
|
|
if (aes_128_cbc_encrypt(wps->keywrapkey, iv, data, wpabuf_len(plain)))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|