1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/*
* Copyright (C) 2008-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
* This file is part of GnuTLS.
*
* The GnuTLS is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>
*
*/
/* This file handles all the internal functions that cope with random data
*/
#include "gnutls_int.h"
#include "errors.h"
#include "random.h"
#include "locks.h"
#include "fips.h"
#include "gl_linkedhash_list.h"
#include "gl_list.h"
#include "glthread/tls.h"
#include "gthreads.h"
#ifdef HAVE_LEANCRYPTO
#include <leancrypto.h>
#endif
#if defined(FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION)
extern gnutls_crypto_rnd_st _gnutls_fuzz_rnd_ops;
#endif
/* A global list of all allocated contexts.
* A safety measure in case thread specific
* context cannot be freed on thread exit
*/
GNUTLS_STATIC_MUTEX(gnutls_rnd_list_mutex);
static gl_list_t list;
/* Key used to locate and manage thread specific random generator context
*/
static gl_tls_key_t ctx_key;
/* Flag to indicate initialization
*/
static _Thread_local unsigned rnd_initialized = 0;
static void free_ctx(const void *ctx)
{
if (ctx && _gnutls_rnd_ops.deinit)
_gnutls_rnd_ops.deinit((void *)ctx);
}
static void delete_ctx(void *ctx)
{
(void)gnutls_static_mutex_lock(&gnutls_rnd_list_mutex);
gl_list_remove(list, ctx);
gnutls_static_mutex_unlock(&gnutls_rnd_list_mutex);
}
#ifdef HAVE_LEANCRYPTO
static inline int seeded_rng_generate(void *state MAYBE_UNUSED,
const uint8_t *addtl_input MAYBE_UNUSED,
size_t addtl_input_len MAYBE_UNUSED,
uint8_t *out, size_t outlen)
{
if (gnutls_rnd(GNUTLS_RND_KEY, out, outlen) < 0) {
_gnutls_switch_lib_state(LIB_STATE_ERROR);
return -EFAULT;
}
return 0;
}
static inline int seeded_rng_seed(void *state MAYBE_UNUSED,
const uint8_t *seed MAYBE_UNUSED,
size_t seedlen MAYBE_UNUSED,
const uint8_t *persbuf MAYBE_UNUSED,
size_t perslen MAYBE_UNUSED)
{
/* Do nothing */
return 0;
}
static inline void seeded_rng_zero(void *state MAYBE_UNUSED)
{
/* Do nothing */
}
static const struct lc_rng seeded_rng = {
.generate = seeded_rng_generate,
.seed = seeded_rng_seed,
.zero = seeded_rng_zero,
};
struct lc_rng_ctx seeded_rng_ctx = {
.rng = &seeded_rng,
};
#endif
static inline int _gnutls_rnd_init(void)
{
int ret;
void *ctx;
gl_list_node_t node;
if (likely(rnd_initialized))
return 0;
if (_gnutls_rnd_ops.init == NULL) {
rnd_initialized = 1;
return 0;
}
if (_gnutls_rnd_ops.init(&ctx) < 0)
return gnutls_assert_val(GNUTLS_E_RANDOM_FAILED);
if (glthread_tls_set(&ctx_key, ctx)) {
_gnutls_rnd_ops.deinit(ctx);
return gnutls_assert_val(GNUTLS_E_RANDOM_FAILED);
}
ret = gnutls_static_mutex_lock(&gnutls_rnd_list_mutex);
if (ret < 0)
return gnutls_assert_val(ret);
node = gl_list_nx_add_last(list, ctx);
gnutls_static_mutex_unlock(&gnutls_rnd_list_mutex);
if (node == NULL) {
_gnutls_rnd_ops.deinit(ctx);
return gnutls_assert_val(GNUTLS_E_MEMORY_ERROR);
}
rnd_initialized = 1;
return 0;
}
int _gnutls_rnd_preinit(void)
{
int ret;
#if defined(FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION)
#warning Insecure PRNG is enabled
ret = gnutls_crypto_rnd_register(100, &_gnutls_fuzz_rnd_ops);
if (ret < 0)
return ret;
#elif defined(ENABLE_FIPS140)
/* The FIPS140 random generator is only enabled when we are compiled
* with FIPS support, _and_ the system is in FIPS installed state.
*/
if (_gnutls_fips_mode_enabled()) {
ret = gnutls_crypto_rnd_register(100, &_gnutls_fips_rnd_ops);
if (ret < 0)
return ret;
}
#endif
#ifdef HAVE_LEANCRYPTO
/* Some leancrypto functions need a seeded RNG either given
* explicitly as a parameter, or implicitly through the
* lc_seeded_rng global variable. */
ret = lc_rng_set_seeded(&seeded_rng_ctx);
if (ret < 0)
return gnutls_assert_val(GNUTLS_E_RANDOM_FAILED);
#endif
ret = _rnd_system_entropy_init();
if (ret < 0)
return gnutls_assert_val(GNUTLS_E_RANDOM_FAILED);
ret = glthread_tls_key_init(&ctx_key, delete_ctx);
if (ret)
return gnutls_assert_val(GNUTLS_E_RANDOM_FAILED);
list = gl_list_nx_create_empty(GL_LINKEDHASH_LIST, NULL, NULL, free_ctx,
false);
if (list == NULL)
return gnutls_assert_val(GNUTLS_E_MEMORY_ERROR);
return 0;
}
void _gnutls_rnd_deinit(void)
{
gl_list_free(list);
glthread_tls_key_destroy(&ctx_key);
rnd_initialized = 0;
_rnd_system_entropy_deinit();
}
/**
* gnutls_rnd:
* @level: a security level
* @data: place to store random bytes
* @len: The requested size
*
* This function will generate random data and store it to output
* buffer. The value of @level should be one of %GNUTLS_RND_NONCE,
* %GNUTLS_RND_RANDOM and %GNUTLS_RND_KEY. See the manual and
* %gnutls_rnd_level_t for detailed information.
*
* This function is thread-safe and also fork-safe.
*
* Returns: Zero on success, or a negative error code on error.
*
* Since: 2.12.0
**/
int gnutls_rnd(gnutls_rnd_level_t level, void *data, size_t len)
{
int ret;
FAIL_IF_LIB_ERROR;
ret = _gnutls_rnd_init();
if (unlikely(ret < 0))
return gnutls_assert_val(ret);
if (likely(len > 0))
return _gnutls_rnd_ops.rnd(gl_tls_get(ctx_key), level, data,
len);
return 0;
}
/**
* gnutls_rnd_refresh:
*
* This function refreshes the random generator state.
* That is the current precise time, CPU usage, and
* other values are input into its state.
*
* On a slower rate input from /dev/urandom is mixed too.
*
* Since: 3.1.7
**/
void gnutls_rnd_refresh(void)
{
if (rnd_initialized && _gnutls_rnd_ops.rnd_refresh)
_gnutls_rnd_ops.rnd_refresh(gl_tls_get(ctx_key));
}
|