| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478 |
- /*
- * Copyright (c) 2023 HPMicro
- *
- * SPDX-License-Identifier: BSD-3-Clause
- *
- */
- #include "sha256_alt.h"
- #if defined(MBEDTLS_SHA256_C)
- #include "hpm_l1c_drv.h"
- #include "mbedtls/platform_util.h"
- #include "mbedtls/sha256.h"
- #include <string.h>
- #if defined(MBEDTLS_PADLOCK_C)
- #include "mbedtls/padlock.h"
- #endif
- #if defined(MBEDTLS_AESNI_C)
- #include "mbedtls/aesni.h"
- #endif
- #if defined(MBEDTLS_THREADING_C)
- #include "ksdk_mbedtls.h"
- #include "mbedtls/threading.h"
- #endif
- #define SHA256_VALIDATE_RET(cond) \
- MBEDTLS_INTERNAL_VALIDATE_RET( cond, MBEDTLS_ERR_SHA256_BAD_INPUT_DATA )
- #define SHA256_VALIDATE(cond) MBEDTLS_INTERNAL_VALIDATE( cond )
- /*
- * 32-bit integer manipulation macros (big endian)
- */
- #ifndef GET_UINT32_BE
- #define GET_UINT32_BE(n,b,i) \
- do { \
- (n) = ( (uint32_t) (b)[(i) ] << 24 ) \
- | ( (uint32_t) (b)[(i) + 1] << 16 ) \
- | ( (uint32_t) (b)[(i) + 2] << 8 ) \
- | ( (uint32_t) (b)[(i) + 3] ); \
- } while( 0 )
- #endif
- #ifndef PUT_UINT32_BE
- #define PUT_UINT32_BE(n,b,i) \
- do { \
- (b)[(i) ] = (unsigned char) ( (n) >> 24 ); \
- (b)[(i) + 1] = (unsigned char) ( (n) >> 16 ); \
- (b)[(i) + 2] = (unsigned char) ( (n) >> 8 ); \
- (b)[(i) + 3] = (unsigned char) ( (n) ); \
- } while( 0 )
- #endif
- /******************************************************************************/
- /*************************** SHA256********************************************/
- /******************************************************************************/
- #if defined(MBEDTLS_HPM_SDP_SHA256)
- #include "mbedtls/sha256.h"
- #include "board.h"
- #ifdef MBEDTLS_HPM_SHA224_ALT_SW
- int mbedtls_internal_sha224_process( mbedtls_sha256_context *ctx,
- const unsigned char data[64] );
- int mbedtls_sha224_update_ret( mbedtls_sha256_context *ctx,
- const unsigned char *input,
- size_t ilen );
- int mbedtls_sha224_finish_ret( mbedtls_sha256_context *ctx,
- unsigned char output[32] );
- #endif /* MBEDTLS_HPM_SHA224_ALT_SW */
- void mbedtls_sha256_init(mbedtls_sha256_context *ctx)
- {
- sdp_hash_ctx_t *p_sys_sdp_ctx = (sdp_hash_ctx_t *)core_local_mem_to_sys_address(BOARD_RUNNING_CORE, (uint32_t)&s_hash_ctx);
- memset(ctx, 0, sizeof(mbedtls_sha256_context));
- hpm_sdp_api_init();
- (void)rom_sdp_hash_init(p_sys_sdp_ctx, sdp_hash_alg_sha256);
- }
- void mbedtls_sha256_free(mbedtls_sha256_context *ctx)
- {
- if (ctx == NULL)
- return;
- mbedtls_zeroize(ctx, sizeof(mbedtls_sha256_context));
- }
- void mbedtls_sha256_clone(mbedtls_sha256_context *dst, const mbedtls_sha256_context *src)
- {
- memcpy(dst, src, sizeof(*dst));
- }
- /*
- * SHA-256 context setup
- */
- int mbedtls_sha256_starts_ret(mbedtls_sha256_context *ctx, int is224)
- {
- hpm_stat_t ret = status_fail;
- if (is224)
- {
- #ifdef MBEDTLS_HPM_SHA224_ALT_SW
- /* SHA-224 */
- ctx->state[0] = 0xC1059ED8;
- ctx->state[1] = 0x367CD507;
- ctx->state[2] = 0x3070DD17;
- ctx->state[3] = 0xF70E5939;
- ctx->state[4] = 0xFFC00B31;
- ctx->state[5] = 0x68581511;
- ctx->state[6] = 0x64F98FA7;
- ctx->state[7] = 0xBEFA4FA4;
- #else
- return MBEDTLS_ERROR_HW_NOT_SUPPORTED;
- #endif
- }
- else
- {
- sdp_hash_ctx_t *p_sys_sdp_ctx = (sdp_hash_ctx_t *)core_local_mem_to_sys_address(BOARD_RUNNING_CORE, (uint32_t)&s_hash_ctx);
- ret = rom_sdp_hash_init(p_sys_sdp_ctx, sdp_hash_alg_sha256);
- if (ret != status_success)
- {
- return MBEDTLS_ERR_SHA256_HW_ACCEL_FAILED;
- }
- }
- ctx->is224 = is224;
- return 0;
- }
- int mbedtls_internal_sha256_process(mbedtls_sha256_context *ctx, const unsigned char data[64])
- {
- static uint8_t ATTR_PLACE_AT_NONCACHEABLE local[64];
- hpm_stat_t ret = status_fail;
- if (ctx->is224)
- {
- #ifdef MBEDTLS_HPM_SHA224_ALT_SW
- return mbedtls_internal_sha224_process(ctx, data);
- #else
- return MBEDTLS_ERROR_HW_NOT_SUPPORTED;
- #endif
- }
- sdp_hash_ctx_t *p_sys_sdp_ctx = (sdp_hash_ctx_t *)core_local_mem_to_sys_address(BOARD_RUNNING_CORE, (uint32_t)&s_hash_ctx);
- memcpy(local, data, 64);
- ret = rom_sdp_hash_update(p_sys_sdp_ctx, local, 64);
- if (ret != status_success)
- {
- return MBEDTLS_ERR_SHA256_HW_ACCEL_FAILED;
- }
- return 0;
- }
- /*
- * SHA-256 process buffer
- */
- int mbedtls_sha256_update_ret(mbedtls_sha256_context *ctx, const unsigned char *input, size_t ilen)
- {
- static uint8_t ATTR_PLACE_AT_NONCACHEABLE local[64];
- hpm_stat_t ret = status_fail;
- if (ctx->is224)
- {
- #ifdef MBEDTLS_HPM_SHA224_ALT_SW
- return mbedtls_sha224_update_ret(ctx, input, ilen);
- #else
- return MBEDTLS_ERROR_HW_NOT_SUPPORTED;
- #endif
- }
- for (uint32_t i = 0; i < ilen; i += 64)
- {
- size_t len = ilen - i > 64 ? 64 : ilen - i;
- if (len < 64)
- {
- sdp_hash_ctx_t *p_sys_sdp_ctx = (sdp_hash_ctx_t *)core_local_mem_to_sys_address(BOARD_RUNNING_CORE, (uint32_t)&s_hash_ctx);
- memcpy(local, input + i, len);
- ret = rom_sdp_hash_update(p_sys_sdp_ctx, local, len);
- if (ret != status_success)
- {
- return MBEDTLS_ERR_SHA256_HW_ACCEL_FAILED;
- }
- return 0;
- }
- else
- {
- ret = mbedtls_internal_sha256_process(ctx, input + i);
- if (ret != status_success)
- {
- return MBEDTLS_ERR_SHA256_HW_ACCEL_FAILED;
- }
- }
- }
- return 0;
- }
- /*
- * SHA-256 final digest
- */
- int mbedtls_sha256_finish_ret(mbedtls_sha256_context *ctx, unsigned char output[32])
- {
- static uint8_t ATTR_PLACE_AT_NONCACHEABLE local[HPM_L1C_CACHELINE_SIZE];
- hpm_stat_t ret = status_fail;
- if (ctx->is224)
- {
- #ifdef MBEDTLS_HPM_SHA224_ALT_SW
- return mbedtls_sha224_finish_ret(ctx, output);
- #else
- return MBEDTLS_ERROR_HW_NOT_SUPPORTED;
- #endif
- }
- sdp_hash_ctx_t *p_sys_sdp_ctx = (sdp_hash_ctx_t *)core_local_mem_to_sys_address(BOARD_RUNNING_CORE, (uint32_t)&s_hash_ctx);
- uint8_t *pout = (uint8_t *)core_local_mem_to_sys_address(BOARD_RUNNING_CORE, (uint32_t)local);
- ret = rom_sdp_hash_finish(p_sys_sdp_ctx, pout);
- if (ret != status_success)
- {
- return MBEDTLS_ERR_SHA256_HW_ACCEL_FAILED;
- }
- memcpy(output, pout, 32);
- return 0;
- }
- #ifdef MBEDTLS_HPM_SHA224_ALT_SW
- static const uint32_t K[] =
- {
- 0x428A2F98, 0x71374491, 0xB5C0FBCF, 0xE9B5DBA5,
- 0x3956C25B, 0x59F111F1, 0x923F82A4, 0xAB1C5ED5,
- 0xD807AA98, 0x12835B01, 0x243185BE, 0x550C7DC3,
- 0x72BE5D74, 0x80DEB1FE, 0x9BDC06A7, 0xC19BF174,
- 0xE49B69C1, 0xEFBE4786, 0x0FC19DC6, 0x240CA1CC,
- 0x2DE92C6F, 0x4A7484AA, 0x5CB0A9DC, 0x76F988DA,
- 0x983E5152, 0xA831C66D, 0xB00327C8, 0xBF597FC7,
- 0xC6E00BF3, 0xD5A79147, 0x06CA6351, 0x14292967,
- 0x27B70A85, 0x2E1B2138, 0x4D2C6DFC, 0x53380D13,
- 0x650A7354, 0x766A0ABB, 0x81C2C92E, 0x92722C85,
- 0xA2BFE8A1, 0xA81A664B, 0xC24B8B70, 0xC76C51A3,
- 0xD192E819, 0xD6990624, 0xF40E3585, 0x106AA070,
- 0x19A4C116, 0x1E376C08, 0x2748774C, 0x34B0BCB5,
- 0x391C0CB3, 0x4ED8AA4A, 0x5B9CCA4F, 0x682E6FF3,
- 0x748F82EE, 0x78A5636F, 0x84C87814, 0x8CC70208,
- 0x90BEFFFA, 0xA4506CEB, 0xBEF9A3F7, 0xC67178F2,
- };
- #define SHR(x,n) (((x) & 0xFFFFFFFF) >> (n))
- #define ROTR(x,n) (SHR(x,n) | ((x) << (32 - (n))))
- #define S0(x) (ROTR(x, 7) ^ ROTR(x,18) ^ SHR(x, 3))
- #define S1(x) (ROTR(x,17) ^ ROTR(x,19) ^ SHR(x,10))
- #define S2(x) (ROTR(x, 2) ^ ROTR(x,13) ^ ROTR(x,22))
- #define S3(x) (ROTR(x, 6) ^ ROTR(x,11) ^ ROTR(x,25))
- #define F0(x,y,z) (((x) & (y)) | ((z) & ((x) | (y))))
- #define F1(x,y,z) ((z) ^ ((x) & ((y) ^ (z))))
- #define R(t) \
- ( \
- local.W[t] = S1(local.W[(t) - 2]) + local.W[(t) - 7] + \
- S0(local.W[(t) - 15]) + local.W[(t) - 16] \
- )
- #define P(a,b,c,d,e,f,g,h,x,K) \
- do \
- { \
- local.temp1 = (h) + S3(e) + F1((e),(f),(g)) + (K) + (x); \
- local.temp2 = S2(a) + F0((a),(b),(c)); \
- (d) += local.temp1; (h) = local.temp1 + local.temp2; \
- } while( 0 )
- int mbedtls_internal_sha224_process( mbedtls_sha256_context *ctx,
- const unsigned char data[64] )
- {
- struct
- {
- uint32_t temp1, temp2, W[64];
- uint32_t A[8];
- } local;
- unsigned int i;
- SHA256_VALIDATE_RET( ctx != NULL );
- SHA256_VALIDATE_RET( (const unsigned char *)data != NULL );
- for( i = 0; i < 8; i++ )
- local.A[i] = ctx->state[i];
- #if defined(MBEDTLS_SHA256_SMALLER)
- for( i = 0; i < 64; i++ )
- {
- if( i < 16 )
- GET_UINT32_BE( local.W[i], data, 4 * i );
- else
- R( i );
- P( local.A[0], local.A[1], local.A[2], local.A[3], local.A[4],
- local.A[5], local.A[6], local.A[7], local.W[i], K[i] );
- local.temp1 = local.A[7]; local.A[7] = local.A[6];
- local.A[6] = local.A[5]; local.A[5] = local.A[4];
- local.A[4] = local.A[3]; local.A[3] = local.A[2];
- local.A[2] = local.A[1]; local.A[1] = local.A[0];
- local.A[0] = local.temp1;
- }
- #else /* MBEDTLS_SHA256_SMALLER */
- for( i = 0; i < 16; i++ )
- GET_UINT32_BE( local.W[i], data, 4 * i );
- for( i = 0; i < 16; i += 8 )
- {
- P( local.A[0], local.A[1], local.A[2], local.A[3], local.A[4],
- local.A[5], local.A[6], local.A[7], local.W[i+0], K[i+0] );
- P( local.A[7], local.A[0], local.A[1], local.A[2], local.A[3],
- local.A[4], local.A[5], local.A[6], local.W[i+1], K[i+1] );
- P( local.A[6], local.A[7], local.A[0], local.A[1], local.A[2],
- local.A[3], local.A[4], local.A[5], local.W[i+2], K[i+2] );
- P( local.A[5], local.A[6], local.A[7], local.A[0], local.A[1],
- local.A[2], local.A[3], local.A[4], local.W[i+3], K[i+3] );
- P( local.A[4], local.A[5], local.A[6], local.A[7], local.A[0],
- local.A[1], local.A[2], local.A[3], local.W[i+4], K[i+4] );
- P( local.A[3], local.A[4], local.A[5], local.A[6], local.A[7],
- local.A[0], local.A[1], local.A[2], local.W[i+5], K[i+5] );
- P( local.A[2], local.A[3], local.A[4], local.A[5], local.A[6],
- local.A[7], local.A[0], local.A[1], local.W[i+6], K[i+6] );
- P( local.A[1], local.A[2], local.A[3], local.A[4], local.A[5],
- local.A[6], local.A[7], local.A[0], local.W[i+7], K[i+7] );
- }
- for( i = 16; i < 64; i += 8 )
- {
- P( local.A[0], local.A[1], local.A[2], local.A[3], local.A[4],
- local.A[5], local.A[6], local.A[7], R(i+0), K[i+0] );
- P( local.A[7], local.A[0], local.A[1], local.A[2], local.A[3],
- local.A[4], local.A[5], local.A[6], R(i+1), K[i+1] );
- P( local.A[6], local.A[7], local.A[0], local.A[1], local.A[2],
- local.A[3], local.A[4], local.A[5], R(i+2), K[i+2] );
- P( local.A[5], local.A[6], local.A[7], local.A[0], local.A[1],
- local.A[2], local.A[3], local.A[4], R(i+3), K[i+3] );
- P( local.A[4], local.A[5], local.A[6], local.A[7], local.A[0],
- local.A[1], local.A[2], local.A[3], R(i+4), K[i+4] );
- P( local.A[3], local.A[4], local.A[5], local.A[6], local.A[7],
- local.A[0], local.A[1], local.A[2], R(i+5), K[i+5] );
- P( local.A[2], local.A[3], local.A[4], local.A[5], local.A[6],
- local.A[7], local.A[0], local.A[1], R(i+6), K[i+6] );
- P( local.A[1], local.A[2], local.A[3], local.A[4], local.A[5],
- local.A[6], local.A[7], local.A[0], R(i+7), K[i+7] );
- }
- #endif /* MBEDTLS_SHA256_SMALLER */
- for( i = 0; i < 8; i++ )
- ctx->state[i] += local.A[i];
- /* Zeroise buffers and variables to clear sensitive data from memory. */
- mbedtls_platform_zeroize( &local, sizeof( local ) );
- return( 0 );
- }
- /*
- * SHA-256 process buffer
- */
- int mbedtls_sha224_update_ret( mbedtls_sha256_context *ctx,
- const unsigned char *input,
- size_t ilen )
- {
- int ret = MBEDTLS_ERROR_DEFAULT;
- size_t fill;
- uint32_t left;
- SHA256_VALIDATE_RET( ctx != NULL );
- SHA256_VALIDATE_RET( ilen == 0 || input != NULL );
- if( ilen == 0 )
- return( 0 );
- left = ctx->total[0] & 0x3F;
- fill = 64 - left;
- ctx->total[0] += (uint32_t) ilen;
- ctx->total[0] &= 0xFFFFFFFF;
- if( ctx->total[0] < (uint32_t) ilen )
- ctx->total[1]++;
- if( left && ilen >= fill )
- {
- memcpy( (void *) (ctx->buffer + left), input, fill );
- if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 )
- return( ret );
- input += fill;
- ilen -= fill;
- left = 0;
- }
- while( ilen >= 64 )
- {
- if( ( ret = mbedtls_internal_sha256_process( ctx, input ) ) != 0 )
- return( ret );
- input += 64;
- ilen -= 64;
- }
- if( ilen > 0 )
- memcpy( (void *) (ctx->buffer + left), input, ilen );
- return( 0 );
- }
- /*
- * SHA-256 final digest
- */
- int mbedtls_sha224_finish_ret( mbedtls_sha256_context *ctx,
- unsigned char output[32] )
- {
- int ret = MBEDTLS_ERROR_DEFAULT;
- uint32_t used;
- uint32_t high, low;
- SHA256_VALIDATE_RET( ctx != NULL );
- SHA256_VALIDATE_RET( (unsigned char *)output != NULL );
- /*
- * Add padding: 0x80 then 0x00 until 8 bytes remain for the length
- */
- used = ctx->total[0] & 0x3F;
- ctx->buffer[used++] = 0x80;
- if( used <= 56 )
- {
- /* Enough room for padding + length in current block */
- memset( ctx->buffer + used, 0, 56 - used );
- }
- else
- {
- /* We'll need an extra block */
- memset( ctx->buffer + used, 0, 64 - used );
- if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 )
- return( ret );
- memset( ctx->buffer, 0, 56 );
- }
- /*
- * Add message length
- */
- high = ( ctx->total[0] >> 29 )
- | ( ctx->total[1] << 3 );
- low = ( ctx->total[0] << 3 );
- PUT_UINT32_BE( high, ctx->buffer, 56 );
- PUT_UINT32_BE( low, ctx->buffer, 60 );
- if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 )
- return( ret );
- /*
- * Output final state
- */
- PUT_UINT32_BE( ctx->state[0], output, 0 );
- PUT_UINT32_BE( ctx->state[1], output, 4 );
- PUT_UINT32_BE( ctx->state[2], output, 8 );
- PUT_UINT32_BE( ctx->state[3], output, 12 );
- PUT_UINT32_BE( ctx->state[4], output, 16 );
- PUT_UINT32_BE( ctx->state[5], output, 20 );
- PUT_UINT32_BE( ctx->state[6], output, 24 );
- if( ctx->is224 == 0 )
- PUT_UINT32_BE( ctx->state[7], output, 28 );
- return( 0 );
- }
- #endif /* MBEDTLS_HPM_SHA224_ALT_SW */
- #endif /* MBEDTLS_HPM_SDP_SHA256 */
- #endif /* MBEDTLS_SHA256_C */
|