blob: 596622b42e1f8065cf82dfe2f4bd516f46abfb31 [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
27#include <openssl/rand.h>
28#include <openssl/sha.h>
29#include <openssl/crypto.h>
30
31/* SunOS 4.4.4 needs this */
32#ifdef HAVE_FLOATINGPOINT_H
33# include <floatingpoint.h>
34#endif /* HAVE_FLOATINGPOINT_H */
35
36#include "misc.h"
37#include "xmalloc.h"
38#include "atomicio.h"
39#include "pathnames.h"
40#include "log.h"
41
Damien Miller7b10ef42002-01-21 23:44:12 +110042RCSID("$Id: ssh-rand-helper.c,v 1.3 2002/01/21 12:44:12 djm Exp $");
43
44/* Number of bytes we write out */
45#define OUTPUT_SEED_SIZE 48
46
47/* Length of on-disk seedfiles */
48#define SEED_FILE_SIZE 1024
49
50/* Maximum number of command-line arguments to read from file */
51#define NUM_ARGS 10
52
53/* Minimum number of usable commands to be considered sufficient */
54#define MIN_ENTROPY_SOURCES 16
55
56/* Path to on-disk seed file (relative to user's home directory */
57#ifndef SSH_PRNG_SEED_FILE
58# define SSH_PRNG_SEED_FILE _PATH_SSH_USER_DIR"/prng_seed"
59#endif
60
61/* Path to PRNG commands list */
62#ifndef SSH_PRNG_COMMAND_FILE
63# define SSH_PRNG_COMMAND_FILE ETCDIR "/ssh_prng_cmds"
64#endif
65
66
Kevin Steves94435082001-12-25 04:32:58 +000067#ifdef HAVE___PROGNAME
68extern char *__progname;
69#else
70char *__progname;
71#endif
72
Damien Miller62116dc2001-12-24 01:41:47 +110073#ifndef offsetof
74# define offsetof(type, member) ((size_t) &((type *)0)->member)
75#endif
76
Damien Miller62116dc2001-12-24 01:41:47 +110077#define WHITESPACE " \t\n"
78
79#ifndef RUSAGE_SELF
80# define RUSAGE_SELF 0
81#endif
82#ifndef RUSAGE_CHILDREN
83# define RUSAGE_CHILDREN 0
84#endif
85
86#if defined(PRNGD_SOCKET) || defined(PRNGD_PORT)
87# define USE_PRNGD
Damien Miller7b10ef42002-01-21 23:44:12 +110088#else
89# define USE_SEED_FILES
Damien Miller62116dc2001-12-24 01:41:47 +110090#endif
91
Damien Miller7b10ef42002-01-21 23:44:12 +110092typedef struct {
93 /* Proportion of data that is entropy */
94 double rate;
95 /* Counter goes positive if this command times out */
96 unsigned int badness;
97 /* Increases by factor of two each timeout */
98 unsigned int sticky_badness;
99 /* Path to executable */
100 char *path;
101 /* argv to pass to executable */
102 char *args[NUM_ARGS]; /* XXX: arbitrary limit */
103 /* full command string (debug) */
104 char *cmdstring;
105} entropy_cmd_t;
106
107/* slow command timeouts (all in milliseconds) */
108/* static int entropy_timeout_default = ENTROPY_TIMEOUT_MSEC; */
109static int entropy_timeout_current = ENTROPY_TIMEOUT_MSEC;
110
111/* this is initialised from a file, by prng_read_commands() */
112static entropy_cmd_t *entropy_cmds = NULL;
113
114/* Prototypes */
115double stir_from_system(void);
116double stir_from_programs(void);
117double stir_gettimeofday(double entropy_estimate);
118double stir_clock(double entropy_estimate);
119double stir_rusage(int who, double entropy_estimate);
120double hash_command_output(entropy_cmd_t *src, char *hash);
121int get_random_bytes_prngd(unsigned char *buf, int len,
122 unsigned short tcp_port, char *socket_path);
123
124/*
125 * Collect 'len' bytes of entropy into 'buf' from PRNGD/EGD daemon
126 * listening either on 'tcp_port', or via Unix domain socket at *
127 * 'socket_path'.
128 * Either a non-zero tcp_port or a non-null socket_path must be
129 * supplied.
130 * Returns 0 on success, -1 on error
131 */
Damien Miller62116dc2001-12-24 01:41:47 +1100132int
Damien Miller7b10ef42002-01-21 23:44:12 +1100133get_random_bytes_prngd(unsigned char *buf, int len,
134 unsigned short tcp_port, char *socket_path)
Damien Miller62116dc2001-12-24 01:41:47 +1100135{
Damien Miller7b10ef42002-01-21 23:44:12 +1100136 int fd, addr_len, rval, errors;
Damien Miller62116dc2001-12-24 01:41:47 +1100137 char msg[2];
Damien Miller7b10ef42002-01-21 23:44:12 +1100138 struct sockaddr_storage addr;
139 struct sockaddr_in *addr_in = (struct sockaddr_in *)&addr;
140 struct sockaddr_un *addr_un = (struct sockaddr_un *)&addr;
Damien Miller62116dc2001-12-24 01:41:47 +1100141 mysig_t old_sigpipe;
142
Damien Miller7b10ef42002-01-21 23:44:12 +1100143 /* Sanity checks */
144 if (socket_path == NULL && tcp_port == 0)
145 fatal("You must specify a port or a socket");
146 if (socket_path != NULL &&
147 strlen(socket_path) >= sizeof(addr_un->sun_path))
148 fatal("Random pool path is too long");
Damien Miller62116dc2001-12-24 01:41:47 +1100149 if (len > 255)
150 fatal("Too many bytes to read from PRNGD");
151
152 memset(&addr, '\0', sizeof(addr));
153
Damien Miller7b10ef42002-01-21 23:44:12 +1100154 if (tcp_port != 0) {
155 addr_in->sin_family = AF_INET;
156 addr_in->sin_addr.s_addr = htonl(INADDR_LOOPBACK);
157 addr_in->sin_port = htons(tcp_port);
158 addr_len = sizeof(*addr_in);
159 } else {
160 addr_un->sun_family = AF_UNIX;
161 strlcpy(addr_un->sun_path, socket_path,
162 sizeof(addr_un->sun_path));
163 addr_len = offsetof(struct sockaddr_un, sun_path) +
164 strlen(socket_path) + 1;
165 }
Damien Miller62116dc2001-12-24 01:41:47 +1100166
167 old_sigpipe = mysignal(SIGPIPE, SIG_IGN);
168
Damien Miller7b10ef42002-01-21 23:44:12 +1100169 errors = 0;
170 rval = -1;
Damien Miller62116dc2001-12-24 01:41:47 +1100171reopen:
Damien Miller7b10ef42002-01-21 23:44:12 +1100172 fd = socket(addr.ss_family, SOCK_STREAM, 0);
Damien Miller62116dc2001-12-24 01:41:47 +1100173 if (fd == -1) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100174 error("Couldn't create socket: %s", strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100175 goto done;
176 }
Damien Miller62116dc2001-12-24 01:41:47 +1100177
178 if (connect(fd, (struct sockaddr*)&addr, addr_len) == -1) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100179 if (tcp_port != 0) {
180 error("Couldn't connect to PRNGD port %d: %s",
181 tcp_port, strerror(errno));
182 } else {
183 error("Couldn't connect to PRNGD socket \"%s\": %s",
184 addr_un->sun_path, strerror(errno));
185 }
Damien Miller62116dc2001-12-24 01:41:47 +1100186 goto done;
187 }
188
189 /* Send blocking read request to PRNGD */
190 msg[0] = 0x02;
191 msg[1] = len;
192
193 if (atomicio(write, fd, msg, sizeof(msg)) != sizeof(msg)) {
194 if (errno == EPIPE && errors < 10) {
195 close(fd);
196 errors++;
197 goto reopen;
198 }
199 error("Couldn't write to PRNGD socket: %s",
200 strerror(errno));
201 goto done;
202 }
203
204 if (atomicio(read, fd, buf, len) != len) {
205 if (errno == EPIPE && errors < 10) {
206 close(fd);
207 errors++;
208 goto reopen;
209 }
210 error("Couldn't read from PRNGD socket: %s",
211 strerror(errno));
212 goto done;
213 }
214
Damien Miller7b10ef42002-01-21 23:44:12 +1100215 rval = 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100216done:
217 mysignal(SIGPIPE, old_sigpipe);
218 if (fd != -1)
219 close(fd);
Damien Miller7b10ef42002-01-21 23:44:12 +1100220 return rval;
Damien Miller62116dc2001-12-24 01:41:47 +1100221}
222
223double
224stir_gettimeofday(double entropy_estimate)
225{
226 struct timeval tv;
227
228 if (gettimeofday(&tv, NULL) == -1)
229 fatal("Couldn't gettimeofday: %s", strerror(errno));
230
231 RAND_add(&tv, sizeof(tv), entropy_estimate);
232
Damien Miller7b10ef42002-01-21 23:44:12 +1100233 return entropy_estimate;
Damien Miller62116dc2001-12-24 01:41:47 +1100234}
235
236double
237stir_clock(double entropy_estimate)
238{
239#ifdef HAVE_CLOCK
240 clock_t c;
241
242 c = clock();
243 RAND_add(&c, sizeof(c), entropy_estimate);
244
Damien Miller7b10ef42002-01-21 23:44:12 +1100245 return entropy_estimate;
Damien Miller62116dc2001-12-24 01:41:47 +1100246#else /* _HAVE_CLOCK */
Damien Miller7b10ef42002-01-21 23:44:12 +1100247 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100248#endif /* _HAVE_CLOCK */
249}
250
251double
252stir_rusage(int who, double entropy_estimate)
253{
254#ifdef HAVE_GETRUSAGE
255 struct rusage ru;
256
257 if (getrusage(who, &ru) == -1)
Damien Miller7b10ef42002-01-21 23:44:12 +1100258 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100259
260 RAND_add(&ru, sizeof(ru), entropy_estimate);
261
Damien Miller7b10ef42002-01-21 23:44:12 +1100262 return entropy_estimate;
Damien Miller62116dc2001-12-24 01:41:47 +1100263#else /* _HAVE_GETRUSAGE */
Damien Miller7b10ef42002-01-21 23:44:12 +1100264 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100265#endif /* _HAVE_GETRUSAGE */
266}
267
Damien Miller62116dc2001-12-24 01:41:47 +1100268static int
Damien Miller7b10ef42002-01-21 23:44:12 +1100269timeval_diff(struct timeval *t1, struct timeval *t2)
270{
Damien Miller62116dc2001-12-24 01:41:47 +1100271 int secdiff, usecdiff;
272
273 secdiff = t2->tv_sec - t1->tv_sec;
274 usecdiff = (secdiff*1000000) + (t2->tv_usec - t1->tv_usec);
275 return (int)(usecdiff / 1000);
276}
277
278double
Damien Miller7b10ef42002-01-21 23:44:12 +1100279hash_command_output(entropy_cmd_t *src, char *hash)
Damien Miller62116dc2001-12-24 01:41:47 +1100280{
Damien Miller7b10ef42002-01-21 23:44:12 +1100281 char buf[8192];
Damien Miller62116dc2001-12-24 01:41:47 +1100282 fd_set rdset;
Damien Miller7b10ef42002-01-21 23:44:12 +1100283 int bytes_read, cmd_eof, error_abort, msec_elapsed, p[2];
284 int status, total_bytes_read;
285 static int devnull = -1;
Damien Miller62116dc2001-12-24 01:41:47 +1100286 pid_t pid;
Damien Miller62116dc2001-12-24 01:41:47 +1100287 SHA_CTX sha;
Damien Miller7b10ef42002-01-21 23:44:12 +1100288 struct timeval tv_start, tv_current;
Damien Miller62116dc2001-12-24 01:41:47 +1100289
290 debug3("Reading output from \'%s\'", src->cmdstring);
291
292 if (devnull == -1) {
293 devnull = open("/dev/null", O_RDWR);
294 if (devnull == -1)
Damien Miller7b10ef42002-01-21 23:44:12 +1100295 fatal("Couldn't open /dev/null: %s",
296 strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100297 }
298
299 if (pipe(p) == -1)
300 fatal("Couldn't open pipe: %s", strerror(errno));
301
302 (void)gettimeofday(&tv_start, NULL); /* record start time */
303
304 switch (pid = fork()) {
305 case -1: /* Error */
306 close(p[0]);
307 close(p[1]);
308 fatal("Couldn't fork: %s", strerror(errno));
309 /* NOTREACHED */
310 case 0: /* Child */
311 dup2(devnull, STDIN_FILENO);
312 dup2(p[1], STDOUT_FILENO);
313 dup2(p[1], STDERR_FILENO);
314 close(p[0]);
315 close(p[1]);
316 close(devnull);
317
318 execv(src->path, (char**)(src->args));
Damien Miller7b10ef42002-01-21 23:44:12 +1100319
320 debug("(child) Couldn't exec '%s': %s",
321 src->cmdstring, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100322 _exit(-1);
323 default: /* Parent */
324 break;
325 }
326
327 RAND_add(&pid, sizeof(&pid), 0.0);
328
329 close(p[1]);
330
331 /* Hash output from child */
332 SHA1_Init(&sha);
Damien Miller62116dc2001-12-24 01:41:47 +1100333
Damien Miller7b10ef42002-01-21 23:44:12 +1100334 cmd_eof = error_abort = msec_elapsed = total_bytes_read = 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100335 while (!error_abort && !cmd_eof) {
336 int ret;
337 struct timeval tv;
338 int msec_remaining;
339
340 (void) gettimeofday(&tv_current, 0);
Damien Miller7b10ef42002-01-21 23:44:12 +1100341 msec_elapsed = timeval_diff(&tv_start, &tv_current);
Damien Miller62116dc2001-12-24 01:41:47 +1100342 if (msec_elapsed >= entropy_timeout_current) {
343 error_abort=1;
344 continue;
345 }
346 msec_remaining = entropy_timeout_current - msec_elapsed;
347
348 FD_ZERO(&rdset);
349 FD_SET(p[0], &rdset);
Damien Miller7b10ef42002-01-21 23:44:12 +1100350 tv.tv_sec = msec_remaining / 1000;
Damien Miller62116dc2001-12-24 01:41:47 +1100351 tv.tv_usec = (msec_remaining % 1000) * 1000;
352
Damien Miller7b10ef42002-01-21 23:44:12 +1100353 ret = select(p[0] + 1, &rdset, NULL, NULL, &tv);
Damien Miller62116dc2001-12-24 01:41:47 +1100354
355 RAND_add(&tv, sizeof(tv), 0.0);
356
357 switch (ret) {
358 case 0:
359 /* timer expired */
360 error_abort = 1;
361 break;
362 case 1:
363 /* command input */
364 do {
365 bytes_read = read(p[0], buf, sizeof(buf));
366 } while (bytes_read == -1 && errno == EINTR);
367 RAND_add(&bytes_read, sizeof(&bytes_read), 0.0);
368 if (bytes_read == -1) {
369 error_abort = 1;
370 break;
371 } else if (bytes_read) {
372 SHA1_Update(&sha, buf, bytes_read);
373 total_bytes_read += bytes_read;
374 } else {
375 cmd_eof = 1;
376 }
377 break;
378 case -1:
379 default:
380 /* error */
Damien Miller7b10ef42002-01-21 23:44:12 +1100381 debug("Command '%s': select() failed: %s",
382 src->cmdstring, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100383 error_abort = 1;
384 break;
385 }
386 }
387
388 SHA1_Final(hash, &sha);
389
390 close(p[0]);
391
392 debug3("Time elapsed: %d msec", msec_elapsed);
393
394 if (waitpid(pid, &status, 0) == -1) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100395 error("Couldn't wait for child '%s' completion: %s",
396 src->cmdstring, strerror(errno));
397 return 0.0;
Damien Miller62116dc2001-12-24 01:41:47 +1100398 }
399
400 RAND_add(&status, sizeof(&status), 0.0);
401
402 if (error_abort) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100403 /*
404 * Closing p[0] on timeout causes the entropy command to
405 * SIGPIPE. Take whatever output we got, and mark this
406 * command as slow
407 */
Damien Miller62116dc2001-12-24 01:41:47 +1100408 debug2("Command '%s' timed out", src->cmdstring);
409 src->sticky_badness *= 2;
410 src->badness = src->sticky_badness;
Damien Miller7b10ef42002-01-21 23:44:12 +1100411 return total_bytes_read;
Damien Miller62116dc2001-12-24 01:41:47 +1100412 }
413
414 if (WIFEXITED(status)) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100415 if (WEXITSTATUS(status) == 0) {
416 return total_bytes_read;
Damien Miller62116dc2001-12-24 01:41:47 +1100417 } else {
Damien Miller7b10ef42002-01-21 23:44:12 +1100418 debug2("Command '%s' exit status was %d",
419 src->cmdstring, WEXITSTATUS(status));
Damien Miller62116dc2001-12-24 01:41:47 +1100420 src->badness = src->sticky_badness = 128;
Damien Miller7b10ef42002-01-21 23:44:12 +1100421 return 0.0;
Damien Miller62116dc2001-12-24 01:41:47 +1100422 }
423 } else if (WIFSIGNALED(status)) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100424 debug2("Command '%s' returned on uncaught signal %d !",
425 src->cmdstring, status);
Damien Miller62116dc2001-12-24 01:41:47 +1100426 src->badness = src->sticky_badness = 128;
Damien Miller7b10ef42002-01-21 23:44:12 +1100427 return 0.0;
Damien Miller62116dc2001-12-24 01:41:47 +1100428 } else
Damien Miller7b10ef42002-01-21 23:44:12 +1100429 return 0.0;
430}
431
432double
433stir_from_system(void)
434{
435 double total_entropy_estimate;
436 long int i;
437
438 total_entropy_estimate = 0;
439
440 i = getpid();
441 RAND_add(&i, sizeof(i), 0.5);
442 total_entropy_estimate += 0.1;
443
444 i = getppid();
445 RAND_add(&i, sizeof(i), 0.5);
446 total_entropy_estimate += 0.1;
447
448 i = getuid();
449 RAND_add(&i, sizeof(i), 0.0);
450 i = getgid();
451 RAND_add(&i, sizeof(i), 0.0);
452
453 total_entropy_estimate += stir_gettimeofday(1.0);
454 total_entropy_estimate += stir_clock(0.5);
455 total_entropy_estimate += stir_rusage(RUSAGE_SELF, 2.0);
456
457 return total_entropy_estimate;
458}
459
460double
461stir_from_programs(void)
462{
463 int c;
464 double entropy, total_entropy;
465 char hash[SHA_DIGEST_LENGTH];
466
467 total_entropy = 0;
468 for(c = 0; entropy_cmds[c].path != NULL; c++) {
469 if (!entropy_cmds[c].badness) {
470 /* Hash output from command */
471 entropy = hash_command_output(&entropy_cmds[c],
472 hash);
473
474 /* Scale back estimate by command's rate */
475 entropy *= entropy_cmds[c].rate;
476
477 /* Upper bound of entropy is SHA_DIGEST_LENGTH */
478 if (entropy > SHA_DIGEST_LENGTH)
479 entropy = SHA_DIGEST_LENGTH;
480
481 /* Stir it in */
482 RAND_add(hash, sizeof(hash), entropy);
483
484 debug3("Got %0.2f bytes of entropy from '%s'",
485 entropy, entropy_cmds[c].cmdstring);
486
487 total_entropy += entropy;
488
489 /* Execution time should be a bit unpredictable */
490 total_entropy += stir_gettimeofday(0.05);
491 total_entropy += stir_clock(0.05);
492 total_entropy += stir_rusage(RUSAGE_SELF, 0.1);
493 total_entropy += stir_rusage(RUSAGE_CHILDREN, 0.1);
494 } else {
495 debug2("Command '%s' disabled (badness %d)",
496 entropy_cmds[c].cmdstring,
497 entropy_cmds[c].badness);
498
499 if (entropy_cmds[c].badness > 0)
500 entropy_cmds[c].badness--;
501 }
502 }
503
504 return total_entropy;
Damien Miller62116dc2001-12-24 01:41:47 +1100505}
506
507/*
508 * prng seedfile functions
509 */
510int
Damien Miller7b10ef42002-01-21 23:44:12 +1100511prng_check_seedfile(char *filename)
512{
Damien Miller62116dc2001-12-24 01:41:47 +1100513 struct stat st;
514
Damien Miller7b10ef42002-01-21 23:44:12 +1100515 /*
516 * XXX raceable: eg replace seed between this stat and subsequent
517 * open. Not such a problem because we don't really trust the
518 * seed file anyway.
519 * XXX: use secure path checking as elsewhere in OpenSSH
520 */
Damien Miller62116dc2001-12-24 01:41:47 +1100521 if (lstat(filename, &st) == -1) {
522 /* Give up on hard errors */
523 if (errno != ENOENT)
Damien Miller7b10ef42002-01-21 23:44:12 +1100524 debug("WARNING: Couldn't stat random seed file "
525 "\"%.100s\": %s", filename, strerror(errno));
526 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100527 }
528
529 /* regular file? */
530 if (!S_ISREG(st.st_mode))
Damien Miller7b10ef42002-01-21 23:44:12 +1100531 fatal("PRNG seedfile %.100s is not a regular file",
532 filename);
Damien Miller62116dc2001-12-24 01:41:47 +1100533
534 /* mode 0600, owned by root or the current user? */
535 if (((st.st_mode & 0177) != 0) || !(st.st_uid == getuid())) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100536 debug("WARNING: PRNG seedfile %.100s must be mode 0600, "
537 "owned by uid %d", filename, getuid());
538 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100539 }
540
Damien Miller7b10ef42002-01-21 23:44:12 +1100541 return 1;
Damien Miller62116dc2001-12-24 01:41:47 +1100542}
543
544void
Damien Miller7b10ef42002-01-21 23:44:12 +1100545prng_write_seedfile(void)
546{
Damien Miller62116dc2001-12-24 01:41:47 +1100547 int fd;
Damien Miller7b10ef42002-01-21 23:44:12 +1100548 char seed[SEED_FILE_SIZE], filename[MAXPATHLEN];
Damien Miller62116dc2001-12-24 01:41:47 +1100549 struct passwd *pw;
550
551 pw = getpwuid(getuid());
552 if (pw == NULL)
Damien Miller7b10ef42002-01-21 23:44:12 +1100553 fatal("Couldn't get password entry for current user "
554 "(%i): %s", getuid(), strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100555
556 /* Try to ensure that the parent directory is there */
557 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
Damien Miller7b10ef42002-01-21 23:44:12 +1100558 _PATH_SSH_USER_DIR);
Damien Miller62116dc2001-12-24 01:41:47 +1100559 mkdir(filename, 0700);
560
561 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
Damien Miller7b10ef42002-01-21 23:44:12 +1100562 SSH_PRNG_SEED_FILE);
Damien Miller62116dc2001-12-24 01:41:47 +1100563
564 debug("writing PRNG seed to file %.100s", filename);
565
566 RAND_bytes(seed, sizeof(seed));
567
568 /* Don't care if the seed doesn't exist */
569 prng_check_seedfile(filename);
570
571 if ((fd = open(filename, O_WRONLY|O_TRUNC|O_CREAT, 0600)) == -1) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100572 debug("WARNING: couldn't access PRNG seedfile %.100s "
573 "(%.100s)", filename, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100574 } else {
Damien Miller7b10ef42002-01-21 23:44:12 +1100575 if (atomicio(write, fd, &seed, sizeof(seed)) < sizeof(seed))
576 fatal("problem writing PRNG seedfile %.100s "
577 "(%.100s)", filename, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100578 close(fd);
579 }
580}
581
582void
Damien Miller7b10ef42002-01-21 23:44:12 +1100583prng_read_seedfile(void)
584{
Damien Miller62116dc2001-12-24 01:41:47 +1100585 int fd;
Damien Miller7b10ef42002-01-21 23:44:12 +1100586 char seed[SEED_FILE_SIZE], filename[MAXPATHLEN];
Damien Miller62116dc2001-12-24 01:41:47 +1100587 struct passwd *pw;
588
589 pw = getpwuid(getuid());
590 if (pw == NULL)
Damien Miller7b10ef42002-01-21 23:44:12 +1100591 fatal("Couldn't get password entry for current user "
592 "(%i): %s", getuid(), strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100593
594 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
595 SSH_PRNG_SEED_FILE);
596
597 debug("loading PRNG seed from file %.100s", filename);
598
599 if (!prng_check_seedfile(filename)) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100600 verbose("Random seed file not found or invalid, ignoring.");
Damien Miller62116dc2001-12-24 01:41:47 +1100601 return;
602 }
603
604 /* open the file and read in the seed */
605 fd = open(filename, O_RDONLY);
606 if (fd == -1)
Damien Miller7b10ef42002-01-21 23:44:12 +1100607 fatal("could not open PRNG seedfile %.100s (%.100s)",
608 filename, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100609
Damien Miller7b10ef42002-01-21 23:44:12 +1100610 if (atomicio(read, fd, &seed, sizeof(seed)) < sizeof(seed)) {
611 verbose("invalid or short read from PRNG seedfile "
612 "%.100s - ignoring", filename);
Damien Miller62116dc2001-12-24 01:41:47 +1100613 memset(seed, '\0', sizeof(seed));
614 }
615 close(fd);
616
617 /* stir in the seed, with estimated entropy zero */
618 RAND_add(&seed, sizeof(seed), 0.0);
619}
620
621
622/*
623 * entropy command initialisation functions
624 */
625int
626prng_read_commands(char *cmdfilename)
627{
Damien Miller7b10ef42002-01-21 23:44:12 +1100628 char cmd[SEED_FILE_SIZE], *cp, line[1024], path[SEED_FILE_SIZE];
Damien Miller62116dc2001-12-24 01:41:47 +1100629 double est;
Damien Miller7b10ef42002-01-21 23:44:12 +1100630 entropy_cmd_t *entcmd;
631 FILE *f;
632 int cur_cmd, linenum, num_cmds, arg;
Damien Miller62116dc2001-12-24 01:41:47 +1100633
Damien Miller7b10ef42002-01-21 23:44:12 +1100634 if ((f = fopen(cmdfilename, "r")) == NULL) {
Damien Miller62116dc2001-12-24 01:41:47 +1100635 fatal("couldn't read entropy commands file %.100s: %.100s",
636 cmdfilename, strerror(errno));
637 }
638
Damien Miller7b10ef42002-01-21 23:44:12 +1100639 num_cmds = 64;
640 entcmd = xmalloc(num_cmds * sizeof(entropy_cmd_t));
641 memset(entcmd, '\0', num_cmds * sizeof(entropy_cmd_t));
Damien Miller62116dc2001-12-24 01:41:47 +1100642
643 /* Read in file */
Damien Miller7b10ef42002-01-21 23:44:12 +1100644 cur_cmd = linenum = 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100645 while (fgets(line, sizeof(line), f)) {
Damien Miller62116dc2001-12-24 01:41:47 +1100646 linenum++;
647
Damien Miller7b10ef42002-01-21 23:44:12 +1100648 /* Skip leading whitespace, blank lines and comments */
Damien Miller62116dc2001-12-24 01:41:47 +1100649 cp = line + strspn(line, WHITESPACE);
650 if ((*cp == 0) || (*cp == '#'))
651 continue; /* done with this line */
652
Damien Miller7b10ef42002-01-21 23:44:12 +1100653 /*
654 * The first non-whitespace char should be a double quote
655 * delimiting the commandline
656 */
Damien Miller62116dc2001-12-24 01:41:47 +1100657 if (*cp != '"') {
Damien Miller7b10ef42002-01-21 23:44:12 +1100658 error("bad entropy command, %.100s line %d",
659 cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100660 continue;
661 }
662
Damien Miller7b10ef42002-01-21 23:44:12 +1100663 /*
664 * First token, command args (incl. argv[0]) in double
665 * quotes
666 */
Damien Miller62116dc2001-12-24 01:41:47 +1100667 cp = strtok(cp, "\"");
668 if (cp == NULL) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100669 error("missing or bad command string, %.100s "
670 "line %d -- ignored", cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100671 continue;
672 }
673 strlcpy(cmd, cp, sizeof(cmd));
674
Damien Miller7b10ef42002-01-21 23:44:12 +1100675 /* Second token, full command path */
Damien Miller62116dc2001-12-24 01:41:47 +1100676 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100677 error("missing command path, %.100s "
678 "line %d -- ignored", cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100679 continue;
680 }
681
Damien Miller7b10ef42002-01-21 23:44:12 +1100682 /* Did configure mark this as dead? */
Damien Miller62116dc2001-12-24 01:41:47 +1100683 if (strncmp("undef", cp, 5) == 0)
684 continue;
685
686 strlcpy(path, cp, sizeof(path));
687
Damien Miller7b10ef42002-01-21 23:44:12 +1100688 /* Third token, entropy rate estimate for this command */
Damien Miller62116dc2001-12-24 01:41:47 +1100689 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100690 error("missing entropy estimate, %.100s "
691 "line %d -- ignored", cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100692 continue;
693 }
Damien Miller7b10ef42002-01-21 23:44:12 +1100694 est = strtod(cp, NULL);
Damien Miller62116dc2001-12-24 01:41:47 +1100695
696 /* end of line */
697 if ((cp = strtok(NULL, WHITESPACE)) != NULL) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100698 error("garbage at end of line %d in %.100s "
699 "-- ignored", linenum, cmdfilename);
Damien Miller62116dc2001-12-24 01:41:47 +1100700 continue;
701 }
702
703 /* save the command for debug messages */
704 entcmd[cur_cmd].cmdstring = xstrdup(cmd);
705
706 /* split the command args */
707 cp = strtok(cmd, WHITESPACE);
708 arg = 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100709 do {
Damien Miller7b10ef42002-01-21 23:44:12 +1100710 entcmd[cur_cmd].args[arg] = xstrdup(cp);
Damien Miller62116dc2001-12-24 01:41:47 +1100711 arg++;
Damien Miller7b10ef42002-01-21 23:44:12 +1100712 } while(arg < NUM_ARGS && (cp = strtok(NULL, WHITESPACE)));
Damien Miller62116dc2001-12-24 01:41:47 +1100713
714 if (strtok(NULL, WHITESPACE))
Damien Miller7b10ef42002-01-21 23:44:12 +1100715 error("ignored extra commands (max %d), %.100s "
716 "line %d", NUM_ARGS, cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100717
718 /* Copy the command path and rate estimate */
719 entcmd[cur_cmd].path = xstrdup(path);
720 entcmd[cur_cmd].rate = est;
721
722 /* Initialise other values */
723 entcmd[cur_cmd].sticky_badness = 1;
724
725 cur_cmd++;
726
Damien Miller7b10ef42002-01-21 23:44:12 +1100727 /*
728 * If we've filled the array, reallocate it twice the size
729 * Do this now because even if this we're on the last
730 * command we need another slot to mark the last entry
731 */
Damien Miller62116dc2001-12-24 01:41:47 +1100732 if (cur_cmd == num_cmds) {
733 num_cmds *= 2;
Damien Miller7b10ef42002-01-21 23:44:12 +1100734 entcmd = xrealloc(entcmd, num_cmds *
735 sizeof(entropy_cmd_t));
Damien Miller62116dc2001-12-24 01:41:47 +1100736 }
737 }
738
739 /* zero the last entry */
Damien Miller7b10ef42002-01-21 23:44:12 +1100740 memset(&entcmd[cur_cmd], '\0', sizeof(entropy_cmd_t));
Damien Miller62116dc2001-12-24 01:41:47 +1100741
742 /* trim to size */
Damien Miller7b10ef42002-01-21 23:44:12 +1100743 entropy_cmds = xrealloc(entcmd, (cur_cmd + 1) *
744 sizeof(entropy_cmd_t));
Damien Miller62116dc2001-12-24 01:41:47 +1100745
Damien Miller7b10ef42002-01-21 23:44:12 +1100746 debug("Loaded %d entropy commands from %.100s", cur_cmd,
747 cmdfilename);
Damien Miller62116dc2001-12-24 01:41:47 +1100748
Damien Miller7b10ef42002-01-21 23:44:12 +1100749 return cur_cmd < MIN_ENTROPY_SOURCES ? -1 : 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100750}
751
Damien Miller62116dc2001-12-24 01:41:47 +1100752int
753main(int argc, char **argv)
754{
Damien Miller7b10ef42002-01-21 23:44:12 +1100755 unsigned char buf[OUTPUT_SEED_SIZE];
Damien Miller62116dc2001-12-24 01:41:47 +1100756 int ret;
757
Kevin Steves94435082001-12-25 04:32:58 +0000758 __progname = get_progname(argv[0]);
Damien Miller62116dc2001-12-24 01:41:47 +1100759 /* XXX: need some debugging mode */
760 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
761
Damien Miller7b10ef42002-01-21 23:44:12 +1100762#ifdef USE_SEED_FILES
763 prng_read_seedfile();
764#endif
765
766 /*
767 * Seed the RNG from wherever we can
768 */
769
770 /* Take whatever is on the stack, but don't credit it */
771 RAND_add(buf, sizeof(buf), 0);
772
773 debug("Seeded RNG with %i bytes from system calls",
774 (int)stir_from_system());
775
776#ifdef PRNGD_PORT
777 if (get_random_bytes_prngd(buf, sizeof(buf), PRNGD_PORT,
778 NULL) == -1)
779 fatal("Entropy collection failed");
780 RAND_add(buf, sizeof(buf), sizeof(buf));
781#elif PRNGD_SOCKET
782 if (get_random_bytes_prngd(buf, sizeof(buf), PRNGD_SOCKET,
783 NULL) == -1)
784 fatal("Entropy collection failed");
785 RAND_add(buf, sizeof(buf), sizeof(buf));
786#else
787 /* Read in collection commands */
788 if (prng_read_commands(SSH_PRNG_COMMAND_FILE) == -1)
789 fatal("PRNG initialisation failed -- exiting.");
790 debug("Seeded RNG with %i bytes from programs",
791 (int)stir_from_programs());
792#endif
793
794#ifdef USE_SEED_FILES
795 prng_write_seedfile();
796#endif
797
798 /*
799 * Write the seed to stdout
800 */
Damien Miller62116dc2001-12-24 01:41:47 +1100801
802 if (!RAND_status())
803 fatal("Not enough entropy in RNG");
804
805 RAND_bytes(buf, sizeof(buf));
806
807 ret = atomicio(write, STDOUT_FILENO, buf, sizeof(buf));
808
809 memset(buf, '\0', sizeof(buf));
810
811 return ret == sizeof(buf) ? 0 : 1;
812}
813