blob: b4ffb471ec9f0117b10704980a6bda212e9fd6fb [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
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -05009 * SPDX-License-Identifier: Apache-2.0
10 *
11 * Licensed under the Apache License, Version 2.0 (the "License"); you may
12 * not use this file except in compliance with the License.
13 * You may obtain a copy of the License at
14 *
15 * http://www.apache.org/licenses/LICENSE-2.0
16 *
17 * Unless required by applicable law or agreed to in writing, software
18 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
19 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 * See the License for the specific language governing permissions and
21 * limitations under the License.
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -050022 */
23#ifndef MBEDTLS_PLATFORM_UTIL_H
24#define MBEDTLS_PLATFORM_UTIL_H
25
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +010026#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010027#include "mbedtls/config.h"
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +010028#else
29#include MBEDTLS_CONFIG_FILE
30#endif
31
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -050032#include <stddef.h>
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +010033#if defined(MBEDTLS_HAVE_TIME_DATE)
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010034#include "mbedtls/platform_time.h"
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +010035#include <time.h>
36#endif /* MBEDTLS_HAVE_TIME_DATE */
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -050037
38#ifdef __cplusplus
39extern "C" {
40#endif
41
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050042#if defined(MBEDTLS_CHECK_PARAMS)
43
Gilles Peskinec7ad1222019-06-13 16:44:19 +020044#if defined(MBEDTLS_CHECK_PARAMS_ASSERT)
45/* Allow the user to define MBEDTLS_PARAM_FAILED to something like assert
46 * (which is what our config.h suggests). */
47#include <assert.h>
48#endif /* MBEDTLS_CHECK_PARAMS_ASSERT */
49
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050050#if defined(MBEDTLS_PARAM_FAILED)
51/** An alternative definition of MBEDTLS_PARAM_FAILED has been set in config.h.
52 *
53 * This flag can be used to check whether it is safe to assume that
54 * MBEDTLS_PARAM_FAILED() will expand to a call to mbedtls_param_failed().
55 */
56#define MBEDTLS_PARAM_FAILED_ALT
Gilles Peskinec7ad1222019-06-13 16:44:19 +020057
58#elif defined(MBEDTLS_CHECK_PARAMS_ASSERT)
59#define MBEDTLS_PARAM_FAILED( cond ) assert( cond )
60#define MBEDTLS_PARAM_FAILED_ALT
61
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050062#else /* MBEDTLS_PARAM_FAILED */
63#define MBEDTLS_PARAM_FAILED( cond ) \
64 mbedtls_param_failed( #cond, __FILE__, __LINE__ )
65
66/**
67 * \brief User supplied callback function for parameter validation failure.
68 * See #MBEDTLS_CHECK_PARAMS for context.
69 *
70 * This function will be called unless an alternative treatement
71 * is defined through the #MBEDTLS_PARAM_FAILED macro.
72 *
73 * This function can return, and the operation will be aborted, or
74 * alternatively, through use of setjmp()/longjmp() can resume
75 * execution in the application code.
76 *
77 * \param failure_condition The assertion that didn't hold.
78 * \param file The file where the assertion failed.
79 * \param line The line in the file where the assertion failed.
80 */
81void mbedtls_param_failed( const char *failure_condition,
82 const char *file,
83 int line );
84#endif /* MBEDTLS_PARAM_FAILED */
85
86/* Internal macro meant to be called only from within the library. */
87#define MBEDTLS_INTERNAL_VALIDATE_RET( cond, ret ) \
88 do { \
89 if( !(cond) ) \
90 { \
91 MBEDTLS_PARAM_FAILED( cond ); \
92 return( ret ); \
93 } \
94 } while( 0 )
95
96/* Internal macro meant to be called only from within the library. */
97#define MBEDTLS_INTERNAL_VALIDATE( cond ) \
98 do { \
99 if( !(cond) ) \
100 { \
101 MBEDTLS_PARAM_FAILED( cond ); \
102 return; \
103 } \
104 } while( 0 )
105
106#else /* MBEDTLS_CHECK_PARAMS */
107
108/* Internal macros meant to be called only from within the library. */
109#define MBEDTLS_INTERNAL_VALIDATE_RET( cond, ret ) do { } while( 0 )
110#define MBEDTLS_INTERNAL_VALIDATE( cond ) do { } while( 0 )
111
112#endif /* MBEDTLS_CHECK_PARAMS */
113
114/* Internal helper macros for deprecating API constants. */
115#if !defined(MBEDTLS_DEPRECATED_REMOVED)
116#if defined(MBEDTLS_DEPRECATED_WARNING)
117/* Deliberately don't (yet) export MBEDTLS_DEPRECATED here
118 * to avoid conflict with other headers which define and use
119 * it, too. We might want to move all these definitions here at
120 * some point for uniformity. */
121#define MBEDTLS_DEPRECATED __attribute__((deprecated))
122MBEDTLS_DEPRECATED typedef char const * mbedtls_deprecated_string_constant_t;
123#define MBEDTLS_DEPRECATED_STRING_CONSTANT( VAL ) \
124 ( (mbedtls_deprecated_string_constant_t) ( VAL ) )
125MBEDTLS_DEPRECATED typedef int mbedtls_deprecated_numeric_constant_t;
126#define MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( VAL ) \
127 ( (mbedtls_deprecated_numeric_constant_t) ( VAL ) )
128#undef MBEDTLS_DEPRECATED
129#else /* MBEDTLS_DEPRECATED_WARNING */
130#define MBEDTLS_DEPRECATED_STRING_CONSTANT( VAL ) VAL
131#define MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( VAL ) VAL
132#endif /* MBEDTLS_DEPRECATED_WARNING */
133#endif /* MBEDTLS_DEPRECATED_REMOVED */
134
Gilles Peskine7b8571f2021-07-07 21:02:36 +0200135/** \def MBEDTLS_CHECK_RETURN
136 *
137 * This macro appearing at the beginning of the declaration of a function
138 * indicates that its return value should be checked.
139 *
140 * This should appear before most functions returning an error code
141 * (as \c int in the \c mbedtls_xxx API or
142 * as ::psa_status_t in the \c psa_xxx API).
143 */
144#if !defined(MBEDTLS_CHECK_RETURN)
145#if defined(__GNUC__)
146#define MBEDTLS_CHECK_RETURN __attribute__((warn_unused_result))
147#elif defined(_MSC_VER) && _MSC_VER >= 1700
148#include <sal.h>
149#define MBEDTLS_CHECK_RETURN _Check_return_
150#else
151#define MBEDTLS_CHECK_RETURN
152#endif
153#endif
154
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -0500155/**
156 * \brief Securely zeroize a buffer
157 *
Andres Amaya Garcia56e06db2018-04-24 08:37:52 -0500158 * The function is meant to wipe the data contained in a buffer so
159 * that it can no longer be recovered even if the program memory
160 * is later compromised. Call this function on sensitive data
161 * stored on the stack before returning from a function, and on
162 * sensitive data stored on the heap before freeing the heap
163 * object.
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -0500164 *
Andres Amaya Garcia56e06db2018-04-24 08:37:52 -0500165 * It is extremely difficult to guarantee that calls to
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -0500166 * mbedtls_platform_zeroize() are not removed by aggressive
167 * compiler optimizations in a portable way. For this reason, Mbed
168 * TLS provides the configuration option
169 * MBEDTLS_PLATFORM_ZEROIZE_ALT, which allows users to configure
170 * mbedtls_platform_zeroize() to use a suitable implementation for
171 * their platform and needs
Andres Amaya Garcia56e06db2018-04-24 08:37:52 -0500172 *
173 * \param buf Buffer to be zeroized
174 * \param len Length of the buffer in bytes
175 *
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -0500176 */
177void mbedtls_platform_zeroize( void *buf, size_t len );
178
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100179#if defined(MBEDTLS_HAVE_TIME_DATE)
180/**
Hanno Beckerc52ef402018-09-05 16:28:59 +0100181 * \brief Platform-specific implementation of gmtime_r()
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100182 *
Hanno Beckerc52ef402018-09-05 16:28:59 +0100183 * The function is a thread-safe abstraction that behaves
Hanno Becker03b2bd42018-09-06 09:08:55 +0100184 * similarly to the gmtime_r() function from Unix/POSIX.
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100185 *
Hanno Becker6a739782018-09-05 15:06:19 +0100186 * Mbed TLS will try to identify the underlying platform and
Hanno Beckerc52ef402018-09-05 16:28:59 +0100187 * make use of an appropriate underlying implementation (e.g.
Hanno Becker6a739782018-09-05 15:06:19 +0100188 * gmtime_r() for POSIX and gmtime_s() for Windows). If this is
189 * not possible, then gmtime() will be used. In this case, calls
190 * from the library to gmtime() will be guarded by the mutex
191 * mbedtls_threading_gmtime_mutex if MBEDTLS_THREADING_C is
192 * enabled. It is recommended that calls from outside the library
193 * are also guarded by this mutex.
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100194 *
Hanno Becker6a739782018-09-05 15:06:19 +0100195 * If MBEDTLS_PLATFORM_GMTIME_R_ALT is defined, then Mbed TLS will
196 * unconditionally use the alternative implementation for
197 * mbedtls_platform_gmtime_r() supplied by the user at compile time.
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100198 *
Hanno Becker272675f2018-09-05 14:03:02 +0100199 * \param tt Pointer to an object containing time (in seconds) since the
Hanno Becker48a816f2018-09-05 15:22:22 +0100200 * epoch to be converted
Hanno Becker272675f2018-09-05 14:03:02 +0100201 * \param tm_buf Pointer to an object where the results will be stored
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100202 *
203 * \return Pointer to an object of type struct tm on success, otherwise
204 * NULL
205 */
Hanno Becker6a739782018-09-05 15:06:19 +0100206struct tm *mbedtls_platform_gmtime_r( const mbedtls_time_t *tt,
207 struct tm *tm_buf );
Andres Amaya Garcia1abb3682018-08-16 21:42:09 +0100208#endif /* MBEDTLS_HAVE_TIME_DATE */
209
Andres Amaya Garcia904e1ef2018-04-17 09:16:30 -0500210#ifdef __cplusplus
211}
212#endif
213
214#endif /* MBEDTLS_PLATFORM_UTIL_H */