entropy.c revision 70e5a7403f0e0a3bd292b8287c5fed5772c15270
/*
* Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000-2003 Internet Software Consortium.
*
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: entropy.c,v 1.18 2007/06/19 23:47:17 tbox Exp $ */
/*! \file
* \brief
* This is the system independent part of the entropy module. It is
* compiled via inclusion from the relevant OS source file, ie,
*
* written by Michael Graff <explorer@netbsd.org>.
*/
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <isc/keyboard.h>
#include <isc/platform.h>
/***
*** "constants." Do not change these unless you _really_ know what
*** you are doing.
***/
/*%
* Size of entropy pool in 32-bit words. This _MUST_ be a power of 2.
*/
#define RND_POOLWORDS 128
/*% Pool in bytes. */
/*% Pool in bits. */
/*%
* Number of bytes returned per hash. This must be true:
* threshold * 2 <= digest_size_in_bytes
*/
#define RND_ENTROPY_THRESHOLD 10
/*%
* Size of the input event queue in samples.
*/
#define RND_EVENTQSIZE 32
/*%
* The number of times we'll "reseed" for pseudorandom seeds. This is an
* extremely weak pseudorandom seed. If the caller is using lots of
* pseudorandom data and they cannot provide a stronger random source,
* there is little we can do other than hope they're smart enough to
* call _adddata() with something better than we can come up with.
*/
#define RND_INITIALIZE 128
/*% Entropy Pool */
typedef struct {
struct isc_entropy {
unsigned int magic;
unsigned int refcnt;
unsigned int nsources;
};
/*% Sample Queue */
typedef struct {
typedef struct {
typedef struct {
void *arg;
typedef struct {
struct isc_entropysource {
unsigned int magic;
unsigned int type;
char name[32];
union {
} sources;
};
/*@{*/
/*%
* The random pool "taps"
*/
#define TAP1 99
#define TAP2 59
#define TAP3 31
#define TAP4 9
#define TAP5 7
/*@}*/
/*@{*/
/*%
* Declarations for function provided by the system dependent sources that
* include this file.
*/
static void
static int
static void
static void
/*@}*/
static void
}
static isc_result_t
return (ISC_R_NOMEMORY);
return (ISC_R_NOMEMORY);
}
return (ISC_R_SUCCESS);
}
/*%
* Add in entropy, even when the value we're adding in could be
* very large.
*/
static inline void
/* clamp input. Yes, this must be done. */
/* Add in the entropy we already have. */
/* Clamp. */
}
/*%
* Decrement the amount of entropy the pool has.
*/
static inline void
}
/*!
* Add in entropy, even when the value we're adding in could be
* very large.
*/
static inline void
/* clamp input. Yes, this must be done. */
/* Add in the pseudo we already have. */
/* Clamp. */
}
/*!
* Decrement the amount of pseudo the pool has.
*/
static inline void
}
/*!
* Add one word to the pool, rotating the input as needed.
*/
static inline void
/*
* Steal some values out of the pool, and xor them into the
* word we were given.
*
* Mix the new value into the pool using xor. This will
* prevent the actual values from being known to the caller
* since the previous values are assumed to be unknown as well.
*/
/*
* If we have looped around the pool, increment the rotate
* variable so the next value will get xored in rotated to
* a different position.
* Increment by a value that is relativly prime to the word size
* to try to spread the bits throughout the pool quickly when the
* pool is empty.
*/
}
}
/*!
* Add a buffer's worth of data to the pool.
*
* Requires that the lock is held on the entropy pool.
*/
static void
{
unsigned long addr;
addr = (unsigned long)p;
buf = p;
if ((addr & 0x03U) != 0U) {
val = 0;
switch (len) {
case 3:
len--;
case 2:
len--;
case 1:
len--;
}
}
buf += 4;
}
if (len != 0) {
val = 0;
switch (len) {
case 3:
case 2:
case 1:
}
}
}
static inline void
isc_time_t t;
}
/*!
* After we've reseeded 100 times, only add new timing info every
* 50 requests. This will keep us from using lots and lots of
* CPU just to return bad pseudorandom data anyway.
*/
return;
TIME_NOW(&t);
entropypool_adddata(ent, &t, sizeof(t), 0);
}
static inline unsigned int
/*!
* If the time counter has overflowed, calculate the real difference.
* If it has not, it is simpler.
*/
else
if (delta < 0)
/*
* Calculate the second and third order differentials
*/
if (delta2 < 0)
if (delta3 < 0)
/*
* If any delta is 0, we got no entropy. If all are non-zero, we
* might have something.
*/
return 0;
/*
* We could find the smallest delta and claim we got log2(delta)
* bits, but for now return that we found 1 bit.
*/
return 1;
}
static unsigned int
unsigned int ns;
unsigned int added;
return (0);
added = 0;
sq->last_delta = 0;
sq->last_delta2 = 0;
/*
* Prime the values by adding in the first 4 samples in. This
* should completely initialize the delta calculations.
*/
/*
* Move the last 4 samples into the first 4 positions, and start
* adding new samples from that point.
*/
}
return (added);
}
static unsigned int
{
unsigned int added;
unsigned int got;
if (desired == 0)
return (0);
return (0);
if (result != ISC_R_SUCCESS)
return (0);
}
added = 0;
if (result == ISC_R_QUEUEFULL) {
} else if (result != ISC_R_SUCCESS &&
}
return (added);
}
/*
* Extract some number of bytes from the random pool, decreasing the
* estimate of randomness as each byte is extracted.
*
* Do this by stiring the pool and returning a part of hash as randomness.
* Note that no secrets are given away here since parts of the hash are
* xored together before returned.
*
* Honor the request from the caller to only return good data, any data,
* etc.
*/
{
unsigned int i;
unsigned char digest[ISC_SHA1_DIGESTLENGTH];
total = 0;
while (remain != 0) {
/*
* If we are extracting good data only, make certain we
* have enough data in our pool for this pass. If we don't,
* get some, and fail if we can't, and partial returns
* are not ok.
*/
if (goodonly) {
unsigned int fillcount;
/*
* If, however, we have at least THRESHOLD_BITS
* of entropy in the pool, don't block here. It is
* better to drain the pool once in a while and
* then refill it than it is to constantly keep the
* pool full.
*/
else
/*
* Verify that we got enough entropy to do one
* extraction. If we didn't, bail.
*/
if (!partial)
goto zeroize;
else
goto partial_output;
}
} else {
/*
* If we've extracted half our pool size in bits
* since the last refresh, try to refresh here.
*/
else
/*
* If we've not initialized with enough good random
* data, seed with our crappy code.
*/
}
/*
* Stir the extracted data (all of it) back into the pool.
*/
for (i = 0; i < count; i++)
}
return (ISC_R_SUCCESS);
/* put the entropy we almost extracted back */
*returned = 0;
return (ISC_R_NOENTROPY);
}
static void
}
static void
}
return (ISC_R_NOMEMORY);
/*
* We need a lock.
*/
if (result != ISC_R_SUCCESS)
goto errout;
/*
*/
ent->initialized = 0;
return (ISC_R_SUCCESS);
return (result);
}
/*!
* Requires "ent" be locked.
*/
static void
case ENTROPY_SOURCETYPE_FILE:
break;
break;
break;
}
break;
}
}
static inline isc_boolean_t
return (ISC_FALSE);
case ENTROPY_SOURCETYPE_FILE:
break;
default:
return (ISC_FALSE);
}
}
return (ISC_TRUE);
}
static void
/*
* Here, detach non-sample sources.
*/
case ENTROPY_SOURCETYPE_FILE:
break;
}
}
/*
* If there are other types of sources, we've found a bug.
*/
}
void
if (killit)
}
void *arg,
{
goto errout;
}
if (result != ISC_R_SUCCESS)
goto errout;
/*
* From here down, no failures can occur.
*/
/*
* Hook it into the entropy system.
*/
return (ISC_R_SUCCESS);
return (result);
}
void
}
}
}
}
{
goto errout;
}
if (result != ISC_R_SUCCESS)
goto errout;
/*
* From here down, no failures can occur.
*/
/*
* Hook it into the entropy system.
*/
return (ISC_R_SUCCESS);
return (result);
}
/*!
* Add a sample, and return ISC_R_SUCCESS if the queue has become full,
* ISC_R_NOENTROPY if it has space remaining, and ISC_R_NOMORE if the
* queue was full when this function was called.
*/
static isc_result_t
return (ISC_R_NOMORE);
return (ISC_R_QUEUEFULL);
return (ISC_R_SUCCESS);
}
{
unsigned int entropy;
if (result == ISC_R_QUEUEFULL) {
}
return (result);
}
{
return (result);
}
void
{
}
static void
"Entropy pool %p: refcnt %u cursor %u,"
" rotate %u entropy %u pseudo %u nsources %u"
" nextsource %p initialized %u initcount %u\n"),
}
/*
* This function ignores locking. Use at your own risk.
*/
void
}
unsigned int
unsigned int estimate;
return estimate;
}
void
}
void
if (killit)
}
static isc_result_t
/*
* The intent of "first" is to provide a warning message only once
* during the run of a program that might try to gather keyboard
* entropy multiple times.
*/
if (! blocking)
return (ISC_R_NOENTROPY);
if (first) {
if (source->warn_keyboard)
"entropy, since your system is lacking\n"
}
}
static void
}
static isc_result_t
isc_time_t t;
unsigned char c;
if (!blocking)
return (ISC_R_NOTBLOCKING);
if (result != ISC_R_SUCCESS)
return (result);
TIME_NOW(&t);
sample = isc_time_nanoseconds(&t);
extra = c;
if (result != ISC_R_SUCCESS) {
return (result);
}
return (result);
}
const char *randomfile, int use_keyboard)
{
#ifdef PATH_RANDOMDEV
if (randomfile == NULL) {
}
#endif
if (result == ISC_R_SUCCESS &&
return (result);
}
if (use_keyboard != ISC_ENTROPY_KEYBOARDNO) {
if (result == ISC_R_SUCCESS)
(*source)->warn_keyboard =
if (final_result != ISC_R_SUCCESS)
}
/*
* final_result is ISC_R_SUCCESS if at least one source of entropy
* could be started, otherwise it is the error from the most recently
* failed operation (or ISC_R_NOENTROPY if PATH_RANDOMDEV is not
* defined and use_keyboard is ISC_ENTROPY_KEYBOARDNO).
*/
return (final_result);
}