]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/rand/drbg_lib.c
crypto/rand: rename drbg_rand.c to drbg_ctr.c
[thirdparty/openssl.git] / crypto / rand / drbg_lib.c
CommitLineData
12fb8c3d
RS
1/*
2 * Copyright 2011-2017 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10#include <string.h>
11#include <openssl/crypto.h>
12#include <openssl/err.h>
13#include <openssl/rand.h>
14#include "rand_lcl.h"
0b14a5b7
KR
15#include "internal/thread_once.h"
16#include "internal/rand_int.h"
12fb8c3d
RS
17
18/*
19 * Support framework for NIST SP 800-90A DRBG, AES-CTR mode.
75e2c877
RS
20 * The RAND_DRBG is OpenSSL's pointer to an instance of the DRBG.
21 *
12fb8c3d
RS
22 * The OpenSSL model is to have new and free functions, and that new
23 * does all initialization. That is not the NIST model, which has
24 * instantiation and un-instantiate, and re-use within a new/free
25 * lifecycle. (No doubt this comes from the desire to support hardware
26 * DRBG, where allocation of resources on something like an HSM is
27 * a much bigger deal than just re-setting an allocated resource.)
12fb8c3d
RS
28 */
29
a93ba405
DMSP
30/*
31 * THE THREE SHARED DRBGs
32 *
33 * There are three shared DRBGs (master, public and private), which are
34 * accessed concurrently by all threads.
35 *
36 * THE MASTER DRBG
37 *
38 * Not used directly by the application, only for reseeding the two other
39 * DRBGs. It reseeds itself by pulling either randomness from os entropy
40 * sources or by consuming randomnes which was added by RAND_add()
41 */
933033b6 42static RAND_DRBG *drbg_master;
a93ba405
DMSP
43/*
44 * THE PUBLIC DRBG
45 *
46 * Used by default for generating random bytes using RAND_bytes().
47 */
933033b6 48static RAND_DRBG *drbg_public;
a93ba405
DMSP
49/*
50 * THE PRIVATE DRBG
51 *
52 * Used by default for generating private keys using RAND_priv_bytes()
53 */
933033b6 54static RAND_DRBG *drbg_private;
a93ba405
DMSP
55/*+
56 * DRBG HIERARCHY
57 *
58 * In addition there are DRBGs, which are not shared, but used only by a
59 * single thread at every time, for example the DRBGs which are owned by
60 * an SSL context. All DRBGs are organized in a hierarchical fashion
61 * with the <master> DRBG as root.
62 *
63 * This gives the following overall picture:
64 *
65 * <os entropy sources>
66 * |
67 * RAND_add() ==> <master> \
68 * / \ | shared DRBGs (with locking)
69 * <public> <private> /
70 * |
71 * <ssl> owned by an SSL context
72 *
73 * AUTOMATIC RESEEDING
74 *
08a65d96
DMSP
75 * Before satisfying a generate request, a DRBG reseeds itself automatically,
76 * if one of the following two conditions holds:
77 *
78 * - the number of generate requests since the last reseeding exceeds a
79 * certain threshold, the so called |reseed_interval|. This behaviour
80 * can be disabled by setting the |reseed_interval| to 0.
81 *
82 * - the time elapsed since the last reseeding exceeds a certain time
83 * interval, the so called |reseed_time_interval|. This behaviour
84 * can be disabled by setting the |reseed_time_interval| to 0.
a93ba405
DMSP
85 *
86 * MANUAL RESEEDING
87 *
08a65d96
DMSP
88 * For the three shared DRBGs (and only for these) there is another way to
89 * reseed them manually by calling RAND_seed() (or RAND_add() with a positive
a93ba405 90 * |randomness| argument). This will immediately reseed the <master> DRBG.
08a65d96
DMSP
91 * The <public> and <private> DRBG will detect this on their next generate
92 * call and reseed, pulling randomness from <master>.
a93ba405
DMSP
93 */
94
95
96/* NIST SP 800-90A DRBG recommends the use of a personalization string. */
97static const char ossl_pers_string[] = "OpenSSL NIST SP 800-90A DRBG";
98
c16de9d8
DMSP
99static CRYPTO_ONCE rand_drbg_init = CRYPTO_ONCE_STATIC_INIT;
100
933033b6
DMSP
101static RAND_DRBG *drbg_setup(const char *name, RAND_DRBG *parent);
102static void drbg_cleanup(RAND_DRBG *drbg);
0b14a5b7 103
12fb8c3d 104/*
75e2c877 105 * Set/initialize |drbg| to be of type |nid|, with optional |flags|.
efb8128a
DMSP
106 *
107 * Returns 1 on success, 0 on failure.
12fb8c3d 108 */
75e2c877 109int RAND_DRBG_set(RAND_DRBG *drbg, int nid, unsigned int flags)
12fb8c3d
RS
110{
111 int ret = 1;
112
75e2c877
RS
113 drbg->state = DRBG_UNINITIALISED;
114 drbg->flags = flags;
115 drbg->nid = nid;
12fb8c3d
RS
116
117 switch (nid) {
118 default:
119 RANDerr(RAND_F_RAND_DRBG_SET, RAND_R_UNSUPPORTED_DRBG_TYPE);
efb8128a 120 return 0;
12fb8c3d
RS
121 case 0:
122 /* Uninitialized; that's okay. */
123 return 1;
124 case NID_aes_128_ctr:
125 case NID_aes_192_ctr:
126 case NID_aes_256_ctr:
75e2c877 127 ret = ctr_init(drbg);
12fb8c3d
RS
128 break;
129 }
130
efb8128a 131 if (ret == 0)
12fb8c3d
RS
132 RANDerr(RAND_F_RAND_DRBG_SET, RAND_R_ERROR_INITIALISING_DRBG);
133 return ret;
134}
135
136/*
137 * Allocate memory and initialize a new DRBG. The |parent|, if not
75e2c877 138 * NULL, will be used to auto-seed this RAND_DRBG as needed.
a93ba405
DMSP
139 *
140 * Returns a pointer to the new DRBG instance on success, NULL on failure.
12fb8c3d 141 */
75e2c877 142RAND_DRBG *RAND_DRBG_new(int type, unsigned int flags, RAND_DRBG *parent)
12fb8c3d 143{
75e2c877 144 RAND_DRBG *drbg = OPENSSL_zalloc(sizeof(*drbg));
12fb8c3d 145
9d951a78 146 if (drbg == NULL) {
12fb8c3d 147 RANDerr(RAND_F_RAND_DRBG_NEW, ERR_R_MALLOC_FAILURE);
75e2c877 148 goto err;
12fb8c3d 149 }
a35f607c 150 drbg->fork_count = rand_fork_count;
75e2c877 151 drbg->parent = parent;
efb8128a 152 if (RAND_DRBG_set(drbg, type, flags) == 0)
75e2c877
RS
153 goto err;
154
a93ba405
DMSP
155 if (!RAND_DRBG_set_callbacks(drbg, rand_drbg_get_entropy,
156 rand_drbg_cleanup_entropy,
157 NULL, NULL))
158 goto err;
75e2c877
RS
159
160 return drbg;
161
162err:
75e2c877
RS
163 OPENSSL_free(drbg);
164 return NULL;
12fb8c3d
RS
165}
166
167/*
75e2c877 168 * Uninstantiate |drbg| and free all memory.
12fb8c3d 169 */
75e2c877 170void RAND_DRBG_free(RAND_DRBG *drbg)
12fb8c3d 171{
c16de9d8 172 if (drbg == NULL)
12fb8c3d
RS
173 return;
174
75e2c877 175 ctr_uninstantiate(drbg);
75e2c877
RS
176 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_DRBG, drbg, &drbg->ex_data);
177 OPENSSL_clear_free(drbg, sizeof(*drbg));
12fb8c3d
RS
178}
179
180/*
75e2c877 181 * Instantiate |drbg|, after it has been initialized. Use |pers| and
12fb8c3d 182 * |perslen| as prediction-resistance input.
2139145b
BK
183 *
184 * Requires that drbg->lock is already locked for write, if non-null.
efb8128a
DMSP
185 *
186 * Returns 1 on success, 0 on failure.
12fb8c3d 187 */
75e2c877 188int RAND_DRBG_instantiate(RAND_DRBG *drbg,
12fb8c3d
RS
189 const unsigned char *pers, size_t perslen)
190{
12fb8c3d 191 unsigned char *nonce = NULL, *entropy = NULL;
aa048aef 192 size_t noncelen = 0, entropylen = 0;
12fb8c3d 193
aa048aef 194 if (perslen > drbg->max_perslen) {
75e2c877
RS
195 RANDerr(RAND_F_RAND_DRBG_INSTANTIATE,
196 RAND_R_PERSONALISATION_STRING_TOO_LONG);
12fb8c3d
RS
197 goto end;
198 }
75e2c877
RS
199 if (drbg->state != DRBG_UNINITIALISED) {
200 RANDerr(RAND_F_RAND_DRBG_INSTANTIATE,
201 drbg->state == DRBG_ERROR ? RAND_R_IN_ERROR_STATE
202 : RAND_R_ALREADY_INSTANTIATED);
12fb8c3d
RS
203 goto end;
204 }
205
75e2c877
RS
206 drbg->state = DRBG_ERROR;
207 if (drbg->get_entropy != NULL)
aa048aef
DMSP
208 entropylen = drbg->get_entropy(drbg, &entropy, drbg->strength,
209 drbg->min_entropylen, drbg->max_entropylen);
c16de9d8
DMSP
210 if (entropylen < drbg->min_entropylen
211 || entropylen > drbg->max_entropylen) {
75e2c877 212 RANDerr(RAND_F_RAND_DRBG_INSTANTIATE, RAND_R_ERROR_RETRIEVING_ENTROPY);
12fb8c3d
RS
213 goto end;
214 }
215
aa048aef 216 if (drbg->max_noncelen > 0 && drbg->get_nonce != NULL) {
75e2c877 217 noncelen = drbg->get_nonce(drbg, &nonce, drbg->strength / 2,
aa048aef
DMSP
218 drbg->min_noncelen, drbg->max_noncelen);
219 if (noncelen < drbg->min_noncelen || noncelen > drbg->max_noncelen) {
c16de9d8
DMSP
220 RANDerr(RAND_F_RAND_DRBG_INSTANTIATE,
221 RAND_R_ERROR_RETRIEVING_NONCE);
12fb8c3d
RS
222 goto end;
223 }
224 }
225
aa048aef 226 if (!ctr_instantiate(drbg, entropy, entropylen,
12fb8c3d 227 nonce, noncelen, pers, perslen)) {
75e2c877 228 RANDerr(RAND_F_RAND_DRBG_INSTANTIATE, RAND_R_ERROR_INSTANTIATING_DRBG);
12fb8c3d
RS
229 goto end;
230 }
231
75e2c877 232 drbg->state = DRBG_READY;
a93ba405 233 drbg->generate_counter = 0;
08a65d96 234 drbg->reseed_time = time(NULL);
a93ba405
DMSP
235 if (drbg->reseed_counter > 0) {
236 if (drbg->parent == NULL)
237 drbg->reseed_counter++;
238 else
239 drbg->reseed_counter = drbg->parent->reseed_counter;
240 }
12fb8c3d
RS
241
242end:
75e2c877 243 if (entropy != NULL && drbg->cleanup_entropy != NULL)
6969a3f4 244 drbg->cleanup_entropy(drbg, entropy, entropylen);
75e2c877 245 if (nonce != NULL && drbg->cleanup_nonce!= NULL )
6969a3f4 246 drbg->cleanup_nonce(drbg, nonce, noncelen);
c16de9d8
DMSP
247 if (drbg->pool != NULL) {
248 if (drbg->state == DRBG_READY) {
249 RANDerr(RAND_F_RAND_DRBG_INSTANTIATE,
250 RAND_R_ERROR_ENTROPY_POOL_WAS_IGNORED);
251 drbg->state = DRBG_ERROR;
252 }
253 RAND_POOL_free(drbg->pool);
254 drbg->pool = NULL;
255 }
75e2c877 256 if (drbg->state == DRBG_READY)
12fb8c3d 257 return 1;
12fb8c3d
RS
258 return 0;
259}
260
261/*
75e2c877 262 * Uninstantiate |drbg|. Must be instantiated before it can be used.
2139145b
BK
263 *
264 * Requires that drbg->lock is already locked for write, if non-null.
efb8128a
DMSP
265 *
266 * Returns 1 on success, 0 on failure.
12fb8c3d 267 */
75e2c877 268int RAND_DRBG_uninstantiate(RAND_DRBG *drbg)
12fb8c3d 269{
efb8128a
DMSP
270 /* Clear the entire drbg->ctr struct, then reset some important
271 * members of the drbg->ctr struct (e.g. keysize, df_ks) to their
272 * initial values.
273 */
274 ctr_uninstantiate(drbg);
275 return RAND_DRBG_set(drbg, drbg->nid, drbg->flags);
12fb8c3d
RS
276}
277
278/*
c16de9d8 279 * Reseed |drbg|, mixing in the specified data
2139145b
BK
280 *
281 * Requires that drbg->lock is already locked for write, if non-null.
efb8128a
DMSP
282 *
283 * Returns 1 on success, 0 on failure.
12fb8c3d 284 */
75e2c877 285int RAND_DRBG_reseed(RAND_DRBG *drbg,
12fb8c3d
RS
286 const unsigned char *adin, size_t adinlen)
287{
288 unsigned char *entropy = NULL;
aa048aef 289 size_t entropylen = 0;
75e2c877
RS
290
291 if (drbg->state == DRBG_ERROR) {
292 RANDerr(RAND_F_RAND_DRBG_RESEED, RAND_R_IN_ERROR_STATE);
293 return 0;
294 }
295 if (drbg->state == DRBG_UNINITIALISED) {
296 RANDerr(RAND_F_RAND_DRBG_RESEED, RAND_R_NOT_INSTANTIATED);
297 return 0;
12fb8c3d
RS
298 }
299
300 if (adin == NULL)
301 adinlen = 0;
aa048aef 302 else if (adinlen > drbg->max_adinlen) {
75e2c877
RS
303 RANDerr(RAND_F_RAND_DRBG_RESEED, RAND_R_ADDITIONAL_INPUT_TOO_LONG);
304 return 0;
12fb8c3d
RS
305 }
306
75e2c877
RS
307 drbg->state = DRBG_ERROR;
308 if (drbg->get_entropy != NULL)
aa048aef
DMSP
309 entropylen = drbg->get_entropy(drbg, &entropy, drbg->strength,
310 drbg->min_entropylen, drbg->max_entropylen);
c16de9d8
DMSP
311 if (entropylen < drbg->min_entropylen
312 || entropylen > drbg->max_entropylen) {
75e2c877 313 RANDerr(RAND_F_RAND_DRBG_RESEED, RAND_R_ERROR_RETRIEVING_ENTROPY);
12fb8c3d
RS
314 goto end;
315 }
316
aa048aef 317 if (!ctr_reseed(drbg, entropy, entropylen, adin, adinlen))
12fb8c3d 318 goto end;
a93ba405 319
75e2c877 320 drbg->state = DRBG_READY;
a93ba405 321 drbg->generate_counter = 0;
08a65d96 322 drbg->reseed_time = time(NULL);
a93ba405
DMSP
323 if (drbg->reseed_counter > 0) {
324 if (drbg->parent == NULL)
325 drbg->reseed_counter++;
326 else
327 drbg->reseed_counter = drbg->parent->reseed_counter;
328 }
12fb8c3d
RS
329
330end:
75e2c877 331 if (entropy != NULL && drbg->cleanup_entropy != NULL)
6969a3f4 332 drbg->cleanup_entropy(drbg, entropy, entropylen);
75e2c877 333 if (drbg->state == DRBG_READY)
12fb8c3d 334 return 1;
12fb8c3d
RS
335 return 0;
336}
337
c16de9d8
DMSP
338/*
339 * Restart |drbg|, using the specified entropy or additional input
340 *
341 * Tries its best to get the drbg instantiated by all means,
342 * regardless of its current state.
343 *
344 * Optionally, a |buffer| of |len| random bytes can be passed,
345 * which is assumed to contain at least |entropy| bits of entropy.
346 *
347 * If |entropy| > 0, the buffer content is used as entropy input.
348 *
349 * If |entropy| == 0, the buffer content is used as additional input
350 *
351 * Returns 1 on success, 0 on failure.
352 *
353 * This function is used internally only.
354 */
355int rand_drbg_restart(RAND_DRBG *drbg,
356 const unsigned char *buffer, size_t len, size_t entropy)
357{
358 int reseeded = 0;
359 const unsigned char *adin = NULL;
360 size_t adinlen = 0;
361
362 if (drbg->pool != NULL) {
363 RANDerr(RAND_F_RAND_DRBG_RESTART, ERR_R_INTERNAL_ERROR);
364 RAND_POOL_free(drbg->pool);
365 drbg->pool = NULL;
366 }
367
368 if (buffer != NULL) {
369 if (entropy > 0) {
370 if (drbg->max_entropylen < len) {
371 RANDerr(RAND_F_RAND_DRBG_RESTART,
372 RAND_R_ENTROPY_INPUT_TOO_LONG);
373 return 0;
374 }
375
376 if (entropy > 8 * len) {
377 RANDerr(RAND_F_RAND_DRBG_RESTART, RAND_R_ENTROPY_OUT_OF_RANGE);
378 return 0;
379 }
380
381 /* will be picked up by the rand_drbg_get_entropy() callback */
382 drbg->pool = RAND_POOL_new(entropy, len, len);
383 if (drbg->pool == NULL)
384 return 0;
385
386 RAND_POOL_add(drbg->pool, buffer, len, entropy);
387 } else {
388 if (drbg->max_adinlen < len) {
389 RANDerr(RAND_F_RAND_DRBG_RESTART,
390 RAND_R_ADDITIONAL_INPUT_TOO_LONG);
391 return 0;
392 }
393 adin = buffer;
394 adinlen = len;
395 }
396 }
397
398 /* repair error state */
efb8128a 399 if (drbg->state == DRBG_ERROR)
c16de9d8
DMSP
400 RAND_DRBG_uninstantiate(drbg);
401
402 /* repair uninitialized state */
403 if (drbg->state == DRBG_UNINITIALISED) {
a93ba405
DMSP
404 /* reinstantiate drbg */
405 RAND_DRBG_instantiate(drbg,
406 (const unsigned char *) ossl_pers_string,
407 sizeof(ossl_pers_string) - 1);
c16de9d8
DMSP
408 /* already reseeded. prevent second reseeding below */
409 reseeded = (drbg->state == DRBG_READY);
410 }
411
412 /* refresh current state if entropy or additional input has been provided */
413 if (drbg->state == DRBG_READY) {
414 if (adin != NULL) {
415 /*
416 * mix in additional input without reseeding
417 *
418 * Similar to RAND_DRBG_reseed(), but the provided additional
419 * data |adin| is mixed into the current state without pulling
420 * entropy from the trusted entropy source using get_entropy().
421 * This is not a reseeding in the strict sense of NIST SP 800-90A.
422 */
423 ctr_reseed(drbg, adin, adinlen, NULL, 0);
424 } else if (reseeded == 0) {
425 /* do a full reseeding if it has not been done yet above */
426 RAND_DRBG_reseed(drbg, NULL, 0);
427 }
428 }
429
430 /* check whether a given entropy pool was cleared properly during reseed */
431 if (drbg->pool != NULL) {
432 drbg->state = DRBG_ERROR;
433 RANDerr(RAND_F_RAND_DRBG_RESTART, ERR_R_INTERNAL_ERROR);
434 RAND_POOL_free(drbg->pool);
435 drbg->pool = NULL;
436 return 0;
437 }
438
439 return drbg->state == DRBG_READY;
440}
441
12fb8c3d
RS
442/*
443 * Generate |outlen| bytes into the buffer at |out|. Reseed if we need
444 * to or if |prediction_resistance| is set. Additional input can be
445 * sent in |adin| and |adinlen|.
c16de9d8 446 *
2139145b
BK
447 * Requires that drbg->lock is already locked for write, if non-null.
448 *
c16de9d8
DMSP
449 * Returns 1 on success, 0 on failure.
450 *
12fb8c3d 451 */
75e2c877 452int RAND_DRBG_generate(RAND_DRBG *drbg, unsigned char *out, size_t outlen,
12fb8c3d
RS
453 int prediction_resistance,
454 const unsigned char *adin, size_t adinlen)
455{
e0b625f9
DMSP
456 int reseed_required = 0;
457
c16de9d8
DMSP
458 if (drbg->state != DRBG_READY) {
459 /* try to recover from previous errors */
460 rand_drbg_restart(drbg, NULL, 0, 0);
461
462 if (drbg->state == DRBG_ERROR) {
463 RANDerr(RAND_F_RAND_DRBG_GENERATE, RAND_R_IN_ERROR_STATE);
464 return 0;
465 }
466 if (drbg->state == DRBG_UNINITIALISED) {
467 RANDerr(RAND_F_RAND_DRBG_GENERATE, RAND_R_NOT_INSTANTIATED);
468 return 0;
469 }
12fb8c3d 470 }
c16de9d8 471
75e2c877
RS
472 if (outlen > drbg->max_request) {
473 RANDerr(RAND_F_RAND_DRBG_GENERATE, RAND_R_REQUEST_TOO_LARGE_FOR_DRBG);
474 return 0;
475 }
aa048aef 476 if (adinlen > drbg->max_adinlen) {
75e2c877
RS
477 RANDerr(RAND_F_RAND_DRBG_GENERATE, RAND_R_ADDITIONAL_INPUT_TOO_LONG);
478 return 0;
12fb8c3d
RS
479 }
480
a35f607c
RS
481 if (drbg->fork_count != rand_fork_count) {
482 drbg->fork_count = rand_fork_count;
e0b625f9 483 reseed_required = 1;
a35f607c
RS
484 }
485
a93ba405
DMSP
486 if (drbg->reseed_interval > 0) {
487 if (drbg->generate_counter >= drbg->reseed_interval)
488 reseed_required = 1;
489 }
08a65d96
DMSP
490 if (drbg->reseed_time_interval > 0) {
491 time_t now = time(NULL);
492 if (now < drbg->reseed_time
493 || now - drbg->reseed_time >= drbg->reseed_time_interval)
494 reseed_required = 1;
495 }
a93ba405
DMSP
496 if (drbg->reseed_counter > 0 && drbg->parent != NULL) {
497 if (drbg->reseed_counter != drbg->parent->reseed_counter)
498 reseed_required = 1;
499 }
12fb8c3d 500
e0b625f9 501 if (reseed_required || prediction_resistance) {
75e2c877
RS
502 if (!RAND_DRBG_reseed(drbg, adin, adinlen)) {
503 RANDerr(RAND_F_RAND_DRBG_GENERATE, RAND_R_RESEED_ERROR);
504 return 0;
12fb8c3d
RS
505 }
506 adin = NULL;
507 adinlen = 0;
508 }
509
75e2c877
RS
510 if (!ctr_generate(drbg, out, outlen, adin, adinlen)) {
511 drbg->state = DRBG_ERROR;
512 RANDerr(RAND_F_RAND_DRBG_GENERATE, RAND_R_GENERATE_ERROR);
513 return 0;
12fb8c3d 514 }
75e2c877 515
a93ba405 516 drbg->generate_counter++;
e0b625f9 517
12fb8c3d 518 return 1;
12fb8c3d
RS
519}
520
521/*
c16de9d8
DMSP
522 * Set the RAND_DRBG callbacks for obtaining entropy and nonce.
523 *
524 * In the following, the signature and the semantics of the
525 * get_entropy() and cleanup_entropy() callbacks are explained.
526 *
527 * GET_ENTROPY
528 *
529 * size_t get_entropy(RAND_DRBG *ctx,
530 * unsigned char **pout,
531 * int entropy,
532 * size_t min_len, size_t max_len);
533 *
534 * This is a request to allocate and fill a buffer of size
535 * |min_len| <= size <= |max_len| (in bytes) which contains
536 * at least |entropy| bits of randomness. The buffer's address is
537 * to be returned in |*pout| and the number of collected
538 * randomness bytes (which may be less than the allocated size
539 * of the buffer) as return value.
540 *
541 * If the callback fails to acquire at least |entropy| bits of
542 * randomness, it shall return a buffer length of 0.
543 *
544 * CLEANUP_ENTROPY
545 *
546 * void cleanup_entropy(RAND_DRBG *ctx,
547 * unsigned char *out, size_t outlen);
548 *
549 * A request to clear and free the buffer allocated by get_entropy().
550 * The values |out| and |outlen| are expected to be the random buffer's
551 * address and length, as returned by the get_entropy() callback.
552 *
553 * GET_NONCE, CLEANUP_NONCE
554 *
555 * Signature and semantics of the get_nonce() and cleanup_nonce()
556 * callbacks are analogous to get_entropy() and cleanup_entropy().
557 * Currently, the nonce is used only for the known answer tests.
12fb8c3d 558 */
75e2c877 559int RAND_DRBG_set_callbacks(RAND_DRBG *drbg,
c16de9d8
DMSP
560 RAND_DRBG_get_entropy_fn get_entropy,
561 RAND_DRBG_cleanup_entropy_fn cleanup_entropy,
562 RAND_DRBG_get_nonce_fn get_nonce,
563 RAND_DRBG_cleanup_nonce_fn cleanup_nonce)
12fb8c3d 564{
75e2c877 565 if (drbg->state != DRBG_UNINITIALISED)
12fb8c3d 566 return 0;
c16de9d8
DMSP
567 drbg->get_entropy = get_entropy;
568 drbg->cleanup_entropy = cleanup_entropy;
569 drbg->get_nonce = get_nonce;
570 drbg->cleanup_nonce = cleanup_nonce;
12fb8c3d
RS
571 return 1;
572}
573
574/*
75e2c877 575 * Set the reseed interval.
a93ba405
DMSP
576 *
577 * The drbg will reseed automatically whenever the number of generate
578 * requests exceeds the given reseed interval. If the reseed interval
08a65d96 579 * is 0, then this feature is disabled.
a93ba405
DMSP
580 *
581 * Returns 1 on success, 0 on failure.
12fb8c3d 582 */
a93ba405 583int RAND_DRBG_set_reseed_interval(RAND_DRBG *drbg, unsigned int interval)
12fb8c3d 584{
a93ba405 585 if (interval > MAX_RESEED_INTERVAL)
4c75ee85 586 return 0;
75e2c877 587 drbg->reseed_interval = interval;
4c75ee85 588 return 1;
12fb8c3d
RS
589}
590
08a65d96
DMSP
591/*
592 * Set the reseed time interval.
593 *
594 * The drbg will reseed automatically whenever the time elapsed since
595 * the last reseeding exceeds the given reseed time interval. For safety,
596 * a reseeding will also occur if the clock has been reset to a smaller
597 * value.
598 *
599 * Returns 1 on success, 0 on failure.
600 */
601int RAND_DRBG_set_reseed_time_interval(RAND_DRBG *drbg, time_t interval)
602{
603 if (interval > MAX_RESEED_TIME_INTERVAL)
604 return 0;
605 drbg->reseed_time_interval = interval;
606 return 1;
607}
608
12fb8c3d
RS
609/*
610 * Get and set the EXDATA
611 */
75e2c877
RS
612int RAND_DRBG_set_ex_data(RAND_DRBG *drbg, int idx, void *arg)
613{
614 return CRYPTO_set_ex_data(&drbg->ex_data, idx, arg);
615}
616
617void *RAND_DRBG_get_ex_data(const RAND_DRBG *drbg, int idx)
618{
619 return CRYPTO_get_ex_data(&drbg->ex_data, idx);
620}
621
622
623/*
624 * The following functions provide a RAND_METHOD that works on the
625 * global DRBG. They lock.
626 */
627
0b14a5b7 628/*
933033b6
DMSP
629 * Allocates a new global DRBG on the secure heap (if enabled) and
630 * initializes it with default settings.
a93ba405
DMSP
631 * A global lock for the DRBG is created with the given name.
632 *
633 * Returns a pointer to the new DRBG instance on success, NULL on failure.
0b14a5b7 634 */
933033b6 635static RAND_DRBG *drbg_setup(const char *name, RAND_DRBG *parent)
0b14a5b7 636{
933033b6 637 RAND_DRBG *drbg;
0b14a5b7 638
933033b6 639 if (name == NULL) {
a93ba405 640 RANDerr(RAND_F_DRBG_SETUP, ERR_R_INTERNAL_ERROR);
933033b6 641 return NULL;
a93ba405 642 }
c16de9d8 643
933033b6
DMSP
644 drbg = OPENSSL_secure_zalloc(sizeof(RAND_DRBG));
645 if (drbg == NULL)
646 return NULL;
647
a93ba405
DMSP
648 drbg->lock = CRYPTO_THREAD_glock_new(name);
649 if (drbg->lock == NULL) {
650 RANDerr(RAND_F_DRBG_SETUP, RAND_R_FAILED_TO_CREATE_LOCK);
933033b6 651 goto err;
c16de9d8
DMSP
652 }
653
933033b6
DMSP
654 if (RAND_DRBG_set(drbg,
655 RAND_DRBG_NID, RAND_DRBG_FLAG_CTR_USE_DF) != 1)
656 goto err;
657 if (RAND_DRBG_set_callbacks(drbg, rand_drbg_get_entropy,
658 rand_drbg_cleanup_entropy, NULL, NULL) != 1)
659 goto err;
a93ba405 660
08a65d96 661 if (parent == NULL) {
a93ba405 662 drbg->reseed_interval = MASTER_RESEED_INTERVAL;
08a65d96
DMSP
663 drbg->reseed_time_interval = MASTER_RESEED_TIME_INTERVAL;
664 } else {
a93ba405
DMSP
665 drbg->parent = parent;
666 drbg->reseed_interval = SLAVE_RESEED_INTERVAL;
08a65d96 667 drbg->reseed_time_interval = SLAVE_RESEED_TIME_INTERVAL;
a93ba405
DMSP
668 }
669
670 /* enable seed propagation */
671 drbg->reseed_counter = 1;
672
c16de9d8
DMSP
673 /*
674 * Ignore instantiation error so support just-in-time instantiation.
675 *
676 * The state of the drbg will be checked in RAND_DRBG_generate() and
677 * an automatic recovery is attempted.
678 */
679 RAND_DRBG_instantiate(drbg,
680 (const unsigned char *) ossl_pers_string,
681 sizeof(ossl_pers_string) - 1);
933033b6
DMSP
682 return drbg;
683
684err:
685 drbg_cleanup(drbg);
686 return NULL;
0b14a5b7
KR
687}
688
689/*
690 * Initialize the global DRBGs on first use.
691 * Returns 1 on success, 0 on failure.
692 */
c16de9d8 693DEFINE_RUN_ONCE_STATIC(do_rand_drbg_init)
0b14a5b7 694{
933033b6
DMSP
695 drbg_master = drbg_setup("drbg_master", NULL);
696 drbg_public = drbg_setup("drbg_public", drbg_master);
697 drbg_private = drbg_setup("drbg_private", drbg_master);
0b14a5b7 698
933033b6
DMSP
699 if (drbg_master == NULL || drbg_public == NULL || drbg_private == NULL)
700 return 0;
0b14a5b7 701
933033b6 702 return 1;
0b14a5b7
KR
703}
704
c16de9d8
DMSP
705/* Cleans up the given global DRBG */
706static void drbg_cleanup(RAND_DRBG *drbg)
0b14a5b7 707{
933033b6
DMSP
708 if (drbg != NULL) {
709 RAND_DRBG_uninstantiate(drbg);
710 CRYPTO_THREAD_lock_free(drbg->lock);
711 OPENSSL_secure_clear_free(drbg, sizeof(RAND_DRBG));
712 }
0b14a5b7
KR
713}
714
715/* Clean up the global DRBGs before exit */
c16de9d8 716void rand_drbg_cleanup_int(void)
0b14a5b7 717{
933033b6
DMSP
718 drbg_cleanup(drbg_private);
719 drbg_cleanup(drbg_public);
720 drbg_cleanup(drbg_master);
721
722 drbg_private = drbg_public = drbg_master = NULL;
0b14a5b7
KR
723}
724
c16de9d8 725/* Implements the default OpenSSL RAND_bytes() method */
75e2c877
RS
726static int drbg_bytes(unsigned char *out, int count)
727{
728 int ret = 0;
729 size_t chunk;
a93ba405 730 RAND_DRBG *drbg = RAND_DRBG_get0_public();
75e2c877 731
0b14a5b7
KR
732 if (drbg == NULL)
733 return 0;
734
735 CRYPTO_THREAD_write_lock(drbg->lock);
736 if (drbg->state == DRBG_UNINITIALISED)
75e2c877
RS
737 goto err;
738
739 for ( ; count > 0; count -= chunk, out += chunk) {
740 chunk = count;
0b14a5b7
KR
741 if (chunk > drbg->max_request)
742 chunk = drbg->max_request;
743 ret = RAND_DRBG_generate(drbg, out, chunk, 0, NULL, 0);
75e2c877
RS
744 if (!ret)
745 goto err;
746 }
747 ret = 1;
748
749err:
0b14a5b7 750 CRYPTO_THREAD_unlock(drbg->lock);
75e2c877
RS
751 return ret;
752}
753
c16de9d8 754/* Implements the default OpenSSL RAND_add() method */
75e2c877
RS
755static int drbg_add(const void *buf, int num, double randomness)
756{
c16de9d8 757 int ret = 0;
a93ba405 758 RAND_DRBG *drbg = RAND_DRBG_get0_master();
75e2c877 759
c16de9d8
DMSP
760 if (drbg == NULL)
761 return 0;
75e2c877 762
c16de9d8
DMSP
763 if (num < 0 || randomness < 0.0)
764 return 0;
75e2c877 765
c16de9d8
DMSP
766 if (randomness > (double)drbg->max_entropylen) {
767 /*
768 * The purpose of this check is to bound |randomness| by a
769 * relatively small value in order to prevent an integer
770 * overflow when multiplying by 8 in the rand_drbg_restart()
771 * call below.
772 */
773 return 0;
75e2c877
RS
774 }
775
c16de9d8
DMSP
776 CRYPTO_THREAD_write_lock(drbg->lock);
777 ret = rand_drbg_restart(drbg, buf,
778 (size_t)(unsigned int)num,
779 (size_t)(8*randomness));
780 CRYPTO_THREAD_unlock(drbg->lock);
781
782 return ret;
75e2c877
RS
783}
784
c16de9d8 785/* Implements the default OpenSSL RAND_seed() method */
75e2c877
RS
786static int drbg_seed(const void *buf, int num)
787{
788 return drbg_add(buf, num, num);
789}
790
c16de9d8 791/* Implements the default OpenSSL RAND_status() method */
75e2c877 792static int drbg_status(void)
12fb8c3d 793{
75e2c877 794 int ret;
a93ba405 795 RAND_DRBG *drbg = RAND_DRBG_get0_master();
0b14a5b7
KR
796
797 if (drbg == NULL)
798 return 0;
75e2c877 799
0b14a5b7
KR
800 CRYPTO_THREAD_write_lock(drbg->lock);
801 ret = drbg->state == DRBG_READY ? 1 : 0;
802 CRYPTO_THREAD_unlock(drbg->lock);
75e2c877 803 return ret;
12fb8c3d
RS
804}
805
0b14a5b7 806/*
a93ba405
DMSP
807 * Get the master DRBG.
808 * Returns pointer to the DRBG on success, NULL on failure.
809 *
810 */
811RAND_DRBG *RAND_DRBG_get0_master(void)
812{
813 if (!RUN_ONCE(&rand_drbg_init, do_rand_drbg_init))
814 return NULL;
815
933033b6 816 return drbg_master;
a93ba405
DMSP
817}
818
819/*
820 * Get the public DRBG.
0b14a5b7
KR
821 * Returns pointer to the DRBG on success, NULL on failure.
822 */
a93ba405 823RAND_DRBG *RAND_DRBG_get0_public(void)
0b14a5b7 824{
c16de9d8 825 if (!RUN_ONCE(&rand_drbg_init, do_rand_drbg_init))
0b14a5b7
KR
826 return NULL;
827
933033b6 828 return drbg_public;
0b14a5b7
KR
829}
830
831/*
a93ba405 832 * Get the private DRBG.
0b14a5b7
KR
833 * Returns pointer to the DRBG on success, NULL on failure.
834 */
a93ba405 835RAND_DRBG *RAND_DRBG_get0_private(void)
0b14a5b7 836{
c16de9d8 837 if (!RUN_ONCE(&rand_drbg_init, do_rand_drbg_init))
0b14a5b7
KR
838 return NULL;
839
933033b6 840 return drbg_private;
0b14a5b7
KR
841}
842
75e2c877
RS
843RAND_METHOD rand_meth = {
844 drbg_seed,
845 drbg_bytes,
ddc6a5c8 846 NULL,
75e2c877
RS
847 drbg_add,
848 drbg_bytes,
849 drbg_status
850};
851
852RAND_METHOD *RAND_OpenSSL(void)
12fb8c3d 853{
75e2c877 854 return &rand_meth;
12fb8c3d 855}