blob: 10c9905b121de1460002f15e9d7187b083b6e5ab [file] [log] [blame]
Damien Miller62116dc2001-12-24 01:41:47 +11001/*
Damien Miller7b10ef42002-01-21 23:44:12 +11002 * Copyright (c) 2001-2002 Damien Miller. All rights reserved.
Damien Miller62116dc2001-12-24 01:41:47 +11003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
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.
12 *
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.
23 */
24
25#include "includes.h"
26
Damien Miller3717cda2006-03-15 14:02:36 +110027#include <sys/types.h>
28#include <sys/resource.h>
29#include <sys/stat.h>
30#include <sys/wait.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100031#include <sys/socket.h>
Darren Tucker4c655432006-08-05 15:57:40 +100032
33#include <stdarg.h>
Damien Miller2d00e632006-07-24 13:53:19 +100034#include <stddef.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100035
36#include <netinet/in.h>
Damien Miller3717cda2006-03-15 14:02:36 +110037
38#ifdef HAVE_SYS_UN_H
39# include <sys/un.h>
40#endif
41
Darren Tuckerdeecec92006-07-12 22:44:34 +100042#include <errno.h>
Damien Millera1738e42006-07-10 21:33:04 +100043#include <fcntl.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100044#include <pwd.h>
Damien Miller3717cda2006-03-15 14:02:36 +110045#include <signal.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100046#include <time.h>
47#include <unistd.h>
Damien Miller3717cda2006-03-15 14:02:36 +110048
Damien Miller62116dc2001-12-24 01:41:47 +110049#include <openssl/rand.h>
50#include <openssl/sha.h>
51#include <openssl/crypto.h>
52
53/* SunOS 4.4.4 needs this */
54#ifdef HAVE_FLOATINGPOINT_H
55# include <floatingpoint.h>
56#endif /* HAVE_FLOATINGPOINT_H */
57
58#include "misc.h"
59#include "xmalloc.h"
60#include "atomicio.h"
61#include "pathnames.h"
62#include "log.h"
63
Damien Miller7b10ef42002-01-21 23:44:12 +110064/* Number of bytes we write out */
65#define OUTPUT_SEED_SIZE 48
66
67/* Length of on-disk seedfiles */
68#define SEED_FILE_SIZE 1024
69
70/* Maximum number of command-line arguments to read from file */
71#define NUM_ARGS 10
72
73/* Minimum number of usable commands to be considered sufficient */
74#define MIN_ENTROPY_SOURCES 16
75
76/* Path to on-disk seed file (relative to user's home directory */
77#ifndef SSH_PRNG_SEED_FILE
78# define SSH_PRNG_SEED_FILE _PATH_SSH_USER_DIR"/prng_seed"
79#endif
80
81/* Path to PRNG commands list */
82#ifndef SSH_PRNG_COMMAND_FILE
Damien Miller05eda432002-02-10 18:32:28 +110083# define SSH_PRNG_COMMAND_FILE SSHDIR "/ssh_prng_cmds"
Damien Miller7b10ef42002-01-21 23:44:12 +110084#endif
85
Kevin Steves94435082001-12-25 04:32:58 +000086extern char *__progname;
Kevin Steves94435082001-12-25 04:32:58 +000087
Damien Miller62116dc2001-12-24 01:41:47 +110088#define WHITESPACE " \t\n"
89
90#ifndef RUSAGE_SELF
91# define RUSAGE_SELF 0
92#endif
93#ifndef RUSAGE_CHILDREN
94# define RUSAGE_CHILDREN 0
95#endif
96
Damien Millerc46cc542002-01-22 21:58:27 +110097#if !defined(PRNGD_SOCKET) && !defined(PRNGD_PORT)
Damien Miller7b10ef42002-01-21 23:44:12 +110098# define USE_SEED_FILES
Damien Miller62116dc2001-12-24 01:41:47 +110099#endif
100
Damien Miller7b10ef42002-01-21 23:44:12 +1100101typedef struct {
102 /* Proportion of data that is entropy */
103 double rate;
104 /* Counter goes positive if this command times out */
105 unsigned int badness;
106 /* Increases by factor of two each timeout */
107 unsigned int sticky_badness;
108 /* Path to executable */
109 char *path;
110 /* argv to pass to executable */
111 char *args[NUM_ARGS]; /* XXX: arbitrary limit */
112 /* full command string (debug) */
113 char *cmdstring;
114} entropy_cmd_t;
115
116/* slow command timeouts (all in milliseconds) */
117/* static int entropy_timeout_default = ENTROPY_TIMEOUT_MSEC; */
118static int entropy_timeout_current = ENTROPY_TIMEOUT_MSEC;
119
120/* this is initialised from a file, by prng_read_commands() */
121static entropy_cmd_t *entropy_cmds = NULL;
122
123/* Prototypes */
124double stir_from_system(void);
125double stir_from_programs(void);
126double stir_gettimeofday(double entropy_estimate);
127double stir_clock(double entropy_estimate);
128double stir_rusage(int who, double entropy_estimate);
Kevin Steves4bdb5472002-07-28 20:42:23 +0000129double hash_command_output(entropy_cmd_t *src, unsigned char *hash);
Damien Millera8e06ce2003-11-21 23:48:55 +1100130int get_random_bytes_prngd(unsigned char *buf, int len,
Damien Miller7b10ef42002-01-21 23:44:12 +1100131 unsigned short tcp_port, char *socket_path);
132
133/*
134 * Collect 'len' bytes of entropy into 'buf' from PRNGD/EGD daemon
135 * listening either on 'tcp_port', or via Unix domain socket at *
136 * 'socket_path'.
Damien Millera8e06ce2003-11-21 23:48:55 +1100137 * Either a non-zero tcp_port or a non-null socket_path must be
Damien Miller7b10ef42002-01-21 23:44:12 +1100138 * supplied.
139 * Returns 0 on success, -1 on error
140 */
Damien Miller62116dc2001-12-24 01:41:47 +1100141int
Damien Millera8e06ce2003-11-21 23:48:55 +1100142get_random_bytes_prngd(unsigned char *buf, int len,
Damien Miller7b10ef42002-01-21 23:44:12 +1100143 unsigned short tcp_port, char *socket_path)
Damien Miller62116dc2001-12-24 01:41:47 +1100144{
Damien Miller7b10ef42002-01-21 23:44:12 +1100145 int fd, addr_len, rval, errors;
Damien Miller52c8afe2005-06-19 10:19:43 +1000146 u_char msg[2];
Damien Miller7b10ef42002-01-21 23:44:12 +1100147 struct sockaddr_storage addr;
148 struct sockaddr_in *addr_in = (struct sockaddr_in *)&addr;
149 struct sockaddr_un *addr_un = (struct sockaddr_un *)&addr;
Damien Miller62116dc2001-12-24 01:41:47 +1100150 mysig_t old_sigpipe;
151
Damien Miller7b10ef42002-01-21 23:44:12 +1100152 /* Sanity checks */
153 if (socket_path == NULL && tcp_port == 0)
154 fatal("You must specify a port or a socket");
155 if (socket_path != NULL &&
156 strlen(socket_path) >= sizeof(addr_un->sun_path))
157 fatal("Random pool path is too long");
Damien Miller52c8afe2005-06-19 10:19:43 +1000158 if (len <= 0 || len > 255)
159 fatal("Too many bytes (%d) to read from PRNGD", len);
Damien Miller62116dc2001-12-24 01:41:47 +1100160
161 memset(&addr, '\0', sizeof(addr));
162
Damien Miller7b10ef42002-01-21 23:44:12 +1100163 if (tcp_port != 0) {
164 addr_in->sin_family = AF_INET;
165 addr_in->sin_addr.s_addr = htonl(INADDR_LOOPBACK);
166 addr_in->sin_port = htons(tcp_port);
167 addr_len = sizeof(*addr_in);
168 } else {
169 addr_un->sun_family = AF_UNIX;
170 strlcpy(addr_un->sun_path, socket_path,
171 sizeof(addr_un->sun_path));
172 addr_len = offsetof(struct sockaddr_un, sun_path) +
173 strlen(socket_path) + 1;
174 }
Damien Miller62116dc2001-12-24 01:41:47 +1100175
176 old_sigpipe = mysignal(SIGPIPE, SIG_IGN);
177
Damien Miller7b10ef42002-01-21 23:44:12 +1100178 errors = 0;
179 rval = -1;
Damien Miller62116dc2001-12-24 01:41:47 +1100180reopen:
Damien Miller7b10ef42002-01-21 23:44:12 +1100181 fd = socket(addr.ss_family, SOCK_STREAM, 0);
Damien Miller62116dc2001-12-24 01:41:47 +1100182 if (fd == -1) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100183 error("Couldn't create socket: %s", strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100184 goto done;
185 }
Damien Miller62116dc2001-12-24 01:41:47 +1100186
187 if (connect(fd, (struct sockaddr*)&addr, addr_len) == -1) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100188 if (tcp_port != 0) {
189 error("Couldn't connect to PRNGD port %d: %s",
190 tcp_port, strerror(errno));
191 } else {
192 error("Couldn't connect to PRNGD socket \"%s\": %s",
193 addr_un->sun_path, strerror(errno));
194 }
Damien Miller62116dc2001-12-24 01:41:47 +1100195 goto done;
196 }
197
198 /* Send blocking read request to PRNGD */
199 msg[0] = 0x02;
200 msg[1] = len;
201
Darren Tucker8661b562003-07-06 15:20:46 +1000202 if (atomicio(vwrite, fd, msg, sizeof(msg)) != sizeof(msg)) {
Damien Miller62116dc2001-12-24 01:41:47 +1100203 if (errno == EPIPE && errors < 10) {
204 close(fd);
205 errors++;
206 goto reopen;
207 }
208 error("Couldn't write to PRNGD socket: %s",
209 strerror(errno));
210 goto done;
211 }
212
Damien Miller52c8afe2005-06-19 10:19:43 +1000213 if (atomicio(read, fd, buf, len) != (size_t)len) {
Damien Miller62116dc2001-12-24 01:41:47 +1100214 if (errno == EPIPE && errors < 10) {
215 close(fd);
216 errors++;
217 goto reopen;
218 }
219 error("Couldn't read from PRNGD socket: %s",
220 strerror(errno));
221 goto done;
222 }
223
Damien Miller7b10ef42002-01-21 23:44:12 +1100224 rval = 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100225done:
226 mysignal(SIGPIPE, old_sigpipe);
227 if (fd != -1)
228 close(fd);
Damien Miller7b10ef42002-01-21 23:44:12 +1100229 return rval;
Damien Miller62116dc2001-12-24 01:41:47 +1100230}
231
Darren Tucker8686ed72004-12-20 12:05:08 +1100232static int
233seed_from_prngd(unsigned char *buf, size_t bytes)
234{
235#ifdef PRNGD_PORT
236 debug("trying egd/prngd port %d", PRNGD_PORT);
237 if (get_random_bytes_prngd(buf, bytes, PRNGD_PORT, NULL) == 0)
238 return 0;
239#endif
240#ifdef PRNGD_SOCKET
241 debug("trying egd/prngd socket %s", PRNGD_SOCKET);
242 if (get_random_bytes_prngd(buf, bytes, 0, PRNGD_SOCKET) == 0)
243 return 0;
244#endif
245 return -1;
246}
247
Damien Miller62116dc2001-12-24 01:41:47 +1100248double
249stir_gettimeofday(double entropy_estimate)
250{
251 struct timeval tv;
252
253 if (gettimeofday(&tv, NULL) == -1)
254 fatal("Couldn't gettimeofday: %s", strerror(errno));
255
256 RAND_add(&tv, sizeof(tv), entropy_estimate);
257
Damien Miller7b10ef42002-01-21 23:44:12 +1100258 return entropy_estimate;
Damien Miller62116dc2001-12-24 01:41:47 +1100259}
260
261double
262stir_clock(double entropy_estimate)
263{
264#ifdef HAVE_CLOCK
265 clock_t c;
266
267 c = clock();
268 RAND_add(&c, sizeof(c), entropy_estimate);
269
Damien Miller7b10ef42002-01-21 23:44:12 +1100270 return entropy_estimate;
Damien Miller62116dc2001-12-24 01:41:47 +1100271#else /* _HAVE_CLOCK */
Damien Miller7b10ef42002-01-21 23:44:12 +1100272 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100273#endif /* _HAVE_CLOCK */
274}
275
276double
277stir_rusage(int who, double entropy_estimate)
278{
279#ifdef HAVE_GETRUSAGE
280 struct rusage ru;
281
282 if (getrusage(who, &ru) == -1)
Damien Miller7b10ef42002-01-21 23:44:12 +1100283 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100284
285 RAND_add(&ru, sizeof(ru), entropy_estimate);
286
Damien Miller7b10ef42002-01-21 23:44:12 +1100287 return entropy_estimate;
Damien Miller62116dc2001-12-24 01:41:47 +1100288#else /* _HAVE_GETRUSAGE */
Damien Miller7b10ef42002-01-21 23:44:12 +1100289 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100290#endif /* _HAVE_GETRUSAGE */
291}
292
Damien Miller62116dc2001-12-24 01:41:47 +1100293static int
Damien Miller7b10ef42002-01-21 23:44:12 +1100294timeval_diff(struct timeval *t1, struct timeval *t2)
295{
Damien Miller62116dc2001-12-24 01:41:47 +1100296 int secdiff, usecdiff;
297
298 secdiff = t2->tv_sec - t1->tv_sec;
299 usecdiff = (secdiff*1000000) + (t2->tv_usec - t1->tv_usec);
300 return (int)(usecdiff / 1000);
301}
302
303double
Kevin Steves4bdb5472002-07-28 20:42:23 +0000304hash_command_output(entropy_cmd_t *src, unsigned char *hash)
Damien Miller62116dc2001-12-24 01:41:47 +1100305{
Damien Miller7b10ef42002-01-21 23:44:12 +1100306 char buf[8192];
Damien Miller62116dc2001-12-24 01:41:47 +1100307 fd_set rdset;
Damien Miller7b10ef42002-01-21 23:44:12 +1100308 int bytes_read, cmd_eof, error_abort, msec_elapsed, p[2];
309 int status, total_bytes_read;
310 static int devnull = -1;
Damien Miller62116dc2001-12-24 01:41:47 +1100311 pid_t pid;
Damien Miller62116dc2001-12-24 01:41:47 +1100312 SHA_CTX sha;
Damien Miller7b10ef42002-01-21 23:44:12 +1100313 struct timeval tv_start, tv_current;
Damien Miller62116dc2001-12-24 01:41:47 +1100314
315 debug3("Reading output from \'%s\'", src->cmdstring);
316
317 if (devnull == -1) {
318 devnull = open("/dev/null", O_RDWR);
319 if (devnull == -1)
Damien Millera8e06ce2003-11-21 23:48:55 +1100320 fatal("Couldn't open /dev/null: %s",
Damien Miller7b10ef42002-01-21 23:44:12 +1100321 strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100322 }
323
324 if (pipe(p) == -1)
325 fatal("Couldn't open pipe: %s", strerror(errno));
326
327 (void)gettimeofday(&tv_start, NULL); /* record start time */
328
329 switch (pid = fork()) {
330 case -1: /* Error */
331 close(p[0]);
332 close(p[1]);
333 fatal("Couldn't fork: %s", strerror(errno));
334 /* NOTREACHED */
335 case 0: /* Child */
336 dup2(devnull, STDIN_FILENO);
337 dup2(p[1], STDOUT_FILENO);
338 dup2(p[1], STDERR_FILENO);
339 close(p[0]);
340 close(p[1]);
341 close(devnull);
342
343 execv(src->path, (char**)(src->args));
Damien Miller7b10ef42002-01-21 23:44:12 +1100344
Damien Millera8e06ce2003-11-21 23:48:55 +1100345 debug("(child) Couldn't exec '%s': %s",
Damien Miller7b10ef42002-01-21 23:44:12 +1100346 src->cmdstring, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100347 _exit(-1);
348 default: /* Parent */
349 break;
350 }
351
352 RAND_add(&pid, sizeof(&pid), 0.0);
353
354 close(p[1]);
355
356 /* Hash output from child */
357 SHA1_Init(&sha);
Damien Miller62116dc2001-12-24 01:41:47 +1100358
Damien Miller7b10ef42002-01-21 23:44:12 +1100359 cmd_eof = error_abort = msec_elapsed = total_bytes_read = 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100360 while (!error_abort && !cmd_eof) {
361 int ret;
362 struct timeval tv;
363 int msec_remaining;
364
365 (void) gettimeofday(&tv_current, 0);
Damien Miller7b10ef42002-01-21 23:44:12 +1100366 msec_elapsed = timeval_diff(&tv_start, &tv_current);
Damien Miller62116dc2001-12-24 01:41:47 +1100367 if (msec_elapsed >= entropy_timeout_current) {
368 error_abort=1;
369 continue;
370 }
371 msec_remaining = entropy_timeout_current - msec_elapsed;
372
373 FD_ZERO(&rdset);
374 FD_SET(p[0], &rdset);
Damien Miller7b10ef42002-01-21 23:44:12 +1100375 tv.tv_sec = msec_remaining / 1000;
Damien Miller62116dc2001-12-24 01:41:47 +1100376 tv.tv_usec = (msec_remaining % 1000) * 1000;
377
Damien Miller7b10ef42002-01-21 23:44:12 +1100378 ret = select(p[0] + 1, &rdset, NULL, NULL, &tv);
Damien Miller62116dc2001-12-24 01:41:47 +1100379
380 RAND_add(&tv, sizeof(tv), 0.0);
381
382 switch (ret) {
383 case 0:
384 /* timer expired */
385 error_abort = 1;
Damien Miller5a5da882002-10-21 10:13:35 +1000386 kill(pid, SIGINT);
Damien Miller62116dc2001-12-24 01:41:47 +1100387 break;
388 case 1:
389 /* command input */
390 do {
391 bytes_read = read(p[0], buf, sizeof(buf));
392 } while (bytes_read == -1 && errno == EINTR);
393 RAND_add(&bytes_read, sizeof(&bytes_read), 0.0);
394 if (bytes_read == -1) {
395 error_abort = 1;
396 break;
397 } else if (bytes_read) {
398 SHA1_Update(&sha, buf, bytes_read);
399 total_bytes_read += bytes_read;
400 } else {
401 cmd_eof = 1;
402 }
403 break;
404 case -1:
405 default:
406 /* error */
Damien Millera8e06ce2003-11-21 23:48:55 +1100407 debug("Command '%s': select() failed: %s",
Damien Miller7b10ef42002-01-21 23:44:12 +1100408 src->cmdstring, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100409 error_abort = 1;
410 break;
411 }
412 }
413
414 SHA1_Final(hash, &sha);
415
416 close(p[0]);
417
418 debug3("Time elapsed: %d msec", msec_elapsed);
419
420 if (waitpid(pid, &status, 0) == -1) {
Damien Millerb6f72f52005-07-17 17:26:43 +1000421 error("Couldn't wait for child '%s' completion: %s",
422 src->cmdstring, strerror(errno));
Damien Miller7b10ef42002-01-21 23:44:12 +1100423 return 0.0;
Damien Miller62116dc2001-12-24 01:41:47 +1100424 }
425
426 RAND_add(&status, sizeof(&status), 0.0);
427
428 if (error_abort) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100429 /*
430 * Closing p[0] on timeout causes the entropy command to
Damien Millera8e06ce2003-11-21 23:48:55 +1100431 * SIGPIPE. Take whatever output we got, and mark this
432 * command as slow
Damien Miller7b10ef42002-01-21 23:44:12 +1100433 */
Damien Miller62116dc2001-12-24 01:41:47 +1100434 debug2("Command '%s' timed out", src->cmdstring);
435 src->sticky_badness *= 2;
436 src->badness = src->sticky_badness;
Damien Miller7b10ef42002-01-21 23:44:12 +1100437 return total_bytes_read;
Damien Miller62116dc2001-12-24 01:41:47 +1100438 }
439
440 if (WIFEXITED(status)) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100441 if (WEXITSTATUS(status) == 0) {
442 return total_bytes_read;
Damien Miller62116dc2001-12-24 01:41:47 +1100443 } else {
Damien Miller7b10ef42002-01-21 23:44:12 +1100444 debug2("Command '%s' exit status was %d",
445 src->cmdstring, WEXITSTATUS(status));
Damien Miller62116dc2001-12-24 01:41:47 +1100446 src->badness = src->sticky_badness = 128;
Damien Miller7b10ef42002-01-21 23:44:12 +1100447 return 0.0;
Damien Miller62116dc2001-12-24 01:41:47 +1100448 }
449 } else if (WIFSIGNALED(status)) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100450 debug2("Command '%s' returned on uncaught signal %d !",
451 src->cmdstring, status);
Damien Miller62116dc2001-12-24 01:41:47 +1100452 src->badness = src->sticky_badness = 128;
Damien Miller7b10ef42002-01-21 23:44:12 +1100453 return 0.0;
Damien Miller62116dc2001-12-24 01:41:47 +1100454 } else
Damien Miller7b10ef42002-01-21 23:44:12 +1100455 return 0.0;
456}
457
458double
459stir_from_system(void)
460{
461 double total_entropy_estimate;
462 long int i;
463
464 total_entropy_estimate = 0;
465
466 i = getpid();
467 RAND_add(&i, sizeof(i), 0.5);
468 total_entropy_estimate += 0.1;
469
470 i = getppid();
471 RAND_add(&i, sizeof(i), 0.5);
472 total_entropy_estimate += 0.1;
473
474 i = getuid();
475 RAND_add(&i, sizeof(i), 0.0);
476 i = getgid();
477 RAND_add(&i, sizeof(i), 0.0);
478
479 total_entropy_estimate += stir_gettimeofday(1.0);
480 total_entropy_estimate += stir_clock(0.5);
481 total_entropy_estimate += stir_rusage(RUSAGE_SELF, 2.0);
482
483 return total_entropy_estimate;
484}
485
486double
487stir_from_programs(void)
488{
489 int c;
490 double entropy, total_entropy;
Kevin Steves4bdb5472002-07-28 20:42:23 +0000491 unsigned char hash[SHA_DIGEST_LENGTH];
Damien Miller7b10ef42002-01-21 23:44:12 +1100492
493 total_entropy = 0;
494 for(c = 0; entropy_cmds[c].path != NULL; c++) {
495 if (!entropy_cmds[c].badness) {
496 /* Hash output from command */
497 entropy = hash_command_output(&entropy_cmds[c],
498 hash);
499
500 /* Scale back estimate by command's rate */
501 entropy *= entropy_cmds[c].rate;
502
503 /* Upper bound of entropy is SHA_DIGEST_LENGTH */
504 if (entropy > SHA_DIGEST_LENGTH)
505 entropy = SHA_DIGEST_LENGTH;
506
507 /* Stir it in */
508 RAND_add(hash, sizeof(hash), entropy);
509
Damien Millera8e06ce2003-11-21 23:48:55 +1100510 debug3("Got %0.2f bytes of entropy from '%s'",
Damien Miller7b10ef42002-01-21 23:44:12 +1100511 entropy, entropy_cmds[c].cmdstring);
512
513 total_entropy += entropy;
514
515 /* Execution time should be a bit unpredictable */
516 total_entropy += stir_gettimeofday(0.05);
517 total_entropy += stir_clock(0.05);
518 total_entropy += stir_rusage(RUSAGE_SELF, 0.1);
519 total_entropy += stir_rusage(RUSAGE_CHILDREN, 0.1);
520 } else {
521 debug2("Command '%s' disabled (badness %d)",
Damien Millera8e06ce2003-11-21 23:48:55 +1100522 entropy_cmds[c].cmdstring,
Damien Miller7b10ef42002-01-21 23:44:12 +1100523 entropy_cmds[c].badness);
524
525 if (entropy_cmds[c].badness > 0)
526 entropy_cmds[c].badness--;
527 }
528 }
529
530 return total_entropy;
Damien Miller62116dc2001-12-24 01:41:47 +1100531}
532
533/*
534 * prng seedfile functions
535 */
536int
Damien Miller7b10ef42002-01-21 23:44:12 +1100537prng_check_seedfile(char *filename)
538{
Damien Miller62116dc2001-12-24 01:41:47 +1100539 struct stat st;
540
Damien Miller7b10ef42002-01-21 23:44:12 +1100541 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100542 * XXX raceable: eg replace seed between this stat and subsequent
543 * open. Not such a problem because we don't really trust the
Damien Miller7b10ef42002-01-21 23:44:12 +1100544 * seed file anyway.
545 * XXX: use secure path checking as elsewhere in OpenSSH
546 */
Damien Miller62116dc2001-12-24 01:41:47 +1100547 if (lstat(filename, &st) == -1) {
548 /* Give up on hard errors */
549 if (errno != ENOENT)
Damien Miller7b10ef42002-01-21 23:44:12 +1100550 debug("WARNING: Couldn't stat random seed file "
551 "\"%.100s\": %s", filename, strerror(errno));
552 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100553 }
554
555 /* regular file? */
556 if (!S_ISREG(st.st_mode))
Damien Miller7b10ef42002-01-21 23:44:12 +1100557 fatal("PRNG seedfile %.100s is not a regular file",
558 filename);
Damien Miller62116dc2001-12-24 01:41:47 +1100559
560 /* mode 0600, owned by root or the current user? */
561 if (((st.st_mode & 0177) != 0) || !(st.st_uid == getuid())) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100562 debug("WARNING: PRNG seedfile %.100s must be mode 0600, "
Damien Millerc46b6bc2003-05-16 15:51:44 +1000563 "owned by uid %li", filename, (long int)getuid());
Damien Miller7b10ef42002-01-21 23:44:12 +1100564 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100565 }
566
Damien Miller7b10ef42002-01-21 23:44:12 +1100567 return 1;
Damien Miller62116dc2001-12-24 01:41:47 +1100568}
569
570void
Damien Miller7b10ef42002-01-21 23:44:12 +1100571prng_write_seedfile(void)
572{
Damien Millered462d92005-02-16 13:02:45 +1100573 int fd, save_errno;
Kevin Steves4bdb5472002-07-28 20:42:23 +0000574 unsigned char seed[SEED_FILE_SIZE];
Damien Millered462d92005-02-16 13:02:45 +1100575 char filename[MAXPATHLEN], tmpseed[MAXPATHLEN];
Damien Miller62116dc2001-12-24 01:41:47 +1100576 struct passwd *pw;
Damien Millered462d92005-02-16 13:02:45 +1100577 mode_t old_umask;
Damien Miller62116dc2001-12-24 01:41:47 +1100578
579 pw = getpwuid(getuid());
580 if (pw == NULL)
Damien Miller7b10ef42002-01-21 23:44:12 +1100581 fatal("Couldn't get password entry for current user "
Damien Millerc46b6bc2003-05-16 15:51:44 +1000582 "(%li): %s", (long int)getuid(), strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100583
584 /* Try to ensure that the parent directory is there */
585 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
Damien Miller7b10ef42002-01-21 23:44:12 +1100586 _PATH_SSH_USER_DIR);
Darren Tuckerdaf6ff42006-07-05 21:35:48 +1000587 if (mkdir(filename, 0700) < 0 && errno != EEXIST)
588 fatal("mkdir %.200s: %s", filename, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100589
590 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
Damien Miller7b10ef42002-01-21 23:44:12 +1100591 SSH_PRNG_SEED_FILE);
Damien Miller62116dc2001-12-24 01:41:47 +1100592
Damien Millered462d92005-02-16 13:02:45 +1100593 strlcpy(tmpseed, filename, sizeof(tmpseed));
594 if (strlcat(tmpseed, ".XXXXXXXXXX", sizeof(tmpseed)) >=
595 sizeof(tmpseed))
596 fatal("PRNG seed filename too long");
Damien Miller62116dc2001-12-24 01:41:47 +1100597
Damien Millercafbcc72003-03-17 16:13:53 +1100598 if (RAND_bytes(seed, sizeof(seed)) <= 0)
Ben Lindstromda4d9cf2003-09-22 15:36:15 +0000599 fatal("PRNG seed extraction failed");
Damien Miller62116dc2001-12-24 01:41:47 +1100600
601 /* Don't care if the seed doesn't exist */
602 prng_check_seedfile(filename);
603
Damien Millered462d92005-02-16 13:02:45 +1100604 old_umask = umask(0177);
605
606 if ((fd = mkstemp(tmpseed)) == -1) {
607 debug("WARNING: couldn't make temporary PRNG seedfile %.100s "
608 "(%.100s)", tmpseed, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100609 } else {
Damien Millered462d92005-02-16 13:02:45 +1100610 debug("writing PRNG seed to file %.100s", tmpseed);
611 if (atomicio(vwrite, fd, &seed, sizeof(seed)) < sizeof(seed)) {
612 save_errno = errno;
613 close(fd);
614 unlink(tmpseed);
Damien Miller7b10ef42002-01-21 23:44:12 +1100615 fatal("problem writing PRNG seedfile %.100s "
Damien Millered462d92005-02-16 13:02:45 +1100616 "(%.100s)", filename, strerror(save_errno));
617 }
Damien Miller62116dc2001-12-24 01:41:47 +1100618 close(fd);
Damien Millered462d92005-02-16 13:02:45 +1100619 debug("moving temporary PRNG seed to file %.100s", filename);
620 if (rename(tmpseed, filename) == -1) {
621 save_errno = errno;
622 unlink(tmpseed);
623 fatal("problem renaming PRNG seedfile from %.100s "
Damien Miller94cf4c82005-07-17 17:04:47 +1000624 "to %.100s (%.100s)", tmpseed, filename,
Damien Millered462d92005-02-16 13:02:45 +1100625 strerror(save_errno));
626 }
Damien Miller62116dc2001-12-24 01:41:47 +1100627 }
Damien Millered462d92005-02-16 13:02:45 +1100628 umask(old_umask);
Damien Miller62116dc2001-12-24 01:41:47 +1100629}
630
631void
Damien Miller7b10ef42002-01-21 23:44:12 +1100632prng_read_seedfile(void)
633{
Damien Miller62116dc2001-12-24 01:41:47 +1100634 int fd;
Damien Miller7b10ef42002-01-21 23:44:12 +1100635 char seed[SEED_FILE_SIZE], filename[MAXPATHLEN];
Damien Miller62116dc2001-12-24 01:41:47 +1100636 struct passwd *pw;
637
638 pw = getpwuid(getuid());
639 if (pw == NULL)
Damien Miller7b10ef42002-01-21 23:44:12 +1100640 fatal("Couldn't get password entry for current user "
Damien Millerc46b6bc2003-05-16 15:51:44 +1000641 "(%li): %s", (long int)getuid(), strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100642
643 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
644 SSH_PRNG_SEED_FILE);
645
646 debug("loading PRNG seed from file %.100s", filename);
647
648 if (!prng_check_seedfile(filename)) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100649 verbose("Random seed file not found or invalid, ignoring.");
Damien Miller62116dc2001-12-24 01:41:47 +1100650 return;
651 }
652
653 /* open the file and read in the seed */
654 fd = open(filename, O_RDONLY);
655 if (fd == -1)
Damien Miller7b10ef42002-01-21 23:44:12 +1100656 fatal("could not open PRNG seedfile %.100s (%.100s)",
657 filename, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100658
Damien Miller7b10ef42002-01-21 23:44:12 +1100659 if (atomicio(read, fd, &seed, sizeof(seed)) < sizeof(seed)) {
660 verbose("invalid or short read from PRNG seedfile "
661 "%.100s - ignoring", filename);
Damien Miller62116dc2001-12-24 01:41:47 +1100662 memset(seed, '\0', sizeof(seed));
663 }
664 close(fd);
665
666 /* stir in the seed, with estimated entropy zero */
667 RAND_add(&seed, sizeof(seed), 0.0);
668}
669
670
671/*
672 * entropy command initialisation functions
673 */
674int
675prng_read_commands(char *cmdfilename)
676{
Damien Miller7b10ef42002-01-21 23:44:12 +1100677 char cmd[SEED_FILE_SIZE], *cp, line[1024], path[SEED_FILE_SIZE];
Damien Miller62116dc2001-12-24 01:41:47 +1100678 double est;
Damien Miller7b10ef42002-01-21 23:44:12 +1100679 entropy_cmd_t *entcmd;
680 FILE *f;
681 int cur_cmd, linenum, num_cmds, arg;
Damien Miller62116dc2001-12-24 01:41:47 +1100682
Damien Miller7b10ef42002-01-21 23:44:12 +1100683 if ((f = fopen(cmdfilename, "r")) == NULL) {
Damien Miller62116dc2001-12-24 01:41:47 +1100684 fatal("couldn't read entropy commands file %.100s: %.100s",
685 cmdfilename, strerror(errno));
686 }
687
Damien Miller7b10ef42002-01-21 23:44:12 +1100688 num_cmds = 64;
Darren Tuckerd8093e42006-05-04 16:24:34 +1000689 entcmd = xcalloc(num_cmds, sizeof(entropy_cmd_t));
Damien Miller62116dc2001-12-24 01:41:47 +1100690
691 /* Read in file */
Damien Miller7b10ef42002-01-21 23:44:12 +1100692 cur_cmd = linenum = 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100693 while (fgets(line, sizeof(line), f)) {
Damien Miller62116dc2001-12-24 01:41:47 +1100694 linenum++;
695
Damien Miller7b10ef42002-01-21 23:44:12 +1100696 /* Skip leading whitespace, blank lines and comments */
Damien Miller62116dc2001-12-24 01:41:47 +1100697 cp = line + strspn(line, WHITESPACE);
698 if ((*cp == 0) || (*cp == '#'))
699 continue; /* done with this line */
700
Damien Miller7b10ef42002-01-21 23:44:12 +1100701 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100702 * The first non-whitespace char should be a double quote
Damien Miller7b10ef42002-01-21 23:44:12 +1100703 * delimiting the commandline
704 */
Damien Miller62116dc2001-12-24 01:41:47 +1100705 if (*cp != '"') {
Damien Miller7b10ef42002-01-21 23:44:12 +1100706 error("bad entropy command, %.100s line %d",
707 cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100708 continue;
709 }
710
Damien Miller7b10ef42002-01-21 23:44:12 +1100711 /*
712 * First token, command args (incl. argv[0]) in double
713 * quotes
714 */
Damien Miller62116dc2001-12-24 01:41:47 +1100715 cp = strtok(cp, "\"");
716 if (cp == NULL) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100717 error("missing or bad command string, %.100s "
718 "line %d -- ignored", cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100719 continue;
720 }
721 strlcpy(cmd, cp, sizeof(cmd));
722
Damien Miller7b10ef42002-01-21 23:44:12 +1100723 /* Second token, full command path */
Damien Miller62116dc2001-12-24 01:41:47 +1100724 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100725 error("missing command path, %.100s "
726 "line %d -- ignored", cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100727 continue;
728 }
729
Damien Miller7b10ef42002-01-21 23:44:12 +1100730 /* Did configure mark this as dead? */
Damien Miller62116dc2001-12-24 01:41:47 +1100731 if (strncmp("undef", cp, 5) == 0)
732 continue;
733
734 strlcpy(path, cp, sizeof(path));
735
Damien Miller7b10ef42002-01-21 23:44:12 +1100736 /* Third token, entropy rate estimate for this command */
Damien Miller62116dc2001-12-24 01:41:47 +1100737 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100738 error("missing entropy estimate, %.100s "
739 "line %d -- ignored", cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100740 continue;
741 }
Damien Miller7b10ef42002-01-21 23:44:12 +1100742 est = strtod(cp, NULL);
Damien Miller62116dc2001-12-24 01:41:47 +1100743
744 /* end of line */
745 if ((cp = strtok(NULL, WHITESPACE)) != NULL) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100746 error("garbage at end of line %d in %.100s "
747 "-- ignored", linenum, cmdfilename);
Damien Miller62116dc2001-12-24 01:41:47 +1100748 continue;
749 }
750
751 /* save the command for debug messages */
752 entcmd[cur_cmd].cmdstring = xstrdup(cmd);
753
754 /* split the command args */
755 cp = strtok(cmd, WHITESPACE);
756 arg = 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100757 do {
Damien Miller7b10ef42002-01-21 23:44:12 +1100758 entcmd[cur_cmd].args[arg] = xstrdup(cp);
Damien Miller62116dc2001-12-24 01:41:47 +1100759 arg++;
Damien Miller7b10ef42002-01-21 23:44:12 +1100760 } while(arg < NUM_ARGS && (cp = strtok(NULL, WHITESPACE)));
Damien Miller62116dc2001-12-24 01:41:47 +1100761
762 if (strtok(NULL, WHITESPACE))
Damien Miller7b10ef42002-01-21 23:44:12 +1100763 error("ignored extra commands (max %d), %.100s "
764 "line %d", NUM_ARGS, cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100765
766 /* Copy the command path and rate estimate */
767 entcmd[cur_cmd].path = xstrdup(path);
768 entcmd[cur_cmd].rate = est;
769
770 /* Initialise other values */
771 entcmd[cur_cmd].sticky_badness = 1;
772
773 cur_cmd++;
774
Damien Miller7b10ef42002-01-21 23:44:12 +1100775 /*
776 * If we've filled the array, reallocate it twice the size
Damien Millera8e06ce2003-11-21 23:48:55 +1100777 * Do this now because even if this we're on the last
Damien Miller7b10ef42002-01-21 23:44:12 +1100778 * command we need another slot to mark the last entry
779 */
Damien Miller62116dc2001-12-24 01:41:47 +1100780 if (cur_cmd == num_cmds) {
781 num_cmds *= 2;
Damien Miller36812092006-03-26 14:22:47 +1100782 entcmd = xrealloc(entcmd, num_cmds,
Damien Miller7b10ef42002-01-21 23:44:12 +1100783 sizeof(entropy_cmd_t));
Damien Miller62116dc2001-12-24 01:41:47 +1100784 }
785 }
786
787 /* zero the last entry */
Damien Miller7b10ef42002-01-21 23:44:12 +1100788 memset(&entcmd[cur_cmd], '\0', sizeof(entropy_cmd_t));
Damien Miller62116dc2001-12-24 01:41:47 +1100789
790 /* trim to size */
Damien Miller36812092006-03-26 14:22:47 +1100791 entropy_cmds = xrealloc(entcmd, (cur_cmd + 1),
Damien Miller7b10ef42002-01-21 23:44:12 +1100792 sizeof(entropy_cmd_t));
Damien Miller62116dc2001-12-24 01:41:47 +1100793
Damien Miller7b10ef42002-01-21 23:44:12 +1100794 debug("Loaded %d entropy commands from %.100s", cur_cmd,
795 cmdfilename);
Damien Miller62116dc2001-12-24 01:41:47 +1100796
Darren Tuckerf58b29d2006-05-17 22:24:56 +1000797 fclose(f);
Damien Miller7b10ef42002-01-21 23:44:12 +1100798 return cur_cmd < MIN_ENTROPY_SOURCES ? -1 : 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100799}
800
Damien Miller32e48182002-04-14 19:27:12 +1000801void
802usage(void)
803{
804 fprintf(stderr, "Usage: %s [options]\n", __progname);
805 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
806 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller7daf0442004-08-23 21:52:08 +1000807 fprintf(stderr, " -x Force output in hexadecimal (for debugging)\n");
Damien Miller32e48182002-04-14 19:27:12 +1000808 fprintf(stderr, " -X Force output in binary\n");
809 fprintf(stderr, " -b bytes Number of bytes to output (default %d)\n",
810 OUTPUT_SEED_SIZE);
811}
812
Damien Millera8e06ce2003-11-21 23:48:55 +1100813int
Damien Miller62116dc2001-12-24 01:41:47 +1100814main(int argc, char **argv)
815{
Damien Miller32e48182002-04-14 19:27:12 +1000816 unsigned char *buf;
817 int ret, ch, debug_level, output_hex, bytes;
818 extern char *optarg;
819 LogLevel ll;
Damien Miller62116dc2001-12-24 01:41:47 +1100820
Damien Miller59d3d5b2003-08-22 09:34:41 +1000821 __progname = ssh_get_progname(argv[0]);
Damien Miller62116dc2001-12-24 01:41:47 +1100822 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
823
Damien Miller32e48182002-04-14 19:27:12 +1000824 ll = SYSLOG_LEVEL_INFO;
825 debug_level = output_hex = 0;
826 bytes = OUTPUT_SEED_SIZE;
827
828 /* Don't write binary data to a tty, unless we are forced to */
829 if (isatty(STDOUT_FILENO))
830 output_hex = 1;
Damien Miller787b2ec2003-11-21 23:56:47 +1100831
Damien Miller32e48182002-04-14 19:27:12 +1000832 while ((ch = getopt(argc, argv, "vxXhb:")) != -1) {
833 switch (ch) {
834 case 'v':
835 if (debug_level < 3)
836 ll = SYSLOG_LEVEL_DEBUG1 + debug_level++;
837 break;
838 case 'x':
839 output_hex = 1;
840 break;
841 case 'X':
842 output_hex = 0;
843 break;
844 case 'b':
845 if ((bytes = atoi(optarg)) <= 0)
846 fatal("Invalid number of output bytes");
847 break;
848 case 'h':
849 usage();
850 exit(0);
851 default:
852 error("Invalid commandline option");
853 usage();
854 }
855 }
856
857 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
Damien Miller787b2ec2003-11-21 23:56:47 +1100858
Damien Miller7b10ef42002-01-21 23:44:12 +1100859#ifdef USE_SEED_FILES
860 prng_read_seedfile();
861#endif
862
Damien Miller32e48182002-04-14 19:27:12 +1000863 buf = xmalloc(bytes);
864
Damien Miller7b10ef42002-01-21 23:44:12 +1100865 /*
866 * Seed the RNG from wherever we can
867 */
Damien Miller787b2ec2003-11-21 23:56:47 +1100868
Damien Miller7b10ef42002-01-21 23:44:12 +1100869 /* Take whatever is on the stack, but don't credit it */
Damien Miller32e48182002-04-14 19:27:12 +1000870 RAND_add(buf, bytes, 0);
Damien Miller7b10ef42002-01-21 23:44:12 +1100871
Damien Millera8e06ce2003-11-21 23:48:55 +1100872 debug("Seeded RNG with %i bytes from system calls",
Damien Miller7b10ef42002-01-21 23:44:12 +1100873 (int)stir_from_system());
874
Darren Tucker8686ed72004-12-20 12:05:08 +1100875 /* try prngd, fall back to commands if prngd fails or not configured */
876 if (seed_from_prngd(buf, bytes) == 0) {
877 RAND_add(buf, bytes, bytes);
878 } else {
879 /* Read in collection commands */
880 if (prng_read_commands(SSH_PRNG_COMMAND_FILE) == -1)
881 fatal("PRNG initialisation failed -- exiting.");
882 debug("Seeded RNG with %i bytes from programs",
883 (int)stir_from_programs());
884 }
Damien Miller7b10ef42002-01-21 23:44:12 +1100885
886#ifdef USE_SEED_FILES
887 prng_write_seedfile();
888#endif
889
890 /*
891 * Write the seed to stdout
892 */
Damien Miller62116dc2001-12-24 01:41:47 +1100893
894 if (!RAND_status())
895 fatal("Not enough entropy in RNG");
896
Damien Millercafbcc72003-03-17 16:13:53 +1100897 if (RAND_bytes(buf, bytes) <= 0)
898 fatal("Couldn't extract entropy from PRNG");
Damien Miller62116dc2001-12-24 01:41:47 +1100899
Damien Miller32e48182002-04-14 19:27:12 +1000900 if (output_hex) {
901 for(ret = 0; ret < bytes; ret++)
902 printf("%02x", (unsigned char)(buf[ret]));
903 printf("\n");
904 } else
Darren Tucker8661b562003-07-06 15:20:46 +1000905 ret = atomicio(vwrite, STDOUT_FILENO, buf, bytes);
Damien Miller787b2ec2003-11-21 23:56:47 +1100906
Damien Miller32e48182002-04-14 19:27:12 +1000907 memset(buf, '\0', bytes);
908 xfree(buf);
Damien Miller787b2ec2003-11-21 23:56:47 +1100909
Damien Miller32e48182002-04-14 19:27:12 +1000910 return ret == bytes ? 0 : 1;
Damien Miller62116dc2001-12-24 01:41:47 +1100911}
Darren Tucker7b48d252005-02-16 13:20:07 +1100912
913/*
914 * We may attempt to re-seed during mkstemp if we are using the one in the
Darren Tucker7a8619a2005-02-16 13:32:30 +1100915 * compat library (via mkstemp -> _gettemp -> arc4random -> seed_rng) so we
916 * need our own seed_rng(). We must also check that we have enough entropy.
Darren Tucker7b48d252005-02-16 13:20:07 +1100917 */
918void
919seed_rng(void)
920{
921 if (!RAND_status())
922 fatal("Not enough entropy in RNG");
923}