Skip to content

Commit 737b081

Browse files
committed
[nrf fromlist] modules: mbedtls: Expose MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
The commit adds Kconfig options that allows users to select - MBEDTLS_PLATFORM_NO_STD_FUNCTIONS - MBEDTLS_PLATFORM_SNPRINTF_ALT allowing Mbed TLS to use own definitions of STD functions. Upstream PR #: 87135 Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
1 parent cff94da commit 737b081

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

modules/mbedtls/Kconfig.tls-generic

+15
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,21 @@ config MBEDTLS_GENPRIME_ENABLED
406406
config MBEDTLS_ASN1_PARSE_C
407407
bool "Support for ASN1 parser functions"
408408

409+
config MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
410+
bool "Use Mbed TLS provided standard functions"
411+
help
412+
This replaces, within Mbed TLS, usage of functions like alloc, calloc,
413+
free, snprintf, or printf with MmbedTLS specific implantations.
414+
This option may be useful if system is compiled in without some
415+
of these functions and Mbed TLS needs them internally.
416+
417+
if MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
418+
419+
config MBEDTLS_PLATFORM_SNPRINTF_ALT
420+
bool "Use Mbed TLS provided snprintf"
421+
422+
endif # MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
423+
409424
config MBEDTLS_PEM_CERTIFICATE_FORMAT
410425
bool "Support for PEM certificate format"
411426
help

modules/mbedtls/configs/config-tls-generic.h

+7
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@
2323
#define MBEDTLS_PLATFORM_ZEROIZE_ALT
2424
#endif
2525

26+
#if defined(CONFIG_MBEDTLS_PLATFORM_NO_STD_FUNCTIONS)
27+
#define MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
28+
#if defined(CONFIG_MBEDTLS_PLATFORM_SNPRINTF_ALT)
29+
#define MBEDTLS_PLATFORM_SNPRINTF_ALT
30+
#endif /* defined(MBEDTLS_PLATFORM_SNPRINTF_ALT) */
31+
#endif /* defined(MBEDTLS_PLATFORM_NO_STD_FUNCTIONS) */
32+
2633
#if defined(CONFIG_MBEDTLS_ENTROPY_POLL_ZEPHYR)
2734
#define MBEDTLS_ENTROPY_HARDWARE_ALT
2835
#else

0 commit comments

Comments
 (0)