1999-10-27 06:57:39 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
|
|
|
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
1999-10-27 07:00:30 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1999-10-27 12:41:38 +08:00
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/time.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_WINCRYPT_H
|
|
|
|
#include <wincrypt.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_PROCESS_H
|
|
|
|
#include <process.h>
|
|
|
|
#endif
|
|
|
|
|
1999-10-27 07:00:30 +08:00
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include <lutil.h>
|
1999-10-27 07:41:09 +08:00
|
|
|
#include <lutil_md5.h>
|
1999-10-27 07:00:30 +08:00
|
|
|
|
1999-10-27 06:57:39 +08:00
|
|
|
/*
|
1999-10-27 07:04:44 +08:00
|
|
|
* lutil_entropy() provides nbytes of entropy in buf.
|
1999-10-27 06:57:39 +08:00
|
|
|
* Quality offerred is suitable for one-time uses, such as "once" keys.
|
1999-10-29 01:42:46 +08:00
|
|
|
* Values may not be suitable for multi-time uses.
|
1999-10-28 03:42:27 +08:00
|
|
|
*
|
|
|
|
* Note: Callers are encouraged to provide additional bytes of
|
|
|
|
* of entropy in the buf argument. This information is used in
|
|
|
|
* fallback mode to improve the quality of bytes returned.
|
1999-10-29 01:42:46 +08:00
|
|
|
*
|
|
|
|
* This routinue should be extended to support additional sources
|
|
|
|
* of entropy.
|
1999-10-27 06:57:39 +08:00
|
|
|
*/
|
|
|
|
int lutil_entropy( char *buf, int nbytes )
|
|
|
|
{
|
|
|
|
if( nbytes < 0 ) return -1;
|
|
|
|
if( nbytes == 0 ) return 0;
|
|
|
|
|
|
|
|
#ifdef URANDOM_DEVICE
|
|
|
|
/* Linux and *BSD offer a urandom device */
|
|
|
|
{
|
|
|
|
int rc, fd;
|
|
|
|
|
|
|
|
fd = open( URANDOM_DEVICE, O_RDONLY );
|
|
|
|
|
|
|
|
if( fd < 0 ) return -1;
|
|
|
|
|
|
|
|
rc = read( fd, buf, nbytes );
|
|
|
|
close(fd);
|
|
|
|
|
1999-10-27 07:04:44 +08:00
|
|
|
/* should return nbytes */
|
1999-10-27 06:57:39 +08:00
|
|
|
if( rc < nbytes ) return -1;
|
|
|
|
|
1999-10-27 12:41:38 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#elif PROV_RSA_FULL
|
|
|
|
{
|
|
|
|
/* Not used since _WIN32_WINNT not set... */
|
|
|
|
HCRYPTPROV hProv = 0;
|
|
|
|
|
|
|
|
/* Get handle to user default provider */
|
|
|
|
if(!CryptAcquireContext(&hProv, NULL, NULL, PROV_RSA_FULL, 0)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Generate random initialization vector */
|
|
|
|
if(!CryptGenRandom(hProv, (DWORD) nbytes, (BYTE *) buf)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Release provider handle */
|
|
|
|
if(hProv != 0) CryptReleaseContext(hProv, 0);
|
|
|
|
|
1999-10-27 07:41:09 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
/* based upon Phil Karn's "practical randomness" idea
|
1999-10-29 01:42:46 +08:00
|
|
|
* but implementation 100% OpenLDAP. So don't blame Phil.
|
|
|
|
*
|
|
|
|
* Worse case is that this is a MD5 hash of a counter, if
|
|
|
|
* MD5 is a strong cryptographic hash, this should be fairly
|
|
|
|
* resistant to attack
|
1999-10-27 07:41:09 +08:00
|
|
|
*/
|
1999-10-28 05:50:49 +08:00
|
|
|
|
|
|
|
/*
|
1999-10-28 06:00:29 +08:00
|
|
|
* the caller may need to provide external synchronization OR
|
|
|
|
* provide entropy (in buf) to ensure quality results as
|
|
|
|
* access to this counter may not be atomic.
|
1999-10-28 05:50:49 +08:00
|
|
|
*/
|
|
|
|
static int counter = 0;
|
1999-10-27 07:41:09 +08:00
|
|
|
int n;
|
|
|
|
|
1999-10-27 08:08:31 +08:00
|
|
|
struct rdata_s {
|
1999-10-27 07:54:39 +08:00
|
|
|
int counter;
|
1999-10-27 08:08:31 +08:00
|
|
|
|
|
|
|
char *buf;
|
|
|
|
struct rdata_s *stack;
|
|
|
|
|
1999-10-27 07:41:09 +08:00
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
#ifdef HAVE_GETTIMEOFDAY
|
1999-10-28 05:50:49 +08:00
|
|
|
struct timeval tv;
|
1999-10-27 07:41:09 +08:00
|
|
|
#else
|
|
|
|
time_t time;
|
|
|
|
#endif
|
1999-10-28 06:00:29 +08:00
|
|
|
|
|
|
|
unsigned long junk; /* purposely not initialized */
|
1999-10-27 07:41:09 +08:00
|
|
|
} rdata;
|
|
|
|
|
1999-10-27 08:08:31 +08:00
|
|
|
/* make sure rdata differs for each process */
|
1999-10-27 07:54:39 +08:00
|
|
|
rdata.pid = getpid();
|
1999-10-27 08:08:31 +08:00
|
|
|
|
|
|
|
/* make sure rdata differs for each program */
|
|
|
|
rdata.buf = buf;
|
|
|
|
rdata.stack = &rdata;
|
|
|
|
|
1999-10-27 07:41:09 +08:00
|
|
|
for( n = 0; n < nbytes; n += 16 ) {
|
|
|
|
struct lutil_MD5Context ctx;
|
|
|
|
char digest[16];
|
|
|
|
|
1999-10-28 06:00:29 +08:00
|
|
|
/* poor resolution */
|
1999-10-27 07:41:09 +08:00
|
|
|
#ifdef HAVE_GETTIMEOFDAY
|
1999-10-28 05:53:41 +08:00
|
|
|
(void) gettimeofday( &rdata.tv, NULL );
|
1999-10-27 07:41:09 +08:00
|
|
|
#else
|
|
|
|
(void) time( &rdata.time );
|
|
|
|
#endif
|
|
|
|
|
1999-10-27 08:08:31 +08:00
|
|
|
/* make sure rdata differs */
|
1999-10-27 07:54:39 +08:00
|
|
|
rdata.counter = ++counter;
|
1999-10-27 07:41:09 +08:00
|
|
|
rdata.pid++;
|
|
|
|
rdata.junk++;
|
|
|
|
|
|
|
|
lutil_MD5Init( &ctx );
|
|
|
|
lutil_MD5Update( &ctx, (char *) &rdata, sizeof( rdata ) );
|
1999-10-28 03:42:27 +08:00
|
|
|
|
1999-10-28 06:00:29 +08:00
|
|
|
/* allow caller to provided additional entropy */
|
1999-10-28 03:42:27 +08:00
|
|
|
lutil_MD5Update( &ctx, (char *) &buf, nbytes );
|
|
|
|
|
1999-10-27 07:41:09 +08:00
|
|
|
lutil_MD5Final( digest, &ctx );
|
|
|
|
|
|
|
|
memcpy( &buf[n], digest,
|
1999-10-28 03:42:27 +08:00
|
|
|
nbytes - n >= 16 ? 16 : nbytes - n );
|
1999-10-27 07:41:09 +08:00
|
|
|
}
|
|
|
|
|
1999-10-27 06:57:39 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return -1;
|
|
|
|
}
|