Files
strongswan-ext/src/libstrongswan/plugins/openssl/openssl_sha1_prf.c
T
Gerardo Ravago 7f1ba3cc68 openssl: Add conditional macros around SHA_CTX for AWS-LC
AWS-LC is a BoringSSL-based libcrypto implementation. SHA_CTX is declared with
the hash data specified as an array rather than as a field in upstream OpenSSL.
Since AWS-LC builds against C99, we are unable to handle this with anonymous
unions like BoringSSL. The workaround I propose is to add these conditional
macros around the accessors within openssl_sha1_prf. After this change,
everything builds successfully with AWS-LC headers.

Closes strongswan/strongswan#2103
2024-02-19 10:01:51 +01:00

195 lines
3.8 KiB
C

/*
* Copyright (C) 2010 Martin Willi
*
* Copyright (C) secunet Security Networks AG
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
/* direct access to the state and the SHA1_* API have been deprecated with
* OpenSSL 3, so at some point this won't work anymore */
#define OPENSSL_SUPPRESS_DEPRECATED
#include <openssl/opensslv.h>
#include <openssl/opensslconf.h>
#if !defined(OPENSSL_NO_SHA1) && \
(OPENSSL_VERSION_NUMBER < 0x30000000L || !defined(OPENSSL_NO_DEPRECATED))
#include "openssl_sha1_prf.h"
#include <openssl/sha.h>
#include <crypto/hashers/hasher.h>
typedef struct private_openssl_sha1_prf_t private_openssl_sha1_prf_t;
/**
* Private data of an openssl_sha1_prf_t object.
*/
struct private_openssl_sha1_prf_t {
/**
* Public openssl_sha1_prf_t interface.
*/
openssl_sha1_prf_t public;
/**
* SHA1 context
*/
SHA_CTX ctx;
};
METHOD(prf_t, get_bytes, bool,
private_openssl_sha1_prf_t *this, chunk_t seed, uint8_t *bytes)
{
if (!SHA1_Update(&this->ctx, seed.ptr, seed.len))
{
return FALSE;
}
if (bytes)
{
uint32_t *hash = (uint32_t*)bytes;
#ifndef OPENSSL_IS_AWSLC
hash[0] = htonl(this->ctx.h0);
hash[1] = htonl(this->ctx.h1);
hash[2] = htonl(this->ctx.h2);
hash[3] = htonl(this->ctx.h3);
hash[4] = htonl(this->ctx.h4);
#else
hash[0] = htonl(this->ctx.h[0]);
hash[1] = htonl(this->ctx.h[1]);
hash[2] = htonl(this->ctx.h[2]);
hash[3] = htonl(this->ctx.h[3]);
hash[4] = htonl(this->ctx.h[4]);
#endif
}
return TRUE;
}
METHOD(prf_t, get_block_size, size_t,
private_openssl_sha1_prf_t *this)
{
return HASH_SIZE_SHA1;
}
METHOD(prf_t, allocate_bytes, bool,
private_openssl_sha1_prf_t *this, chunk_t seed, chunk_t *chunk)
{
if (chunk)
{
*chunk = chunk_alloc(HASH_SIZE_SHA1);
return get_bytes(this, seed, chunk->ptr);
}
return get_bytes(this, seed, NULL);
}
METHOD(prf_t, get_key_size, size_t,
private_openssl_sha1_prf_t *this)
{
return HASH_SIZE_SHA1;
}
METHOD(prf_t, set_key, bool,
private_openssl_sha1_prf_t *this, chunk_t key)
{
if (!SHA1_Init(&this->ctx))
{
return FALSE;
}
if (key.len % 4)
{
return FALSE;
}
#ifndef OPENSSL_IS_AWSLC
if (key.len >= 4)
{
this->ctx.h0 ^= untoh32(key.ptr);
}
if (key.len >= 8)
{
this->ctx.h1 ^= untoh32(key.ptr + 4);
}
if (key.len >= 12)
{
this->ctx.h2 ^= untoh32(key.ptr + 8);
}
if (key.len >= 16)
{
this->ctx.h3 ^= untoh32(key.ptr + 12);
}
if (key.len >= 20)
{
this->ctx.h4 ^= untoh32(key.ptr + 16);
}
#else
if (key.len >= 4)
{
this->ctx.h[0] ^= untoh32(key.ptr);
}
if (key.len >= 8)
{
this->ctx.h[1] ^= untoh32(key.ptr + 4);
}
if (key.len >= 12)
{
this->ctx.h[2] ^= untoh32(key.ptr + 8);
}
if (key.len >= 16)
{
this->ctx.h[3] ^= untoh32(key.ptr + 12);
}
if (key.len >= 20)
{
this->ctx.h[4] ^= untoh32(key.ptr + 16);
}
#endif
return TRUE;
}
METHOD(prf_t, destroy, void,
private_openssl_sha1_prf_t *this)
{
free(this);
}
/**
* See header
*/
openssl_sha1_prf_t *openssl_sha1_prf_create(pseudo_random_function_t algo)
{
private_openssl_sha1_prf_t *this;
if (algo != PRF_KEYED_SHA1)
{
return NULL;
}
INIT(this,
.public = {
.prf = {
.get_block_size = _get_block_size,
.get_bytes = _get_bytes,
.allocate_bytes = _allocate_bytes,
.get_key_size = _get_key_size,
.set_key = _set_key,
.destroy = _destroy,
},
},
);
return &this->public;
}
#endif /* !OPENSSL_NO_SHA1 && SHA_LONG */