2022-08-09 12:45:47 +02:00
|
|
|
/*
|
|
|
|
* Multi-precision integer library
|
|
|
|
*
|
|
|
|
* Copyright The Mbed TLS Contributors
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_BIGNUM_C)
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "mbedtls/error.h"
|
|
|
|
#include "mbedtls/platform_util.h"
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
|
|
|
#include "mbedtls/platform.h"
|
|
|
|
#else
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define mbedtls_printf printf
|
|
|
|
#define mbedtls_calloc calloc
|
|
|
|
#define mbedtls_free free
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "bignum_core.h"
|
|
|
|
|
|
|
|
size_t mbedtls_mpi_core_clz( const mbedtls_mpi_uint x )
|
|
|
|
{
|
|
|
|
size_t j;
|
|
|
|
mbedtls_mpi_uint mask = (mbedtls_mpi_uint) 1 << (biL - 1);
|
|
|
|
|
|
|
|
for( j = 0; j < biL; j++ )
|
|
|
|
{
|
|
|
|
if( x & mask ) break;
|
|
|
|
|
|
|
|
mask >>= 1;
|
|
|
|
}
|
|
|
|
|
2022-08-12 15:36:56 +02:00
|
|
|
return( j );
|
2022-08-09 12:45:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t mbedtls_mpi_core_bitlen( const mbedtls_mpi_uint *X, size_t nx )
|
|
|
|
{
|
|
|
|
size_t i, j;
|
|
|
|
|
|
|
|
if( nx == 0 )
|
|
|
|
return( 0 );
|
|
|
|
|
|
|
|
for( i = nx - 1; i > 0; i-- )
|
|
|
|
if( X[i] != 0 )
|
|
|
|
break;
|
|
|
|
|
|
|
|
j = biL - mbedtls_mpi_core_clz( X[i] );
|
|
|
|
|
|
|
|
return( ( i * biL ) + j );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert a big-endian byte array aligned to the size of mbedtls_mpi_uint
|
|
|
|
* into the storage form used by mbedtls_mpi. */
|
|
|
|
static mbedtls_mpi_uint mpi_bigendian_to_host_c( mbedtls_mpi_uint x )
|
|
|
|
{
|
|
|
|
uint8_t i;
|
|
|
|
unsigned char *x_ptr;
|
|
|
|
mbedtls_mpi_uint tmp = 0;
|
|
|
|
|
2022-08-12 15:36:56 +02:00
|
|
|
for( i = 0, x_ptr = (unsigned char *) &x; i < ciL; i++, x_ptr++ )
|
2022-08-09 12:45:47 +02:00
|
|
|
{
|
|
|
|
tmp <<= CHAR_BIT;
|
|
|
|
tmp |= (mbedtls_mpi_uint) *x_ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return( tmp );
|
|
|
|
}
|
|
|
|
|
|
|
|
static mbedtls_mpi_uint mpi_bigendian_to_host( mbedtls_mpi_uint x )
|
|
|
|
{
|
|
|
|
#if defined(__BYTE_ORDER__)
|
|
|
|
|
|
|
|
/* Nothing to do on bigendian systems. */
|
|
|
|
#if ( __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ )
|
|
|
|
return( x );
|
|
|
|
#endif /* __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ */
|
|
|
|
|
|
|
|
#if ( __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ )
|
|
|
|
|
|
|
|
/* For GCC and Clang, have builtins for byte swapping. */
|
|
|
|
#if defined(__GNUC__) && defined(__GNUC_PREREQ)
|
|
|
|
#if __GNUC_PREREQ(4,3)
|
|
|
|
#define have_bswap
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__clang__) && defined(__has_builtin)
|
|
|
|
#if __has_builtin(__builtin_bswap32) && \
|
|
|
|
__has_builtin(__builtin_bswap64)
|
|
|
|
#define have_bswap
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(have_bswap)
|
|
|
|
/* The compiler is hopefully able to statically evaluate this! */
|
|
|
|
switch( sizeof(mbedtls_mpi_uint) )
|
|
|
|
{
|
|
|
|
case 4:
|
|
|
|
return( __builtin_bswap32(x) );
|
|
|
|
case 8:
|
|
|
|
return( __builtin_bswap64(x) );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ */
|
|
|
|
#endif /* __BYTE_ORDER__ */
|
|
|
|
|
|
|
|
/* Fall back to C-based reordering if we don't know the byte order
|
|
|
|
* or we couldn't use a compiler-specific builtin. */
|
|
|
|
return( mpi_bigendian_to_host_c( x ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void mbedtls_mpi_core_bigendian_to_host( mbedtls_mpi_uint * const X,
|
|
|
|
size_t limbs )
|
|
|
|
{
|
|
|
|
mbedtls_mpi_uint *cur_limb_left;
|
|
|
|
mbedtls_mpi_uint *cur_limb_right;
|
|
|
|
if( limbs == 0 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Traverse limbs and
|
|
|
|
* - adapt byte-order in each limb
|
|
|
|
* - swap the limbs themselves.
|
|
|
|
* For that, simultaneously traverse the limbs from left to right
|
|
|
|
* and from right to left, as long as the left index is not bigger
|
|
|
|
* than the right index (it's not a problem if limbs is odd and the
|
|
|
|
* indices coincide in the last iteration).
|
|
|
|
*/
|
|
|
|
for( cur_limb_left = X, cur_limb_right = X + ( limbs - 1 );
|
|
|
|
cur_limb_left <= cur_limb_right;
|
|
|
|
cur_limb_left++, cur_limb_right-- )
|
|
|
|
{
|
|
|
|
mbedtls_mpi_uint tmp;
|
|
|
|
/* Note that if cur_limb_left == cur_limb_right,
|
|
|
|
* this code effectively swaps the bytes only once. */
|
|
|
|
tmp = mpi_bigendian_to_host( *cur_limb_left );
|
|
|
|
*cur_limb_left = mpi_bigendian_to_host( *cur_limb_right );
|
|
|
|
*cur_limb_right = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int mbedtls_mpi_core_read_le( mbedtls_mpi_uint *X,
|
|
|
|
size_t nx,
|
|
|
|
const unsigned char *buf,
|
|
|
|
size_t buflen )
|
|
|
|
{
|
2022-08-12 15:40:09 +02:00
|
|
|
const size_t limbs = CHARS_TO_LIMBS( buflen );
|
2022-08-09 12:45:47 +02:00
|
|
|
|
2022-08-11 17:13:53 +02:00
|
|
|
if( nx < limbs )
|
|
|
|
return( MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL );
|
|
|
|
|
|
|
|
if( X != NULL )
|
2022-08-12 14:11:56 +02:00
|
|
|
{
|
2022-08-11 17:13:53 +02:00
|
|
|
memset( X, 0, nx * ciL );
|
2022-08-09 12:45:47 +02:00
|
|
|
|
2022-08-12 15:40:09 +02:00
|
|
|
for( size_t i = 0; i < buflen; i++ )
|
2022-08-12 14:11:56 +02:00
|
|
|
X[i / ciL] |= ((mbedtls_mpi_uint) buf[i]) << ((i % ciL) << 3);
|
|
|
|
}
|
2022-08-09 12:45:47 +02:00
|
|
|
|
2022-08-11 17:13:53 +02:00
|
|
|
return( 0 );
|
2022-08-09 12:45:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int mbedtls_mpi_core_read_be( mbedtls_mpi_uint *X,
|
|
|
|
size_t nx,
|
|
|
|
const unsigned char *buf,
|
|
|
|
size_t buflen )
|
|
|
|
{
|
2022-08-15 12:58:42 +02:00
|
|
|
const size_t limbs = CHARS_TO_LIMBS( buflen );
|
2022-08-09 12:45:47 +02:00
|
|
|
|
2022-08-11 17:13:53 +02:00
|
|
|
if( nx < limbs )
|
|
|
|
return( MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL );
|
|
|
|
|
2022-08-12 17:47:39 +02:00
|
|
|
/* If nx is 0, buflen must also be 0 (from previous test). Nothing to do. */
|
|
|
|
if( nx == 0 )
|
|
|
|
return( 0 );
|
2022-08-09 12:45:47 +02:00
|
|
|
|
2022-08-12 17:47:39 +02:00
|
|
|
memset( X, 0, nx * ciL );
|
2022-08-09 12:45:47 +02:00
|
|
|
|
2022-08-12 17:47:39 +02:00
|
|
|
/* memcpy() with (NULL, 0) is undefined behaviour */
|
|
|
|
if( buflen != 0 )
|
|
|
|
{
|
|
|
|
size_t overhead = ( nx * ciL ) - buflen;
|
|
|
|
unsigned char *Xp = (unsigned char *) X;
|
|
|
|
memcpy( Xp + overhead, buf, buflen );
|
2022-08-09 12:45:47 +02:00
|
|
|
}
|
|
|
|
|
2022-08-12 17:47:39 +02:00
|
|
|
mbedtls_mpi_core_bigendian_to_host( X, nx );
|
|
|
|
|
2022-08-11 17:13:53 +02:00
|
|
|
return( 0 );
|
2022-08-09 12:45:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int mbedtls_mpi_core_write_le( const mbedtls_mpi_uint *X,
|
|
|
|
size_t nx,
|
|
|
|
unsigned char *buf,
|
|
|
|
size_t buflen )
|
|
|
|
{
|
|
|
|
size_t stored_bytes = nx * ciL;
|
|
|
|
size_t bytes_to_copy;
|
|
|
|
|
|
|
|
if( stored_bytes < buflen )
|
|
|
|
{
|
|
|
|
bytes_to_copy = stored_bytes;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bytes_to_copy = buflen;
|
|
|
|
|
|
|
|
/* The output buffer is smaller than the allocated size of X.
|
|
|
|
* However X may fit if its leading bytes are zero. */
|
2022-08-15 13:08:49 +02:00
|
|
|
for( size_t i = bytes_to_copy; i < stored_bytes; i++ )
|
2022-08-09 12:45:47 +02:00
|
|
|
{
|
|
|
|
if( GET_BYTE( X, i ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-15 13:08:49 +02:00
|
|
|
for( size_t i = 0; i < bytes_to_copy; i++ )
|
2022-08-09 12:45:47 +02:00
|
|
|
buf[i] = GET_BYTE( X, i );
|
|
|
|
|
|
|
|
if( stored_bytes < buflen )
|
|
|
|
{
|
|
|
|
/* Write trailing 0 bytes */
|
|
|
|
memset( buf + stored_bytes, 0, buflen - stored_bytes );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int mbedtls_mpi_core_write_be( const mbedtls_mpi_uint *X,
|
|
|
|
size_t nx,
|
|
|
|
unsigned char *buf,
|
|
|
|
size_t buflen )
|
|
|
|
{
|
|
|
|
size_t stored_bytes;
|
|
|
|
size_t bytes_to_copy;
|
|
|
|
unsigned char *p;
|
|
|
|
|
|
|
|
stored_bytes = nx * ciL;
|
|
|
|
|
|
|
|
if( stored_bytes < buflen )
|
|
|
|
{
|
|
|
|
/* There is enough space in the output buffer. Write initial
|
|
|
|
* null bytes and record the position at which to start
|
|
|
|
* writing the significant bytes. In this case, the execution
|
|
|
|
* trace of this function does not depend on the value of the
|
|
|
|
* number. */
|
|
|
|
bytes_to_copy = stored_bytes;
|
|
|
|
p = buf + buflen - stored_bytes;
|
|
|
|
memset( buf, 0, buflen - stored_bytes );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* The output buffer is smaller than the allocated size of X.
|
|
|
|
* However X may fit if its leading bytes are zero. */
|
|
|
|
bytes_to_copy = buflen;
|
|
|
|
p = buf;
|
2022-08-15 13:08:49 +02:00
|
|
|
for( size_t i = bytes_to_copy; i < stored_bytes; i++ )
|
2022-08-09 12:45:47 +02:00
|
|
|
{
|
|
|
|
if( GET_BYTE( X, i ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-15 13:08:49 +02:00
|
|
|
for( size_t i = 0; i < bytes_to_copy; i++ )
|
2022-08-09 12:45:47 +02:00
|
|
|
p[bytes_to_copy - i - 1] = GET_BYTE( X, i );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* MBEDTLS_BIGNUM_C */
|