2010-09-15 09:51:40 +02:00
|
|
|
/*
|
|
|
|
* EAP peer method: EAP-pwd (RFC 5931)
|
|
|
|
* Copyright (c) 2010, Dan Harkins <dharkins@lounge.org>
|
|
|
|
*
|
2012-02-11 13:19:26 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2010-09-15 09:51:40 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
|
|
|
#include "common.h"
|
2018-05-25 20:40:04 +02:00
|
|
|
#include "crypto/sha1.h"
|
2012-07-02 21:10:03 +02:00
|
|
|
#include "crypto/sha256.h"
|
2018-05-25 20:40:04 +02:00
|
|
|
#include "crypto/sha512.h"
|
2015-03-28 08:43:33 +01:00
|
|
|
#include "crypto/ms_funcs.h"
|
2017-10-16 07:45:09 +02:00
|
|
|
#include "crypto/crypto.h"
|
2010-09-15 09:51:40 +02:00
|
|
|
#include "eap_peer/eap_i.h"
|
|
|
|
#include "eap_common/eap_pwd_common.h"
|
|
|
|
|
|
|
|
|
|
|
|
struct eap_pwd_data {
|
|
|
|
enum {
|
2014-04-05 23:51:00 +02:00
|
|
|
PWD_ID_Req, PWD_Commit_Req, PWD_Confirm_Req,
|
|
|
|
SUCCESS_ON_FRAG_COMPLETION, SUCCESS, FAILURE
|
2010-09-15 09:51:40 +02:00
|
|
|
} state;
|
|
|
|
u8 *id_peer;
|
|
|
|
size_t id_peer_len;
|
|
|
|
u8 *id_server;
|
|
|
|
size_t id_server_len;
|
|
|
|
u8 *password;
|
|
|
|
size_t password_len;
|
2015-03-28 08:43:33 +01:00
|
|
|
int password_hash;
|
2019-07-23 12:16:59 +02:00
|
|
|
struct wpa_freq_range_list allowed_groups;
|
2010-09-15 09:51:40 +02:00
|
|
|
u16 group_num;
|
2018-05-25 20:40:04 +02:00
|
|
|
u8 prep;
|
|
|
|
u8 token[4];
|
2010-09-15 09:51:40 +02:00
|
|
|
EAP_PWD_group *grp;
|
|
|
|
|
2012-02-11 11:46:30 +01:00
|
|
|
struct wpabuf *inbuf;
|
|
|
|
size_t in_frag_pos;
|
|
|
|
struct wpabuf *outbuf;
|
|
|
|
size_t out_frag_pos;
|
|
|
|
size_t mtu;
|
|
|
|
|
2017-10-16 07:45:09 +02:00
|
|
|
struct crypto_bignum *k;
|
|
|
|
struct crypto_bignum *private_value;
|
|
|
|
struct crypto_bignum *server_scalar;
|
|
|
|
struct crypto_bignum *my_scalar;
|
|
|
|
struct crypto_ec_point *my_element;
|
|
|
|
struct crypto_ec_point *server_element;
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
u8 msk[EAP_MSK_LEN];
|
|
|
|
u8 emsk[EAP_EMSK_LEN];
|
2014-05-11 20:22:55 +02:00
|
|
|
u8 session_id[1 + SHA256_MAC_LEN];
|
2010-09-15 10:04:09 +02:00
|
|
|
};
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
|
2019-07-23 12:16:59 +02:00
|
|
|
static void eap_pwd_deinit(struct eap_sm *sm, void *priv);
|
|
|
|
|
|
|
|
|
2010-09-15 09:51:40 +02:00
|
|
|
#ifndef CONFIG_NO_STDOUT_DEBUG
|
|
|
|
static const char * eap_pwd_state_txt(int state)
|
|
|
|
{
|
|
|
|
switch (state) {
|
|
|
|
case PWD_ID_Req:
|
|
|
|
return "PWD-ID-Req";
|
|
|
|
case PWD_Commit_Req:
|
|
|
|
return "PWD-Commit-Req";
|
|
|
|
case PWD_Confirm_Req:
|
|
|
|
return "PWD-Confirm-Req";
|
2014-04-05 23:51:00 +02:00
|
|
|
case SUCCESS_ON_FRAG_COMPLETION:
|
|
|
|
return "SUCCESS_ON_FRAG_COMPLETION";
|
2010-09-15 09:51:40 +02:00
|
|
|
case SUCCESS:
|
|
|
|
return "SUCCESS";
|
|
|
|
case FAILURE:
|
|
|
|
return "FAILURE";
|
|
|
|
default:
|
|
|
|
return "PWD-UNK";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NO_STDOUT_DEBUG */
|
|
|
|
|
|
|
|
|
|
|
|
static void eap_pwd_state(struct eap_pwd_data *data, int state)
|
|
|
|
{
|
2012-02-11 11:46:30 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "EAP-PWD: %s -> %s",
|
2010-09-15 09:51:40 +02:00
|
|
|
eap_pwd_state_txt(data->state), eap_pwd_state_txt(state));
|
|
|
|
data->state = state;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void * eap_pwd_init(struct eap_sm *sm)
|
|
|
|
{
|
|
|
|
struct eap_pwd_data *data;
|
|
|
|
const u8 *identity, *password;
|
|
|
|
size_t identity_len, password_len;
|
2014-01-05 18:08:51 +01:00
|
|
|
int fragment_size;
|
2015-03-28 08:43:33 +01:00
|
|
|
int pwhash;
|
2019-07-23 12:16:59 +02:00
|
|
|
const char *phase1;
|
2010-09-15 09:51:40 +02:00
|
|
|
|
2015-03-28 08:43:33 +01:00
|
|
|
password = eap_get_config_password2(sm, &password_len, &pwhash);
|
2010-09-15 09:51:40 +02:00
|
|
|
if (password == NULL) {
|
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD: No password configured!");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
identity = eap_get_config_identity(sm, &identity_len);
|
|
|
|
if (identity == NULL) {
|
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD: No identity configured!");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-09-15 10:04:09 +02:00
|
|
|
if ((data = os_zalloc(sizeof(*data))) == NULL) {
|
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD: memory allocation data fail");
|
2010-09-15 09:51:40 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((data->id_peer = os_malloc(identity_len)) == NULL) {
|
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD: memory allocation id fail");
|
|
|
|
os_free(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
os_memcpy(data->id_peer, identity, identity_len);
|
|
|
|
data->id_peer_len = identity_len;
|
|
|
|
|
|
|
|
if ((data->password = os_malloc(password_len)) == NULL) {
|
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD: memory allocation psk fail");
|
2014-07-24 18:55:15 +02:00
|
|
|
bin_clear_free(data->id_peer, data->id_peer_len);
|
2010-09-15 09:51:40 +02:00
|
|
|
os_free(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
os_memcpy(data->password, password, password_len);
|
|
|
|
data->password_len = password_len;
|
2015-03-28 08:43:33 +01:00
|
|
|
data->password_hash = pwhash;
|
2010-09-15 09:51:40 +02:00
|
|
|
|
2019-07-23 12:16:59 +02:00
|
|
|
phase1 = eap_get_config_phase1(sm);
|
|
|
|
if (phase1) {
|
|
|
|
const char *pos, *end;
|
|
|
|
char *copy = NULL;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
pos = os_strstr(phase1, "eap_pwd_groups=");
|
|
|
|
if (pos) {
|
|
|
|
pos += 15;
|
|
|
|
end = os_strchr(pos, ' ');
|
|
|
|
if (end) {
|
|
|
|
copy = os_zalloc(end - pos + 1);
|
|
|
|
if (!copy)
|
|
|
|
goto fail;
|
|
|
|
os_memcpy(copy, pos, end - pos);
|
|
|
|
pos = copy;
|
|
|
|
}
|
|
|
|
res = freq_range_list_parse(&data->allowed_groups, pos);
|
|
|
|
os_free(copy);
|
|
|
|
if (res)
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-11 11:46:30 +01:00
|
|
|
data->out_frag_pos = data->in_frag_pos = 0;
|
|
|
|
data->inbuf = data->outbuf = NULL;
|
2014-01-05 18:08:51 +01:00
|
|
|
fragment_size = eap_get_config_fragment_size(sm);
|
|
|
|
if (fragment_size <= 0)
|
|
|
|
data->mtu = 1020; /* default from RFC 5931 */
|
|
|
|
else
|
|
|
|
data->mtu = fragment_size;
|
2012-02-11 11:46:30 +01:00
|
|
|
|
2010-09-15 09:51:40 +02:00
|
|
|
data->state = PWD_ID_Req;
|
|
|
|
|
|
|
|
return data;
|
2019-07-23 12:16:59 +02:00
|
|
|
fail:
|
|
|
|
eap_pwd_deinit(sm, data);
|
|
|
|
return NULL;
|
2010-09-15 09:51:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void eap_pwd_deinit(struct eap_sm *sm, void *priv)
|
|
|
|
{
|
|
|
|
struct eap_pwd_data *data = priv;
|
|
|
|
|
2017-10-16 07:45:09 +02:00
|
|
|
crypto_bignum_deinit(data->private_value, 1);
|
|
|
|
crypto_bignum_deinit(data->server_scalar, 1);
|
|
|
|
crypto_bignum_deinit(data->my_scalar, 1);
|
|
|
|
crypto_bignum_deinit(data->k, 1);
|
|
|
|
crypto_ec_point_deinit(data->my_element, 1);
|
|
|
|
crypto_ec_point_deinit(data->server_element, 1);
|
2014-07-24 18:55:15 +02:00
|
|
|
bin_clear_free(data->id_peer, data->id_peer_len);
|
|
|
|
bin_clear_free(data->id_server, data->id_server_len);
|
2014-06-29 20:16:30 +02:00
|
|
|
bin_clear_free(data->password, data->password_len);
|
2010-09-15 10:16:17 +02:00
|
|
|
if (data->grp) {
|
2017-10-16 07:45:09 +02:00
|
|
|
crypto_ec_deinit(data->grp->group);
|
|
|
|
crypto_ec_point_deinit(data->grp->pwe, 1);
|
2010-09-15 10:16:17 +02:00
|
|
|
os_free(data->grp);
|
|
|
|
}
|
2014-04-05 23:19:26 +02:00
|
|
|
wpabuf_free(data->inbuf);
|
|
|
|
wpabuf_free(data->outbuf);
|
2019-07-23 12:16:59 +02:00
|
|
|
os_free(data->allowed_groups.range);
|
2014-06-29 20:16:30 +02:00
|
|
|
bin_clear_free(data, sizeof(*data));
|
2010-09-15 09:51:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static u8 * eap_pwd_getkey(struct eap_sm *sm, void *priv, size_t *len)
|
|
|
|
{
|
|
|
|
struct eap_pwd_data *data = priv;
|
|
|
|
u8 *key;
|
|
|
|
|
|
|
|
if (data->state != SUCCESS)
|
|
|
|
return NULL;
|
|
|
|
|
2017-03-07 10:17:23 +01:00
|
|
|
key = os_memdup(data->msk, EAP_MSK_LEN);
|
2010-09-15 09:51:40 +02:00
|
|
|
if (key == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
*len = EAP_MSK_LEN;
|
|
|
|
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-11 20:22:55 +02:00
|
|
|
static u8 * eap_pwd_get_session_id(struct eap_sm *sm, void *priv, size_t *len)
|
|
|
|
{
|
|
|
|
struct eap_pwd_data *data = priv;
|
|
|
|
u8 *id;
|
|
|
|
|
|
|
|
if (data->state != SUCCESS)
|
|
|
|
return NULL;
|
|
|
|
|
2017-03-07 10:17:23 +01:00
|
|
|
id = os_memdup(data->session_id, 1 + SHA256_MAC_LEN);
|
2014-05-11 20:22:55 +02:00
|
|
|
if (id == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
*len = 1 + SHA256_MAC_LEN;
|
|
|
|
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-23 12:16:59 +02:00
|
|
|
static int eap_pwd_allowed_group(struct eap_pwd_data *data, u16 group)
|
|
|
|
{
|
|
|
|
if (!data->allowed_groups.range) {
|
|
|
|
/* By default, allow the groups using NIST curves P-256, P-384,
|
|
|
|
* and P-521. */
|
|
|
|
return group == 19 || group == 20 || group == 21;
|
|
|
|
}
|
|
|
|
|
|
|
|
return freq_range_list_includes(&data->allowed_groups, group);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-11 11:46:30 +01:00
|
|
|
static void
|
2010-09-15 09:51:40 +02:00
|
|
|
eap_pwd_perform_id_exchange(struct eap_sm *sm, struct eap_pwd_data *data,
|
|
|
|
struct eap_method_ret *ret,
|
|
|
|
const struct wpabuf *reqData,
|
|
|
|
const u8 *payload, size_t payload_len)
|
|
|
|
{
|
|
|
|
struct eap_pwd_id *id;
|
|
|
|
|
|
|
|
if (data->state != PWD_ID_Req) {
|
|
|
|
ret->ignore = TRUE;
|
2012-02-11 11:46:30 +01:00
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
2010-09-15 09:51:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (payload_len < sizeof(struct eap_pwd_id)) {
|
|
|
|
ret->ignore = TRUE;
|
2012-02-11 11:46:30 +01:00
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
2010-09-15 09:51:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
id = (struct eap_pwd_id *) payload;
|
|
|
|
data->group_num = be_to_host16(id->group_num);
|
2015-03-28 08:43:33 +01:00
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-PWD: Server EAP-pwd-ID proposal: group=%u random=%u prf=%u prep=%u",
|
|
|
|
data->group_num, id->random_function, id->prf, id->prep);
|
2019-07-23 12:16:59 +02:00
|
|
|
if (id->random_function != EAP_PWD_DEFAULT_RAND_FUNC ||
|
|
|
|
id->prf != EAP_PWD_DEFAULT_PRF ||
|
|
|
|
!eap_pwd_allowed_group(data, data->group_num)) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"EAP-pwd: Unsupported or disabled proposal");
|
2012-02-11 11:46:30 +01:00
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
2010-09-15 09:51:40 +02:00
|
|
|
}
|
|
|
|
|
2015-03-28 08:43:33 +01:00
|
|
|
if (id->prep != EAP_PWD_PREP_NONE &&
|
2018-05-25 20:40:04 +02:00
|
|
|
id->prep != EAP_PWD_PREP_MS &&
|
2018-05-25 20:40:04 +02:00
|
|
|
id->prep != EAP_PWD_PREP_SSHA1 &&
|
2018-05-25 20:40:04 +02:00
|
|
|
id->prep != EAP_PWD_PREP_SSHA256 &&
|
|
|
|
id->prep != EAP_PWD_PREP_SSHA512) {
|
2015-03-28 08:43:33 +01:00
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-PWD: Unsupported password pre-processing technique (Prep=%u)",
|
|
|
|
id->prep);
|
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id->prep == EAP_PWD_PREP_NONE && data->password_hash) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-PWD: Unhashed password not available");
|
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-02-11 11:46:30 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "EAP-PWD (peer): using group %d",
|
2010-09-15 09:51:40 +02:00
|
|
|
data->group_num);
|
|
|
|
|
2018-05-25 20:40:04 +02:00
|
|
|
data->prep = id->prep;
|
|
|
|
os_memcpy(data->token, id->token, sizeof(id->token));
|
|
|
|
|
2018-05-28 15:17:20 +02:00
|
|
|
if (data->id_server || data->grp) {
|
|
|
|
wpa_printf(MSG_INFO, "EAP-pwd: data was already allocated");
|
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-09-15 09:51:40 +02:00
|
|
|
data->id_server = os_malloc(payload_len - sizeof(struct eap_pwd_id));
|
|
|
|
if (data->id_server == NULL) {
|
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD: memory allocation id fail");
|
2012-02-11 11:46:30 +01:00
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
2010-09-15 09:51:40 +02:00
|
|
|
}
|
|
|
|
data->id_server_len = payload_len - sizeof(struct eap_pwd_id);
|
|
|
|
os_memcpy(data->id_server, id->identity, data->id_server_len);
|
|
|
|
wpa_hexdump_ascii(MSG_INFO, "EAP-PWD (peer): server sent id of",
|
|
|
|
data->id_server, data->id_server_len);
|
|
|
|
|
2018-05-25 20:40:04 +02:00
|
|
|
data->grp = get_eap_pwd_group(data->group_num);
|
2014-05-11 17:38:07 +02:00
|
|
|
if (data->grp == NULL) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD: failed to allocate memory for "
|
|
|
|
"group");
|
2012-02-11 11:46:30 +01:00
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
2010-09-15 09:51:40 +02:00
|
|
|
}
|
|
|
|
|
2018-05-25 20:40:04 +02:00
|
|
|
data->outbuf = wpabuf_alloc(sizeof(struct eap_pwd_id) +
|
|
|
|
data->id_peer_len);
|
|
|
|
if (data->outbuf == NULL) {
|
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wpabuf_put_be16(data->outbuf, data->group_num);
|
|
|
|
wpabuf_put_u8(data->outbuf, EAP_PWD_DEFAULT_RAND_FUNC);
|
|
|
|
wpabuf_put_u8(data->outbuf, EAP_PWD_DEFAULT_PRF);
|
|
|
|
wpabuf_put_data(data->outbuf, id->token, sizeof(id->token));
|
|
|
|
wpabuf_put_u8(data->outbuf, id->prep);
|
|
|
|
wpabuf_put_data(data->outbuf, data->id_peer, data->id_peer_len);
|
|
|
|
|
|
|
|
eap_pwd_state(data, PWD_Commit_Req);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
eap_pwd_perform_commit_exchange(struct eap_sm *sm, struct eap_pwd_data *data,
|
|
|
|
struct eap_method_ret *ret,
|
|
|
|
const struct wpabuf *reqData,
|
|
|
|
const u8 *payload, size_t payload_len)
|
|
|
|
{
|
2019-04-05 01:12:50 +02:00
|
|
|
struct crypto_ec_point *K = NULL;
|
2019-04-13 16:30:22 +02:00
|
|
|
struct crypto_bignum *mask = NULL;
|
2018-05-25 20:40:04 +02:00
|
|
|
const u8 *ptr = payload;
|
2019-04-05 11:45:16 +02:00
|
|
|
u8 *scalar, *element;
|
2018-05-25 20:40:04 +02:00
|
|
|
size_t prime_len, order_len;
|
|
|
|
const u8 *password;
|
|
|
|
size_t password_len;
|
|
|
|
u8 pwhashhash[16];
|
2018-05-25 20:40:04 +02:00
|
|
|
const u8 *salt_pwd[2];
|
|
|
|
size_t salt_pwd_len[2], exp_len;
|
|
|
|
u8 salt_len, salthashpwd[64]; /* 64 = SHA512_DIGEST_LENGTH */
|
2018-05-25 20:40:04 +02:00
|
|
|
int res;
|
|
|
|
|
|
|
|
if (data->state != PWD_Commit_Req) {
|
|
|
|
ret->ignore = TRUE;
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!data->grp) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-PWD (client): uninitialized EAP-pwd group");
|
|
|
|
ret->ignore = TRUE;
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
|
|
|
prime_len = crypto_ec_prime_len(data->grp->group);
|
|
|
|
order_len = crypto_ec_order_len(data->grp->group);
|
|
|
|
|
2018-05-25 20:40:04 +02:00
|
|
|
switch (data->prep) {
|
|
|
|
case EAP_PWD_PREP_MS:
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-pwd commit request, password prep is MS");
|
2015-08-01 20:03:30 +02:00
|
|
|
#ifdef CONFIG_FIPS
|
|
|
|
wpa_printf(MSG_ERROR,
|
|
|
|
"EAP-PWD (peer): MS password hash not supported in FIPS mode");
|
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
|
|
|
#else /* CONFIG_FIPS */
|
2018-05-25 20:40:04 +02:00
|
|
|
if (payload_len != 2 * prime_len + order_len) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"EAP-pwd: Unexpected Commit payload length %u (expected %u)",
|
|
|
|
(unsigned int) payload_len,
|
|
|
|
(unsigned int) (2 * prime_len + order_len));
|
|
|
|
goto fin;
|
|
|
|
}
|
2015-03-28 08:43:33 +01:00
|
|
|
if (data->password_hash) {
|
|
|
|
res = hash_nt_password_hash(data->password, pwhashhash);
|
|
|
|
} else {
|
|
|
|
u8 pwhash[16];
|
|
|
|
|
|
|
|
res = nt_password_hash(data->password,
|
|
|
|
data->password_len, pwhash);
|
|
|
|
if (res == 0)
|
|
|
|
res = hash_nt_password_hash(pwhash, pwhashhash);
|
2019-05-25 23:47:17 +02:00
|
|
|
forced_memzero(pwhash, sizeof(pwhash));
|
2015-03-28 08:43:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (res) {
|
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
password = pwhashhash;
|
|
|
|
password_len = sizeof(pwhashhash);
|
2015-08-01 20:03:30 +02:00
|
|
|
#endif /* CONFIG_FIPS */
|
2018-05-25 20:40:04 +02:00
|
|
|
break;
|
2018-05-25 20:40:04 +02:00
|
|
|
case EAP_PWD_PREP_SSHA1:
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-pwd commit request, password prep is salted sha1");
|
|
|
|
if (payload_len < 1 || *ptr == 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "EAP-pwd: Invalid Salt-len");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
salt_len = *ptr++;
|
|
|
|
exp_len = 1 + salt_len + 2 * prime_len + order_len;
|
|
|
|
if (payload_len != exp_len) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"EAP-pwd: Unexpected Commit payload length %u (expected %u)",
|
|
|
|
(unsigned int) payload_len,
|
|
|
|
(unsigned int) exp_len);
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* salted-password = Hash(password | salt) */
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "EAP-pwd: Unsalted password",
|
|
|
|
data->password, data->password_len);
|
|
|
|
wpa_hexdump(MSG_DEBUG, "EAP-pwd: Salt", ptr, salt_len);
|
|
|
|
salt_pwd[0] = data->password;
|
|
|
|
salt_pwd[1] = ptr;
|
|
|
|
salt_pwd_len[0] = data->password_len;
|
|
|
|
salt_pwd_len[1] = salt_len;
|
|
|
|
if (sha1_vector(2, salt_pwd, salt_pwd_len, salthashpwd) < 0)
|
|
|
|
goto fin;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-pwd: sha1 hashed %d byte salt with password",
|
|
|
|
(int) salt_len);
|
|
|
|
ptr += salt_len;
|
|
|
|
password = salthashpwd;
|
|
|
|
password_len = SHA1_MAC_LEN;
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "EAP-pwd: Salted password",
|
|
|
|
password, password_len);
|
|
|
|
break;
|
2018-05-25 20:40:04 +02:00
|
|
|
case EAP_PWD_PREP_SSHA256:
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-pwd commit request, password prep is salted sha256");
|
|
|
|
if (payload_len < 1 || *ptr == 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "EAP-pwd: Invalid Salt-len");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
salt_len = *ptr++;
|
|
|
|
exp_len = 1 + salt_len + 2 * prime_len + order_len;
|
|
|
|
if (payload_len != exp_len) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"EAP-pwd: Unexpected Commit payload length %u (expected %u)",
|
|
|
|
(unsigned int) payload_len,
|
|
|
|
(unsigned int) exp_len);
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* salted-password = Hash(password | salt) */
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "EAP-pwd: Unsalted password",
|
|
|
|
data->password, data->password_len);
|
|
|
|
wpa_hexdump(MSG_DEBUG, "EAP-pwd: Salt", ptr, salt_len);
|
|
|
|
salt_pwd[0] = data->password;
|
|
|
|
salt_pwd[1] = ptr;
|
|
|
|
salt_pwd_len[0] = data->password_len;
|
|
|
|
salt_pwd_len[1] = salt_len;
|
|
|
|
if (sha256_vector(2, salt_pwd, salt_pwd_len, salthashpwd) < 0)
|
|
|
|
goto fin;
|
|
|
|
|
|
|
|
ptr += salt_len;
|
|
|
|
password = salthashpwd;
|
|
|
|
password_len = SHA256_MAC_LEN;
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "EAP-pwd: Salted password",
|
|
|
|
password, password_len);
|
|
|
|
break;
|
2018-05-25 20:40:04 +02:00
|
|
|
#ifdef CONFIG_SHA512
|
|
|
|
case EAP_PWD_PREP_SSHA512:
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-pwd commit request, password prep is salted sha512");
|
|
|
|
if (payload_len < 1 || *ptr == 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "EAP-pwd: Invalid Salt-len");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
salt_len = *ptr++;
|
|
|
|
exp_len = 1 + salt_len + 2 * prime_len + order_len;
|
|
|
|
if (payload_len != exp_len) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"EAP-pwd: Unexpected Commit payload length %u (expected %u)",
|
|
|
|
(unsigned int) payload_len,
|
|
|
|
(unsigned int) exp_len);
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* salted-password = Hash(password | salt) */
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "EAP-pwd: Unsalted password",
|
|
|
|
data->password, data->password_len);
|
|
|
|
wpa_hexdump(MSG_DEBUG, "EAP-pwd: Salt", ptr, salt_len);
|
|
|
|
salt_pwd[0] = data->password;
|
|
|
|
salt_pwd[1] = ptr;
|
|
|
|
salt_pwd_len[0] = data->password_len;
|
|
|
|
salt_pwd_len[1] = salt_len;
|
|
|
|
if (sha512_vector(2, salt_pwd, salt_pwd_len, salthashpwd) < 0)
|
|
|
|
goto fin;
|
|
|
|
|
|
|
|
ptr += salt_len;
|
|
|
|
password = salthashpwd;
|
|
|
|
password_len = SHA512_MAC_LEN;
|
|
|
|
wpa_hexdump_key(MSG_DEBUG, "EAP-pwd: Salted password",
|
|
|
|
password, password_len);
|
|
|
|
break;
|
|
|
|
#endif /* CONFIG_SHA512 */
|
2018-05-25 20:40:04 +02:00
|
|
|
case EAP_PWD_PREP_NONE:
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-pwd commit request, password prep is NONE");
|
|
|
|
if (data->password_hash) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-PWD: Unhashed password not available");
|
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (payload_len != 2 * prime_len + order_len) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"EAP-pwd: Unexpected Commit payload length %u (expected %u)",
|
|
|
|
(unsigned int) payload_len,
|
|
|
|
(unsigned int) (2 * prime_len + order_len));
|
|
|
|
goto fin;
|
|
|
|
}
|
2015-03-28 08:43:33 +01:00
|
|
|
password = data->password;
|
|
|
|
password_len = data->password_len;
|
2018-05-25 20:40:04 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-pwd: Unsupported password pre-processing technique (Prep=%u)",
|
|
|
|
data->prep);
|
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
2015-03-28 08:43:33 +01:00
|
|
|
}
|
|
|
|
|
2010-09-15 09:51:40 +02:00
|
|
|
/* compute PWE */
|
2015-03-28 08:43:33 +01:00
|
|
|
res = compute_password_element(data->grp, data->group_num,
|
|
|
|
password, password_len,
|
|
|
|
data->id_server, data->id_server_len,
|
|
|
|
data->id_peer, data->id_peer_len,
|
2018-05-25 20:40:04 +02:00
|
|
|
data->token);
|
2019-05-25 23:47:17 +02:00
|
|
|
forced_memzero(pwhashhash, sizeof(pwhashhash));
|
|
|
|
forced_memzero(salthashpwd, sizeof(salthashpwd));
|
2015-03-28 08:43:33 +01:00
|
|
|
if (res) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): unable to compute PWE");
|
2012-02-11 11:46:30 +01:00
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
return;
|
2010-09-15 09:51:40 +02:00
|
|
|
}
|
|
|
|
|
2012-02-11 11:46:30 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "EAP-PWD (peer): computed %d bit PWE...",
|
2017-10-16 07:45:09 +02:00
|
|
|
(int) crypto_ec_prime_len_bits(data->grp->group));
|
2010-09-15 09:51:40 +02:00
|
|
|
|
2017-10-16 07:45:09 +02:00
|
|
|
data->private_value = crypto_bignum_init();
|
|
|
|
data->my_element = crypto_ec_point_init(data->grp->group);
|
|
|
|
data->my_scalar = crypto_bignum_init();
|
|
|
|
mask = crypto_bignum_init();
|
2019-04-13 16:30:22 +02:00
|
|
|
if (!data->private_value || !data->my_element ||
|
2017-10-16 07:45:09 +02:00
|
|
|
!data->my_scalar || !mask) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): scalar allocation fail");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
2019-04-05 11:37:21 +02:00
|
|
|
if (eap_pwd_get_rand_mask(data->grp, data->private_value, mask,
|
|
|
|
data->my_scalar) < 0)
|
2014-06-27 12:24:30 +02:00
|
|
|
goto fin;
|
2010-09-15 09:51:40 +02:00
|
|
|
|
2017-10-16 07:45:09 +02:00
|
|
|
if (crypto_ec_point_mul(data->grp->group, data->grp->pwe, mask,
|
|
|
|
data->my_element) < 0) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): element allocation "
|
|
|
|
"fail");
|
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
2017-10-16 07:45:09 +02:00
|
|
|
if (crypto_ec_point_invert(data->grp->group, data->my_element) < 0) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): element inversion fail");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* process the request */
|
2017-10-16 07:45:09 +02:00
|
|
|
data->k = crypto_bignum_init();
|
|
|
|
K = crypto_ec_point_init(data->grp->group);
|
2019-04-05 01:12:50 +02:00
|
|
|
if (!data->k || !K) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): peer data allocation "
|
|
|
|
"fail");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* element, x then y, followed by scalar */
|
2019-04-05 01:12:50 +02:00
|
|
|
data->server_element = eap_pwd_get_element(data->grp, ptr);
|
2017-10-16 07:45:09 +02:00
|
|
|
if (!data->server_element) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): setting peer element "
|
|
|
|
"fail");
|
|
|
|
goto fin;
|
|
|
|
}
|
2017-10-16 07:45:09 +02:00
|
|
|
ptr += prime_len * 2;
|
2019-04-05 01:12:50 +02:00
|
|
|
data->server_scalar = eap_pwd_get_scalar(data->grp, ptr);
|
2017-10-16 07:45:09 +02:00
|
|
|
if (!data->server_scalar) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"EAP-PWD (peer): setting peer scalar fail");
|
|
|
|
goto fin;
|
|
|
|
}
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* compute the shared key, k */
|
2017-10-16 07:45:09 +02:00
|
|
|
if (crypto_ec_point_mul(data->grp->group, data->grp->pwe,
|
|
|
|
data->server_scalar, K) < 0 ||
|
|
|
|
crypto_ec_point_add(data->grp->group, K, data->server_element,
|
|
|
|
K) < 0 ||
|
|
|
|
crypto_ec_point_mul(data->grp->group, K, data->private_value,
|
|
|
|
K) < 0) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): computing shared key "
|
|
|
|
"fail");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2019-04-13 16:30:22 +02:00
|
|
|
* This check is strictly speaking just for the case where
|
2010-09-15 09:51:40 +02:00
|
|
|
* co-factor > 1 but it was suggested that even though this is probably
|
|
|
|
* never going to happen it is a simple and safe check "just to be
|
|
|
|
* sure" so let's be safe.
|
|
|
|
*/
|
2017-10-16 07:45:09 +02:00
|
|
|
if (crypto_ec_point_is_at_infinity(data->grp->group, K)) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): shared key point is at "
|
|
|
|
"infinity!\n");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
2017-10-16 07:45:09 +02:00
|
|
|
if (crypto_ec_point_x(data->grp->group, K, data->k) < 0) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): unable to extract "
|
|
|
|
"shared secret from point");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now do the response */
|
2019-04-05 11:45:16 +02:00
|
|
|
data->outbuf = wpabuf_alloc(2 * prime_len + order_len);
|
|
|
|
if (data->outbuf == NULL)
|
2010-09-15 09:51:40 +02:00
|
|
|
goto fin;
|
2019-04-05 11:45:16 +02:00
|
|
|
/* We send the element as (x,y) followed by the scalar */
|
|
|
|
element = wpabuf_put(data->outbuf, 2 * prime_len);
|
|
|
|
scalar = wpabuf_put(data->outbuf, order_len);
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* bignums occupy as little memory as possible so one that is
|
|
|
|
* sufficiently smaller than the prime or order might need pre-pending
|
|
|
|
* with zeros.
|
|
|
|
*/
|
2017-10-16 07:45:09 +02:00
|
|
|
crypto_bignum_to_bin(data->my_scalar, scalar, order_len, order_len);
|
|
|
|
if (crypto_ec_point_to_bin(data->grp->group, data->my_element, element,
|
|
|
|
element + prime_len) != 0) {
|
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): point assignment fail");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
2010-09-15 09:51:40 +02:00
|
|
|
fin:
|
2017-10-16 07:45:09 +02:00
|
|
|
crypto_bignum_deinit(mask, 1);
|
|
|
|
crypto_ec_point_deinit(K, 1);
|
2012-02-11 11:46:30 +01:00
|
|
|
if (data->outbuf == NULL)
|
2010-09-15 09:51:40 +02:00
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
else
|
|
|
|
eap_pwd_state(data, PWD_Confirm_Req);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-11 11:46:30 +01:00
|
|
|
static void
|
2010-09-15 09:51:40 +02:00
|
|
|
eap_pwd_perform_confirm_exchange(struct eap_sm *sm, struct eap_pwd_data *data,
|
|
|
|
struct eap_method_ret *ret,
|
|
|
|
const struct wpabuf *reqData,
|
|
|
|
const u8 *payload, size_t payload_len)
|
|
|
|
{
|
2018-08-21 13:37:51 +02:00
|
|
|
struct crypto_hash *hash = NULL;
|
2010-09-15 09:51:40 +02:00
|
|
|
u32 cs;
|
2011-01-16 12:12:07 +01:00
|
|
|
u16 grp;
|
2012-07-02 21:10:03 +02:00
|
|
|
u8 conf[SHA256_MAC_LEN], *cruft = NULL, *ptr;
|
2017-10-16 07:45:09 +02:00
|
|
|
size_t prime_len = 0, order_len = 0;
|
2010-09-15 09:51:40 +02:00
|
|
|
|
2015-05-01 15:37:45 +02:00
|
|
|
if (data->state != PWD_Confirm_Req) {
|
|
|
|
ret->ignore = TRUE;
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (payload_len != SHA256_MAC_LEN) {
|
|
|
|
wpa_printf(MSG_INFO,
|
|
|
|
"EAP-pwd: Unexpected Confirm payload length %u (expected %u)",
|
|
|
|
(unsigned int) payload_len, SHA256_MAC_LEN);
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
2017-10-16 07:45:09 +02:00
|
|
|
prime_len = crypto_ec_prime_len(data->grp->group);
|
|
|
|
order_len = crypto_ec_order_len(data->grp->group);
|
|
|
|
|
2010-09-15 09:51:40 +02:00
|
|
|
/*
|
|
|
|
* first build up the ciphersuite which is group | random_function |
|
|
|
|
* prf
|
|
|
|
*/
|
2011-01-16 12:12:07 +01:00
|
|
|
grp = htons(data->group_num);
|
2010-09-15 09:51:40 +02:00
|
|
|
ptr = (u8 *) &cs;
|
2011-01-16 12:12:07 +01:00
|
|
|
os_memcpy(ptr, &grp, sizeof(u16));
|
2010-09-15 09:51:40 +02:00
|
|
|
ptr += sizeof(u16);
|
|
|
|
*ptr = EAP_PWD_DEFAULT_RAND_FUNC;
|
|
|
|
ptr += sizeof(u8);
|
|
|
|
*ptr = EAP_PWD_DEFAULT_PRF;
|
|
|
|
|
2017-10-16 07:45:09 +02:00
|
|
|
/* each component of the point will be at most as big as the prime */
|
|
|
|
cruft = os_malloc(prime_len * 2);
|
|
|
|
if (!cruft) {
|
2012-02-11 11:46:30 +01:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (server): confirm allocation "
|
2010-09-15 09:51:40 +02:00
|
|
|
"fail");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* server's commit is H(k | server_element | server_scalar |
|
|
|
|
* peer_element | peer_scalar | ciphersuite)
|
|
|
|
*/
|
2012-07-02 21:10:03 +02:00
|
|
|
hash = eap_pwd_h_init();
|
|
|
|
if (hash == NULL)
|
|
|
|
goto fin;
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* zero the memory each time because this is mod prime math and some
|
|
|
|
* value may start with a few zeros and the previous one did not.
|
|
|
|
*/
|
2017-10-16 07:45:09 +02:00
|
|
|
crypto_bignum_to_bin(data->k, cruft, prime_len, prime_len);
|
|
|
|
eap_pwd_h_update(hash, cruft, prime_len);
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* server element: x, y */
|
2017-10-16 07:45:09 +02:00
|
|
|
if (crypto_ec_point_to_bin(data->grp->group, data->server_element,
|
|
|
|
cruft, cruft + prime_len) != 0) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (server): confirm point "
|
|
|
|
"assignment fail");
|
|
|
|
goto fin;
|
|
|
|
}
|
2017-10-16 07:45:09 +02:00
|
|
|
eap_pwd_h_update(hash, cruft, prime_len * 2);
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* server scalar */
|
2017-10-16 07:45:09 +02:00
|
|
|
crypto_bignum_to_bin(data->server_scalar, cruft, order_len, order_len);
|
|
|
|
eap_pwd_h_update(hash, cruft, order_len);
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* my element: x, y */
|
2017-10-16 07:45:09 +02:00
|
|
|
if (crypto_ec_point_to_bin(data->grp->group, data->my_element, cruft,
|
|
|
|
cruft + prime_len) != 0) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (server): confirm point "
|
|
|
|
"assignment fail");
|
|
|
|
goto fin;
|
|
|
|
}
|
2017-10-16 07:45:09 +02:00
|
|
|
eap_pwd_h_update(hash, cruft, prime_len * 2);
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* my scalar */
|
2017-10-16 07:45:09 +02:00
|
|
|
crypto_bignum_to_bin(data->my_scalar, cruft, order_len, order_len);
|
|
|
|
eap_pwd_h_update(hash, cruft, order_len);
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* the ciphersuite */
|
2012-07-02 21:10:03 +02:00
|
|
|
eap_pwd_h_update(hash, (u8 *) &cs, sizeof(u32));
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* random function fin */
|
2012-07-02 21:10:03 +02:00
|
|
|
eap_pwd_h_final(hash, conf);
|
2018-08-21 13:37:51 +02:00
|
|
|
hash = NULL;
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
ptr = (u8 *) payload;
|
2014-06-27 12:05:47 +02:00
|
|
|
if (os_memcmp_const(conf, ptr, SHA256_MAC_LEN)) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): confirm did not verify");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "EAP-pwd (peer): confirm verified");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* compute confirm:
|
|
|
|
* H(k | peer_element | peer_scalar | server_element | server_scalar |
|
|
|
|
* ciphersuite)
|
|
|
|
*/
|
2012-07-02 21:10:03 +02:00
|
|
|
hash = eap_pwd_h_init();
|
|
|
|
if (hash == NULL)
|
|
|
|
goto fin;
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* k */
|
2017-10-16 07:45:09 +02:00
|
|
|
crypto_bignum_to_bin(data->k, cruft, prime_len, prime_len);
|
|
|
|
eap_pwd_h_update(hash, cruft, prime_len);
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* my element */
|
2017-10-16 07:45:09 +02:00
|
|
|
if (crypto_ec_point_to_bin(data->grp->group, data->my_element, cruft,
|
|
|
|
cruft + prime_len) != 0) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): confirm point "
|
|
|
|
"assignment fail");
|
|
|
|
goto fin;
|
|
|
|
}
|
2017-10-16 07:45:09 +02:00
|
|
|
eap_pwd_h_update(hash, cruft, prime_len * 2);
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* my scalar */
|
2017-10-16 07:45:09 +02:00
|
|
|
crypto_bignum_to_bin(data->my_scalar, cruft, order_len, order_len);
|
|
|
|
eap_pwd_h_update(hash, cruft, order_len);
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* server element: x, y */
|
2017-10-16 07:45:09 +02:00
|
|
|
if (crypto_ec_point_to_bin(data->grp->group, data->server_element,
|
|
|
|
cruft, cruft + prime_len) != 0) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): confirm point "
|
|
|
|
"assignment fail");
|
|
|
|
goto fin;
|
|
|
|
}
|
2017-10-16 07:45:09 +02:00
|
|
|
eap_pwd_h_update(hash, cruft, prime_len * 2);
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* server scalar */
|
2017-10-16 07:45:09 +02:00
|
|
|
crypto_bignum_to_bin(data->server_scalar, cruft, order_len, order_len);
|
|
|
|
eap_pwd_h_update(hash, cruft, order_len);
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* the ciphersuite */
|
2012-07-02 21:10:03 +02:00
|
|
|
eap_pwd_h_update(hash, (u8 *) &cs, sizeof(u32));
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
/* all done */
|
2012-07-02 21:10:03 +02:00
|
|
|
eap_pwd_h_final(hash, conf);
|
2018-08-21 13:37:51 +02:00
|
|
|
hash = NULL;
|
2010-09-15 09:51:40 +02:00
|
|
|
|
2017-10-16 07:45:09 +02:00
|
|
|
if (compute_keys(data->grp, data->k,
|
2011-01-16 12:12:07 +01:00
|
|
|
data->my_scalar, data->server_scalar, conf, ptr,
|
2014-05-11 20:22:55 +02:00
|
|
|
&cs, data->msk, data->emsk, data->session_id) < 0) {
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-PWD (peer): unable to compute MSK | "
|
|
|
|
"EMSK");
|
|
|
|
goto fin;
|
|
|
|
}
|
|
|
|
|
2012-07-02 21:10:03 +02:00
|
|
|
data->outbuf = wpabuf_alloc(SHA256_MAC_LEN);
|
2012-02-11 11:46:30 +01:00
|
|
|
if (data->outbuf == NULL)
|
|
|
|
goto fin;
|
|
|
|
|
2012-07-02 21:10:03 +02:00
|
|
|
wpabuf_put_data(data->outbuf, conf, SHA256_MAC_LEN);
|
2012-02-11 11:46:30 +01:00
|
|
|
|
2010-09-15 09:51:40 +02:00
|
|
|
fin:
|
2017-10-16 07:45:09 +02:00
|
|
|
bin_clear_free(cruft, prime_len * 2);
|
2012-02-11 11:46:30 +01:00
|
|
|
if (data->outbuf == NULL) {
|
2014-04-05 23:51:00 +02:00
|
|
|
ret->methodState = METHOD_DONE;
|
2010-09-15 09:51:40 +02:00
|
|
|
ret->decision = DECISION_FAIL;
|
|
|
|
eap_pwd_state(data, FAILURE);
|
|
|
|
} else {
|
2014-04-05 23:51:00 +02:00
|
|
|
eap_pwd_state(data, SUCCESS_ON_FRAG_COMPLETION);
|
2010-09-15 09:51:40 +02:00
|
|
|
}
|
2018-08-21 13:37:51 +02:00
|
|
|
|
|
|
|
/* clean allocated memory */
|
|
|
|
if (hash)
|
|
|
|
eap_pwd_h_final(hash, conf);
|
2010-09-15 09:51:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct wpabuf *
|
|
|
|
eap_pwd_process(struct eap_sm *sm, void *priv, struct eap_method_ret *ret,
|
|
|
|
const struct wpabuf *reqData)
|
|
|
|
{
|
|
|
|
struct eap_pwd_data *data = priv;
|
|
|
|
struct wpabuf *resp = NULL;
|
2012-02-11 11:46:30 +01:00
|
|
|
const u8 *pos, *buf;
|
2010-09-15 09:51:40 +02:00
|
|
|
size_t len;
|
2012-02-11 11:46:30 +01:00
|
|
|
u16 tot_len = 0;
|
|
|
|
u8 lm_exch;
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_PWD, reqData, &len);
|
|
|
|
if ((pos == NULL) || (len < 1)) {
|
2012-02-11 11:46:30 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "EAP-pwd: Got a frame but pos is %s and "
|
|
|
|
"len is %d",
|
|
|
|
pos == NULL ? "NULL" : "not NULL", (int) len);
|
2010-09-15 09:51:40 +02:00
|
|
|
ret->ignore = TRUE;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret->ignore = FALSE;
|
|
|
|
ret->methodState = METHOD_MAY_CONT;
|
|
|
|
ret->decision = DECISION_FAIL;
|
|
|
|
ret->allowNotifications = FALSE;
|
|
|
|
|
2012-02-11 11:46:30 +01:00
|
|
|
lm_exch = *pos;
|
|
|
|
pos++; /* skip over the bits and the exch */
|
|
|
|
len--;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* we're fragmenting so send out the next fragment
|
|
|
|
*/
|
|
|
|
if (data->out_frag_pos) {
|
|
|
|
/*
|
|
|
|
* this should be an ACK
|
|
|
|
*/
|
|
|
|
if (len)
|
|
|
|
wpa_printf(MSG_INFO, "Bad Response! Fragmenting but "
|
|
|
|
"not an ACK");
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "EAP-pwd: Got an ACK for a fragment");
|
|
|
|
/*
|
|
|
|
* check if there are going to be more fragments
|
|
|
|
*/
|
|
|
|
len = wpabuf_len(data->outbuf) - data->out_frag_pos;
|
|
|
|
if ((len + EAP_PWD_HDR_SIZE) > data->mtu) {
|
|
|
|
len = data->mtu - EAP_PWD_HDR_SIZE;
|
|
|
|
EAP_PWD_SET_MORE_BIT(lm_exch);
|
|
|
|
}
|
|
|
|
resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_PWD,
|
|
|
|
EAP_PWD_HDR_SIZE + len,
|
|
|
|
EAP_CODE_RESPONSE, eap_get_id(reqData));
|
|
|
|
if (resp == NULL) {
|
|
|
|
wpa_printf(MSG_INFO, "Unable to allocate memory for "
|
|
|
|
"next fragment!");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
wpabuf_put_u8(resp, lm_exch);
|
|
|
|
buf = wpabuf_head_u8(data->outbuf);
|
|
|
|
wpabuf_put_data(resp, buf + data->out_frag_pos, len);
|
|
|
|
data->out_frag_pos += len;
|
|
|
|
/*
|
|
|
|
* this is the last fragment so get rid of the out buffer
|
|
|
|
*/
|
|
|
|
if (data->out_frag_pos >= wpabuf_len(data->outbuf)) {
|
|
|
|
wpabuf_free(data->outbuf);
|
2012-06-30 15:16:32 +02:00
|
|
|
data->outbuf = NULL;
|
2012-02-11 11:46:30 +01:00
|
|
|
data->out_frag_pos = 0;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "EAP-pwd: Send %s fragment of %d bytes",
|
|
|
|
data->out_frag_pos == 0 ? "last" : "next",
|
|
|
|
(int) len);
|
2014-04-05 23:51:00 +02:00
|
|
|
if (data->state == SUCCESS_ON_FRAG_COMPLETION) {
|
|
|
|
ret->methodState = METHOD_DONE;
|
|
|
|
ret->decision = DECISION_UNCOND_SUCC;
|
|
|
|
eap_pwd_state(data, SUCCESS);
|
|
|
|
}
|
2012-02-11 11:46:30 +01:00
|
|
|
return resp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* see if this is a fragment that needs buffering
|
|
|
|
*
|
|
|
|
* if it's the first fragment there'll be a length field
|
|
|
|
*/
|
|
|
|
if (EAP_PWD_GET_LENGTH_BIT(lm_exch)) {
|
2015-05-02 18:23:04 +02:00
|
|
|
if (len < 2) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-pwd: Frame too short to contain Total-Length field");
|
|
|
|
ret->ignore = TRUE;
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-02-11 11:46:30 +01:00
|
|
|
tot_len = WPA_GET_BE16(pos);
|
|
|
|
wpa_printf(MSG_DEBUG, "EAP-pwd: Incoming fragments whose "
|
|
|
|
"total length = %d", tot_len);
|
2014-06-29 17:52:09 +02:00
|
|
|
if (tot_len > 15000)
|
|
|
|
return NULL;
|
2015-05-02 18:23:04 +02:00
|
|
|
if (data->inbuf) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-pwd: Unexpected new fragment start when previous fragment is still in use");
|
|
|
|
ret->ignore = TRUE;
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-02-11 11:46:30 +01:00
|
|
|
data->inbuf = wpabuf_alloc(tot_len);
|
|
|
|
if (data->inbuf == NULL) {
|
|
|
|
wpa_printf(MSG_INFO, "Out of memory to buffer "
|
|
|
|
"fragments!");
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-05-03 09:38:20 +02:00
|
|
|
data->in_frag_pos = 0;
|
2012-02-11 11:46:30 +01:00
|
|
|
pos += sizeof(u16);
|
|
|
|
len -= sizeof(u16);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* buffer and ACK the fragment
|
|
|
|
*/
|
2015-11-01 17:18:17 +01:00
|
|
|
if (EAP_PWD_GET_MORE_BIT(lm_exch) || data->in_frag_pos) {
|
2019-04-17 01:21:20 +02:00
|
|
|
if (!data->inbuf) {
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"EAP-pwd: No buffer for reassembly");
|
|
|
|
ret->methodState = METHOD_DONE;
|
|
|
|
ret->decision = DECISION_FAIL;
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-02-11 11:46:30 +01:00
|
|
|
data->in_frag_pos += len;
|
|
|
|
if (data->in_frag_pos > wpabuf_size(data->inbuf)) {
|
|
|
|
wpa_printf(MSG_INFO, "EAP-pwd: Buffer overflow attack "
|
|
|
|
"detected (%d vs. %d)!",
|
|
|
|
(int) data->in_frag_pos,
|
|
|
|
(int) wpabuf_len(data->inbuf));
|
|
|
|
wpabuf_free(data->inbuf);
|
2014-04-05 23:19:26 +02:00
|
|
|
data->inbuf = NULL;
|
2012-02-11 11:46:30 +01:00
|
|
|
data->in_frag_pos = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
wpabuf_put_data(data->inbuf, pos, len);
|
2015-11-01 17:18:17 +01:00
|
|
|
}
|
|
|
|
if (EAP_PWD_GET_MORE_BIT(lm_exch)) {
|
2012-02-11 11:46:30 +01:00
|
|
|
resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_PWD,
|
|
|
|
EAP_PWD_HDR_SIZE,
|
|
|
|
EAP_CODE_RESPONSE, eap_get_id(reqData));
|
|
|
|
if (resp != NULL)
|
|
|
|
wpabuf_put_u8(resp, (EAP_PWD_GET_EXCHANGE(lm_exch)));
|
|
|
|
wpa_printf(MSG_DEBUG, "EAP-pwd: ACKing a %d byte fragment",
|
|
|
|
(int) len);
|
|
|
|
return resp;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* we're buffering and this is the last fragment
|
|
|
|
*/
|
2019-04-17 01:21:20 +02:00
|
|
|
if (data->in_frag_pos && data->inbuf) {
|
2012-02-11 11:46:30 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "EAP-pwd: Last fragment, %d bytes",
|
|
|
|
(int) len);
|
|
|
|
pos = wpabuf_head_u8(data->inbuf);
|
|
|
|
len = data->in_frag_pos;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "EAP-pwd: processing frame: exch %d, len %d",
|
|
|
|
EAP_PWD_GET_EXCHANGE(lm_exch), (int) len);
|
|
|
|
|
|
|
|
switch (EAP_PWD_GET_EXCHANGE(lm_exch)) {
|
|
|
|
case EAP_PWD_OPCODE_ID_EXCH:
|
|
|
|
eap_pwd_perform_id_exchange(sm, data, ret, reqData,
|
|
|
|
pos, len);
|
2010-09-15 09:51:40 +02:00
|
|
|
break;
|
2012-02-11 11:46:30 +01:00
|
|
|
case EAP_PWD_OPCODE_COMMIT_EXCH:
|
|
|
|
eap_pwd_perform_commit_exchange(sm, data, ret, reqData,
|
|
|
|
pos, len);
|
2010-09-15 09:51:40 +02:00
|
|
|
break;
|
2012-02-11 11:46:30 +01:00
|
|
|
case EAP_PWD_OPCODE_CONFIRM_EXCH:
|
|
|
|
eap_pwd_perform_confirm_exchange(sm, data, ret, reqData,
|
|
|
|
pos, len);
|
2010-09-15 09:51:40 +02:00
|
|
|
break;
|
2012-02-11 11:46:30 +01:00
|
|
|
default:
|
2010-09-15 09:51:40 +02:00
|
|
|
wpa_printf(MSG_INFO, "EAP-pwd: Ignoring message with unknown "
|
2012-02-11 11:46:30 +01:00
|
|
|
"opcode %d", lm_exch);
|
2010-09-15 09:51:40 +02:00
|
|
|
break;
|
|
|
|
}
|
2012-02-11 11:46:30 +01:00
|
|
|
/*
|
|
|
|
* if we buffered the just processed input now's the time to free it
|
|
|
|
*/
|
|
|
|
if (data->in_frag_pos) {
|
|
|
|
wpabuf_free(data->inbuf);
|
2014-04-05 23:19:26 +02:00
|
|
|
data->inbuf = NULL;
|
2012-02-11 11:46:30 +01:00
|
|
|
data->in_frag_pos = 0;
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:38:07 +02:00
|
|
|
if (data->outbuf == NULL) {
|
|
|
|
ret->methodState = METHOD_DONE;
|
|
|
|
ret->decision = DECISION_FAIL;
|
2012-02-11 11:46:30 +01:00
|
|
|
return NULL; /* generic failure */
|
2014-05-11 17:38:07 +02:00
|
|
|
}
|
2012-02-11 11:46:30 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* we have output! Do we need to fragment it?
|
|
|
|
*/
|
2015-05-02 18:26:28 +02:00
|
|
|
lm_exch = EAP_PWD_GET_EXCHANGE(lm_exch);
|
2012-02-11 11:46:30 +01:00
|
|
|
len = wpabuf_len(data->outbuf);
|
|
|
|
if ((len + EAP_PWD_HDR_SIZE) > data->mtu) {
|
|
|
|
resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_PWD, data->mtu,
|
|
|
|
EAP_CODE_RESPONSE, eap_get_id(reqData));
|
|
|
|
/*
|
|
|
|
* if so it's the first so include a length field
|
|
|
|
*/
|
|
|
|
EAP_PWD_SET_LENGTH_BIT(lm_exch);
|
|
|
|
EAP_PWD_SET_MORE_BIT(lm_exch);
|
|
|
|
tot_len = len;
|
|
|
|
/*
|
|
|
|
* keep the packet at the MTU
|
|
|
|
*/
|
|
|
|
len = data->mtu - EAP_PWD_HDR_SIZE - sizeof(u16);
|
|
|
|
wpa_printf(MSG_DEBUG, "EAP-pwd: Fragmenting output, total "
|
|
|
|
"length = %d", tot_len);
|
|
|
|
} else {
|
|
|
|
resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_PWD,
|
|
|
|
EAP_PWD_HDR_SIZE + len,
|
|
|
|
EAP_CODE_RESPONSE, eap_get_id(reqData));
|
|
|
|
}
|
|
|
|
if (resp == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
wpabuf_put_u8(resp, lm_exch);
|
|
|
|
if (EAP_PWD_GET_LENGTH_BIT(lm_exch)) {
|
|
|
|
wpabuf_put_be16(resp, tot_len);
|
|
|
|
data->out_frag_pos += len;
|
|
|
|
}
|
|
|
|
buf = wpabuf_head_u8(data->outbuf);
|
|
|
|
wpabuf_put_data(resp, buf, len);
|
|
|
|
/*
|
|
|
|
* if we're not fragmenting then there's no need to carry this around
|
|
|
|
*/
|
2012-06-30 15:16:32 +02:00
|
|
|
if (data->out_frag_pos == 0) {
|
2012-02-11 11:46:30 +01:00
|
|
|
wpabuf_free(data->outbuf);
|
2012-06-30 15:16:32 +02:00
|
|
|
data->outbuf = NULL;
|
|
|
|
data->out_frag_pos = 0;
|
2014-04-05 23:51:00 +02:00
|
|
|
if (data->state == SUCCESS_ON_FRAG_COMPLETION) {
|
|
|
|
ret->methodState = METHOD_DONE;
|
|
|
|
ret->decision = DECISION_UNCOND_SUCC;
|
|
|
|
eap_pwd_state(data, SUCCESS);
|
|
|
|
}
|
2012-06-30 15:16:32 +02:00
|
|
|
}
|
2010-09-15 09:51:40 +02:00
|
|
|
|
|
|
|
return resp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Boolean eap_pwd_key_available(struct eap_sm *sm, void *priv)
|
|
|
|
{
|
|
|
|
struct eap_pwd_data *data = priv;
|
|
|
|
return data->state == SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static u8 * eap_pwd_get_emsk(struct eap_sm *sm, void *priv, size_t *len)
|
|
|
|
{
|
|
|
|
struct eap_pwd_data *data = priv;
|
|
|
|
u8 *key;
|
|
|
|
|
|
|
|
if (data->state != SUCCESS)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if ((key = os_malloc(EAP_EMSK_LEN)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
os_memcpy(key, data->emsk, EAP_EMSK_LEN);
|
|
|
|
*len = EAP_EMSK_LEN;
|
|
|
|
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int eap_peer_pwd_register(void)
|
|
|
|
{
|
|
|
|
struct eap_method *eap;
|
|
|
|
|
|
|
|
eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
|
|
|
|
EAP_VENDOR_IETF, EAP_TYPE_PWD, "PWD");
|
|
|
|
if (eap == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
eap->init = eap_pwd_init;
|
|
|
|
eap->deinit = eap_pwd_deinit;
|
|
|
|
eap->process = eap_pwd_process;
|
|
|
|
eap->isKeyAvailable = eap_pwd_key_available;
|
|
|
|
eap->getKey = eap_pwd_getkey;
|
2014-05-11 20:22:55 +02:00
|
|
|
eap->getSessionId = eap_pwd_get_session_id;
|
2010-09-15 09:51:40 +02:00
|
|
|
eap->get_emsk = eap_pwd_get_emsk;
|
|
|
|
|
2016-01-13 22:25:54 +01:00
|
|
|
return eap_peer_method_register(eap);
|
2010-09-15 09:51:40 +02:00
|
|
|
}
|