2 * Copyright (c) 2001-2002 Damien Miller. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #include <sys/types.h>
28 #include <sys/resource.h>
31 #include <sys/socket.h>
37 #include <netinet/in.h>
38 #include <arpa/inet.h>
51 #include <openssl/rand.h>
52 #include <openssl/sha.h>
53 #include <openssl/crypto.h>
55 /* SunOS 4.4.4 needs this */
56 #ifdef HAVE_FLOATINGPOINT_H
57 # include <floatingpoint.h>
58 #endif /* HAVE_FLOATINGPOINT_H */
63 #include "pathnames.h"
66 /* Number of bytes we write out */
67 #define OUTPUT_SEED_SIZE 48
69 /* Length of on-disk seedfiles */
70 #define SEED_FILE_SIZE 1024
72 /* Maximum number of command-line arguments to read from file */
75 /* Minimum number of usable commands to be considered sufficient */
76 #define MIN_ENTROPY_SOURCES 16
78 /* Path to on-disk seed file (relative to user's home directory */
79 #ifndef SSH_PRNG_SEED_FILE
80 # define SSH_PRNG_SEED_FILE _PATH_SSH_USER_DIR"/prng_seed"
83 /* Path to PRNG commands list */
84 #ifndef SSH_PRNG_COMMAND_FILE
85 # define SSH_PRNG_COMMAND_FILE SSHDIR "/ssh_prng_cmds"
88 extern char *__progname
;
90 #define WHITESPACE " \t\n"
93 # define RUSAGE_SELF 0
95 #ifndef RUSAGE_CHILDREN
96 # define RUSAGE_CHILDREN 0
99 #if !defined(PRNGD_SOCKET) && !defined(PRNGD_PORT)
100 # define USE_SEED_FILES
104 /* Proportion of data that is entropy */
106 /* Counter goes positive if this command times out */
107 unsigned int badness
;
108 /* Increases by factor of two each timeout */
109 unsigned int sticky_badness
;
110 /* Path to executable */
112 /* argv to pass to executable */
113 char *args
[NUM_ARGS
]; /* XXX: arbitrary limit */
114 /* full command string (debug) */
118 /* slow command timeouts (all in milliseconds) */
119 /* static int entropy_timeout_default = ENTROPY_TIMEOUT_MSEC; */
120 static int entropy_timeout_current
= ENTROPY_TIMEOUT_MSEC
;
122 /* this is initialised from a file, by prng_read_commands() */
123 static entropy_cmd_t
*entropy_cmds
= NULL
;
126 double stir_from_system(void);
127 double stir_from_programs(void);
128 double stir_gettimeofday(double entropy_estimate
);
129 double stir_clock(double entropy_estimate
);
130 double stir_rusage(int who
, double entropy_estimate
);
131 double hash_command_output(entropy_cmd_t
*src
, unsigned char *hash
);
132 int get_random_bytes_prngd(unsigned char *buf
, int len
,
133 unsigned short tcp_port
, char *socket_path
);
136 * Collect 'len' bytes of entropy into 'buf' from PRNGD/EGD daemon
137 * listening either on 'tcp_port', or via Unix domain socket at *
139 * Either a non-zero tcp_port or a non-null socket_path must be
141 * Returns 0 on success, -1 on error
144 get_random_bytes_prngd(unsigned char *buf
, int len
,
145 unsigned short tcp_port
, char *socket_path
)
147 int fd
, addr_len
, rval
, errors
;
149 struct sockaddr_storage addr
;
150 struct sockaddr_in
*addr_in
= (struct sockaddr_in
*)&addr
;
151 struct sockaddr_un
*addr_un
= (struct sockaddr_un
*)&addr
;
155 if (socket_path
== NULL
&& tcp_port
== 0)
156 fatal("You must specify a port or a socket");
157 if (socket_path
!= NULL
&&
158 strlen(socket_path
) >= sizeof(addr_un
->sun_path
))
159 fatal("Random pool path is too long");
160 if (len
<= 0 || len
> 255)
161 fatal("Too many bytes (%d) to read from PRNGD", len
);
163 memset(&addr
, '\0', sizeof(addr
));
166 addr_in
->sin_family
= AF_INET
;
167 addr_in
->sin_addr
.s_addr
= htonl(INADDR_LOOPBACK
);
168 addr_in
->sin_port
= htons(tcp_port
);
169 addr_len
= sizeof(*addr_in
);
171 addr_un
->sun_family
= AF_UNIX
;
172 strlcpy(addr_un
->sun_path
, socket_path
,
173 sizeof(addr_un
->sun_path
));
174 addr_len
= offsetof(struct sockaddr_un
, sun_path
) +
175 strlen(socket_path
) + 1;
178 old_sigpipe
= mysignal(SIGPIPE
, SIG_IGN
);
183 fd
= socket(addr
.ss_family
, SOCK_STREAM
, 0);
185 error("Couldn't create socket: %s", strerror(errno
));
189 if (connect(fd
, (struct sockaddr
*)&addr
, addr_len
) == -1) {
191 error("Couldn't connect to PRNGD port %d: %s",
192 tcp_port
, strerror(errno
));
194 error("Couldn't connect to PRNGD socket \"%s\": %s",
195 addr_un
->sun_path
, strerror(errno
));
200 /* Send blocking read request to PRNGD */
204 if (atomicio(vwrite
, fd
, msg
, sizeof(msg
)) != sizeof(msg
)) {
205 if (errno
== EPIPE
&& errors
< 10) {
210 error("Couldn't write to PRNGD socket: %s",
215 if (atomicio(read
, fd
, buf
, len
) != (size_t)len
) {
216 if (errno
== EPIPE
&& errors
< 10) {
221 error("Couldn't read from PRNGD socket: %s",
228 mysignal(SIGPIPE
, old_sigpipe
);
235 seed_from_prngd(unsigned char *buf
, size_t bytes
)
238 debug("trying egd/prngd port %d", PRNGD_PORT
);
239 if (get_random_bytes_prngd(buf
, bytes
, PRNGD_PORT
, NULL
) == 0)
243 debug("trying egd/prngd socket %s", PRNGD_SOCKET
);
244 if (get_random_bytes_prngd(buf
, bytes
, 0, PRNGD_SOCKET
) == 0)
251 stir_gettimeofday(double entropy_estimate
)
255 if (gettimeofday(&tv
, NULL
) == -1)
256 fatal("Couldn't gettimeofday: %s", strerror(errno
));
258 RAND_add(&tv
, sizeof(tv
), entropy_estimate
);
260 return entropy_estimate
;
264 stir_clock(double entropy_estimate
)
270 RAND_add(&c
, sizeof(c
), entropy_estimate
);
272 return entropy_estimate
;
273 #else /* _HAVE_CLOCK */
275 #endif /* _HAVE_CLOCK */
279 stir_rusage(int who
, double entropy_estimate
)
281 #ifdef HAVE_GETRUSAGE
284 if (getrusage(who
, &ru
) == -1)
287 RAND_add(&ru
, sizeof(ru
), entropy_estimate
);
289 return entropy_estimate
;
290 #else /* _HAVE_GETRUSAGE */
292 #endif /* _HAVE_GETRUSAGE */
296 timeval_diff(struct timeval
*t1
, struct timeval
*t2
)
298 int secdiff
, usecdiff
;
300 secdiff
= t2
->tv_sec
- t1
->tv_sec
;
301 usecdiff
= (secdiff
*1000000) + (t2
->tv_usec
- t1
->tv_usec
);
302 return (int)(usecdiff
/ 1000);
306 hash_command_output(entropy_cmd_t
*src
, unsigned char *hash
)
310 int bytes_read
, cmd_eof
, error_abort
, msec_elapsed
, p
[2];
311 int status
, total_bytes_read
;
312 static int devnull
= -1;
315 struct timeval tv_start
, tv_current
;
317 debug3("Reading output from \'%s\'", src
->cmdstring
);
320 devnull
= open("/dev/null", O_RDWR
);
322 fatal("Couldn't open /dev/null: %s",
327 fatal("Couldn't open pipe: %s", strerror(errno
));
329 (void)gettimeofday(&tv_start
, NULL
); /* record start time */
331 switch (pid
= fork()) {
335 fatal("Couldn't fork: %s", strerror(errno
));
338 dup2(devnull
, STDIN_FILENO
);
339 dup2(p
[1], STDOUT_FILENO
);
340 dup2(p
[1], STDERR_FILENO
);
345 execv(src
->path
, (char**)(src
->args
));
347 debug("(child) Couldn't exec '%s': %s",
348 src
->cmdstring
, strerror(errno
));
350 default: /* Parent */
354 RAND_add(&pid
, sizeof(&pid
), 0.0);
358 /* Hash output from child */
361 cmd_eof
= error_abort
= msec_elapsed
= total_bytes_read
= 0;
362 while (!error_abort
&& !cmd_eof
) {
367 (void) gettimeofday(&tv_current
, 0);
368 msec_elapsed
= timeval_diff(&tv_start
, &tv_current
);
369 if (msec_elapsed
>= entropy_timeout_current
) {
373 msec_remaining
= entropy_timeout_current
- msec_elapsed
;
376 FD_SET(p
[0], &rdset
);
377 tv
.tv_sec
= msec_remaining
/ 1000;
378 tv
.tv_usec
= (msec_remaining
% 1000) * 1000;
380 ret
= select(p
[0] + 1, &rdset
, NULL
, NULL
, &tv
);
382 RAND_add(&tv
, sizeof(tv
), 0.0);
393 bytes_read
= read(p
[0], buf
, sizeof(buf
));
394 } while (bytes_read
== -1 && errno
== EINTR
);
395 RAND_add(&bytes_read
, sizeof(&bytes_read
), 0.0);
396 if (bytes_read
== -1) {
399 } else if (bytes_read
) {
400 SHA1_Update(&sha
, buf
, bytes_read
);
401 total_bytes_read
+= bytes_read
;
409 debug("Command '%s': select() failed: %s",
410 src
->cmdstring
, strerror(errno
));
416 SHA1_Final(hash
, &sha
);
420 debug3("Time elapsed: %d msec", msec_elapsed
);
422 if (waitpid(pid
, &status
, 0) == -1) {
423 error("Couldn't wait for child '%s' completion: %s",
424 src
->cmdstring
, strerror(errno
));
428 RAND_add(&status
, sizeof(&status
), 0.0);
432 * Closing p[0] on timeout causes the entropy command to
433 * SIGPIPE. Take whatever output we got, and mark this
436 debug2("Command '%s' timed out", src
->cmdstring
);
437 src
->sticky_badness
*= 2;
438 src
->badness
= src
->sticky_badness
;
439 return total_bytes_read
;
442 if (WIFEXITED(status
)) {
443 if (WEXITSTATUS(status
) == 0) {
444 return total_bytes_read
;
446 debug2("Command '%s' exit status was %d",
447 src
->cmdstring
, WEXITSTATUS(status
));
448 src
->badness
= src
->sticky_badness
= 128;
451 } else if (WIFSIGNALED(status
)) {
452 debug2("Command '%s' returned on uncaught signal %d !",
453 src
->cmdstring
, status
);
454 src
->badness
= src
->sticky_badness
= 128;
461 stir_from_system(void)
463 double total_entropy_estimate
;
466 total_entropy_estimate
= 0;
469 RAND_add(&i
, sizeof(i
), 0.5);
470 total_entropy_estimate
+= 0.1;
473 RAND_add(&i
, sizeof(i
), 0.5);
474 total_entropy_estimate
+= 0.1;
477 RAND_add(&i
, sizeof(i
), 0.0);
479 RAND_add(&i
, sizeof(i
), 0.0);
481 total_entropy_estimate
+= stir_gettimeofday(1.0);
482 total_entropy_estimate
+= stir_clock(0.5);
483 total_entropy_estimate
+= stir_rusage(RUSAGE_SELF
, 2.0);
485 return total_entropy_estimate
;
489 stir_from_programs(void)
492 double entropy
, total_entropy
;
493 unsigned char hash
[SHA_DIGEST_LENGTH
];
496 for(c
= 0; entropy_cmds
[c
].path
!= NULL
; c
++) {
497 if (!entropy_cmds
[c
].badness
) {
498 /* Hash output from command */
499 entropy
= hash_command_output(&entropy_cmds
[c
],
502 /* Scale back estimate by command's rate */
503 entropy
*= entropy_cmds
[c
].rate
;
505 /* Upper bound of entropy is SHA_DIGEST_LENGTH */
506 if (entropy
> SHA_DIGEST_LENGTH
)
507 entropy
= SHA_DIGEST_LENGTH
;
510 RAND_add(hash
, sizeof(hash
), entropy
);
512 debug3("Got %0.2f bytes of entropy from '%s'",
513 entropy
, entropy_cmds
[c
].cmdstring
);
515 total_entropy
+= entropy
;
517 /* Execution time should be a bit unpredictable */
518 total_entropy
+= stir_gettimeofday(0.05);
519 total_entropy
+= stir_clock(0.05);
520 total_entropy
+= stir_rusage(RUSAGE_SELF
, 0.1);
521 total_entropy
+= stir_rusage(RUSAGE_CHILDREN
, 0.1);
523 debug2("Command '%s' disabled (badness %d)",
524 entropy_cmds
[c
].cmdstring
,
525 entropy_cmds
[c
].badness
);
527 if (entropy_cmds
[c
].badness
> 0)
528 entropy_cmds
[c
].badness
--;
532 return total_entropy
;
536 * prng seedfile functions
539 prng_check_seedfile(char *filename
)
544 * XXX raceable: eg replace seed between this stat and subsequent
545 * open. Not such a problem because we don't really trust the
547 * XXX: use secure path checking as elsewhere in OpenSSH
549 if (lstat(filename
, &st
) == -1) {
550 /* Give up on hard errors */
552 debug("WARNING: Couldn't stat random seed file "
553 "\"%.100s\": %s", filename
, strerror(errno
));
558 if (!S_ISREG(st
.st_mode
))
559 fatal("PRNG seedfile %.100s is not a regular file",
562 /* mode 0600, owned by root or the current user? */
563 if (((st
.st_mode
& 0177) != 0) || !(st
.st_uid
== getuid())) {
564 debug("WARNING: PRNG seedfile %.100s must be mode 0600, "
565 "owned by uid %li", filename
, (long int)getuid());
573 prng_write_seedfile(void)
576 unsigned char seed
[SEED_FILE_SIZE
];
577 char filename
[MAXPATHLEN
], tmpseed
[MAXPATHLEN
];
581 pw
= getpwuid(getuid());
583 fatal("Couldn't get password entry for current user "
584 "(%li): %s", (long int)getuid(), strerror(errno
));
586 /* Try to ensure that the parent directory is there */
587 snprintf(filename
, sizeof(filename
), "%.512s/%s", pw
->pw_dir
,
589 if (mkdir(filename
, 0700) < 0 && errno
!= EEXIST
)
590 fatal("mkdir %.200s: %s", filename
, strerror(errno
));
592 snprintf(filename
, sizeof(filename
), "%.512s/%s", pw
->pw_dir
,
595 strlcpy(tmpseed
, filename
, sizeof(tmpseed
));
596 if (strlcat(tmpseed
, ".XXXXXXXXXX", sizeof(tmpseed
)) >=
598 fatal("PRNG seed filename too long");
600 if (RAND_bytes(seed
, sizeof(seed
)) <= 0)
601 fatal("PRNG seed extraction failed");
603 /* Don't care if the seed doesn't exist */
604 prng_check_seedfile(filename
);
606 old_umask
= umask(0177);
608 if ((fd
= mkstemp(tmpseed
)) == -1) {
609 debug("WARNING: couldn't make temporary PRNG seedfile %.100s "
610 "(%.100s)", tmpseed
, strerror(errno
));
612 debug("writing PRNG seed to file %.100s", tmpseed
);
613 if (atomicio(vwrite
, fd
, &seed
, sizeof(seed
)) < sizeof(seed
)) {
617 fatal("problem writing PRNG seedfile %.100s "
618 "(%.100s)", filename
, strerror(save_errno
));
621 debug("moving temporary PRNG seed to file %.100s", filename
);
622 if (rename(tmpseed
, filename
) == -1) {
625 fatal("problem renaming PRNG seedfile from %.100s "
626 "to %.100s (%.100s)", tmpseed
, filename
,
627 strerror(save_errno
));
634 prng_read_seedfile(void)
637 char seed
[SEED_FILE_SIZE
], filename
[MAXPATHLEN
];
640 pw
= getpwuid(getuid());
642 fatal("Couldn't get password entry for current user "
643 "(%li): %s", (long int)getuid(), strerror(errno
));
645 snprintf(filename
, sizeof(filename
), "%.512s/%s", pw
->pw_dir
,
648 debug("loading PRNG seed from file %.100s", filename
);
650 if (!prng_check_seedfile(filename
)) {
651 verbose("Random seed file not found or invalid, ignoring.");
655 /* open the file and read in the seed */
656 fd
= open(filename
, O_RDONLY
);
658 fatal("could not open PRNG seedfile %.100s (%.100s)",
659 filename
, strerror(errno
));
661 if (atomicio(read
, fd
, &seed
, sizeof(seed
)) < sizeof(seed
)) {
662 verbose("invalid or short read from PRNG seedfile "
663 "%.100s - ignoring", filename
);
664 memset(seed
, '\0', sizeof(seed
));
668 /* stir in the seed, with estimated entropy zero */
669 RAND_add(&seed
, sizeof(seed
), 0.0);
674 * entropy command initialisation functions
677 prng_read_commands(char *cmdfilename
)
679 char cmd
[SEED_FILE_SIZE
], *cp
, line
[1024], path
[SEED_FILE_SIZE
];
681 entropy_cmd_t
*entcmd
;
683 int cur_cmd
, linenum
, num_cmds
, arg
;
685 if ((f
= fopen(cmdfilename
, "r")) == NULL
) {
686 fatal("couldn't read entropy commands file %.100s: %.100s",
687 cmdfilename
, strerror(errno
));
691 entcmd
= xcalloc(num_cmds
, sizeof(entropy_cmd_t
));
694 cur_cmd
= linenum
= 0;
695 while (fgets(line
, sizeof(line
), f
)) {
698 /* Skip leading whitespace, blank lines and comments */
699 cp
= line
+ strspn(line
, WHITESPACE
);
700 if ((*cp
== 0) || (*cp
== '#'))
701 continue; /* done with this line */
704 * The first non-whitespace char should be a double quote
705 * delimiting the commandline
708 error("bad entropy command, %.100s line %d",
709 cmdfilename
, linenum
);
714 * First token, command args (incl. argv[0]) in double
717 cp
= strtok(cp
, "\"");
719 error("missing or bad command string, %.100s "
720 "line %d -- ignored", cmdfilename
, linenum
);
723 strlcpy(cmd
, cp
, sizeof(cmd
));
725 /* Second token, full command path */
726 if ((cp
= strtok(NULL
, WHITESPACE
)) == NULL
) {
727 error("missing command path, %.100s "
728 "line %d -- ignored", cmdfilename
, linenum
);
732 /* Did configure mark this as dead? */
733 if (strncmp("undef", cp
, 5) == 0)
736 strlcpy(path
, cp
, sizeof(path
));
738 /* Third token, entropy rate estimate for this command */
739 if ((cp
= strtok(NULL
, WHITESPACE
)) == NULL
) {
740 error("missing entropy estimate, %.100s "
741 "line %d -- ignored", cmdfilename
, linenum
);
744 est
= strtod(cp
, NULL
);
747 if ((cp
= strtok(NULL
, WHITESPACE
)) != NULL
) {
748 error("garbage at end of line %d in %.100s "
749 "-- ignored", linenum
, cmdfilename
);
753 /* save the command for debug messages */
754 entcmd
[cur_cmd
].cmdstring
= xstrdup(cmd
);
756 /* split the command args */
757 cp
= strtok(cmd
, WHITESPACE
);
760 entcmd
[cur_cmd
].args
[arg
] = xstrdup(cp
);
762 } while(arg
< NUM_ARGS
&& (cp
= strtok(NULL
, WHITESPACE
)));
764 if (strtok(NULL
, WHITESPACE
))
765 error("ignored extra commands (max %d), %.100s "
766 "line %d", NUM_ARGS
, cmdfilename
, linenum
);
768 /* Copy the command path and rate estimate */
769 entcmd
[cur_cmd
].path
= xstrdup(path
);
770 entcmd
[cur_cmd
].rate
= est
;
772 /* Initialise other values */
773 entcmd
[cur_cmd
].sticky_badness
= 1;
778 * If we've filled the array, reallocate it twice the size
779 * Do this now because even if this we're on the last
780 * command we need another slot to mark the last entry
782 if (cur_cmd
== num_cmds
) {
784 entcmd
= xrealloc(entcmd
, num_cmds
,
785 sizeof(entropy_cmd_t
));
789 /* zero the last entry */
790 memset(&entcmd
[cur_cmd
], '\0', sizeof(entropy_cmd_t
));
793 entropy_cmds
= xrealloc(entcmd
, (cur_cmd
+ 1),
794 sizeof(entropy_cmd_t
));
796 debug("Loaded %d entropy commands from %.100s", cur_cmd
,
800 return cur_cmd
< MIN_ENTROPY_SOURCES
? -1 : 0;
806 fprintf(stderr
, "Usage: %s [options]\n", __progname
);
807 fprintf(stderr
, " -v Verbose; display verbose debugging messages.\n");
808 fprintf(stderr
, " Multiple -v increases verbosity.\n");
809 fprintf(stderr
, " -x Force output in hexadecimal (for debugging)\n");
810 fprintf(stderr
, " -X Force output in binary\n");
811 fprintf(stderr
, " -b bytes Number of bytes to output (default %d)\n",
816 main(int argc
, char **argv
)
819 int ret
, ch
, debug_level
, output_hex
, bytes
;
824 __progname
= ssh_get_progname(argv
[0]);
825 log_init(argv
[0], SYSLOG_LEVEL_INFO
, SYSLOG_FACILITY_USER
, 1);
827 ll
= SYSLOG_LEVEL_INFO
;
828 debug_level
= output_hex
= 0;
829 bytes
= OUTPUT_SEED_SIZE
;
831 /* Don't write binary data to a tty, unless we are forced to */
832 if (isatty(STDOUT_FILENO
))
835 while ((ch
= getopt(argc
, argv
, "vxXhb:")) != -1) {
839 ll
= SYSLOG_LEVEL_DEBUG1
+ debug_level
++;
848 if ((bytes
= atoi(optarg
)) <= 0)
849 fatal("Invalid number of output bytes");
855 error("Invalid commandline option");
860 log_init(argv
[0], ll
, SYSLOG_FACILITY_USER
, 1);
862 if (argc
!= optind
) {
863 error("Unexpected commandline arguments.");
868 #ifdef USE_SEED_FILES
869 prng_read_seedfile();
872 buf
= xmalloc(bytes
);
875 * Seed the RNG from wherever we can
878 /* Take whatever is on the stack, but don't credit it */
879 RAND_add(buf
, bytes
, 0);
881 debug("Seeded RNG with %i bytes from system calls",
882 (int)stir_from_system());
884 /* try prngd, fall back to commands if prngd fails or not configured */
885 if (seed_from_prngd(buf
, bytes
) == 0) {
886 RAND_add(buf
, bytes
, bytes
);
888 /* Read in collection commands */
889 if (prng_read_commands(SSH_PRNG_COMMAND_FILE
) == -1)
890 fatal("PRNG initialisation failed -- exiting.");
891 debug("Seeded RNG with %i bytes from programs",
892 (int)stir_from_programs());
895 #ifdef USE_SEED_FILES
896 prng_write_seedfile();
900 * Write the seed to stdout
904 fatal("Not enough entropy in RNG");
906 if (RAND_bytes(buf
, bytes
) <= 0)
907 fatal("Couldn't extract entropy from PRNG");
910 for(ret
= 0; ret
< bytes
; ret
++)
911 printf("%02x", (unsigned char)(buf
[ret
]));
914 ret
= atomicio(vwrite
, STDOUT_FILENO
, buf
, bytes
);
916 memset(buf
, '\0', bytes
);
919 return ret
== bytes
? 0 : 1;
923 * We may attempt to re-seed during mkstemp if we are using the one in the
924 * compat library (via mkstemp -> _gettemp -> arc4random -> seed_rng) so we
925 * need our own seed_rng(). We must also check that we have enough entropy.
931 fatal("Not enough entropy in RNG");