mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-29 08:44:52 +02:00
- (djm) Cleanup of entropy.c. Reorganised code, removed second pass through
list of commands (by default). Removed verbose debugging (by default). - (djm) Increased command entropy estimates and default entropy collection timeout
This commit is contained in:
parent
d5bf307f7b
commit
14c12cb000
@ -1,4 +1,8 @@
|
|||||||
20000606
|
20000606
|
||||||
|
- (djm) Cleanup of entropy.c. Reorganised code, removed second pass through
|
||||||
|
list of commands (by default). Removed verbose debugging (by default).
|
||||||
|
- (djm) Increased command entropy estimates and default entropy collection
|
||||||
|
timeout
|
||||||
- (djm) Remove duplicate headers from loginrec.c
|
- (djm) Remove duplicate headers from loginrec.c
|
||||||
- (djm) Don't add /usr/local/lib to library search path on Irix
|
- (djm) Don't add /usr/local/lib to library search path on Irix
|
||||||
- (djm) Fix rsh path in RPMs. Report from Jason L Tibbitts III
|
- (djm) Fix rsh path in RPMs. Report from Jason L Tibbitts III
|
||||||
|
@ -1124,7 +1124,7 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
# Change default command timeout for builtin PRNG
|
# Change default command timeout for builtin PRNG
|
||||||
entropy_timeout=100
|
entropy_timeout=200
|
||||||
AC_ARG_WITH(entropy-timeout,
|
AC_ARG_WITH(entropy-timeout,
|
||||||
[ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
|
[ --with-entropy-timeout Specify entropy gathering command timeout (msec)],
|
||||||
[
|
[
|
||||||
|
259
entropy.c
259
entropy.c
@ -35,12 +35,29 @@
|
|||||||
#include <openssl/rand.h>
|
#include <openssl/rand.h>
|
||||||
#include <openssl/sha.h>
|
#include <openssl/sha.h>
|
||||||
|
|
||||||
RCSID("$Id: entropy.c,v 1.12 2000/05/31 01:24:34 damien Exp $");
|
RCSID("$Id: entropy.c,v 1.13 2000/06/07 12:20:23 djm Exp $");
|
||||||
|
|
||||||
#ifdef EGD_SOCKET
|
|
||||||
#ifndef offsetof
|
#ifndef offsetof
|
||||||
# define offsetof(type, member) ((size_t) &((type *)0)->member)
|
# define offsetof(type, member) ((size_t) &((type *)0)->member)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Print lots of detail */
|
||||||
|
/* #define DEBUG_ENTROPY */
|
||||||
|
|
||||||
|
/* Number of times to pass through command list gathering entropy */
|
||||||
|
#define NUM_ENTROPY_RUNS 1
|
||||||
|
|
||||||
|
/* Scale entropy estimates back by this amount on subsequent runs */
|
||||||
|
#define SCALE_PER_RUN 10.0
|
||||||
|
|
||||||
|
/* Minimum number of commands to be considered valid */
|
||||||
|
#define MIN_ENTROPY_SOURCES 16
|
||||||
|
|
||||||
|
#define WHITESPACE " \t\n"
|
||||||
|
|
||||||
|
#if defined(EGD_SOCKET) || defined(RANDOM_POOL)
|
||||||
|
|
||||||
|
#ifdef EGD_SOCKET
|
||||||
/* Collect entropy from EGD */
|
/* Collect entropy from EGD */
|
||||||
void get_random_bytes(unsigned char *buf, int len)
|
void get_random_bytes(unsigned char *buf, int len)
|
||||||
{
|
{
|
||||||
@ -57,7 +74,7 @@ void get_random_bytes(unsigned char *buf, int len)
|
|||||||
if (sizeof(EGD_SOCKET) > sizeof(addr.sun_path))
|
if (sizeof(EGD_SOCKET) > sizeof(addr.sun_path))
|
||||||
fatal("Random pool path is too long");
|
fatal("Random pool path is too long");
|
||||||
|
|
||||||
strcpy(addr.sun_path, EGD_SOCKET);
|
strlcpy(addr.sun_path, EGD_SOCKET, sizeof(addr.sun_path));
|
||||||
|
|
||||||
addr_len = offsetof(struct sockaddr_un, sun_path) + sizeof(EGD_SOCKET);
|
addr_len = offsetof(struct sockaddr_un, sun_path) + sizeof(EGD_SOCKET);
|
||||||
|
|
||||||
@ -104,7 +121,23 @@ void get_random_bytes(unsigned char *buf, int len)
|
|||||||
#endif /* RANDOM_POOL */
|
#endif /* RANDOM_POOL */
|
||||||
#endif /* EGD_SOCKET */
|
#endif /* EGD_SOCKET */
|
||||||
|
|
||||||
#if !defined(EGD_SOCKET) && !defined(RANDOM_POOL)
|
/*
|
||||||
|
* Seed OpenSSL's random number pool from Kernel random number generator
|
||||||
|
* or EGD
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
seed_rng(void)
|
||||||
|
{
|
||||||
|
char buf[32];
|
||||||
|
|
||||||
|
debug("Seeding random number generator");
|
||||||
|
get_random_bytes(buf, sizeof(buf));
|
||||||
|
RAND_add(buf, sizeof(buf), sizeof(buf));
|
||||||
|
memset(buf, '\0', sizeof(buf));
|
||||||
|
}
|
||||||
|
|
||||||
|
#else /* defined(EGD_SOCKET) || defined(RANDOM_POOL) */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* FIXME: proper entropy estimations. All current values are guesses
|
* FIXME: proper entropy estimations. All current values are guesses
|
||||||
* FIXME: (ATL) do estimates at compile time?
|
* FIXME: (ATL) do estimates at compile time?
|
||||||
@ -144,8 +177,6 @@ double hash_output_from_command(entropy_source_t *src, char *hash);
|
|||||||
|
|
||||||
/* this is initialised from a file, by prng_read_commands() */
|
/* this is initialised from a file, by prng_read_commands() */
|
||||||
entropy_source_t *entropy_sources = NULL;
|
entropy_source_t *entropy_sources = NULL;
|
||||||
#define MIN_ENTROPY_SOURCES 16
|
|
||||||
|
|
||||||
|
|
||||||
double
|
double
|
||||||
stir_from_system(void)
|
stir_from_system(void)
|
||||||
@ -184,11 +215,8 @@ stir_from_programs(void)
|
|||||||
double total_entropy_estimate;
|
double total_entropy_estimate;
|
||||||
char hash[SHA_DIGEST_LENGTH];
|
char hash[SHA_DIGEST_LENGTH];
|
||||||
|
|
||||||
/*
|
|
||||||
* Run through list of programs twice to catch differences
|
|
||||||
*/
|
|
||||||
total_entropy_estimate = 0;
|
total_entropy_estimate = 0;
|
||||||
for(i = 0; i < 2; i++) {
|
for(i = 0; i < NUM_ENTROPY_RUNS; i++) {
|
||||||
c = 0;
|
c = 0;
|
||||||
while (entropy_sources[c].path != NULL) {
|
while (entropy_sources[c].path != NULL) {
|
||||||
|
|
||||||
@ -203,14 +231,13 @@ stir_from_programs(void)
|
|||||||
if (entropy_estimate > SHA_DIGEST_LENGTH)
|
if (entropy_estimate > SHA_DIGEST_LENGTH)
|
||||||
entropy_estimate = SHA_DIGEST_LENGTH;
|
entropy_estimate = SHA_DIGEST_LENGTH;
|
||||||
|
|
||||||
/* * Scale back estimates for subsequent passes through list */
|
/* Scale back estimates for subsequent passes through list */
|
||||||
entropy_estimate /= 10.0 * (i + 1.0);
|
entropy_estimate /= SCALE_PER_RUN * (i + 1.0);
|
||||||
|
|
||||||
/* Stir it in */
|
/* Stir it in */
|
||||||
RAND_add(hash, sizeof(hash), entropy_estimate);
|
RAND_add(hash, sizeof(hash), entropy_estimate);
|
||||||
|
|
||||||
/* FIXME: turn this off later */
|
#ifdef DEBUG_ENTROPY
|
||||||
#if 1
|
|
||||||
debug("Got %0.2f bytes of entropy from '%s'", entropy_estimate,
|
debug("Got %0.2f bytes of entropy from '%s'", entropy_estimate,
|
||||||
entropy_sources[c].cmdstring);
|
entropy_sources[c].cmdstring);
|
||||||
#endif
|
#endif
|
||||||
@ -223,8 +250,7 @@ stir_from_programs(void)
|
|||||||
total_entropy_estimate += stir_rusage(RUSAGE_SELF, 0.1);
|
total_entropy_estimate += stir_rusage(RUSAGE_SELF, 0.1);
|
||||||
total_entropy_estimate += stir_rusage(RUSAGE_CHILDREN, 0.1);
|
total_entropy_estimate += stir_rusage(RUSAGE_CHILDREN, 0.1);
|
||||||
} else {
|
} else {
|
||||||
/* FIXME: turn this off later */
|
#ifdef DEBUG_ENTROPY
|
||||||
#if 1
|
|
||||||
debug("Command '%s' disabled (badness %d)",
|
debug("Command '%s' disabled (badness %d)",
|
||||||
entropy_sources[c].cmdstring, entropy_sources[c].badness);
|
entropy_sources[c].cmdstring, entropy_sources[c].badness);
|
||||||
#endif
|
#endif
|
||||||
@ -360,8 +386,7 @@ hash_output_from_command(entropy_source_t *src, char *hash)
|
|||||||
int msec_remaining;
|
int msec_remaining;
|
||||||
|
|
||||||
(void) gettimeofday(&tv_current, 0);
|
(void) gettimeofday(&tv_current, 0);
|
||||||
msec_elapsed = _get_timeval_msec_difference(
|
msec_elapsed = _get_timeval_msec_difference(&tv_start, &tv_current);
|
||||||
&tv_start, &tv_current);
|
|
||||||
if (msec_elapsed >= entropy_timeout_current) {
|
if (msec_elapsed >= entropy_timeout_current) {
|
||||||
error_abort=1;
|
error_abort=1;
|
||||||
continue;
|
continue;
|
||||||
@ -412,7 +437,9 @@ hash_output_from_command(entropy_source_t *src, char *hash)
|
|||||||
|
|
||||||
close(p[0]);
|
close(p[0]);
|
||||||
|
|
||||||
|
#ifdef DEBUG_ENTROPY
|
||||||
debug("Time elapsed: %d msec", msec_elapsed);
|
debug("Time elapsed: %d msec", msec_elapsed);
|
||||||
|
#endif
|
||||||
|
|
||||||
if (waitpid(pid, &status, 0) == -1) {
|
if (waitpid(pid, &status, 0) == -1) {
|
||||||
debug("Couldn't wait for child '%s' completion: %s", src->cmdstring,
|
debug("Couldn't wait for child '%s' completion: %s", src->cmdstring,
|
||||||
@ -436,12 +463,14 @@ hash_output_from_command(entropy_source_t *src, char *hash)
|
|||||||
if (WEXITSTATUS(status)==0) {
|
if (WEXITSTATUS(status)==0) {
|
||||||
return(total_bytes_read);
|
return(total_bytes_read);
|
||||||
} else {
|
} else {
|
||||||
debug("Exit status was %d", WEXITSTATUS(status));
|
debug("Command '%s' exit status was %d", src->cmdstring,
|
||||||
|
WEXITSTATUS(status));
|
||||||
src->badness = src->sticky_badness = 128;
|
src->badness = src->sticky_badness = 128;
|
||||||
return (0.0);
|
return (0.0);
|
||||||
}
|
}
|
||||||
} else if (WIFSIGNALED(status)) {
|
} else if (WIFSIGNALED(status)) {
|
||||||
debug("Returned on uncaught signal %d !", status);
|
debug("Command '%s' returned on uncaught signal %d !", src->cmdstring,
|
||||||
|
status);
|
||||||
src->badness = src->sticky_badness = 128;
|
src->badness = src->sticky_badness = 128;
|
||||||
return(0.0);
|
return(0.0);
|
||||||
} else
|
} else
|
||||||
@ -571,20 +600,19 @@ prng_read_seedfile(void) {
|
|||||||
/*
|
/*
|
||||||
* entropy command initialisation functions
|
* entropy command initialisation functions
|
||||||
*/
|
*/
|
||||||
#define WHITESPACE " \t\n"
|
|
||||||
|
|
||||||
int
|
int
|
||||||
prng_read_commands(char *cmdfilename)
|
prng_read_commands(char *cmdfilename)
|
||||||
{
|
{
|
||||||
FILE *f;
|
FILE *f;
|
||||||
char line[1024];
|
|
||||||
char cmd[1024], path[256];
|
|
||||||
double est;
|
|
||||||
char *cp;
|
char *cp;
|
||||||
|
char line[1024];
|
||||||
|
char cmd[1024];
|
||||||
|
char path[256];
|
||||||
int linenum;
|
int linenum;
|
||||||
entropy_source_t *entcmd;
|
|
||||||
int num_cmds = 64;
|
int num_cmds = 64;
|
||||||
int cur_cmd = 0;
|
int cur_cmd = 0;
|
||||||
|
double est;
|
||||||
|
entropy_source_t *entcmd;
|
||||||
|
|
||||||
f = fopen(cmdfilename, "r");
|
f = fopen(cmdfilename, "r");
|
||||||
if (!f) {
|
if (!f) {
|
||||||
@ -592,12 +620,15 @@ prng_read_commands(char *cmdfilename)
|
|||||||
cmdfilename, strerror(errno));
|
cmdfilename, strerror(errno));
|
||||||
}
|
}
|
||||||
|
|
||||||
linenum = 0;
|
|
||||||
|
|
||||||
entcmd = (entropy_source_t *)xmalloc(num_cmds * sizeof(entropy_source_t));
|
entcmd = (entropy_source_t *)xmalloc(num_cmds * sizeof(entropy_source_t));
|
||||||
memset(entcmd, '\0', num_cmds * sizeof(entropy_source_t));
|
memset(entcmd, '\0', num_cmds * sizeof(entropy_source_t));
|
||||||
|
|
||||||
|
/* Read in file */
|
||||||
|
linenum = 0;
|
||||||
while (fgets(line, sizeof(line), f)) {
|
while (fgets(line, sizeof(line), f)) {
|
||||||
|
int arg;
|
||||||
|
char *argv;
|
||||||
|
|
||||||
linenum++;
|
linenum++;
|
||||||
|
|
||||||
/* skip leading whitespace, test for blank line or comment */
|
/* skip leading whitespace, test for blank line or comment */
|
||||||
@ -605,88 +636,90 @@ prng_read_commands(char *cmdfilename)
|
|||||||
if ((*cp == 0) || (*cp == '#'))
|
if ((*cp == 0) || (*cp == '#'))
|
||||||
continue; /* done with this line */
|
continue; /* done with this line */
|
||||||
|
|
||||||
switch (*cp) {
|
/* First non-whitespace char should be double quote delimiting */
|
||||||
int arg;
|
/* commandline */
|
||||||
char *argv;
|
if (*cp != '"') {
|
||||||
|
|
||||||
case '"':
|
|
||||||
/* first token, command args (incl. argv[0]) in double quotes */
|
|
||||||
cp = strtok(cp, "\"");
|
|
||||||
if (cp==NULL) {
|
|
||||||
error("missing or bad command string, %.100s line %d -- ignored",
|
|
||||||
cmdfilename, linenum);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
strncpy(cmd, cp, sizeof(cmd));
|
|
||||||
/* second token, full command path */
|
|
||||||
if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
|
|
||||||
error("missing command path, %.100s line %d -- ignored",
|
|
||||||
cmdfilename, linenum);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (strncmp("undef", cp, 5)==0) /* did configure mark this as dead? */
|
|
||||||
continue;
|
|
||||||
|
|
||||||
strncpy(path, cp, sizeof(path));
|
|
||||||
/* third token, entropy rate estimate for this command */
|
|
||||||
if ( (cp = strtok(NULL, WHITESPACE)) == NULL) {
|
|
||||||
error("missing entropy estimate, %.100s line %d -- ignored",
|
|
||||||
cmdfilename, linenum);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
est = strtod(cp, &argv);/* FIXME: (ATL) no error checking here */
|
|
||||||
|
|
||||||
/* end of line */
|
|
||||||
if ((cp = strtok(NULL, WHITESPACE)) != NULL) {
|
|
||||||
error("garbage at end of line %d in %.100s -- ignored",
|
|
||||||
linenum, cmdfilename);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* save the command for debug messages */
|
|
||||||
entcmd[cur_cmd].cmdstring = (char*) xmalloc(strlen(cmd)+1);
|
|
||||||
strncpy(entcmd[cur_cmd].cmdstring, cmd, strlen(cmd)+1);
|
|
||||||
|
|
||||||
/* split the command args */
|
|
||||||
cp = strtok(cmd, WHITESPACE);
|
|
||||||
arg = 0; argv = NULL;
|
|
||||||
do {
|
|
||||||
char *s = (char*)xmalloc(strlen(cp)+1);
|
|
||||||
strncpy(s, cp, strlen(cp)+1);
|
|
||||||
entcmd[cur_cmd].args[arg] = s;
|
|
||||||
arg++;
|
|
||||||
} while ((arg < 5) && (cp = strtok(NULL, WHITESPACE)));
|
|
||||||
if (strtok(NULL, WHITESPACE))
|
|
||||||
error("ignored extra command elements (max 5), %.100s line %d",
|
|
||||||
cmdfilename, linenum);
|
|
||||||
|
|
||||||
/* copy the command path and rate estimate */
|
|
||||||
entcmd[cur_cmd].path = (char *)xmalloc(strlen(path)+1);
|
|
||||||
strncpy(entcmd[cur_cmd].path, path, strlen(path)+1);
|
|
||||||
entcmd[cur_cmd].rate = est;
|
|
||||||
/* initialise other values */
|
|
||||||
entcmd[cur_cmd].sticky_badness = 1;
|
|
||||||
|
|
||||||
cur_cmd++;
|
|
||||||
|
|
||||||
/* If we've filled the array, reallocate it twice the size */
|
|
||||||
/* Do this now because even if this we're on the last command,
|
|
||||||
we need another slot to mark the last entry */
|
|
||||||
if (cur_cmd == num_cmds) {
|
|
||||||
num_cmds *= 2;
|
|
||||||
entcmd = xrealloc(entcmd, num_cmds * sizeof(entropy_source_t));
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
error("bad entropy command, %.100s line %d", cmdfilename,
|
error("bad entropy command, %.100s line %d", cmdfilename,
|
||||||
linenum);
|
linenum);
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* first token, command args (incl. argv[0]) in double quotes */
|
||||||
|
cp = strtok(cp, "\"");
|
||||||
|
if (cp == NULL) {
|
||||||
|
error("missing or bad command string, %.100s line %d -- ignored",
|
||||||
|
cmdfilename, linenum);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
strlcpy(cmd, cp, sizeof(cmd));
|
||||||
|
|
||||||
|
/* second token, full command path */
|
||||||
|
if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
|
||||||
|
error("missing command path, %.100s line %d -- ignored",
|
||||||
|
cmdfilename, linenum);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* did configure mark this as dead? */
|
||||||
|
if (strncmp("undef", cp, 5) == 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
strlcpy(path, cp, sizeof(path));
|
||||||
|
|
||||||
|
/* third token, entropy rate estimate for this command */
|
||||||
|
if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
|
||||||
|
error("missing entropy estimate, %.100s line %d -- ignored",
|
||||||
|
cmdfilename, linenum);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
est = strtod(cp, &argv);
|
||||||
|
|
||||||
|
/* end of line */
|
||||||
|
if ((cp = strtok(NULL, WHITESPACE)) != NULL) {
|
||||||
|
error("garbage at end of line %d in %.100s -- ignored", linenum,
|
||||||
|
cmdfilename);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* save the command for debug messages */
|
||||||
|
entcmd[cur_cmd].cmdstring = xstrdup(cmd);
|
||||||
|
|
||||||
|
/* split the command args */
|
||||||
|
cp = strtok(cmd, WHITESPACE);
|
||||||
|
arg = 0;
|
||||||
|
argv = NULL;
|
||||||
|
do {
|
||||||
|
char *s = (char*)xmalloc(strlen(cp) + 1);
|
||||||
|
strncpy(s, cp, strlen(cp) + 1);
|
||||||
|
entcmd[cur_cmd].args[arg] = s;
|
||||||
|
arg++;
|
||||||
|
} while ((arg < 5) && (cp = strtok(NULL, WHITESPACE)));
|
||||||
|
|
||||||
|
if (strtok(NULL, WHITESPACE))
|
||||||
|
error("ignored extra command elements (max 5), %.100s line %d",
|
||||||
|
cmdfilename, linenum);
|
||||||
|
|
||||||
|
/* Copy the command path and rate estimate */
|
||||||
|
entcmd[cur_cmd].path = xstrdup(path);
|
||||||
|
entcmd[cur_cmd].rate = est;
|
||||||
|
|
||||||
|
/* Initialise other values */
|
||||||
|
entcmd[cur_cmd].sticky_badness = 1;
|
||||||
|
|
||||||
|
cur_cmd++;
|
||||||
|
|
||||||
|
/* If we've filled the array, reallocate it twice the size */
|
||||||
|
/* Do this now because even if this we're on the last command,
|
||||||
|
we need another slot to mark the last entry */
|
||||||
|
if (cur_cmd == num_cmds) {
|
||||||
|
num_cmds *= 2;
|
||||||
|
entcmd = xrealloc(entcmd, num_cmds * sizeof(entropy_source_t));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* zero the last entry */
|
/* zero the last entry */
|
||||||
memset(&entcmd[cur_cmd], '\0', sizeof(entropy_source_t));
|
memset(&entcmd[cur_cmd], '\0', sizeof(entropy_source_t));
|
||||||
|
|
||||||
/* trim to size */
|
/* trim to size */
|
||||||
entropy_sources = xrealloc(entcmd, (cur_cmd+1) * sizeof(entropy_source_t));
|
entropy_sources = xrealloc(entcmd, (cur_cmd+1) * sizeof(entropy_source_t));
|
||||||
|
|
||||||
@ -695,28 +728,6 @@ prng_read_commands(char *cmdfilename)
|
|||||||
return (cur_cmd >= MIN_ENTROPY_SOURCES);
|
return (cur_cmd >= MIN_ENTROPY_SOURCES);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif /* defined(EGD_SOCKET) || defined(RANDOM_POOL) */
|
|
||||||
|
|
||||||
#if defined(EGD_SOCKET) || defined(RANDOM_POOL)
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Seed OpenSSL's random number pool from Kernel random number generator
|
|
||||||
* or EGD
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
seed_rng(void)
|
|
||||||
{
|
|
||||||
char buf[32];
|
|
||||||
|
|
||||||
debug("Seeding random number generator");
|
|
||||||
get_random_bytes(buf, sizeof(buf));
|
|
||||||
RAND_add(buf, sizeof(buf), sizeof(buf));
|
|
||||||
memset(buf, '\0', sizeof(buf));
|
|
||||||
}
|
|
||||||
|
|
||||||
#else /* defined(EGD_SOCKET) || defined(RANDOM_POOL) */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Write a keyfile at exit
|
* Write a keyfile at exit
|
||||||
*/
|
*/
|
||||||
|
@ -5,46 +5,46 @@
|
|||||||
# The "rate" represents the number of bits of usuable entropy per
|
# The "rate" represents the number of bits of usuable entropy per
|
||||||
# byte of command output. Be conservative.
|
# byte of command output. Be conservative.
|
||||||
|
|
||||||
"ls -alni /var/log" @PROG_LS@ 0.002
|
"ls -alni /var/log" @PROG_LS@ 0.02
|
||||||
"ls -alni /var/adm" @PROG_LS@ 0.002
|
"ls -alni /var/adm" @PROG_LS@ 0.02
|
||||||
"ls -alni /var/mail" @PROG_LS@ 0.002
|
"ls -alni /var/mail" @PROG_LS@ 0.02
|
||||||
"ls -alni /var/spool/mail" @PROG_LS@ 0.002
|
"ls -alni /var/spool/mail" @PROG_LS@ 0.02
|
||||||
"ls -alni /proc" @PROG_LS@ 0.002
|
"ls -alni /proc" @PROG_LS@ 0.02
|
||||||
"ls -alni /tmp" @PROG_LS@ 0.002
|
"ls -alni /tmp" @PROG_LS@ 0.02
|
||||||
|
|
||||||
"netstat -an" @PROG_NETSTAT@ 0.005
|
"netstat -an" @PROG_NETSTAT@ 0.05
|
||||||
"netstat -in" @PROG_NETSTAT@ 0.010
|
"netstat -in" @PROG_NETSTAT@ 0.05
|
||||||
"netstat -rn" @PROG_NETSTAT@ 0.002
|
"netstat -rn" @PROG_NETSTAT@ 0.02
|
||||||
"netstat -s" @PROG_NETSTAT@ 0.002
|
"netstat -s" @PROG_NETSTAT@ 0.02
|
||||||
|
|
||||||
"arp -a -n" @PROG_ARP@ 0.002
|
"arp -a -n" @PROG_ARP@ 0.02
|
||||||
|
|
||||||
"ifconfig -a" @PROG_IFCONFIG@ 0.002
|
"ifconfig -a" @PROG_IFCONFIG@ 0.02
|
||||||
|
|
||||||
"ps laxww" @PROG_PS@ 0.003
|
"ps laxww" @PROG_PS@ 0.03
|
||||||
"ps -al" @PROG_PS@ 0.003
|
"ps -al" @PROG_PS@ 0.03
|
||||||
"ps -efl" @PROG_PS@ 0.003
|
"ps -efl" @PROG_PS@ 0.03
|
||||||
|
|
||||||
"w" @PROG_W@ 0.005
|
"w" @PROG_W@ 0.05
|
||||||
|
|
||||||
"who -i" @PROG_WHO@ 0.001
|
"who -i" @PROG_WHO@ 0.01
|
||||||
|
|
||||||
"last" @PROG_LAST@ 0.001
|
"last" @PROG_LAST@ 0.01
|
||||||
|
|
||||||
"lastlog" @PROG_LASTLOG@ 0.001
|
"lastlog" @PROG_LASTLOG@ 0.01
|
||||||
|
|
||||||
"df" @PROG_DF@ 0.010
|
"df" @PROG_DF@ 0.01
|
||||||
"df -i" @PROG_DF@ 0.010
|
"df -i" @PROG_DF@ 0.01
|
||||||
|
|
||||||
"vmstat" @PROG_VMSTAT@ 0.010
|
"vmstat" @PROG_VMSTAT@ 0.01
|
||||||
"uptime" @PROG_UPTIME@ 0.001
|
"uptime" @PROG_UPTIME@ 0.01
|
||||||
|
|
||||||
"ipcs -a" @PROG_IPCS@ 0.001
|
"ipcs -a" @PROG_IPCS@ 0.01
|
||||||
|
|
||||||
"tail -200 /var/log/messages" @PROG_TAIL@ 0.001
|
"tail -200 /var/log/messages" @PROG_TAIL@ 0.01
|
||||||
"tail -200 /var/log/syslog" @PROG_TAIL@ 0.001
|
"tail -200 /var/log/syslog" @PROG_TAIL@ 0.01
|
||||||
"tail -200 /var/adm/messages" @PROG_TAIL@ 0.001
|
"tail -200 /var/adm/messages" @PROG_TAIL@ 0.01
|
||||||
"tail -200 /var/adm/syslog" @PROG_TAIL@ 0.001
|
"tail -200 /var/adm/syslog" @PROG_TAIL@ 0.01
|
||||||
"tail -200 /var/adm/syslog/syslog.log" @PROG_TAIL@ 0.001
|
"tail -200 /var/adm/syslog/syslog.log" @PROG_TAIL@ 0.01
|
||||||
"tail -200 /var/log/maillog" @PROG_TAIL@ 0.001
|
"tail -200 /var/log/maillog" @PROG_TAIL@ 0.01
|
||||||
"tail -200 /var/adm/maillog" @PROG_TAIL@ 0.001
|
"tail -200 /var/adm/maillog" @PROG_TAIL@ 0.01
|
||||||
|
Loading…
x
Reference in New Issue
Block a user