Pass error values from digest calls to ms_funcs callers

These function calls can now fail, so better let the caller know if that
happened.
This commit is contained in:
Jouni Malinen 2009-08-16 14:18:59 +03:00
parent 1430ba9b7e
commit 6d503f67e3
2 changed files with 107 additions and 76 deletions

View file

@ -1,6 +1,6 @@
/* /*
* WPA Supplicant / shared MSCHAPV2 helper functions / RFC 2433 / RFC 2759 * WPA Supplicant / shared MSCHAPV2 helper functions / RFC 2433 / RFC 2759
* Copyright (c) 2004-2007, Jouni Malinen <j@w1.fi> * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License version 2 as
@ -28,8 +28,9 @@
* @username: 0-to-256-char UserName (IN) * @username: 0-to-256-char UserName (IN)
* @username_len: Length of username * @username_len: Length of username
* @challenge: 8-octet Challenge (OUT) * @challenge: 8-octet Challenge (OUT)
* Returns: 0 on success, -1 on failure
*/ */
static void challenge_hash(const u8 *peer_challenge, const u8 *auth_challenge, static int challenge_hash(const u8 *peer_challenge, const u8 *auth_challenge,
const u8 *username, size_t username_len, const u8 *username, size_t username_len,
u8 *challenge) u8 *challenge)
{ {
@ -44,8 +45,10 @@ static void challenge_hash(const u8 *peer_challenge, const u8 *auth_challenge,
addr[2] = username; addr[2] = username;
len[2] = username_len; len[2] = username_len;
sha1_vector(3, addr, len, hash); if (sha1_vector(3, addr, len, hash))
return -1;
os_memcpy(challenge, hash, 8); os_memcpy(challenge, hash, 8);
return 0;
} }
@ -54,8 +57,9 @@ static void challenge_hash(const u8 *peer_challenge, const u8 *auth_challenge,
* @password: 0-to-256-unicode-char Password (IN; ASCII) * @password: 0-to-256-unicode-char Password (IN; ASCII)
* @password_len: Length of password * @password_len: Length of password
* @password_hash: 16-octet PasswordHash (OUT) * @password_hash: 16-octet PasswordHash (OUT)
* Returns: 0 on success, -1 on failure
*/ */
void nt_password_hash(const u8 *password, size_t password_len, int nt_password_hash(const u8 *password, size_t password_len,
u8 *password_hash) u8 *password_hash)
{ {
u8 buf[512], *pos; u8 buf[512], *pos;
@ -72,7 +76,7 @@ void nt_password_hash(const u8 *password, size_t password_len,
len = password_len * 2; len = password_len * 2;
pos = buf; pos = buf;
md4_vector(1, (const u8 **) &pos, &len, password_hash); return md4_vector(1, (const u8 **) &pos, &len, password_hash);
} }
@ -80,11 +84,12 @@ void nt_password_hash(const u8 *password, size_t password_len,
* hash_nt_password_hash - HashNtPasswordHash() - RFC 2759, Sect. 8.4 * hash_nt_password_hash - HashNtPasswordHash() - RFC 2759, Sect. 8.4
* @password_hash: 16-octet PasswordHash (IN) * @password_hash: 16-octet PasswordHash (IN)
* @password_hash_hash: 16-octet PasswordHashHash (OUT) * @password_hash_hash: 16-octet PasswordHashHash (OUT)
* Returns: 0 on success, -1 on failure
*/ */
void hash_nt_password_hash(const u8 *password_hash, u8 *password_hash_hash) int hash_nt_password_hash(const u8 *password_hash, u8 *password_hash_hash)
{ {
size_t len = 16; size_t len = 16;
md4_vector(1, &password_hash, &len, password_hash_hash); return md4_vector(1, &password_hash, &len, password_hash_hash);
} }
@ -116,8 +121,9 @@ void challenge_response(const u8 *challenge, const u8 *password_hash,
* @password: 0-to-256-unicode-char Password (IN; ASCII) * @password: 0-to-256-unicode-char Password (IN; ASCII)
* @password_len: Length of password * @password_len: Length of password
* @response: 24-octet Response (OUT) * @response: 24-octet Response (OUT)
* Returns: 0 on success, -1 on failure
*/ */
void generate_nt_response(const u8 *auth_challenge, const u8 *peer_challenge, int generate_nt_response(const u8 *auth_challenge, const u8 *peer_challenge,
const u8 *username, size_t username_len, const u8 *username, size_t username_len,
const u8 *password, size_t password_len, const u8 *password, size_t password_len,
u8 *response) u8 *response)
@ -127,8 +133,10 @@ void generate_nt_response(const u8 *auth_challenge, const u8 *peer_challenge,
challenge_hash(peer_challenge, auth_challenge, username, username_len, challenge_hash(peer_challenge, auth_challenge, username, username_len,
challenge); challenge);
nt_password_hash(password, password_len, password_hash); if (nt_password_hash(password, password_len, password_hash))
return -1;
challenge_response(challenge, password_hash, response); challenge_response(challenge, password_hash, response);
return 0;
} }
@ -140,8 +148,9 @@ void generate_nt_response(const u8 *auth_challenge, const u8 *peer_challenge,
* @username_len: Length of username * @username_len: Length of username
* @password_hash: 16-octet PasswordHash (IN) * @password_hash: 16-octet PasswordHash (IN)
* @response: 24-octet Response (OUT) * @response: 24-octet Response (OUT)
* Returns: 0 on success, -1 on failure
*/ */
void generate_nt_response_pwhash(const u8 *auth_challenge, int generate_nt_response_pwhash(const u8 *auth_challenge,
const u8 *peer_challenge, const u8 *peer_challenge,
const u8 *username, size_t username_len, const u8 *username, size_t username_len,
const u8 *password_hash, const u8 *password_hash,
@ -149,9 +158,12 @@ void generate_nt_response_pwhash(const u8 *auth_challenge,
{ {
u8 challenge[8]; u8 challenge[8];
challenge_hash(peer_challenge, auth_challenge, username, username_len, if (challenge_hash(peer_challenge, auth_challenge,
challenge); username, username_len,
challenge))
return -1;
challenge_response(challenge, password_hash, response); challenge_response(challenge, password_hash, response);
return 0;
} }
@ -165,8 +177,9 @@ void generate_nt_response_pwhash(const u8 *auth_challenge,
* @username_len: Length of username * @username_len: Length of username
* @response: 20-octet AuthenticatorResponse (OUT) (note: this value is usually * @response: 20-octet AuthenticatorResponse (OUT) (note: this value is usually
* encoded as a 42-octet ASCII string (S=hexdump_of_response) * encoded as a 42-octet ASCII string (S=hexdump_of_response)
* Returns: 0 on success, -1 on failure
*/ */
void generate_authenticator_response_pwhash( int generate_authenticator_response_pwhash(
const u8 *password_hash, const u8 *password_hash,
const u8 *peer_challenge, const u8 *auth_challenge, const u8 *peer_challenge, const u8 *auth_challenge,
const u8 *username, size_t username_len, const u8 *username, size_t username_len,
@ -200,12 +213,14 @@ void generate_authenticator_response_pwhash(
addr2[1] = challenge; addr2[1] = challenge;
addr2[2] = magic2; addr2[2] = magic2;
hash_nt_password_hash(password_hash, password_hash_hash); if (hash_nt_password_hash(password_hash, password_hash_hash))
sha1_vector(3, addr1, len1, response); return -1;
if (sha1_vector(3, addr1, len1, response))
return -1;
challenge_hash(peer_challenge, auth_challenge, username, username_len, challenge_hash(peer_challenge, auth_challenge, username, username_len,
challenge); challenge);
sha1_vector(3, addr2, len2, response); return sha1_vector(3, addr2, len2, response);
} }
@ -220,19 +235,20 @@ void generate_authenticator_response_pwhash(
* @username_len: Length of username * @username_len: Length of username
* @response: 20-octet AuthenticatorResponse (OUT) (note: this value is usually * @response: 20-octet AuthenticatorResponse (OUT) (note: this value is usually
* encoded as a 42-octet ASCII string (S=hexdump_of_response) * encoded as a 42-octet ASCII string (S=hexdump_of_response)
* Returns: 0 on success, -1 on failure
*/ */
void generate_authenticator_response(const u8 *password, size_t password_len, int generate_authenticator_response(const u8 *password, size_t password_len,
const u8 *peer_challenge, const u8 *peer_challenge,
const u8 *auth_challenge, const u8 *auth_challenge,
const u8 *username, size_t username_len, const u8 *username, size_t username_len,
const u8 *nt_response, u8 *response) const u8 *nt_response, u8 *response)
{ {
u8 password_hash[16]; u8 password_hash[16];
nt_password_hash(password, password_len, password_hash); if (nt_password_hash(password, password_len, password_hash))
generate_authenticator_response_pwhash(password_hash, return -1;
peer_challenge, auth_challenge, return generate_authenticator_response_pwhash(
username, username_len, password_hash, peer_challenge, auth_challenge,
nt_response, response); username, username_len, nt_response, response);
} }
@ -242,13 +258,16 @@ void generate_authenticator_response(const u8 *password, size_t password_len,
* @password: 0-to-256-unicode-char Password (IN; ASCII) * @password: 0-to-256-unicode-char Password (IN; ASCII)
* @password_len: Length of password * @password_len: Length of password
* @response: 24-octet Response (OUT) * @response: 24-octet Response (OUT)
* Returns: 0 on success, -1 on failure
*/ */
void nt_challenge_response(const u8 *challenge, const u8 *password, int nt_challenge_response(const u8 *challenge, const u8 *password,
size_t password_len, u8 *response) size_t password_len, u8 *response)
{ {
u8 password_hash[16]; u8 password_hash[16];
nt_password_hash(password, password_len, password_hash); if (nt_password_hash(password, password_len, password_hash))
return -1;
challenge_response(challenge, password_hash, response); challenge_response(challenge, password_hash, response);
return 0;
} }
@ -257,8 +276,9 @@ void nt_challenge_response(const u8 *challenge, const u8 *password,
* @password_hash_hash: 16-octet PasswordHashHash (IN) * @password_hash_hash: 16-octet PasswordHashHash (IN)
* @nt_response: 24-octet NTResponse (IN) * @nt_response: 24-octet NTResponse (IN)
* @master_key: 16-octet MasterKey (OUT) * @master_key: 16-octet MasterKey (OUT)
* Returns: 0 on success, -1 on failure
*/ */
void get_master_key(const u8 *password_hash_hash, const u8 *nt_response, int get_master_key(const u8 *password_hash_hash, const u8 *nt_response,
u8 *master_key) u8 *master_key)
{ {
static const u8 magic1[27] = { static const u8 magic1[27] = {
@ -274,8 +294,10 @@ void get_master_key(const u8 *password_hash_hash, const u8 *nt_response,
addr[1] = nt_response; addr[1] = nt_response;
addr[2] = magic1; addr[2] = magic1;
sha1_vector(3, addr, len, hash); if (sha1_vector(3, addr, len, hash))
return -1;
os_memcpy(master_key, hash, 16); os_memcpy(master_key, hash, 16);
return 0;
} }
@ -286,8 +308,9 @@ void get_master_key(const u8 *password_hash_hash, const u8 *nt_response,
* @session_key_len: SessionKeyLength (Length of session_key) (IN) * @session_key_len: SessionKeyLength (Length of session_key) (IN)
* @is_send: IsSend (IN, BOOLEAN) * @is_send: IsSend (IN, BOOLEAN)
* @is_server: IsServer (IN, BOOLEAN) * @is_server: IsServer (IN, BOOLEAN)
* Returns: 0 on success, -1 on failure
*/ */
void get_asymetric_start_key(const u8 *master_key, u8 *session_key, int get_asymetric_start_key(const u8 *master_key, u8 *session_key,
size_t session_key_len, int is_send, size_t session_key_len, int is_send,
int is_server) int is_server)
{ {
@ -339,11 +362,13 @@ void get_asymetric_start_key(const u8 *master_key, u8 *session_key,
} }
addr[3] = shs_pad2; addr[3] = shs_pad2;
sha1_vector(4, addr, len, digest); if (sha1_vector(4, addr, len, digest))
return -1;
if (session_key_len > SHA1_MAC_LEN) if (session_key_len > SHA1_MAC_LEN)
session_key_len = SHA1_MAC_LEN; session_key_len = SHA1_MAC_LEN;
os_memcpy(session_key, digest, session_key_len); os_memcpy(session_key, digest, session_key_len);
return 0;
} }
@ -400,7 +425,8 @@ int new_password_encrypted_with_old_nt_password_hash(
{ {
u8 password_hash[16]; u8 password_hash[16];
nt_password_hash(old_password, old_password_len, password_hash); if (nt_password_hash(old_password, old_password_len, password_hash))
return -1;
if (encrypt_pw_block_with_password_hash(new_password, new_password_len, if (encrypt_pw_block_with_password_hash(new_password, new_password_len,
password_hash, password_hash,
encrypted_pw_block)) encrypted_pw_block))
@ -430,17 +456,22 @@ void nt_password_hash_encrypted_with_block(const u8 *password_hash,
* @old_password: 0-to-256-unicode-char OldPassword (IN; ASCII) * @old_password: 0-to-256-unicode-char OldPassword (IN; ASCII)
* @old_password_len: Length of old_password * @old_password_len: Length of old_password
* @encrypted_password_hash: 16-octet EncryptedPasswordHash (OUT) * @encrypted_password_hash: 16-octet EncryptedPasswordHash (OUT)
* Returns: 0 on success, -1 on failure
*/ */
void old_nt_password_hash_encrypted_with_new_nt_password_hash( int old_nt_password_hash_encrypted_with_new_nt_password_hash(
const u8 *new_password, size_t new_password_len, const u8 *new_password, size_t new_password_len,
const u8 *old_password, size_t old_password_len, const u8 *old_password, size_t old_password_len,
u8 *encrypted_password_hash) u8 *encrypted_password_hash)
{ {
u8 old_password_hash[16], new_password_hash[16]; u8 old_password_hash[16], new_password_hash[16];
nt_password_hash(old_password, old_password_len, old_password_hash); if (nt_password_hash(old_password, old_password_len,
nt_password_hash(new_password, new_password_len, new_password_hash); old_password_hash) ||
nt_password_hash(new_password, new_password_len,
new_password_hash))
return -1;
nt_password_hash_encrypted_with_block(old_password_hash, nt_password_hash_encrypted_with_block(old_password_hash,
new_password_hash, new_password_hash,
encrypted_password_hash); encrypted_password_hash);
return 0;
} }

View file

@ -1,6 +1,6 @@
/* /*
* WPA Supplicant / shared MSCHAPV2 helper functions / RFC 2433 / RFC 2759 * WPA Supplicant / shared MSCHAPV2 helper functions / RFC 2433 / RFC 2759
* Copyright (c) 2004-2007, Jouni Malinen <j@w1.fi> * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License version 2 as
@ -15,36 +15,36 @@
#ifndef MS_FUNCS_H #ifndef MS_FUNCS_H
#define MS_FUNCS_H #define MS_FUNCS_H
void generate_nt_response(const u8 *auth_challenge, const u8 *peer_challenge, int generate_nt_response(const u8 *auth_challenge, const u8 *peer_challenge,
const u8 *username, size_t username_len, const u8 *username, size_t username_len,
const u8 *password, size_t password_len, const u8 *password, size_t password_len,
u8 *response); u8 *response);
void generate_nt_response_pwhash(const u8 *auth_challenge, int generate_nt_response_pwhash(const u8 *auth_challenge,
const u8 *peer_challenge, const u8 *peer_challenge,
const u8 *username, size_t username_len, const u8 *username, size_t username_len,
const u8 *password_hash, const u8 *password_hash,
u8 *response); u8 *response);
void generate_authenticator_response(const u8 *password, size_t password_len, int generate_authenticator_response(const u8 *password, size_t password_len,
const u8 *peer_challenge, const u8 *peer_challenge,
const u8 *auth_challenge, const u8 *auth_challenge,
const u8 *username, size_t username_len, const u8 *username, size_t username_len,
const u8 *nt_response, u8 *response); const u8 *nt_response, u8 *response);
void generate_authenticator_response_pwhash( int generate_authenticator_response_pwhash(
const u8 *password_hash, const u8 *password_hash,
const u8 *peer_challenge, const u8 *auth_challenge, const u8 *peer_challenge, const u8 *auth_challenge,
const u8 *username, size_t username_len, const u8 *username, size_t username_len,
const u8 *nt_response, u8 *response); const u8 *nt_response, u8 *response);
void nt_challenge_response(const u8 *challenge, const u8 *password, int nt_challenge_response(const u8 *challenge, const u8 *password,
size_t password_len, u8 *response); size_t password_len, u8 *response);
void challenge_response(const u8 *challenge, const u8 *password_hash, void challenge_response(const u8 *challenge, const u8 *password_hash,
u8 *response); u8 *response);
void nt_password_hash(const u8 *password, size_t password_len, int nt_password_hash(const u8 *password, size_t password_len,
u8 *password_hash); u8 *password_hash);
void hash_nt_password_hash(const u8 *password_hash, u8 *password_hash_hash); int hash_nt_password_hash(const u8 *password_hash, u8 *password_hash_hash);
void get_master_key(const u8 *password_hash_hash, const u8 *nt_response, int get_master_key(const u8 *password_hash_hash, const u8 *nt_response,
u8 *master_key); u8 *master_key);
void get_asymetric_start_key(const u8 *master_key, u8 *session_key, int get_asymetric_start_key(const u8 *master_key, u8 *session_key,
size_t session_key_len, int is_send, size_t session_key_len, int is_send,
int is_server); int is_server);
int __must_check encrypt_pw_block_with_password_hash( int __must_check encrypt_pw_block_with_password_hash(
@ -56,7 +56,7 @@ int __must_check new_password_encrypted_with_old_nt_password_hash(
u8 *encrypted_pw_block); u8 *encrypted_pw_block);
void nt_password_hash_encrypted_with_block(const u8 *password_hash, void nt_password_hash_encrypted_with_block(const u8 *password_hash,
const u8 *block, u8 *cypher); const u8 *block, u8 *cypher);
void old_nt_password_hash_encrypted_with_new_nt_password_hash( int old_nt_password_hash_encrypted_with_new_nt_password_hash(
const u8 *new_password, size_t new_password_len, const u8 *new_password, size_t new_password_len,
const u8 *old_password, size_t old_password_len, const u8 *old_password, size_t old_password_len,
u8 *encrypted_password_hash); u8 *encrypted_password_hash);