2016-05-18 02:52:22 +08:00
|
|
|
/*
|
2017-07-18 21:39:21 +08:00
|
|
|
* Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
|
2001-01-08 18:59:26 +08:00
|
|
|
*
|
2016-05-18 02:52:22 +08:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2001-01-08 18:59:26 +08:00
|
|
|
*/
|
2016-05-18 02:52:22 +08:00
|
|
|
|
2003-11-28 21:10:58 +08:00
|
|
|
#include <stdio.h>
|
2001-01-08 18:59:26 +08:00
|
|
|
|
2002-06-21 01:32:04 +08:00
|
|
|
#include "e_os.h"
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
2001-01-08 18:59:26 +08:00
|
|
|
#include <openssl/rand.h>
|
|
|
|
#include "rand_lcl.h"
|
2017-07-18 21:39:21 +08:00
|
|
|
#include <stdio.h>
|
2001-01-08 18:59:26 +08:00
|
|
|
|
2016-03-18 00:53:11 +08:00
|
|
|
#if !(defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_UEFI))
|
2001-01-08 18:59:26 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
# if (defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_UEFI)) && \
|
|
|
|
!defined(OPENSSL_RAND_SEED_NONE)
|
|
|
|
# error "UEFI and VXWorks only support seeding NONE"
|
2015-01-22 11:40:55 +08:00
|
|
|
# endif
|
|
|
|
|
|
|
|
# if defined(OPENSSL_SYS_VOS)
|
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
# ifndef OPENSSL_RAND_SEED_OS
|
|
|
|
# error "Unsupported seeding method configured; must be os"
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# if defined(OPENSSL_SYS_VOS_HPPA) && defined(OPENSSL_SYS_VOS_IA32)
|
|
|
|
# error "Unsupported HP-PA and IA32 at the same time."
|
|
|
|
# endif
|
|
|
|
# if !defined(OPENSSL_SYS_VOS_HPPA) && !defined(OPENSSL_SYS_VOS_IA32)
|
|
|
|
# error "Must have one of HP-PA or IA32"
|
|
|
|
# endif
|
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
/*
|
|
|
|
* The following algorithm repeatedly samples the real-time clock (RTC) to
|
|
|
|
* generate a sequence of unpredictable data. The algorithm relies upon the
|
|
|
|
* uneven execution speed of the code (due to factors such as cache misses,
|
|
|
|
* interrupts, bus activity, and scheduling) and upon the rather large
|
|
|
|
* relative difference between the speed of the clock and the rate at which
|
|
|
|
* it can be read.
|
|
|
|
*
|
|
|
|
* If this code is ported to an environment where execution speed is more
|
|
|
|
* constant or where the RTC ticks at a much slower rate, or the clock can be
|
|
|
|
* read with fewer instructions, it is likely that the results would be far
|
|
|
|
* more predictable.
|
|
|
|
*
|
|
|
|
* As a precaution, we generate 4 times the minimum required amount of seed
|
|
|
|
* data.
|
|
|
|
*/
|
2009-04-08 00:33:26 +08:00
|
|
|
int RAND_poll(void)
|
|
|
|
{
|
2015-01-22 11:40:55 +08:00
|
|
|
short int code;
|
|
|
|
gid_t curr_gid;
|
|
|
|
pid_t curr_pid;
|
|
|
|
uid_t curr_uid;
|
|
|
|
int i, k;
|
|
|
|
struct timespec ts;
|
|
|
|
unsigned char v;
|
|
|
|
# ifdef OPENSSL_SYS_VOS_HPPA
|
|
|
|
long duration;
|
|
|
|
extern void s$sleep(long *_duration, short int *_code);
|
|
|
|
# else
|
|
|
|
long long duration;
|
|
|
|
extern void s$sleep2(long long *_duration, short int *_code);
|
2017-07-18 21:39:21 +08:00
|
|
|
# endif
|
2015-01-22 11:40:55 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Seed with the gid, pid, and uid, to ensure *some* variation between
|
|
|
|
* different processes.
|
|
|
|
*/
|
|
|
|
curr_gid = getgid();
|
2017-07-18 21:39:21 +08:00
|
|
|
RAND_add(&curr_gid, sizeof curr_gid, 0);
|
2015-01-22 11:40:55 +08:00
|
|
|
curr_pid = getpid();
|
2017-07-18 21:39:21 +08:00
|
|
|
RAND_add(&curr_pid, sizeof curr_pid, 0);
|
2015-01-22 11:40:55 +08:00
|
|
|
curr_uid = getuid();
|
2017-07-18 21:39:21 +08:00
|
|
|
RAND_add(&curr_uid, sizeof curr_uid, 0);
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-06-22 21:21:43 +08:00
|
|
|
for (i = 0; i < (RANDOMNESS_NEEDED * 4); i++) {
|
2015-01-22 11:40:55 +08:00
|
|
|
/*
|
|
|
|
* burn some cpu; hope for interrupts, cache collisions, bus
|
|
|
|
* interference, etc.
|
|
|
|
*/
|
|
|
|
for (k = 0; k < 99; k++)
|
|
|
|
ts.tv_nsec = random();
|
|
|
|
|
|
|
|
# ifdef OPENSSL_SYS_VOS_HPPA
|
|
|
|
/* sleep for 1/1024 of a second (976 us). */
|
|
|
|
duration = 1;
|
|
|
|
s$sleep(&duration, &code);
|
|
|
|
# else
|
|
|
|
/* sleep for 1/65536 of a second (15 us). */
|
|
|
|
duration = 1;
|
|
|
|
s$sleep2(&duration, &code);
|
2017-07-18 21:39:21 +08:00
|
|
|
# endif
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
/* Get wall clock time, take 8 bits. */
|
2015-01-22 11:40:55 +08:00
|
|
|
clock_gettime(CLOCK_REALTIME, &ts);
|
2017-07-18 21:39:21 +08:00
|
|
|
v = (unsigned char)(ts.tv_nsec & 0xFF);
|
2015-01-22 11:40:55 +08:00
|
|
|
RAND_add(&v, sizeof v, 1);
|
|
|
|
}
|
|
|
|
return 1;
|
2009-04-08 00:33:26 +08:00
|
|
|
}
|
2017-07-18 21:39:21 +08:00
|
|
|
|
2017-06-15 01:53:01 +08:00
|
|
|
# else
|
2017-07-18 21:39:21 +08:00
|
|
|
|
|
|
|
# if defined(OPENSSL_RAND_SEED_EGD) && \
|
|
|
|
(defined(OPENSSL_NO_EGD) || !defined(DEVRANDOM_EGD))
|
|
|
|
# error "Seeding uses EGD but EGD is turned off or no device given"
|
2015-01-22 11:40:55 +08:00
|
|
|
# endif
|
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
# if defined(OPENSSL_RAND_SEED_DEVRANDOM) && !defined(DEVRANDOM)
|
|
|
|
# error "Seeding uses urandom but DEVRANDOM is not configured"
|
|
|
|
# endif
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
# if defined(OPENSSL_RAND_SEED_OS)
|
|
|
|
# if defined(DEVRANDOM)
|
|
|
|
# define OPENSSL_RAND_SEED_DEVRANDOM
|
|
|
|
# else
|
|
|
|
# error "OS seeding requires DEVRANDOM to be configured"
|
2015-01-22 11:40:55 +08:00
|
|
|
# endif
|
2017-07-18 21:39:21 +08:00
|
|
|
# endif
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
# if defined(OPENSSL_RAND_SEED_LIBRANDOM)
|
|
|
|
# error "librandom not (yet) supported"
|
|
|
|
# endif
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
int RAND_poll(void)
|
|
|
|
{
|
|
|
|
# ifdef OPENSSL_RAND_SEED_NONE
|
|
|
|
return 0;
|
|
|
|
# else
|
|
|
|
int ok = 0;
|
|
|
|
char temp[RANDOMNESS_NEEDED];
|
|
|
|
# define TEMPSIZE (int)sizeof(temp)
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
# ifdef OPENSSL_RAND_SEED_RDTSC
|
|
|
|
rand_rdtsc();
|
|
|
|
# endif
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
# ifdef OPENSSL_RAND_SEED_RDCPU
|
|
|
|
if (rand_rdcpu())
|
|
|
|
ok++;
|
2015-01-22 11:40:55 +08:00
|
|
|
# endif
|
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
# ifdef OPENSSL_RAND_SEED_EGD
|
|
|
|
{
|
|
|
|
static const char *paths[] = { DEVRANDOM_EGD, NULL };
|
|
|
|
int i;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
for (i = 0; paths[i] != NULL; i++) {
|
|
|
|
if (RAND_query_egd_bytes(paths[i], temp, TEMPSIZE) == TEMPSIZE) {
|
|
|
|
RAND_add(temp, TEMPSIZE, TEMPSIZE);
|
|
|
|
ok++;
|
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-18 21:39:21 +08:00
|
|
|
# endif
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
# ifdef OPENSSL_RAND_SEED_DEVRANDOM
|
|
|
|
{
|
|
|
|
static const char *paths[] = { DEVRANDOM, NULL };
|
|
|
|
FILE *fp;
|
|
|
|
int i;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
for (i = 0; paths[i] != NULL; i++) {
|
|
|
|
if ((fp = fopen(paths[i], "rb")) == NULL)
|
|
|
|
continue;
|
|
|
|
setbuf(fp, NULL);
|
|
|
|
if (fread(temp, 1, TEMPSIZE, fp) == TEMPSIZE) {
|
|
|
|
RAND_add(temp, TEMPSIZE, TEMPSIZE);
|
|
|
|
ok++;
|
|
|
|
fclose(fp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2017-07-18 21:39:21 +08:00
|
|
|
# endif
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
# ifdef OPENSSL_RAND_SEED_GETRANDOM
|
|
|
|
{
|
|
|
|
int i = getrandom(temp, TEMPSIZE, 0);
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
if (i >= 0) {
|
|
|
|
RAND_add(temp, i, i);
|
|
|
|
if (i == TEMPSIZE)
|
|
|
|
ok++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# endif
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-07-18 21:39:21 +08:00
|
|
|
OPENSSL_cleanse(temp, TEMPSIZE);
|
|
|
|
return ok > 0 ? 1 : 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
# endif
|
2001-01-08 18:59:26 +08:00
|
|
|
}
|
2017-07-18 21:39:21 +08:00
|
|
|
# endif
|
2001-01-08 18:59:26 +08:00
|
|
|
|
2002-10-14 17:44:57 +08:00
|
|
|
#endif
|