Skip to content

Commit 3f6222b

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 alternative definitions of STD functions. Upstream PR #: 87135 Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
1 parent 4ebf518 commit 3f6222b

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

modules/mbedtls/Kconfig.tls-generic

+22
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,28 @@ 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 "Remove usage of standard libc functions"
411+
help
412+
This prevents Mbed TLS from linking against the following standard functions
413+
from libc: `snprintf`, `vsnprintf`, `printf`, `fprintf`, `calloc`, `free`, `setbuf`, `exit`
414+
and `time`. By default Mbed TLS will use stub functions for all these functions.
415+
These stubs are just meant to return successfully, but they don't implement
416+
the required functionality.
417+
Users can individually override each of these stubs by calling
418+
`mbedtls_platform_set_xxx()` to set the their implementation of `xxx()` function
419+
at runtime.
420+
421+
if MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
422+
423+
config MBEDTLS_PLATFORM_SNPRINTF_ALT
424+
bool "Allow setting custom snprintf at run-time"
425+
help
426+
Allow setting a custom `snprintf()` function with `mbedtls_platform_set_snprintf()`.
427+
Include `mbedtls/platform.h` for the prototype of this function.
428+
429+
endif # MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
430+
409431
config MBEDTLS_PEM_CERTIFICATE_FORMAT
410432
bool "Support for PEM certificate format"
411433
help

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

+8
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@
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+
#endif /* defined(MBEDTLS_PLATFORM_NO_STD_FUNCTIONS) */
29+
30+
#if defined(CONFIG_MBEDTLS_PLATFORM_SNPRINTF_ALT)
31+
#define MBEDTLS_PLATFORM_SNPRINTF_ALT
32+
#endif /* defined(MBEDTLS_PLATFORM_SNPRINTF_ALT) */
33+
2634
#if defined(CONFIG_MBEDTLS_ENTROPY_POLL_ZEPHYR)
2735
#define MBEDTLS_ENTROPY_HARDWARE_ALT
2836
#else

0 commit comments

Comments
 (0)