]> andersk Git - openssh.git/blame - ssh-rand-helper.c
- djm@cvs.openbsd.org 2004/06/13 15:03:02
[openssh.git] / ssh-rand-helper.c
CommitLineData
46058ce2 1/*
40f64e6f 2 * Copyright (c) 2001-2002 Damien Miller. All rights reserved.
46058ce2 3 *
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
42RCSID("$Id$");
43
40f64e6f 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
46058ce2 55
40f64e6f 56/* Path to on-disk seed file (relative to user's home directory */
46058ce2 57#ifndef SSH_PRNG_SEED_FILE
58# define SSH_PRNG_SEED_FILE _PATH_SSH_USER_DIR"/prng_seed"
40f64e6f 59#endif
60
61/* Path to PRNG commands list */
46058ce2 62#ifndef SSH_PRNG_COMMAND_FILE
2a8a6488 63# define SSH_PRNG_COMMAND_FILE SSHDIR "/ssh_prng_cmds"
40f64e6f 64#endif
46058ce2 65
40f64e6f 66#ifdef HAVE___PROGNAME
67extern char *__progname;
68#else
69char *__progname;
70#endif
71
46058ce2 72#define WHITESPACE " \t\n"
73
74#ifndef RUSAGE_SELF
75# define RUSAGE_SELF 0
76#endif
77#ifndef RUSAGE_CHILDREN
78# define RUSAGE_CHILDREN 0
79#endif
80
49d7ed32 81#if !defined(PRNGD_SOCKET) && !defined(PRNGD_PORT)
40f64e6f 82# define USE_SEED_FILES
46058ce2 83#endif
84
40f64e6f 85typedef struct {
86 /* Proportion of data that is entropy */
87 double rate;
88 /* Counter goes positive if this command times out */
89 unsigned int badness;
90 /* Increases by factor of two each timeout */
91 unsigned int sticky_badness;
92 /* Path to executable */
93 char *path;
94 /* argv to pass to executable */
95 char *args[NUM_ARGS]; /* XXX: arbitrary limit */
96 /* full command string (debug) */
97 char *cmdstring;
98} entropy_cmd_t;
99
100/* slow command timeouts (all in milliseconds) */
101/* static int entropy_timeout_default = ENTROPY_TIMEOUT_MSEC; */
102static int entropy_timeout_current = ENTROPY_TIMEOUT_MSEC;
103
104/* this is initialised from a file, by prng_read_commands() */
105static entropy_cmd_t *entropy_cmds = NULL;
106
107/* Prototypes */
108double stir_from_system(void);
109double stir_from_programs(void);
110double stir_gettimeofday(double entropy_estimate);
111double stir_clock(double entropy_estimate);
112double stir_rusage(int who, double entropy_estimate);
75131bbd 113double hash_command_output(entropy_cmd_t *src, unsigned char *hash);
aff51935 114int get_random_bytes_prngd(unsigned char *buf, int len,
40f64e6f 115 unsigned short tcp_port, char *socket_path);
116
117/*
118 * Collect 'len' bytes of entropy into 'buf' from PRNGD/EGD daemon
119 * listening either on 'tcp_port', or via Unix domain socket at *
120 * 'socket_path'.
aff51935 121 * Either a non-zero tcp_port or a non-null socket_path must be
40f64e6f 122 * supplied.
123 * Returns 0 on success, -1 on error
124 */
46058ce2 125int
aff51935 126get_random_bytes_prngd(unsigned char *buf, int len,
40f64e6f 127 unsigned short tcp_port, char *socket_path)
46058ce2 128{
40f64e6f 129 int fd, addr_len, rval, errors;
46058ce2 130 char msg[2];
40f64e6f 131 struct sockaddr_storage addr;
132 struct sockaddr_in *addr_in = (struct sockaddr_in *)&addr;
133 struct sockaddr_un *addr_un = (struct sockaddr_un *)&addr;
46058ce2 134 mysig_t old_sigpipe;
135
40f64e6f 136 /* Sanity checks */
137 if (socket_path == NULL && tcp_port == 0)
138 fatal("You must specify a port or a socket");
139 if (socket_path != NULL &&
140 strlen(socket_path) >= sizeof(addr_un->sun_path))
141 fatal("Random pool path is too long");
46058ce2 142 if (len > 255)
143 fatal("Too many bytes to read from PRNGD");
144
145 memset(&addr, '\0', sizeof(addr));
146
40f64e6f 147 if (tcp_port != 0) {
148 addr_in->sin_family = AF_INET;
149 addr_in->sin_addr.s_addr = htonl(INADDR_LOOPBACK);
150 addr_in->sin_port = htons(tcp_port);
151 addr_len = sizeof(*addr_in);
152 } else {
153 addr_un->sun_family = AF_UNIX;
154 strlcpy(addr_un->sun_path, socket_path,
155 sizeof(addr_un->sun_path));
156 addr_len = offsetof(struct sockaddr_un, sun_path) +
157 strlen(socket_path) + 1;
158 }
46058ce2 159
160 old_sigpipe = mysignal(SIGPIPE, SIG_IGN);
161
40f64e6f 162 errors = 0;
163 rval = -1;
46058ce2 164reopen:
40f64e6f 165 fd = socket(addr.ss_family, SOCK_STREAM, 0);
46058ce2 166 if (fd == -1) {
40f64e6f 167 error("Couldn't create socket: %s", strerror(errno));
46058ce2 168 goto done;
169 }
46058ce2 170
171 if (connect(fd, (struct sockaddr*)&addr, addr_len) == -1) {
40f64e6f 172 if (tcp_port != 0) {
173 error("Couldn't connect to PRNGD port %d: %s",
174 tcp_port, strerror(errno));
175 } else {
176 error("Couldn't connect to PRNGD socket \"%s\": %s",
177 addr_un->sun_path, strerror(errno));
178 }
46058ce2 179 goto done;
180 }
181
182 /* Send blocking read request to PRNGD */
183 msg[0] = 0x02;
184 msg[1] = len;
185
d72f7b79 186 if (atomicio(vwrite, fd, msg, sizeof(msg)) != sizeof(msg)) {
46058ce2 187 if (errno == EPIPE && errors < 10) {
188 close(fd);
189 errors++;
190 goto reopen;
191 }
192 error("Couldn't write to PRNGD socket: %s",
193 strerror(errno));
194 goto done;
195 }
196
197 if (atomicio(read, fd, buf, len) != len) {
198 if (errno == EPIPE && errors < 10) {
199 close(fd);
200 errors++;
201 goto reopen;
202 }
203 error("Couldn't read from PRNGD socket: %s",
204 strerror(errno));
205 goto done;
206 }
207
40f64e6f 208 rval = 0;
46058ce2 209done:
210 mysignal(SIGPIPE, old_sigpipe);
211 if (fd != -1)
212 close(fd);
40f64e6f 213 return rval;
46058ce2 214}
215
216double
217stir_gettimeofday(double entropy_estimate)
218{
219 struct timeval tv;
220
221 if (gettimeofday(&tv, NULL) == -1)
222 fatal("Couldn't gettimeofday: %s", strerror(errno));
223
224 RAND_add(&tv, sizeof(tv), entropy_estimate);
225
40f64e6f 226 return entropy_estimate;
46058ce2 227}
228
229double
230stir_clock(double entropy_estimate)
231{
232#ifdef HAVE_CLOCK
233 clock_t c;
234
235 c = clock();
236 RAND_add(&c, sizeof(c), entropy_estimate);
237
40f64e6f 238 return entropy_estimate;
46058ce2 239#else /* _HAVE_CLOCK */
40f64e6f 240 return 0;
46058ce2 241#endif /* _HAVE_CLOCK */
242}
243
244double
245stir_rusage(int who, double entropy_estimate)
246{
247#ifdef HAVE_GETRUSAGE
248 struct rusage ru;
249
250 if (getrusage(who, &ru) == -1)
40f64e6f 251 return 0;
46058ce2 252
253 RAND_add(&ru, sizeof(ru), entropy_estimate);
254
40f64e6f 255 return entropy_estimate;
46058ce2 256#else /* _HAVE_GETRUSAGE */
40f64e6f 257 return 0;
46058ce2 258#endif /* _HAVE_GETRUSAGE */
259}
260
46058ce2 261static int
40f64e6f 262timeval_diff(struct timeval *t1, struct timeval *t2)
263{
46058ce2 264 int secdiff, usecdiff;
265
266 secdiff = t2->tv_sec - t1->tv_sec;
267 usecdiff = (secdiff*1000000) + (t2->tv_usec - t1->tv_usec);
268 return (int)(usecdiff / 1000);
269}
270
271double
75131bbd 272hash_command_output(entropy_cmd_t *src, unsigned char *hash)
46058ce2 273{
40f64e6f 274 char buf[8192];
46058ce2 275 fd_set rdset;
40f64e6f 276 int bytes_read, cmd_eof, error_abort, msec_elapsed, p[2];
277 int status, total_bytes_read;
278 static int devnull = -1;
46058ce2 279 pid_t pid;
46058ce2 280 SHA_CTX sha;
40f64e6f 281 struct timeval tv_start, tv_current;
46058ce2 282
283 debug3("Reading output from \'%s\'", src->cmdstring);
284
285 if (devnull == -1) {
286 devnull = open("/dev/null", O_RDWR);
287 if (devnull == -1)
aff51935 288 fatal("Couldn't open /dev/null: %s",
40f64e6f 289 strerror(errno));
46058ce2 290 }
291
292 if (pipe(p) == -1)
293 fatal("Couldn't open pipe: %s", strerror(errno));
294
295 (void)gettimeofday(&tv_start, NULL); /* record start time */
296
297 switch (pid = fork()) {
298 case -1: /* Error */
299 close(p[0]);
300 close(p[1]);
301 fatal("Couldn't fork: %s", strerror(errno));
302 /* NOTREACHED */
303 case 0: /* Child */
304 dup2(devnull, STDIN_FILENO);
305 dup2(p[1], STDOUT_FILENO);
306 dup2(p[1], STDERR_FILENO);
307 close(p[0]);
308 close(p[1]);
309 close(devnull);
310
311 execv(src->path, (char**)(src->args));
40f64e6f 312
aff51935 313 debug("(child) Couldn't exec '%s': %s",
40f64e6f 314 src->cmdstring, strerror(errno));
46058ce2 315 _exit(-1);
316 default: /* Parent */
317 break;
318 }
319
320 RAND_add(&pid, sizeof(&pid), 0.0);
321
322 close(p[1]);
323
324 /* Hash output from child */
325 SHA1_Init(&sha);
46058ce2 326
40f64e6f 327 cmd_eof = error_abort = msec_elapsed = total_bytes_read = 0;
46058ce2 328 while (!error_abort && !cmd_eof) {
329 int ret;
330 struct timeval tv;
331 int msec_remaining;
332
333 (void) gettimeofday(&tv_current, 0);
40f64e6f 334 msec_elapsed = timeval_diff(&tv_start, &tv_current);
46058ce2 335 if (msec_elapsed >= entropy_timeout_current) {
336 error_abort=1;
337 continue;
338 }
339 msec_remaining = entropy_timeout_current - msec_elapsed;
340
341 FD_ZERO(&rdset);
342 FD_SET(p[0], &rdset);
40f64e6f 343 tv.tv_sec = msec_remaining / 1000;
46058ce2 344 tv.tv_usec = (msec_remaining % 1000) * 1000;
345
40f64e6f 346 ret = select(p[0] + 1, &rdset, NULL, NULL, &tv);
46058ce2 347
348 RAND_add(&tv, sizeof(tv), 0.0);
349
350 switch (ret) {
351 case 0:
352 /* timer expired */
353 error_abort = 1;
4e6f1c4f 354 kill(pid, SIGINT);
46058ce2 355 break;
356 case 1:
357 /* command input */
358 do {
359 bytes_read = read(p[0], buf, sizeof(buf));
360 } while (bytes_read == -1 && errno == EINTR);
361 RAND_add(&bytes_read, sizeof(&bytes_read), 0.0);
362 if (bytes_read == -1) {
363 error_abort = 1;
364 break;
365 } else if (bytes_read) {
366 SHA1_Update(&sha, buf, bytes_read);
367 total_bytes_read += bytes_read;
368 } else {
369 cmd_eof = 1;
370 }
371 break;
372 case -1:
373 default:
374 /* error */
aff51935 375 debug("Command '%s': select() failed: %s",
40f64e6f 376 src->cmdstring, strerror(errno));
46058ce2 377 error_abort = 1;
378 break;
379 }
380 }
381
382 SHA1_Final(hash, &sha);
383
384 close(p[0]);
385
386 debug3("Time elapsed: %d msec", msec_elapsed);
387
388 if (waitpid(pid, &status, 0) == -1) {
40f64e6f 389 error("Couldn't wait for child '%s' completion: %s",
875ec275 390 src->cmdstring, strerror(errno));
40f64e6f 391 return 0.0;
46058ce2 392 }
393
394 RAND_add(&status, sizeof(&status), 0.0);
395
396 if (error_abort) {
40f64e6f 397 /*
398 * Closing p[0] on timeout causes the entropy command to
aff51935 399 * SIGPIPE. Take whatever output we got, and mark this
400 * command as slow
40f64e6f 401 */
46058ce2 402 debug2("Command '%s' timed out", src->cmdstring);
403 src->sticky_badness *= 2;
404 src->badness = src->sticky_badness;
40f64e6f 405 return total_bytes_read;
46058ce2 406 }
407
408 if (WIFEXITED(status)) {
40f64e6f 409 if (WEXITSTATUS(status) == 0) {
410 return total_bytes_read;
46058ce2 411 } else {
40f64e6f 412 debug2("Command '%s' exit status was %d",
413 src->cmdstring, WEXITSTATUS(status));
46058ce2 414 src->badness = src->sticky_badness = 128;
40f64e6f 415 return 0.0;
46058ce2 416 }
417 } else if (WIFSIGNALED(status)) {
40f64e6f 418 debug2("Command '%s' returned on uncaught signal %d !",
419 src->cmdstring, status);
46058ce2 420 src->badness = src->sticky_badness = 128;
40f64e6f 421 return 0.0;
46058ce2 422 } else
40f64e6f 423 return 0.0;
424}
425
426double
427stir_from_system(void)
428{
429 double total_entropy_estimate;
430 long int i;
431
432 total_entropy_estimate = 0;
433
434 i = getpid();
435 RAND_add(&i, sizeof(i), 0.5);
436 total_entropy_estimate += 0.1;
437
438 i = getppid();
439 RAND_add(&i, sizeof(i), 0.5);
440 total_entropy_estimate += 0.1;
441
442 i = getuid();
443 RAND_add(&i, sizeof(i), 0.0);
444 i = getgid();
445 RAND_add(&i, sizeof(i), 0.0);
446
447 total_entropy_estimate += stir_gettimeofday(1.0);
448 total_entropy_estimate += stir_clock(0.5);
449 total_entropy_estimate += stir_rusage(RUSAGE_SELF, 2.0);
450
451 return total_entropy_estimate;
452}
453
454double
455stir_from_programs(void)
456{
457 int c;
458 double entropy, total_entropy;
75131bbd 459 unsigned char hash[SHA_DIGEST_LENGTH];
40f64e6f 460
461 total_entropy = 0;
462 for(c = 0; entropy_cmds[c].path != NULL; c++) {
463 if (!entropy_cmds[c].badness) {
464 /* Hash output from command */
465 entropy = hash_command_output(&entropy_cmds[c],
466 hash);
467
468 /* Scale back estimate by command's rate */
469 entropy *= entropy_cmds[c].rate;
470
471 /* Upper bound of entropy is SHA_DIGEST_LENGTH */
472 if (entropy > SHA_DIGEST_LENGTH)
473 entropy = SHA_DIGEST_LENGTH;
474
475 /* Stir it in */
476 RAND_add(hash, sizeof(hash), entropy);
477
aff51935 478 debug3("Got %0.2f bytes of entropy from '%s'",
40f64e6f 479 entropy, entropy_cmds[c].cmdstring);
480
481 total_entropy += entropy;
482
483 /* Execution time should be a bit unpredictable */
484 total_entropy += stir_gettimeofday(0.05);
485 total_entropy += stir_clock(0.05);
486 total_entropy += stir_rusage(RUSAGE_SELF, 0.1);
487 total_entropy += stir_rusage(RUSAGE_CHILDREN, 0.1);
488 } else {
489 debug2("Command '%s' disabled (badness %d)",
aff51935 490 entropy_cmds[c].cmdstring,
40f64e6f 491 entropy_cmds[c].badness);
492
493 if (entropy_cmds[c].badness > 0)
494 entropy_cmds[c].badness--;
495 }
496 }
497
498 return total_entropy;
46058ce2 499}
500
501/*
502 * prng seedfile functions
503 */
504int
40f64e6f 505prng_check_seedfile(char *filename)
506{
46058ce2 507 struct stat st;
508
40f64e6f 509 /*
aff51935 510 * XXX raceable: eg replace seed between this stat and subsequent
511 * open. Not such a problem because we don't really trust the
40f64e6f 512 * seed file anyway.
513 * XXX: use secure path checking as elsewhere in OpenSSH
514 */
46058ce2 515 if (lstat(filename, &st) == -1) {
516 /* Give up on hard errors */
517 if (errno != ENOENT)
40f64e6f 518 debug("WARNING: Couldn't stat random seed file "
519 "\"%.100s\": %s", filename, strerror(errno));
520 return 0;
46058ce2 521 }
522
523 /* regular file? */
524 if (!S_ISREG(st.st_mode))
40f64e6f 525 fatal("PRNG seedfile %.100s is not a regular file",
526 filename);
46058ce2 527
528 /* mode 0600, owned by root or the current user? */
529 if (((st.st_mode & 0177) != 0) || !(st.st_uid == getuid())) {
40f64e6f 530 debug("WARNING: PRNG seedfile %.100s must be mode 0600, "
7be625e1 531 "owned by uid %li", filename, (long int)getuid());
40f64e6f 532 return 0;
46058ce2 533 }
534
40f64e6f 535 return 1;
46058ce2 536}
537
538void
40f64e6f 539prng_write_seedfile(void)
540{
46058ce2 541 int fd;
75131bbd 542 unsigned char seed[SEED_FILE_SIZE];
543 char filename[MAXPATHLEN];
46058ce2 544 struct passwd *pw;
545
546 pw = getpwuid(getuid());
547 if (pw == NULL)
40f64e6f 548 fatal("Couldn't get password entry for current user "
7be625e1 549 "(%li): %s", (long int)getuid(), strerror(errno));
46058ce2 550
551 /* Try to ensure that the parent directory is there */
552 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
40f64e6f 553 _PATH_SSH_USER_DIR);
46058ce2 554 mkdir(filename, 0700);
555
556 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
40f64e6f 557 SSH_PRNG_SEED_FILE);
46058ce2 558
559 debug("writing PRNG seed to file %.100s", filename);
560
d8eb5247 561 if (RAND_bytes(seed, sizeof(seed)) <= 0)
9e3191db 562 fatal("PRNG seed extraction failed");
46058ce2 563
564 /* Don't care if the seed doesn't exist */
565 prng_check_seedfile(filename);
566
567 if ((fd = open(filename, O_WRONLY|O_TRUNC|O_CREAT, 0600)) == -1) {
40f64e6f 568 debug("WARNING: couldn't access PRNG seedfile %.100s "
569 "(%.100s)", filename, strerror(errno));
46058ce2 570 } else {
d72f7b79 571 if (atomicio(vwrite, fd, &seed, sizeof(seed)) < sizeof(seed))
40f64e6f 572 fatal("problem writing PRNG seedfile %.100s "
573 "(%.100s)", filename, strerror(errno));
46058ce2 574 close(fd);
575 }
576}
577
578void
40f64e6f 579prng_read_seedfile(void)
580{
46058ce2 581 int fd;
40f64e6f 582 char seed[SEED_FILE_SIZE], filename[MAXPATHLEN];
46058ce2 583 struct passwd *pw;
584
585 pw = getpwuid(getuid());
586 if (pw == NULL)
40f64e6f 587 fatal("Couldn't get password entry for current user "
7be625e1 588 "(%li): %s", (long int)getuid(), strerror(errno));
46058ce2 589
590 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
591 SSH_PRNG_SEED_FILE);
592
593 debug("loading PRNG seed from file %.100s", filename);
594
595 if (!prng_check_seedfile(filename)) {
40f64e6f 596 verbose("Random seed file not found or invalid, ignoring.");
46058ce2 597 return;
598 }
599
600 /* open the file and read in the seed */
601 fd = open(filename, O_RDONLY);
602 if (fd == -1)
40f64e6f 603 fatal("could not open PRNG seedfile %.100s (%.100s)",
604 filename, strerror(errno));
46058ce2 605
40f64e6f 606 if (atomicio(read, fd, &seed, sizeof(seed)) < sizeof(seed)) {
607 verbose("invalid or short read from PRNG seedfile "
608 "%.100s - ignoring", filename);
46058ce2 609 memset(seed, '\0', sizeof(seed));
610 }
611 close(fd);
612
613 /* stir in the seed, with estimated entropy zero */
614 RAND_add(&seed, sizeof(seed), 0.0);
615}
616
617
618/*
619 * entropy command initialisation functions
620 */
621int
622prng_read_commands(char *cmdfilename)
623{
40f64e6f 624 char cmd[SEED_FILE_SIZE], *cp, line[1024], path[SEED_FILE_SIZE];
46058ce2 625 double est;
40f64e6f 626 entropy_cmd_t *entcmd;
627 FILE *f;
628 int cur_cmd, linenum, num_cmds, arg;
46058ce2 629
40f64e6f 630 if ((f = fopen(cmdfilename, "r")) == NULL) {
46058ce2 631 fatal("couldn't read entropy commands file %.100s: %.100s",
632 cmdfilename, strerror(errno));
633 }
634
40f64e6f 635 num_cmds = 64;
636 entcmd = xmalloc(num_cmds * sizeof(entropy_cmd_t));
637 memset(entcmd, '\0', num_cmds * sizeof(entropy_cmd_t));
46058ce2 638
639 /* Read in file */
40f64e6f 640 cur_cmd = linenum = 0;
46058ce2 641 while (fgets(line, sizeof(line), f)) {
46058ce2 642 linenum++;
643
40f64e6f 644 /* Skip leading whitespace, blank lines and comments */
46058ce2 645 cp = line + strspn(line, WHITESPACE);
646 if ((*cp == 0) || (*cp == '#'))
647 continue; /* done with this line */
648
40f64e6f 649 /*
aff51935 650 * The first non-whitespace char should be a double quote
40f64e6f 651 * delimiting the commandline
652 */
46058ce2 653 if (*cp != '"') {
40f64e6f 654 error("bad entropy command, %.100s line %d",
655 cmdfilename, linenum);
46058ce2 656 continue;
657 }
658
40f64e6f 659 /*
660 * First token, command args (incl. argv[0]) in double
661 * quotes
662 */
46058ce2 663 cp = strtok(cp, "\"");
664 if (cp == NULL) {
40f64e6f 665 error("missing or bad command string, %.100s "
666 "line %d -- ignored", cmdfilename, linenum);
46058ce2 667 continue;
668 }
669 strlcpy(cmd, cp, sizeof(cmd));
670
40f64e6f 671 /* Second token, full command path */
46058ce2 672 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
40f64e6f 673 error("missing command path, %.100s "
674 "line %d -- ignored", cmdfilename, linenum);
46058ce2 675 continue;
676 }
677
40f64e6f 678 /* Did configure mark this as dead? */
46058ce2 679 if (strncmp("undef", cp, 5) == 0)
680 continue;
681
682 strlcpy(path, cp, sizeof(path));
683
40f64e6f 684 /* Third token, entropy rate estimate for this command */
46058ce2 685 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
40f64e6f 686 error("missing entropy estimate, %.100s "
687 "line %d -- ignored", cmdfilename, linenum);
46058ce2 688 continue;
689 }
40f64e6f 690 est = strtod(cp, NULL);
46058ce2 691
692 /* end of line */
693 if ((cp = strtok(NULL, WHITESPACE)) != NULL) {
40f64e6f 694 error("garbage at end of line %d in %.100s "
695 "-- ignored", linenum, cmdfilename);
46058ce2 696 continue;
697 }
698
699 /* save the command for debug messages */
700 entcmd[cur_cmd].cmdstring = xstrdup(cmd);
701
702 /* split the command args */
703 cp = strtok(cmd, WHITESPACE);
704 arg = 0;
46058ce2 705 do {
40f64e6f 706 entcmd[cur_cmd].args[arg] = xstrdup(cp);
46058ce2 707 arg++;
40f64e6f 708 } while(arg < NUM_ARGS && (cp = strtok(NULL, WHITESPACE)));
46058ce2 709
710 if (strtok(NULL, WHITESPACE))
40f64e6f 711 error("ignored extra commands (max %d), %.100s "
712 "line %d", NUM_ARGS, cmdfilename, linenum);
46058ce2 713
714 /* Copy the command path and rate estimate */
715 entcmd[cur_cmd].path = xstrdup(path);
716 entcmd[cur_cmd].rate = est;
717
718 /* Initialise other values */
719 entcmd[cur_cmd].sticky_badness = 1;
720
721 cur_cmd++;
722
40f64e6f 723 /*
724 * If we've filled the array, reallocate it twice the size
aff51935 725 * Do this now because even if this we're on the last
40f64e6f 726 * command we need another slot to mark the last entry
727 */
46058ce2 728 if (cur_cmd == num_cmds) {
729 num_cmds *= 2;
40f64e6f 730 entcmd = xrealloc(entcmd, num_cmds *
731 sizeof(entropy_cmd_t));
46058ce2 732 }
733 }
734
735 /* zero the last entry */
40f64e6f 736 memset(&entcmd[cur_cmd], '\0', sizeof(entropy_cmd_t));
46058ce2 737
738 /* trim to size */
40f64e6f 739 entropy_cmds = xrealloc(entcmd, (cur_cmd + 1) *
740 sizeof(entropy_cmd_t));
46058ce2 741
40f64e6f 742 debug("Loaded %d entropy commands from %.100s", cur_cmd,
743 cmdfilename);
46058ce2 744
40f64e6f 745 return cur_cmd < MIN_ENTROPY_SOURCES ? -1 : 0;
46058ce2 746}
747
f6e6303d 748void
749usage(void)
750{
751 fprintf(stderr, "Usage: %s [options]\n", __progname);
752 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
753 fprintf(stderr, " Multiple -v increases verbosity.\n");
754 fprintf(stderr, " -x Force output in hexidecimal (for debugging)\n");
755 fprintf(stderr, " -X Force output in binary\n");
756 fprintf(stderr, " -b bytes Number of bytes to output (default %d)\n",
757 OUTPUT_SEED_SIZE);
758}
759
aff51935 760int
46058ce2 761main(int argc, char **argv)
762{
f6e6303d 763 unsigned char *buf;
764 int ret, ch, debug_level, output_hex, bytes;
765 extern char *optarg;
766 LogLevel ll;
46058ce2 767
fda04d7d 768 __progname = ssh_get_progname(argv[0]);
46058ce2 769 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
770
f6e6303d 771 ll = SYSLOG_LEVEL_INFO;
772 debug_level = output_hex = 0;
773 bytes = OUTPUT_SEED_SIZE;
774
775 /* Don't write binary data to a tty, unless we are forced to */
776 if (isatty(STDOUT_FILENO))
777 output_hex = 1;
b6453d99 778
f6e6303d 779 while ((ch = getopt(argc, argv, "vxXhb:")) != -1) {
780 switch (ch) {
781 case 'v':
782 if (debug_level < 3)
783 ll = SYSLOG_LEVEL_DEBUG1 + debug_level++;
784 break;
785 case 'x':
786 output_hex = 1;
787 break;
788 case 'X':
789 output_hex = 0;
790 break;
791 case 'b':
792 if ((bytes = atoi(optarg)) <= 0)
793 fatal("Invalid number of output bytes");
794 break;
795 case 'h':
796 usage();
797 exit(0);
798 default:
799 error("Invalid commandline option");
800 usage();
801 }
802 }
803
804 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
b6453d99 805
40f64e6f 806#ifdef USE_SEED_FILES
807 prng_read_seedfile();
808#endif
809
f6e6303d 810 buf = xmalloc(bytes);
811
40f64e6f 812 /*
813 * Seed the RNG from wherever we can
814 */
b6453d99 815
40f64e6f 816 /* Take whatever is on the stack, but don't credit it */
f6e6303d 817 RAND_add(buf, bytes, 0);
40f64e6f 818
aff51935 819 debug("Seeded RNG with %i bytes from system calls",
40f64e6f 820 (int)stir_from_system());
821
822#ifdef PRNGD_PORT
f6e6303d 823 if (get_random_bytes_prngd(buf, bytes, PRNGD_PORT, NULL) == -1)
40f64e6f 824 fatal("Entropy collection failed");
f6e6303d 825 RAND_add(buf, bytes, bytes);
49d7ed32 826#elif defined(PRNGD_SOCKET)
f6e6303d 827 if (get_random_bytes_prngd(buf, bytes, 0, PRNGD_SOCKET) == -1)
40f64e6f 828 fatal("Entropy collection failed");
f6e6303d 829 RAND_add(buf, bytes, bytes);
40f64e6f 830#else
831 /* Read in collection commands */
832 if (prng_read_commands(SSH_PRNG_COMMAND_FILE) == -1)
833 fatal("PRNG initialisation failed -- exiting.");
aff51935 834 debug("Seeded RNG with %i bytes from programs",
40f64e6f 835 (int)stir_from_programs());
836#endif
837
838#ifdef USE_SEED_FILES
839 prng_write_seedfile();
840#endif
841
842 /*
843 * Write the seed to stdout
844 */
46058ce2 845
846 if (!RAND_status())
847 fatal("Not enough entropy in RNG");
848
d8eb5247 849 if (RAND_bytes(buf, bytes) <= 0)
850 fatal("Couldn't extract entropy from PRNG");
46058ce2 851
f6e6303d 852 if (output_hex) {
853 for(ret = 0; ret < bytes; ret++)
854 printf("%02x", (unsigned char)(buf[ret]));
855 printf("\n");
856 } else
d72f7b79 857 ret = atomicio(vwrite, STDOUT_FILENO, buf, bytes);
b6453d99 858
f6e6303d 859 memset(buf, '\0', bytes);
860 xfree(buf);
b6453d99 861
f6e6303d 862 return ret == bytes ? 0 : 1;
46058ce2 863}
This page took 0.25609 seconds and 5 git commands to generate.