blob: 1b371ef3f465d672eef8f680c555eca94da08f3e [file] [log] [blame]
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -05001/**
2 * \file platform_util.h
3 *
4 * \brief Common and shared functions used by multiple modules in the Mbed TLS
5 * library.
6 */
7/*
Bence Szépkúti1e148272020-08-07 13:07:28 +02008 * Copyright The Mbed TLS Contributors
Dave Rodgman16799db2023-11-02 19:47:20 +00009 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -050010 */
11#ifndef MBEDTLS_PLATFORM_UTIL_H
12#define MBEDTLS_PLATFORM_UTIL_H
13
Bence Szépkútic662b362021-05-27 11:25:03 +020014#include "mbedtls/build_info.h"
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +010015
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -050016#include <stddef.h>
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +010017#if defined(MBEDTLS_HAVE_TIME_DATE)
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010018#include "mbedtls/platform_time.h"
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +010019#include <time.h>
20#endif /* MBEDTLS_HAVE_TIME_DATE */
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -050021
22#ifdef __cplusplus
23extern "C" {
24#endif
25
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050026/* Internal helper macros for deprecating API constants. */
27#if !defined(MBEDTLS_DEPRECATED_REMOVED)
28#if defined(MBEDTLS_DEPRECATED_WARNING)
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050029#define MBEDTLS_DEPRECATED __attribute__((deprecated))
Gilles Peskine449bd832023-01-11 14:50:10 +010030MBEDTLS_DEPRECATED typedef char const *mbedtls_deprecated_string_constant_t;
31#define MBEDTLS_DEPRECATED_STRING_CONSTANT(VAL) \
32 ((mbedtls_deprecated_string_constant_t) (VAL))
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050033MBEDTLS_DEPRECATED typedef int mbedtls_deprecated_numeric_constant_t;
Gilles Peskine449bd832023-01-11 14:50:10 +010034#define MBEDTLS_DEPRECATED_NUMERIC_CONSTANT(VAL) \
35 ((mbedtls_deprecated_numeric_constant_t) (VAL))
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050036#else /* MBEDTLS_DEPRECATED_WARNING */
Brett Warren9e985732021-10-19 22:16:51 +010037#define MBEDTLS_DEPRECATED
Gilles Peskine449bd832023-01-11 14:50:10 +010038#define MBEDTLS_DEPRECATED_STRING_CONSTANT(VAL) VAL
39#define MBEDTLS_DEPRECATED_NUMERIC_CONSTANT(VAL) VAL
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050040#endif /* MBEDTLS_DEPRECATED_WARNING */
41#endif /* MBEDTLS_DEPRECATED_REMOVED */
42
Gilles Peskine463adf42021-09-23 17:28:59 +020043/* Implementation of the check-return facility.
44 * See the user documentation in mbedtls_config.h.
Mateusz Starzyke35f8f62021-08-04 15:38:09 +020045 *
Gilles Peskine463adf42021-09-23 17:28:59 +020046 * Do not use this macro directly to annotate function: instead,
47 * use one of MBEDTLS_CHECK_RETURN_CRITICAL or MBEDTLS_CHECK_RETURN_TYPICAL
48 * depending on how important it is to check the return value.
Mateusz Starzyke35f8f62021-08-04 15:38:09 +020049 */
50#if !defined(MBEDTLS_CHECK_RETURN)
51#if defined(__GNUC__)
Gilles Peskinea33e6932021-09-23 17:46:12 +020052#define MBEDTLS_CHECK_RETURN __attribute__((__warn_unused_result__))
Mateusz Starzyke35f8f62021-08-04 15:38:09 +020053#elif defined(_MSC_VER) && _MSC_VER >= 1700
54#include <sal.h>
55#define MBEDTLS_CHECK_RETURN _Check_return_
56#else
57#define MBEDTLS_CHECK_RETURN
58#endif
59#endif
60
Gilles Peskine463adf42021-09-23 17:28:59 +020061/** Critical-failure function
62 *
63 * This macro appearing at the beginning of the declaration of a function
64 * indicates that its return value should be checked in all applications.
65 * Omitting the check is very likely to indicate a bug in the application
66 * and will result in a compile-time warning if #MBEDTLS_CHECK_RETURN
67 * is implemented for the compiler in use.
68 *
69 * \note The use of this macro is a work in progress.
70 * This macro may be added to more functions in the future.
71 * Such an extension is not considered an API break, provided that
72 * there are near-unavoidable circumstances under which the function
73 * can fail. For example, signature/MAC/AEAD verification functions,
74 * and functions that require a random generator, are considered
75 * return-check-critical.
76 */
77#define MBEDTLS_CHECK_RETURN_CRITICAL MBEDTLS_CHECK_RETURN
78
79/** Ordinary-failure function
80 *
81 * This macro appearing at the beginning of the declaration of a function
82 * indicates that its return value should be generally be checked in portable
83 * applications. Omitting the check will result in a compile-time warning if
Gilles Peskine409fbbe2021-09-27 16:17:51 +020084 * #MBEDTLS_CHECK_RETURN is implemented for the compiler in use and
85 * #MBEDTLS_CHECK_RETURN_WARNING is enabled in the compile-time configuration.
Gilles Peskine463adf42021-09-23 17:28:59 +020086 *
Gilles Peskinefcc93d72021-09-30 18:56:17 +020087 * You can use #MBEDTLS_IGNORE_RETURN to explicitly ignore the return value
88 * of a function that is annotated with #MBEDTLS_CHECK_RETURN.
89 *
Gilles Peskine463adf42021-09-23 17:28:59 +020090 * \note The use of this macro is a work in progress.
91 * This macro will be added to more functions in the future.
92 * Eventually this should appear before most functions returning
93 * an error code (as \c int in the \c mbedtls_xxx API or
94 * as ::psa_status_t in the \c psa_xxx API).
95 */
Gilles Peskine9a7d4c22021-09-23 18:07:36 +020096#if defined(MBEDTLS_CHECK_RETURN_WARNING)
Gilles Peskine463adf42021-09-23 17:28:59 +020097#define MBEDTLS_CHECK_RETURN_TYPICAL MBEDTLS_CHECK_RETURN
Gilles Peskine9a7d4c22021-09-23 18:07:36 +020098#else
99#define MBEDTLS_CHECK_RETURN_TYPICAL
100#endif
Gilles Peskine463adf42021-09-23 17:28:59 +0200101
102/** Benign-failure function
103 *
104 * This macro appearing at the beginning of the declaration of a function
105 * indicates that it is rarely useful to check its return value.
106 *
107 * This macro has an empty expansion. It exists for documentation purposes:
108 * a #MBEDTLS_CHECK_RETURN_OPTIONAL annotation indicates that the function
Tom Cosgrove1e211442022-05-26 11:51:00 +0100109 * has been analyzed for return-check usefulness, whereas the lack of
Gilles Peskine463adf42021-09-23 17:28:59 +0200110 * an annotation indicates that the function has not been analyzed and its
111 * return-check usefulness is unknown.
112 */
113#define MBEDTLS_CHECK_RETURN_OPTIONAL
114
Mateusz Starzyk5c4ca322021-08-05 13:56:48 +0200115/** \def MBEDTLS_IGNORE_RETURN
116 *
Gilles Peskinefcc93d72021-09-30 18:56:17 +0200117 * Call this macro with one argument, a function call, to suppress a warning
118 * from #MBEDTLS_CHECK_RETURN due to that function call.
119 */
120#if !defined(MBEDTLS_IGNORE_RETURN)
Gilles Peskine252b7582021-09-30 18:54:51 +0200121/* GCC doesn't silence the warning with just (void)(result).
Gilles Peskine2aefc9e2021-09-30 20:34:29 +0200122 * (void)!(result) is known to work up at least up to GCC 10, as well
Gilles Peskine252b7582021-09-30 18:54:51 +0200123 * as with Clang and MSVC.
124 *
125 * https://gcc.gnu.org/onlinedocs/gcc-3.4.6/gcc/Non_002dbugs.html
126 * https://stackoverflow.com/questions/40576003/ignoring-warning-wunused-result
127 * https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66425#c34
Mateusz Starzyk5c4ca322021-08-05 13:56:48 +0200128 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100129#define MBEDTLS_IGNORE_RETURN(result) ((void) !(result))
Gilles Peskinefcc93d72021-09-30 18:56:17 +0200130#endif
Mateusz Starzyk5c4ca322021-08-05 13:56:48 +0200131
Tom Cosgroved9572c02023-09-01 14:34:37 +0100132/* If the following macro is defined, the library is being built by the test
133 * framework, and the framework is going to provide a replacement
134 * mbedtls_platform_zeroize() using a preprocessor macro, so the function
135 * declaration should be omitted. */
136#if !defined(MBEDTLS_TEST_DEFINES_ZEROIZE) //no-check-names
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -0500137/**
138 * \brief Securely zeroize a buffer
139 *
Andres Amaya Garcia56e06db2018-04-24 08:37:52 -0500140 * The function is meant to wipe the data contained in a buffer so
141 * that it can no longer be recovered even if the program memory
142 * is later compromised. Call this function on sensitive data
143 * stored on the stack before returning from a function, and on
144 * sensitive data stored on the heap before freeing the heap
145 * object.
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -0500146 *
Andres Amaya Garcia56e06db2018-04-24 08:37:52 -0500147 * It is extremely difficult to guarantee that calls to
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -0500148 * mbedtls_platform_zeroize() are not removed by aggressive
149 * compiler optimizations in a portable way. For this reason, Mbed
150 * TLS provides the configuration option
151 * MBEDTLS_PLATFORM_ZEROIZE_ALT, which allows users to configure
152 * mbedtls_platform_zeroize() to use a suitable implementation for
153 * their platform and needs
Andres Amaya Garcia56e06db2018-04-24 08:37:52 -0500154 *
155 * \param buf Buffer to be zeroized
156 * \param len Length of the buffer in bytes
157 *
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -0500158 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100159void mbedtls_platform_zeroize(void *buf, size_t len);
Tom Cosgrove42b02a92023-09-01 09:53:42 +0100160#endif
161
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100162#if defined(MBEDTLS_HAVE_TIME_DATE)
163/**
Hanno Beckerc52ef402018-09-05 16:28:59 +0100164 * \brief Platform-specific implementation of gmtime_r()
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100165 *
Hanno Beckerc52ef402018-09-05 16:28:59 +0100166 * The function is a thread-safe abstraction that behaves
Hanno Becker03b2bd42018-09-06 09:08:55 +0100167 * similarly to the gmtime_r() function from Unix/POSIX.
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100168 *
Hanno Becker6a739782018-09-05 15:06:19 +0100169 * Mbed TLS will try to identify the underlying platform and
Hanno Beckerc52ef402018-09-05 16:28:59 +0100170 * make use of an appropriate underlying implementation (e.g.
Hanno Becker6a739782018-09-05 15:06:19 +0100171 * gmtime_r() for POSIX and gmtime_s() for Windows). If this is
172 * not possible, then gmtime() will be used. In this case, calls
173 * from the library to gmtime() will be guarded by the mutex
174 * mbedtls_threading_gmtime_mutex if MBEDTLS_THREADING_C is
175 * enabled. It is recommended that calls from outside the library
176 * are also guarded by this mutex.
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100177 *
Hanno Becker6a739782018-09-05 15:06:19 +0100178 * If MBEDTLS_PLATFORM_GMTIME_R_ALT is defined, then Mbed TLS will
179 * unconditionally use the alternative implementation for
180 * mbedtls_platform_gmtime_r() supplied by the user at compile time.
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100181 *
Hanno Becker272675f2018-09-05 14:03:02 +0100182 * \param tt Pointer to an object containing time (in seconds) since the
Hanno Becker48a816f2018-09-05 15:22:22 +0100183 * epoch to be converted
Hanno Becker272675f2018-09-05 14:03:02 +0100184 * \param tm_buf Pointer to an object where the results will be stored
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100185 *
186 * \return Pointer to an object of type struct tm on success, otherwise
187 * NULL
188 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100189struct tm *mbedtls_platform_gmtime_r(const mbedtls_time_t *tt,
190 struct tm *tm_buf);
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100191#endif /* MBEDTLS_HAVE_TIME_DATE */
192
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -0500193#ifdef __cplusplus
194}
195#endif
196
197#endif /* MBEDTLS_PLATFORM_UTIL_H */