1 /*
2 * Common and shared functions used by multiple modules in the Mbed TLS
3 * library.
4 *
5 * Copyright The Mbed TLS Contributors
6 * SPDX-License-Identifier: Apache-2.0
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License"); you may
9 * not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 */
20
21 /*
22 * Ensure gmtime_r is available even with -std=c99; must be defined before
23 * mbedtls_config.h, which pulls in glibc's features.h. Harmless on other platforms
24 * except OpenBSD, where it stops us accessing explicit_bzero.
25 */
26 #if !defined(_POSIX_C_SOURCE) && !defined(__OpenBSD__)
27 #define _POSIX_C_SOURCE 200112L
28 #endif
29
30 #if !defined(_GNU_SOURCE)
31 /* Clang requires this to get support for explicit_bzero */
32 #define _GNU_SOURCE
33 #endif
34
35 #include "common.h"
36
37 #include "mbedtls/platform_util.h"
38 #include "mbedtls/platform.h"
39 #include "mbedtls/threading.h"
40
41 #include <stddef.h>
42 #include "securec.h"
43
44 #ifndef __STDC_WANT_LIB_EXT1__
45 #define __STDC_WANT_LIB_EXT1__ 1 /* Ask for the C11 gmtime_s() and memset_s() if available */
46 #endif
47 #include <string.h>
48
49 #if defined(_WIN32)
50 #include <windows.h>
51 #endif
52
53 // Detect platforms known to support explicit_bzero()
54 #if defined(__GLIBC__) && (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 25)
55 #define MBEDTLS_PLATFORM_HAS_EXPLICIT_BZERO 1
56 #elif (defined(__FreeBSD__) && (__FreeBSD_version >= 1100037)) || defined(__OpenBSD__)
57 #define MBEDTLS_PLATFORM_HAS_EXPLICIT_BZERO 1
58 #endif
59
60 #if !defined(MBEDTLS_PLATFORM_ZEROIZE_ALT)
61
62 #undef HAVE_MEMORY_SANITIZER
63 #if defined(__has_feature)
64 #if __has_feature(memory_sanitizer)
65 #include <sanitizer/msan_interface.h>
66 #define HAVE_MEMORY_SANITIZER
67 #endif
68 #endif
69
70 /*
71 * Where possible, we try to detect the presence of a platform-provided
72 * secure memset, such as explicit_bzero(), that is safe against being optimized
73 * out, and use that.
74 *
75 * For other platforms, we provide an implementation that aims not to be
76 * optimized out by the compiler.
77 *
78 * This implementation for mbedtls_platform_zeroize() was inspired from Colin
79 * Percival's blog article at:
80 *
81 * http://www.daemonology.net/blog/2014-09-04-how-to-zero-a-buffer.html
82 *
83 * It uses a volatile function pointer to the standard memset(). Because the
84 * pointer is volatile the compiler expects it to change at
85 * any time and will not optimize out the call that could potentially perform
86 * other operations on the input buffer instead of just setting it to 0.
87 * Nevertheless, as pointed out by davidtgoldblatt on Hacker News
88 * (refer to http://www.daemonology.net/blog/2014-09-05-erratum.html for
89 * details), optimizations of the following form are still possible:
90 *
91 * if (memset_func != memset)
92 * memset_func(buf, 0, len);
93 *
94 * Note that it is extremely difficult to guarantee that
95 * the memset() call will not be optimized out by aggressive compilers
96 * in a portable way. For this reason, Mbed TLS also provides the configuration
97 * option MBEDTLS_PLATFORM_ZEROIZE_ALT, which allows users to configure
98 * mbedtls_platform_zeroize() to use a suitable implementation for their
99 * platform and needs.
100 */
101 #if !defined(MBEDTLS_PLATFORM_HAS_EXPLICIT_BZERO) && !defined(__STDC_LIB_EXT1__) \
102 && !defined(_WIN32)
103 static void *(*const volatile memset_func)(void *, int, size_t) = memset;
104 #endif
105
mbedtls_platform_zeroize(void * buf,size_t len)106 void mbedtls_platform_zeroize(void *buf, size_t len)
107 {
108 MBEDTLS_INTERNAL_VALIDATE(len == 0 || buf != NULL);
109
110 if (len > 0) {
111 #if defined(MBEDTLS_PLATFORM_HAS_EXPLICIT_BZERO)
112 explicit_bzero(buf, len);
113 #if defined(HAVE_MEMORY_SANITIZER)
114 /* You'd think that Msan would recognize explicit_bzero() as
115 * equivalent to bzero(), but it actually doesn't on several
116 * platforms, including Linux (Ubuntu 20.04).
117 * https://github.com/google/sanitizers/issues/1507
118 * https://github.com/openssh/openssh-portable/commit/74433a19bb6f4cef607680fa4d1d7d81ca3826aa
119 */
120 __msan_unpoison(buf, len);
121 #endif
122 #elif defined(__STDC_LIB_EXT1__)
123 memset_s(buf, len, 0, len);
124 #elif defined(_WIN32)
125 SecureZeroMemory(buf, len);
126 #else
127 memset_func(buf, 0, len);
128 #endif
129 }
130 }
131 #endif /* MBEDTLS_PLATFORM_ZEROIZE_ALT */
132
133 #if defined(MBEDTLS_HAVE_TIME_DATE) && !defined(MBEDTLS_PLATFORM_GMTIME_R_ALT)
134 #include <time.h>
135 #if !defined(_WIN32) && (defined(unix) || \
136 defined(__unix) || defined(__unix__) || (defined(__APPLE__) && \
137 defined(__MACH__)))
138 #include <unistd.h>
139 #endif /* !_WIN32 && (unix || __unix || __unix__ ||
140 * (__APPLE__ && __MACH__)) */
141
142 #if !((defined(_POSIX_VERSION) && _POSIX_VERSION >= 200809L) || \
143 (defined(_POSIX_THREAD_SAFE_FUNCTIONS) && \
144 _POSIX_THREAD_SAFE_FUNCTIONS >= 200112L))
145 /*
146 * This is a convenience shorthand macro to avoid checking the long
147 * preprocessor conditions above. Ideally, we could expose this macro in
148 * platform_util.h and simply use it in platform_util.c, threading.c and
149 * threading.h. However, this macro is not part of the Mbed TLS public API, so
150 * we keep it private by only defining it in this file
151 */
152 #if !(defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)) || \
153 (defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR))
154 #define PLATFORM_UTIL_USE_GMTIME
155 #endif
156
157 #endif /* !( ( defined(_POSIX_VERSION) && _POSIX_VERSION >= 200809L ) || \
158 ( defined(_POSIX_THREAD_SAFE_FUNCTIONS ) && \
159 _POSIX_THREAD_SAFE_FUNCTIONS >= 200112L ) ) */
160
mbedtls_platform_gmtime_r(const mbedtls_time_t * tt,struct tm * tm_buf)161 struct tm *mbedtls_platform_gmtime_r(const mbedtls_time_t *tt,
162 struct tm *tm_buf)
163 {
164 #if defined(_WIN32) && !defined(PLATFORM_UTIL_USE_GMTIME)
165 #if defined(__STDC_LIB_EXT1__)
166 return (gmtime_s(tt, tm_buf) == 0) ? NULL : tm_buf;
167 #else
168 /* MSVC and mingw64 argument order and return value are inconsistent with the C11 standard */
169 return (gmtime_s(tm_buf, tt) == 0) ? tm_buf : NULL;
170 #endif
171 #elif !defined(PLATFORM_UTIL_USE_GMTIME)
172 return gmtime_r(tt, tm_buf);
173 #else
174 struct tm *lt;
175
176 #if defined(MBEDTLS_THREADING_C)
177 if (mbedtls_mutex_lock(&mbedtls_threading_gmtime_mutex) != 0) {
178 return NULL;
179 }
180 #endif /* MBEDTLS_THREADING_C */
181
182 lt = gmtime(tt);
183
184 if (lt != NULL) {
185 memcpy(tm_buf, lt, sizeof(struct tm));
186 }
187
188 #if defined(MBEDTLS_THREADING_C)
189 if (mbedtls_mutex_unlock(&mbedtls_threading_gmtime_mutex) != 0) {
190 return NULL;
191 }
192 #endif /* MBEDTLS_THREADING_C */
193
194 return (lt == NULL) ? NULL : tm_buf;
195 #endif /* _WIN32 && !EFIX64 && !EFI32 */
196 }
197 #endif /* MBEDTLS_HAVE_TIME_DATE && MBEDTLS_PLATFORM_GMTIME_R_ALT */
198
199 #if defined(MBEDTLS_TEST_HOOKS)
200 void (*mbedtls_test_hook_test_fail)(const char *, int, const char *);
201 #endif /* MBEDTLS_TEST_HOOKS */
202