mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-16 08:42:50 +00:00
Merge remote-tracking branch 'public/pr/2079' into development-restricted-proposed
This commit is contained in:
commit
53b45ec881
@ -58,6 +58,10 @@ Bugfix
|
|||||||
wildcards and non-ASCII characters being unusable in some DN attributes.
|
wildcards and non-ASCII characters being unusable in some DN attributes.
|
||||||
Reported by raprepo in #1860 and by kevinpt in #468.
|
Reported by raprepo in #1860 and by kevinpt in #468.
|
||||||
Fix contributed by Thomas-Dee in #1641.
|
Fix contributed by Thomas-Dee in #1641.
|
||||||
|
* Fix compilation failure for configurations which use compile time
|
||||||
|
replacements of standard calloc/free functions through the macros
|
||||||
|
MBEDTLS_PLATFORM_CALLOC_MACRO and MBEDTLS_PLATFORM_FREE_MACRO.
|
||||||
|
Reported by ole-de and ddhome2006. Fixes #882, #1642 and #1706.
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Removed support for Yotta as a build tool.
|
* Removed support for Yotta as a build tool.
|
||||||
|
@ -30,7 +30,14 @@
|
|||||||
#include "mbedtls/platform.h"
|
#include "mbedtls/platform.h"
|
||||||
#include "mbedtls/platform_util.h"
|
#include "mbedtls/platform_util.h"
|
||||||
|
|
||||||
#if defined(MBEDTLS_PLATFORM_MEMORY)
|
/* The compile time configuration of memory allocation via the macros
|
||||||
|
* MBEDTLS_PLATFORM_{FREE/CALLOC}_MACRO takes precedence over the runtime
|
||||||
|
* configuration via mbedtls_platform_set_calloc_free(). So, omit everything
|
||||||
|
* related to the latter if MBEDTLS_PLATFORM_{FREE/CALLOC}_MACRO are defined. */
|
||||||
|
#if defined(MBEDTLS_PLATFORM_MEMORY) && \
|
||||||
|
!( defined(MBEDTLS_PLATFORM_CALLOC_MACRO) && \
|
||||||
|
defined(MBEDTLS_PLATFORM_FREE_MACRO) )
|
||||||
|
|
||||||
#if !defined(MBEDTLS_PLATFORM_STD_CALLOC)
|
#if !defined(MBEDTLS_PLATFORM_STD_CALLOC)
|
||||||
static void *platform_calloc_uninit( size_t n, size_t size )
|
static void *platform_calloc_uninit( size_t n, size_t size )
|
||||||
{
|
{
|
||||||
@ -71,7 +78,9 @@ int mbedtls_platform_set_calloc_free( void * (*calloc_func)( size_t, size_t ),
|
|||||||
mbedtls_free_func = free_func;
|
mbedtls_free_func = free_func;
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
#endif /* MBEDTLS_PLATFORM_MEMORY */
|
#endif /* MBEDTLS_PLATFORM_MEMORY &&
|
||||||
|
!( defined(MBEDTLS_PLATFORM_CALLOC_MACRO) &&
|
||||||
|
defined(MBEDTLS_PLATFORM_FREE_MACRO) ) */
|
||||||
|
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
@ -712,6 +712,18 @@ make
|
|||||||
msg "test: MBEDTLS_TEST_NULL_ENTROPY - main suites (inc. selftests) (ASan build)"
|
msg "test: MBEDTLS_TEST_NULL_ENTROPY - main suites (inc. selftests) (ASan build)"
|
||||||
make test
|
make test
|
||||||
|
|
||||||
|
msg "build: MBEDTLS_PLATFORM_{CALLOC/FREE}_MACRO enabled (ASan build)"
|
||||||
|
cleanup
|
||||||
|
cp "$CONFIG_H" "$CONFIG_BAK"
|
||||||
|
scripts/config.pl set MBEDTLS_PLATFORM_MEMORY
|
||||||
|
scripts/config.pl set MBEDTLS_PLATFORM_CALLOC_MACRO calloc
|
||||||
|
scripts/config.pl set MBEDTLS_PLATFORM_FREE_MACRO free
|
||||||
|
CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
|
||||||
|
make
|
||||||
|
|
||||||
|
msg "test: MBEDTLS_PLATFORM_{CALLOC/FREE}_MACRO enabled (ASan build)"
|
||||||
|
make test
|
||||||
|
|
||||||
msg "build: default config with AES_FEWER_TABLES enabled"
|
msg "build: default config with AES_FEWER_TABLES enabled"
|
||||||
cleanup
|
cleanup
|
||||||
cp "$CONFIG_H" "$CONFIG_BAK"
|
cp "$CONFIG_H" "$CONFIG_BAK"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user