#include <openssl/opensslconf.h>
#include <openssl/crypto.h>
#include <openssl/e_os2.h>
#include <openssl/rand.h>
#if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_VOS) || defined(OPENSSL_SYS_UEFI)
int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes)
{
return -1;
}
int RAND_egd(const char *path)
{
return -1;
}
int RAND_egd_bytes(const char *path, int bytes)
{
return -1;
}
#else
#include <unistd.h>
#include <stddef.h>
#include <sys/types.h>
#include <sys/socket.h>
#ifndef NO_SYS_UN_H
#include <sys/un.h>
#else
struct sockaddr_un {
short sun_family;
char sun_path[108];
};
#endif
#include <string.h>
#include <errno.h>
#if defined(OPENSSL_SYS_TANDEM)
_variable int hpns_socket(int family,
int type,
int protocol,
char *transport)
{
int socket_rc;
char current_transport[20];
#define AF_UNIX_PORTABILITY "$ZAFN2"
#define AF_UNIX_COMPATIBILITY "$ZPLS"
if (!_arg_present(transport) || transport == NULL || transport[0] == '\0')
return socket(family, type, protocol);
socket_transport_name_get(AF_UNIX, current_transport, 20);
if (strcmp(current_transport, transport) == 0)
return socket(family, type, protocol);
if (socket_transport_name_set(AF_UNIX, transport))
return -1;
socket_rc = socket(family, type, protocol);
if (socket_transport_name_set(AF_UNIX, current_transport))
return -1;
return socket_rc;
}
static int hpns_connect_attempt = 0;
#endif
int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes)
{
FILE *fp = NULL;
struct sockaddr_un addr;
int mybuffer, ret = -1, i, numbytes, fd = -1;
unsigned char tempbuf[255];
#if defined(OPENSSL_SYS_TANDEM)
int hpns_connect_attempt = 0;
#endif
if (bytes <= 0 || bytes > (int)sizeof(tempbuf))
return -1;
memset(&addr, 0, sizeof(addr));
addr.sun_family = AF_UNIX;
if (strlen(path) >= sizeof(addr.sun_path))
return -1;
strcpy(addr.sun_path, path);
i = offsetof(struct sockaddr_un, sun_path) + strlen(path);
#if defined(OPENSSL_SYS_TANDEM)
fd = hpns_socket(AF_UNIX, SOCK_STREAM, 0, AF_UNIX_COMPATIBILITY);
#else
fd = socket(AF_UNIX, SOCK_STREAM, 0);
#endif
if (fd == -1)
return -1;
for (;;) {
if (connect(fd, (struct sockaddr *)&addr, i) == 0)
break;
#ifdef EISCONN
if (errno == EISCONN)
break;
#endif
switch (errno) {
#ifdef EINTR
case EINTR:
#endif
#ifdef EAGAIN
case EAGAIN:
#endif
#ifdef EINPROGRESS
case EINPROGRESS:
#endif
#ifdef EALREADY
case EALREADY:
#endif
break;
default:
#if defined(OPENSSL_SYS_TANDEM)
if (hpns_connect_attempt == 0) {
close(fd);
fd = hpns_socket(AF_UNIX, SOCK_STREAM, 0, AF_UNIX_PORTABILITY);
if (fd == -1)
return -1;
++hpns_connect_attempt;
break;
}
#endif
ret = -1;
goto err;
}
}
fp = fdopen(fd, "r+");
if (fp == NULL) {
close(fd);
return -1;
}
setbuf(fp, NULL);
tempbuf[0] = 1;
tempbuf[1] = bytes;
if (fwrite(tempbuf, sizeof(char), 2, fp) != 2 || fflush(fp) == EOF)
goto err;
if (fread(tempbuf, sizeof(char), 1, fp) != 1 || tempbuf[0] == 0)
goto err;
numbytes = tempbuf[0];
if (numbytes <= 0 || numbytes > bytes || numbytes > (int)sizeof(tempbuf))
goto err;
mybuffer = buf == NULL;
if (mybuffer)
buf = tempbuf;
i = fread(buf, sizeof(char), numbytes, fp);
if (i < numbytes)
goto err;
ret = numbytes;
if (mybuffer)
RAND_add(tempbuf, i, i);
err:
if (fp != NULL)
fclose(fp);
else if (fd != -1)
close(fd);
return ret;
}
int RAND_egd_bytes(const char *path, int bytes)
{
int num;
num = RAND_query_egd_bytes(path, NULL, bytes);
if (num < 0)
return -1;
if (RAND_status() != 1)
return -1;
return num;
}
int RAND_egd(const char *path)
{
return RAND_egd_bytes(path, 255);
}
#endif