blob: e6c52b5462df512c25eaee831430a1f6bc738b99 [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
Kevin Steves4bdb5472002-07-28 20:42:23 +000042RCSID("$Id: ssh-rand-helper.c,v 1.8 2002/07/28 20:42:24 stevesk Exp $");
Damien Miller7b10ef42002-01-21 23:44:12 +110043
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
Damien Miller05eda432002-02-10 18:32:28 +110063# define SSH_PRNG_COMMAND_FILE SSHDIR "/ssh_prng_cmds"
Damien Miller7b10ef42002-01-21 23:44:12 +110064#endif
65
Kevin Steves94435082001-12-25 04:32:58 +000066#ifdef HAVE___PROGNAME
67extern char *__progname;
68#else
69char *__progname;
70#endif
71
Damien Miller62116dc2001-12-24 01:41:47 +110072#ifndef offsetof
73# define offsetof(type, member) ((size_t) &((type *)0)->member)
74#endif
75
Damien Miller62116dc2001-12-24 01:41:47 +110076#define WHITESPACE " \t\n"
77
78#ifndef RUSAGE_SELF
79# define RUSAGE_SELF 0
80#endif
81#ifndef RUSAGE_CHILDREN
82# define RUSAGE_CHILDREN 0
83#endif
84
Damien Millerc46cc542002-01-22 21:58:27 +110085#if !defined(PRNGD_SOCKET) && !defined(PRNGD_PORT)
Damien Miller7b10ef42002-01-21 23:44:12 +110086# define USE_SEED_FILES
Damien Miller62116dc2001-12-24 01:41:47 +110087#endif
88
Damien Miller7b10ef42002-01-21 23:44:12 +110089typedef struct {
90 /* Proportion of data that is entropy */
91 double rate;
92 /* Counter goes positive if this command times out */
93 unsigned int badness;
94 /* Increases by factor of two each timeout */
95 unsigned int sticky_badness;
96 /* Path to executable */
97 char *path;
98 /* argv to pass to executable */
99 char *args[NUM_ARGS]; /* XXX: arbitrary limit */
100 /* full command string (debug) */
101 char *cmdstring;
102} entropy_cmd_t;
103
104/* slow command timeouts (all in milliseconds) */
105/* static int entropy_timeout_default = ENTROPY_TIMEOUT_MSEC; */
106static int entropy_timeout_current = ENTROPY_TIMEOUT_MSEC;
107
108/* this is initialised from a file, by prng_read_commands() */
109static entropy_cmd_t *entropy_cmds = NULL;
110
111/* Prototypes */
112double stir_from_system(void);
113double stir_from_programs(void);
114double stir_gettimeofday(double entropy_estimate);
115double stir_clock(double entropy_estimate);
116double stir_rusage(int who, double entropy_estimate);
Kevin Steves4bdb5472002-07-28 20:42:23 +0000117double hash_command_output(entropy_cmd_t *src, unsigned char *hash);
Damien Miller7b10ef42002-01-21 23:44:12 +1100118int get_random_bytes_prngd(unsigned char *buf, int len,
119 unsigned short tcp_port, char *socket_path);
120
121/*
122 * Collect 'len' bytes of entropy into 'buf' from PRNGD/EGD daemon
123 * listening either on 'tcp_port', or via Unix domain socket at *
124 * 'socket_path'.
125 * Either a non-zero tcp_port or a non-null socket_path must be
126 * supplied.
127 * Returns 0 on success, -1 on error
128 */
Damien Miller62116dc2001-12-24 01:41:47 +1100129int
Damien Miller7b10ef42002-01-21 23:44:12 +1100130get_random_bytes_prngd(unsigned char *buf, int len,
131 unsigned short tcp_port, char *socket_path)
Damien Miller62116dc2001-12-24 01:41:47 +1100132{
Damien Miller7b10ef42002-01-21 23:44:12 +1100133 int fd, addr_len, rval, errors;
Damien Miller62116dc2001-12-24 01:41:47 +1100134 char msg[2];
Damien Miller7b10ef42002-01-21 23:44:12 +1100135 struct sockaddr_storage addr;
136 struct sockaddr_in *addr_in = (struct sockaddr_in *)&addr;
137 struct sockaddr_un *addr_un = (struct sockaddr_un *)&addr;
Damien Miller62116dc2001-12-24 01:41:47 +1100138 mysig_t old_sigpipe;
139
Damien Miller7b10ef42002-01-21 23:44:12 +1100140 /* Sanity checks */
141 if (socket_path == NULL && tcp_port == 0)
142 fatal("You must specify a port or a socket");
143 if (socket_path != NULL &&
144 strlen(socket_path) >= sizeof(addr_un->sun_path))
145 fatal("Random pool path is too long");
Damien Miller62116dc2001-12-24 01:41:47 +1100146 if (len > 255)
147 fatal("Too many bytes to read from PRNGD");
148
149 memset(&addr, '\0', sizeof(addr));
150
Damien Miller7b10ef42002-01-21 23:44:12 +1100151 if (tcp_port != 0) {
152 addr_in->sin_family = AF_INET;
153 addr_in->sin_addr.s_addr = htonl(INADDR_LOOPBACK);
154 addr_in->sin_port = htons(tcp_port);
155 addr_len = sizeof(*addr_in);
156 } else {
157 addr_un->sun_family = AF_UNIX;
158 strlcpy(addr_un->sun_path, socket_path,
159 sizeof(addr_un->sun_path));
160 addr_len = offsetof(struct sockaddr_un, sun_path) +
161 strlen(socket_path) + 1;
162 }
Damien Miller62116dc2001-12-24 01:41:47 +1100163
164 old_sigpipe = mysignal(SIGPIPE, SIG_IGN);
165
Damien Miller7b10ef42002-01-21 23:44:12 +1100166 errors = 0;
167 rval = -1;
Damien Miller62116dc2001-12-24 01:41:47 +1100168reopen:
Damien Miller7b10ef42002-01-21 23:44:12 +1100169 fd = socket(addr.ss_family, SOCK_STREAM, 0);
Damien Miller62116dc2001-12-24 01:41:47 +1100170 if (fd == -1) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100171 error("Couldn't create socket: %s", strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100172 goto done;
173 }
Damien Miller62116dc2001-12-24 01:41:47 +1100174
175 if (connect(fd, (struct sockaddr*)&addr, addr_len) == -1) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100176 if (tcp_port != 0) {
177 error("Couldn't connect to PRNGD port %d: %s",
178 tcp_port, strerror(errno));
179 } else {
180 error("Couldn't connect to PRNGD socket \"%s\": %s",
181 addr_un->sun_path, strerror(errno));
182 }
Damien Miller62116dc2001-12-24 01:41:47 +1100183 goto done;
184 }
185
186 /* Send blocking read request to PRNGD */
187 msg[0] = 0x02;
188 msg[1] = len;
189
190 if (atomicio(write, fd, msg, sizeof(msg)) != sizeof(msg)) {
191 if (errno == EPIPE && errors < 10) {
192 close(fd);
193 errors++;
194 goto reopen;
195 }
196 error("Couldn't write to PRNGD socket: %s",
197 strerror(errno));
198 goto done;
199 }
200
201 if (atomicio(read, fd, buf, len) != len) {
202 if (errno == EPIPE && errors < 10) {
203 close(fd);
204 errors++;
205 goto reopen;
206 }
207 error("Couldn't read from PRNGD socket: %s",
208 strerror(errno));
209 goto done;
210 }
211
Damien Miller7b10ef42002-01-21 23:44:12 +1100212 rval = 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100213done:
214 mysignal(SIGPIPE, old_sigpipe);
215 if (fd != -1)
216 close(fd);
Damien Miller7b10ef42002-01-21 23:44:12 +1100217 return rval;
Damien Miller62116dc2001-12-24 01:41:47 +1100218}
219
220double
221stir_gettimeofday(double entropy_estimate)
222{
223 struct timeval tv;
224
225 if (gettimeofday(&tv, NULL) == -1)
226 fatal("Couldn't gettimeofday: %s", strerror(errno));
227
228 RAND_add(&tv, sizeof(tv), entropy_estimate);
229
Damien Miller7b10ef42002-01-21 23:44:12 +1100230 return entropy_estimate;
Damien Miller62116dc2001-12-24 01:41:47 +1100231}
232
233double
234stir_clock(double entropy_estimate)
235{
236#ifdef HAVE_CLOCK
237 clock_t c;
238
239 c = clock();
240 RAND_add(&c, sizeof(c), entropy_estimate);
241
Damien Miller7b10ef42002-01-21 23:44:12 +1100242 return entropy_estimate;
Damien Miller62116dc2001-12-24 01:41:47 +1100243#else /* _HAVE_CLOCK */
Damien Miller7b10ef42002-01-21 23:44:12 +1100244 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100245#endif /* _HAVE_CLOCK */
246}
247
248double
249stir_rusage(int who, double entropy_estimate)
250{
251#ifdef HAVE_GETRUSAGE
252 struct rusage ru;
253
254 if (getrusage(who, &ru) == -1)
Damien Miller7b10ef42002-01-21 23:44:12 +1100255 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100256
257 RAND_add(&ru, sizeof(ru), entropy_estimate);
258
Damien Miller7b10ef42002-01-21 23:44:12 +1100259 return entropy_estimate;
Damien Miller62116dc2001-12-24 01:41:47 +1100260#else /* _HAVE_GETRUSAGE */
Damien Miller7b10ef42002-01-21 23:44:12 +1100261 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100262#endif /* _HAVE_GETRUSAGE */
263}
264
Damien Miller62116dc2001-12-24 01:41:47 +1100265static int
Damien Miller7b10ef42002-01-21 23:44:12 +1100266timeval_diff(struct timeval *t1, struct timeval *t2)
267{
Damien Miller62116dc2001-12-24 01:41:47 +1100268 int secdiff, usecdiff;
269
270 secdiff = t2->tv_sec - t1->tv_sec;
271 usecdiff = (secdiff*1000000) + (t2->tv_usec - t1->tv_usec);
272 return (int)(usecdiff / 1000);
273}
274
275double
Kevin Steves4bdb5472002-07-28 20:42:23 +0000276hash_command_output(entropy_cmd_t *src, unsigned char *hash)
Damien Miller62116dc2001-12-24 01:41:47 +1100277{
Damien Miller7b10ef42002-01-21 23:44:12 +1100278 char buf[8192];
Damien Miller62116dc2001-12-24 01:41:47 +1100279 fd_set rdset;
Damien Miller7b10ef42002-01-21 23:44:12 +1100280 int bytes_read, cmd_eof, error_abort, msec_elapsed, p[2];
281 int status, total_bytes_read;
282 static int devnull = -1;
Damien Miller62116dc2001-12-24 01:41:47 +1100283 pid_t pid;
Damien Miller62116dc2001-12-24 01:41:47 +1100284 SHA_CTX sha;
Damien Miller7b10ef42002-01-21 23:44:12 +1100285 struct timeval tv_start, tv_current;
Damien Miller62116dc2001-12-24 01:41:47 +1100286
287 debug3("Reading output from \'%s\'", src->cmdstring);
288
289 if (devnull == -1) {
290 devnull = open("/dev/null", O_RDWR);
291 if (devnull == -1)
Damien Miller7b10ef42002-01-21 23:44:12 +1100292 fatal("Couldn't open /dev/null: %s",
293 strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100294 }
295
296 if (pipe(p) == -1)
297 fatal("Couldn't open pipe: %s", strerror(errno));
298
299 (void)gettimeofday(&tv_start, NULL); /* record start time */
300
301 switch (pid = fork()) {
302 case -1: /* Error */
303 close(p[0]);
304 close(p[1]);
305 fatal("Couldn't fork: %s", strerror(errno));
306 /* NOTREACHED */
307 case 0: /* Child */
308 dup2(devnull, STDIN_FILENO);
309 dup2(p[1], STDOUT_FILENO);
310 dup2(p[1], STDERR_FILENO);
311 close(p[0]);
312 close(p[1]);
313 close(devnull);
314
315 execv(src->path, (char**)(src->args));
Damien Miller7b10ef42002-01-21 23:44:12 +1100316
317 debug("(child) Couldn't exec '%s': %s",
318 src->cmdstring, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100319 _exit(-1);
320 default: /* Parent */
321 break;
322 }
323
324 RAND_add(&pid, sizeof(&pid), 0.0);
325
326 close(p[1]);
327
328 /* Hash output from child */
329 SHA1_Init(&sha);
Damien Miller62116dc2001-12-24 01:41:47 +1100330
Damien Miller7b10ef42002-01-21 23:44:12 +1100331 cmd_eof = error_abort = msec_elapsed = total_bytes_read = 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100332 while (!error_abort && !cmd_eof) {
333 int ret;
334 struct timeval tv;
335 int msec_remaining;
336
337 (void) gettimeofday(&tv_current, 0);
Damien Miller7b10ef42002-01-21 23:44:12 +1100338 msec_elapsed = timeval_diff(&tv_start, &tv_current);
Damien Miller62116dc2001-12-24 01:41:47 +1100339 if (msec_elapsed >= entropy_timeout_current) {
340 error_abort=1;
341 continue;
342 }
343 msec_remaining = entropy_timeout_current - msec_elapsed;
344
345 FD_ZERO(&rdset);
346 FD_SET(p[0], &rdset);
Damien Miller7b10ef42002-01-21 23:44:12 +1100347 tv.tv_sec = msec_remaining / 1000;
Damien Miller62116dc2001-12-24 01:41:47 +1100348 tv.tv_usec = (msec_remaining % 1000) * 1000;
349
Damien Miller7b10ef42002-01-21 23:44:12 +1100350 ret = select(p[0] + 1, &rdset, NULL, NULL, &tv);
Damien Miller62116dc2001-12-24 01:41:47 +1100351
352 RAND_add(&tv, sizeof(tv), 0.0);
353
354 switch (ret) {
355 case 0:
356 /* timer expired */
357 error_abort = 1;
358 break;
359 case 1:
360 /* command input */
361 do {
362 bytes_read = read(p[0], buf, sizeof(buf));
363 } while (bytes_read == -1 && errno == EINTR);
364 RAND_add(&bytes_read, sizeof(&bytes_read), 0.0);
365 if (bytes_read == -1) {
366 error_abort = 1;
367 break;
368 } else if (bytes_read) {
369 SHA1_Update(&sha, buf, bytes_read);
370 total_bytes_read += bytes_read;
371 } else {
372 cmd_eof = 1;
373 }
374 break;
375 case -1:
376 default:
377 /* error */
Damien Miller7b10ef42002-01-21 23:44:12 +1100378 debug("Command '%s': select() failed: %s",
379 src->cmdstring, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100380 error_abort = 1;
381 break;
382 }
383 }
384
385 SHA1_Final(hash, &sha);
386
387 close(p[0]);
388
389 debug3("Time elapsed: %d msec", msec_elapsed);
390
391 if (waitpid(pid, &status, 0) == -1) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100392 error("Couldn't wait for child '%s' completion: %s",
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000393 src->cmdstring, strerror(errno));
Damien Miller7b10ef42002-01-21 23:44:12 +1100394 return 0.0;
Damien Miller62116dc2001-12-24 01:41:47 +1100395 }
396
397 RAND_add(&status, sizeof(&status), 0.0);
398
399 if (error_abort) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100400 /*
401 * Closing p[0] on timeout causes the entropy command to
402 * SIGPIPE. Take whatever output we got, and mark this
403 * command as slow
404 */
Damien Miller62116dc2001-12-24 01:41:47 +1100405 debug2("Command '%s' timed out", src->cmdstring);
406 src->sticky_badness *= 2;
407 src->badness = src->sticky_badness;
Damien Miller7b10ef42002-01-21 23:44:12 +1100408 return total_bytes_read;
Damien Miller62116dc2001-12-24 01:41:47 +1100409 }
410
411 if (WIFEXITED(status)) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100412 if (WEXITSTATUS(status) == 0) {
413 return total_bytes_read;
Damien Miller62116dc2001-12-24 01:41:47 +1100414 } else {
Damien Miller7b10ef42002-01-21 23:44:12 +1100415 debug2("Command '%s' exit status was %d",
416 src->cmdstring, WEXITSTATUS(status));
Damien Miller62116dc2001-12-24 01:41:47 +1100417 src->badness = src->sticky_badness = 128;
Damien Miller7b10ef42002-01-21 23:44:12 +1100418 return 0.0;
Damien Miller62116dc2001-12-24 01:41:47 +1100419 }
420 } else if (WIFSIGNALED(status)) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100421 debug2("Command '%s' returned on uncaught signal %d !",
422 src->cmdstring, status);
Damien Miller62116dc2001-12-24 01:41:47 +1100423 src->badness = src->sticky_badness = 128;
Damien Miller7b10ef42002-01-21 23:44:12 +1100424 return 0.0;
Damien Miller62116dc2001-12-24 01:41:47 +1100425 } else
Damien Miller7b10ef42002-01-21 23:44:12 +1100426 return 0.0;
427}
428
429double
430stir_from_system(void)
431{
432 double total_entropy_estimate;
433 long int i;
434
435 total_entropy_estimate = 0;
436
437 i = getpid();
438 RAND_add(&i, sizeof(i), 0.5);
439 total_entropy_estimate += 0.1;
440
441 i = getppid();
442 RAND_add(&i, sizeof(i), 0.5);
443 total_entropy_estimate += 0.1;
444
445 i = getuid();
446 RAND_add(&i, sizeof(i), 0.0);
447 i = getgid();
448 RAND_add(&i, sizeof(i), 0.0);
449
450 total_entropy_estimate += stir_gettimeofday(1.0);
451 total_entropy_estimate += stir_clock(0.5);
452 total_entropy_estimate += stir_rusage(RUSAGE_SELF, 2.0);
453
454 return total_entropy_estimate;
455}
456
457double
458stir_from_programs(void)
459{
460 int c;
461 double entropy, total_entropy;
Kevin Steves4bdb5472002-07-28 20:42:23 +0000462 unsigned char hash[SHA_DIGEST_LENGTH];
Damien Miller7b10ef42002-01-21 23:44:12 +1100463
464 total_entropy = 0;
465 for(c = 0; entropy_cmds[c].path != NULL; c++) {
466 if (!entropy_cmds[c].badness) {
467 /* Hash output from command */
468 entropy = hash_command_output(&entropy_cmds[c],
469 hash);
470
471 /* Scale back estimate by command's rate */
472 entropy *= entropy_cmds[c].rate;
473
474 /* Upper bound of entropy is SHA_DIGEST_LENGTH */
475 if (entropy > SHA_DIGEST_LENGTH)
476 entropy = SHA_DIGEST_LENGTH;
477
478 /* Stir it in */
479 RAND_add(hash, sizeof(hash), entropy);
480
481 debug3("Got %0.2f bytes of entropy from '%s'",
482 entropy, entropy_cmds[c].cmdstring);
483
484 total_entropy += entropy;
485
486 /* Execution time should be a bit unpredictable */
487 total_entropy += stir_gettimeofday(0.05);
488 total_entropy += stir_clock(0.05);
489 total_entropy += stir_rusage(RUSAGE_SELF, 0.1);
490 total_entropy += stir_rusage(RUSAGE_CHILDREN, 0.1);
491 } else {
492 debug2("Command '%s' disabled (badness %d)",
493 entropy_cmds[c].cmdstring,
494 entropy_cmds[c].badness);
495
496 if (entropy_cmds[c].badness > 0)
497 entropy_cmds[c].badness--;
498 }
499 }
500
501 return total_entropy;
Damien Miller62116dc2001-12-24 01:41:47 +1100502}
503
504/*
505 * prng seedfile functions
506 */
507int
Damien Miller7b10ef42002-01-21 23:44:12 +1100508prng_check_seedfile(char *filename)
509{
Damien Miller62116dc2001-12-24 01:41:47 +1100510 struct stat st;
511
Damien Miller7b10ef42002-01-21 23:44:12 +1100512 /*
513 * XXX raceable: eg replace seed between this stat and subsequent
514 * open. Not such a problem because we don't really trust the
515 * seed file anyway.
516 * XXX: use secure path checking as elsewhere in OpenSSH
517 */
Damien Miller62116dc2001-12-24 01:41:47 +1100518 if (lstat(filename, &st) == -1) {
519 /* Give up on hard errors */
520 if (errno != ENOENT)
Damien Miller7b10ef42002-01-21 23:44:12 +1100521 debug("WARNING: Couldn't stat random seed file "
522 "\"%.100s\": %s", filename, strerror(errno));
523 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100524 }
525
526 /* regular file? */
527 if (!S_ISREG(st.st_mode))
Damien Miller7b10ef42002-01-21 23:44:12 +1100528 fatal("PRNG seedfile %.100s is not a regular file",
529 filename);
Damien Miller62116dc2001-12-24 01:41:47 +1100530
531 /* mode 0600, owned by root or the current user? */
532 if (((st.st_mode & 0177) != 0) || !(st.st_uid == getuid())) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100533 debug("WARNING: PRNG seedfile %.100s must be mode 0600, "
534 "owned by uid %d", filename, getuid());
535 return 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100536 }
537
Damien Miller7b10ef42002-01-21 23:44:12 +1100538 return 1;
Damien Miller62116dc2001-12-24 01:41:47 +1100539}
540
541void
Damien Miller7b10ef42002-01-21 23:44:12 +1100542prng_write_seedfile(void)
543{
Damien Miller62116dc2001-12-24 01:41:47 +1100544 int fd;
Kevin Steves4bdb5472002-07-28 20:42:23 +0000545 unsigned char seed[SEED_FILE_SIZE];
546 char filename[MAXPATHLEN];
Damien Miller62116dc2001-12-24 01:41:47 +1100547 struct passwd *pw;
548
549 pw = getpwuid(getuid());
550 if (pw == NULL)
Damien Miller7b10ef42002-01-21 23:44:12 +1100551 fatal("Couldn't get password entry for current user "
552 "(%i): %s", getuid(), strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100553
554 /* Try to ensure that the parent directory is there */
555 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
Damien Miller7b10ef42002-01-21 23:44:12 +1100556 _PATH_SSH_USER_DIR);
Damien Miller62116dc2001-12-24 01:41:47 +1100557 mkdir(filename, 0700);
558
559 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
Damien Miller7b10ef42002-01-21 23:44:12 +1100560 SSH_PRNG_SEED_FILE);
Damien Miller62116dc2001-12-24 01:41:47 +1100561
562 debug("writing PRNG seed to file %.100s", filename);
563
564 RAND_bytes(seed, sizeof(seed));
565
566 /* Don't care if the seed doesn't exist */
567 prng_check_seedfile(filename);
568
569 if ((fd = open(filename, O_WRONLY|O_TRUNC|O_CREAT, 0600)) == -1) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100570 debug("WARNING: couldn't access PRNG seedfile %.100s "
571 "(%.100s)", filename, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100572 } else {
Damien Miller7b10ef42002-01-21 23:44:12 +1100573 if (atomicio(write, fd, &seed, sizeof(seed)) < sizeof(seed))
574 fatal("problem writing PRNG seedfile %.100s "
575 "(%.100s)", filename, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100576 close(fd);
577 }
578}
579
580void
Damien Miller7b10ef42002-01-21 23:44:12 +1100581prng_read_seedfile(void)
582{
Damien Miller62116dc2001-12-24 01:41:47 +1100583 int fd;
Damien Miller7b10ef42002-01-21 23:44:12 +1100584 char seed[SEED_FILE_SIZE], filename[MAXPATHLEN];
Damien Miller62116dc2001-12-24 01:41:47 +1100585 struct passwd *pw;
586
587 pw = getpwuid(getuid());
588 if (pw == NULL)
Damien Miller7b10ef42002-01-21 23:44:12 +1100589 fatal("Couldn't get password entry for current user "
590 "(%i): %s", getuid(), strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100591
592 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
593 SSH_PRNG_SEED_FILE);
594
595 debug("loading PRNG seed from file %.100s", filename);
596
597 if (!prng_check_seedfile(filename)) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100598 verbose("Random seed file not found or invalid, ignoring.");
Damien Miller62116dc2001-12-24 01:41:47 +1100599 return;
600 }
601
602 /* open the file and read in the seed */
603 fd = open(filename, O_RDONLY);
604 if (fd == -1)
Damien Miller7b10ef42002-01-21 23:44:12 +1100605 fatal("could not open PRNG seedfile %.100s (%.100s)",
606 filename, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100607
Damien Miller7b10ef42002-01-21 23:44:12 +1100608 if (atomicio(read, fd, &seed, sizeof(seed)) < sizeof(seed)) {
609 verbose("invalid or short read from PRNG seedfile "
610 "%.100s - ignoring", filename);
Damien Miller62116dc2001-12-24 01:41:47 +1100611 memset(seed, '\0', sizeof(seed));
612 }
613 close(fd);
614
615 /* stir in the seed, with estimated entropy zero */
616 RAND_add(&seed, sizeof(seed), 0.0);
617}
618
619
620/*
621 * entropy command initialisation functions
622 */
623int
624prng_read_commands(char *cmdfilename)
625{
Damien Miller7b10ef42002-01-21 23:44:12 +1100626 char cmd[SEED_FILE_SIZE], *cp, line[1024], path[SEED_FILE_SIZE];
Damien Miller62116dc2001-12-24 01:41:47 +1100627 double est;
Damien Miller7b10ef42002-01-21 23:44:12 +1100628 entropy_cmd_t *entcmd;
629 FILE *f;
630 int cur_cmd, linenum, num_cmds, arg;
Damien Miller62116dc2001-12-24 01:41:47 +1100631
Damien Miller7b10ef42002-01-21 23:44:12 +1100632 if ((f = fopen(cmdfilename, "r")) == NULL) {
Damien Miller62116dc2001-12-24 01:41:47 +1100633 fatal("couldn't read entropy commands file %.100s: %.100s",
634 cmdfilename, strerror(errno));
635 }
636
Damien Miller7b10ef42002-01-21 23:44:12 +1100637 num_cmds = 64;
638 entcmd = xmalloc(num_cmds * sizeof(entropy_cmd_t));
639 memset(entcmd, '\0', num_cmds * sizeof(entropy_cmd_t));
Damien Miller62116dc2001-12-24 01:41:47 +1100640
641 /* Read in file */
Damien Miller7b10ef42002-01-21 23:44:12 +1100642 cur_cmd = linenum = 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100643 while (fgets(line, sizeof(line), f)) {
Damien Miller62116dc2001-12-24 01:41:47 +1100644 linenum++;
645
Damien Miller7b10ef42002-01-21 23:44:12 +1100646 /* Skip leading whitespace, blank lines and comments */
Damien Miller62116dc2001-12-24 01:41:47 +1100647 cp = line + strspn(line, WHITESPACE);
648 if ((*cp == 0) || (*cp == '#'))
649 continue; /* done with this line */
650
Damien Miller7b10ef42002-01-21 23:44:12 +1100651 /*
652 * The first non-whitespace char should be a double quote
653 * delimiting the commandline
654 */
Damien Miller62116dc2001-12-24 01:41:47 +1100655 if (*cp != '"') {
Damien Miller7b10ef42002-01-21 23:44:12 +1100656 error("bad entropy command, %.100s line %d",
657 cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100658 continue;
659 }
660
Damien Miller7b10ef42002-01-21 23:44:12 +1100661 /*
662 * First token, command args (incl. argv[0]) in double
663 * quotes
664 */
Damien Miller62116dc2001-12-24 01:41:47 +1100665 cp = strtok(cp, "\"");
666 if (cp == NULL) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100667 error("missing or bad command string, %.100s "
668 "line %d -- ignored", cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100669 continue;
670 }
671 strlcpy(cmd, cp, sizeof(cmd));
672
Damien Miller7b10ef42002-01-21 23:44:12 +1100673 /* Second token, full command path */
Damien Miller62116dc2001-12-24 01:41:47 +1100674 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100675 error("missing command path, %.100s "
676 "line %d -- ignored", cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100677 continue;
678 }
679
Damien Miller7b10ef42002-01-21 23:44:12 +1100680 /* Did configure mark this as dead? */
Damien Miller62116dc2001-12-24 01:41:47 +1100681 if (strncmp("undef", cp, 5) == 0)
682 continue;
683
684 strlcpy(path, cp, sizeof(path));
685
Damien Miller7b10ef42002-01-21 23:44:12 +1100686 /* Third token, entropy rate estimate for this command */
Damien Miller62116dc2001-12-24 01:41:47 +1100687 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100688 error("missing entropy estimate, %.100s "
689 "line %d -- ignored", cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100690 continue;
691 }
Damien Miller7b10ef42002-01-21 23:44:12 +1100692 est = strtod(cp, NULL);
Damien Miller62116dc2001-12-24 01:41:47 +1100693
694 /* end of line */
695 if ((cp = strtok(NULL, WHITESPACE)) != NULL) {
Damien Miller7b10ef42002-01-21 23:44:12 +1100696 error("garbage at end of line %d in %.100s "
697 "-- ignored", linenum, cmdfilename);
Damien Miller62116dc2001-12-24 01:41:47 +1100698 continue;
699 }
700
701 /* save the command for debug messages */
702 entcmd[cur_cmd].cmdstring = xstrdup(cmd);
703
704 /* split the command args */
705 cp = strtok(cmd, WHITESPACE);
706 arg = 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100707 do {
Damien Miller7b10ef42002-01-21 23:44:12 +1100708 entcmd[cur_cmd].args[arg] = xstrdup(cp);
Damien Miller62116dc2001-12-24 01:41:47 +1100709 arg++;
Damien Miller7b10ef42002-01-21 23:44:12 +1100710 } while(arg < NUM_ARGS && (cp = strtok(NULL, WHITESPACE)));
Damien Miller62116dc2001-12-24 01:41:47 +1100711
712 if (strtok(NULL, WHITESPACE))
Damien Miller7b10ef42002-01-21 23:44:12 +1100713 error("ignored extra commands (max %d), %.100s "
714 "line %d", NUM_ARGS, cmdfilename, linenum);
Damien Miller62116dc2001-12-24 01:41:47 +1100715
716 /* Copy the command path and rate estimate */
717 entcmd[cur_cmd].path = xstrdup(path);
718 entcmd[cur_cmd].rate = est;
719
720 /* Initialise other values */
721 entcmd[cur_cmd].sticky_badness = 1;
722
723 cur_cmd++;
724
Damien Miller7b10ef42002-01-21 23:44:12 +1100725 /*
726 * If we've filled the array, reallocate it twice the size
727 * Do this now because even if this we're on the last
728 * command we need another slot to mark the last entry
729 */
Damien Miller62116dc2001-12-24 01:41:47 +1100730 if (cur_cmd == num_cmds) {
731 num_cmds *= 2;
Damien Miller7b10ef42002-01-21 23:44:12 +1100732 entcmd = xrealloc(entcmd, num_cmds *
733 sizeof(entropy_cmd_t));
Damien Miller62116dc2001-12-24 01:41:47 +1100734 }
735 }
736
737 /* zero the last entry */
Damien Miller7b10ef42002-01-21 23:44:12 +1100738 memset(&entcmd[cur_cmd], '\0', sizeof(entropy_cmd_t));
Damien Miller62116dc2001-12-24 01:41:47 +1100739
740 /* trim to size */
Damien Miller7b10ef42002-01-21 23:44:12 +1100741 entropy_cmds = xrealloc(entcmd, (cur_cmd + 1) *
742 sizeof(entropy_cmd_t));
Damien Miller62116dc2001-12-24 01:41:47 +1100743
Damien Miller7b10ef42002-01-21 23:44:12 +1100744 debug("Loaded %d entropy commands from %.100s", cur_cmd,
745 cmdfilename);
Damien Miller62116dc2001-12-24 01:41:47 +1100746
Damien Miller7b10ef42002-01-21 23:44:12 +1100747 return cur_cmd < MIN_ENTROPY_SOURCES ? -1 : 0;
Damien Miller62116dc2001-12-24 01:41:47 +1100748}
749
Damien Miller32e48182002-04-14 19:27:12 +1000750void
751usage(void)
752{
753 fprintf(stderr, "Usage: %s [options]\n", __progname);
754 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
755 fprintf(stderr, " Multiple -v increases verbosity.\n");
756 fprintf(stderr, " -x Force output in hexidecimal (for debugging)\n");
757 fprintf(stderr, " -X Force output in binary\n");
758 fprintf(stderr, " -b bytes Number of bytes to output (default %d)\n",
759 OUTPUT_SEED_SIZE);
760}
761
Damien Miller62116dc2001-12-24 01:41:47 +1100762int
763main(int argc, char **argv)
764{
Damien Miller32e48182002-04-14 19:27:12 +1000765 unsigned char *buf;
766 int ret, ch, debug_level, output_hex, bytes;
767 extern char *optarg;
768 LogLevel ll;
Damien Miller62116dc2001-12-24 01:41:47 +1100769
Kevin Steves94435082001-12-25 04:32:58 +0000770 __progname = get_progname(argv[0]);
Damien Miller62116dc2001-12-24 01:41:47 +1100771 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
772
Damien Miller32e48182002-04-14 19:27:12 +1000773 ll = SYSLOG_LEVEL_INFO;
774 debug_level = output_hex = 0;
775 bytes = OUTPUT_SEED_SIZE;
776
777 /* Don't write binary data to a tty, unless we are forced to */
778 if (isatty(STDOUT_FILENO))
779 output_hex = 1;
780
781 while ((ch = getopt(argc, argv, "vxXhb:")) != -1) {
782 switch (ch) {
783 case 'v':
784 if (debug_level < 3)
785 ll = SYSLOG_LEVEL_DEBUG1 + debug_level++;
786 break;
787 case 'x':
788 output_hex = 1;
789 break;
790 case 'X':
791 output_hex = 0;
792 break;
793 case 'b':
794 if ((bytes = atoi(optarg)) <= 0)
795 fatal("Invalid number of output bytes");
796 break;
797 case 'h':
798 usage();
799 exit(0);
800 default:
801 error("Invalid commandline option");
802 usage();
803 }
804 }
805
806 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
807
Damien Miller7b10ef42002-01-21 23:44:12 +1100808#ifdef USE_SEED_FILES
809 prng_read_seedfile();
810#endif
811
Damien Miller32e48182002-04-14 19:27:12 +1000812 buf = xmalloc(bytes);
813
Damien Miller7b10ef42002-01-21 23:44:12 +1100814 /*
815 * Seed the RNG from wherever we can
816 */
817
818 /* Take whatever is on the stack, but don't credit it */
Damien Miller32e48182002-04-14 19:27:12 +1000819 RAND_add(buf, bytes, 0);
Damien Miller7b10ef42002-01-21 23:44:12 +1100820
821 debug("Seeded RNG with %i bytes from system calls",
822 (int)stir_from_system());
823
824#ifdef PRNGD_PORT
Damien Miller32e48182002-04-14 19:27:12 +1000825 if (get_random_bytes_prngd(buf, bytes, PRNGD_PORT, NULL) == -1)
Damien Miller7b10ef42002-01-21 23:44:12 +1100826 fatal("Entropy collection failed");
Damien Miller32e48182002-04-14 19:27:12 +1000827 RAND_add(buf, bytes, bytes);
Damien Millerc46cc542002-01-22 21:58:27 +1100828#elif defined(PRNGD_SOCKET)
Damien Miller32e48182002-04-14 19:27:12 +1000829 if (get_random_bytes_prngd(buf, bytes, 0, PRNGD_SOCKET) == -1)
Damien Miller7b10ef42002-01-21 23:44:12 +1100830 fatal("Entropy collection failed");
Damien Miller32e48182002-04-14 19:27:12 +1000831 RAND_add(buf, bytes, bytes);
Damien Miller7b10ef42002-01-21 23:44:12 +1100832#else
833 /* Read in collection commands */
834 if (prng_read_commands(SSH_PRNG_COMMAND_FILE) == -1)
835 fatal("PRNG initialisation failed -- exiting.");
836 debug("Seeded RNG with %i bytes from programs",
837 (int)stir_from_programs());
838#endif
839
840#ifdef USE_SEED_FILES
841 prng_write_seedfile();
842#endif
843
844 /*
845 * Write the seed to stdout
846 */
Damien Miller62116dc2001-12-24 01:41:47 +1100847
848 if (!RAND_status())
849 fatal("Not enough entropy in RNG");
850
Damien Miller32e48182002-04-14 19:27:12 +1000851 RAND_bytes(buf, bytes);
Damien Miller62116dc2001-12-24 01:41:47 +1100852
Damien Miller32e48182002-04-14 19:27:12 +1000853 if (output_hex) {
854 for(ret = 0; ret < bytes; ret++)
855 printf("%02x", (unsigned char)(buf[ret]));
856 printf("\n");
857 } else
858 ret = atomicio(write, STDOUT_FILENO, buf, bytes);
Damien Miller62116dc2001-12-24 01:41:47 +1100859
Damien Miller32e48182002-04-14 19:27:12 +1000860 memset(buf, '\0', bytes);
861 xfree(buf);
Damien Miller62116dc2001-12-24 01:41:47 +1100862
Damien Miller32e48182002-04-14 19:27:12 +1000863 return ret == bytes ? 0 : 1;
Damien Miller62116dc2001-12-24 01:41:47 +1100864}