]> andersk Git - openssh.git/blame - ssh-rand-helper.c
- markus@cvs.openbsd.org 2003/03/13 11:44:50
[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#ifndef offsetof
73# define offsetof(type, member) ((size_t) &((type *)0)->member)
74#endif
75
46058ce2 76#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
49d7ed32 85#if !defined(PRNGD_SOCKET) && !defined(PRNGD_PORT)
40f64e6f 86# define USE_SEED_FILES
46058ce2 87#endif
88
40f64e6f 89typedef 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);
75131bbd 117double hash_command_output(entropy_cmd_t *src, unsigned char *hash);
40f64e6f 118int 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 */
46058ce2 129int
40f64e6f 130get_random_bytes_prngd(unsigned char *buf, int len,
131 unsigned short tcp_port, char *socket_path)
46058ce2 132{
40f64e6f 133 int fd, addr_len, rval, errors;
46058ce2 134 char msg[2];
40f64e6f 135 struct sockaddr_storage addr;
136 struct sockaddr_in *addr_in = (struct sockaddr_in *)&addr;
137 struct sockaddr_un *addr_un = (struct sockaddr_un *)&addr;
46058ce2 138 mysig_t old_sigpipe;
139
40f64e6f 140 /* 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");
46058ce2 146 if (len > 255)
147 fatal("Too many bytes to read from PRNGD");
148
149 memset(&addr, '\0', sizeof(addr));
150
40f64e6f 151 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 }
46058ce2 163
164 old_sigpipe = mysignal(SIGPIPE, SIG_IGN);
165
40f64e6f 166 errors = 0;
167 rval = -1;
46058ce2 168reopen:
40f64e6f 169 fd = socket(addr.ss_family, SOCK_STREAM, 0);
46058ce2 170 if (fd == -1) {
40f64e6f 171 error("Couldn't create socket: %s", strerror(errno));
46058ce2 172 goto done;
173 }
46058ce2 174
175 if (connect(fd, (struct sockaddr*)&addr, addr_len) == -1) {
40f64e6f 176 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 }
46058ce2 183 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
40f64e6f 212 rval = 0;
46058ce2 213done:
214 mysignal(SIGPIPE, old_sigpipe);
215 if (fd != -1)
216 close(fd);
40f64e6f 217 return rval;
46058ce2 218}
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
40f64e6f 230 return entropy_estimate;
46058ce2 231}
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
40f64e6f 242 return entropy_estimate;
46058ce2 243#else /* _HAVE_CLOCK */
40f64e6f 244 return 0;
46058ce2 245#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)
40f64e6f 255 return 0;
46058ce2 256
257 RAND_add(&ru, sizeof(ru), entropy_estimate);
258
40f64e6f 259 return entropy_estimate;
46058ce2 260#else /* _HAVE_GETRUSAGE */
40f64e6f 261 return 0;
46058ce2 262#endif /* _HAVE_GETRUSAGE */
263}
264
46058ce2 265static int
40f64e6f 266timeval_diff(struct timeval *t1, struct timeval *t2)
267{
46058ce2 268 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
75131bbd 276hash_command_output(entropy_cmd_t *src, unsigned char *hash)
46058ce2 277{
40f64e6f 278 char buf[8192];
46058ce2 279 fd_set rdset;
40f64e6f 280 int bytes_read, cmd_eof, error_abort, msec_elapsed, p[2];
281 int status, total_bytes_read;
282 static int devnull = -1;
46058ce2 283 pid_t pid;
46058ce2 284 SHA_CTX sha;
40f64e6f 285 struct timeval tv_start, tv_current;
46058ce2 286
287 debug3("Reading output from \'%s\'", src->cmdstring);
288
289 if (devnull == -1) {
290 devnull = open("/dev/null", O_RDWR);
291 if (devnull == -1)
40f64e6f 292 fatal("Couldn't open /dev/null: %s",
293 strerror(errno));
46058ce2 294 }
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));
40f64e6f 316
317 debug("(child) Couldn't exec '%s': %s",
318 src->cmdstring, strerror(errno));
46058ce2 319 _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);
46058ce2 330
40f64e6f 331 cmd_eof = error_abort = msec_elapsed = total_bytes_read = 0;
46058ce2 332 while (!error_abort && !cmd_eof) {
333 int ret;
334 struct timeval tv;
335 int msec_remaining;
336
337 (void) gettimeofday(&tv_current, 0);
40f64e6f 338 msec_elapsed = timeval_diff(&tv_start, &tv_current);
46058ce2 339 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);
40f64e6f 347 tv.tv_sec = msec_remaining / 1000;
46058ce2 348 tv.tv_usec = (msec_remaining % 1000) * 1000;
349
40f64e6f 350 ret = select(p[0] + 1, &rdset, NULL, NULL, &tv);
46058ce2 351
352 RAND_add(&tv, sizeof(tv), 0.0);
353
354 switch (ret) {
355 case 0:
356 /* timer expired */
357 error_abort = 1;
4e6f1c4f 358 kill(pid, SIGINT);
46058ce2 359 break;
360 case 1:
361 /* command input */
362 do {
363 bytes_read = read(p[0], buf, sizeof(buf));
364 } while (bytes_read == -1 && errno == EINTR);
365 RAND_add(&bytes_read, sizeof(&bytes_read), 0.0);
366 if (bytes_read == -1) {
367 error_abort = 1;
368 break;
369 } else if (bytes_read) {
370 SHA1_Update(&sha, buf, bytes_read);
371 total_bytes_read += bytes_read;
372 } else {
373 cmd_eof = 1;
374 }
375 break;
376 case -1:
377 default:
378 /* error */
40f64e6f 379 debug("Command '%s': select() failed: %s",
380 src->cmdstring, strerror(errno));
46058ce2 381 error_abort = 1;
382 break;
383 }
384 }
385
386 SHA1_Final(hash, &sha);
387
388 close(p[0]);
389
390 debug3("Time elapsed: %d msec", msec_elapsed);
391
392 if (waitpid(pid, &status, 0) == -1) {
40f64e6f 393 error("Couldn't wait for child '%s' completion: %s",
875ec275 394 src->cmdstring, strerror(errno));
40f64e6f 395 return 0.0;
46058ce2 396 }
397
398 RAND_add(&status, sizeof(&status), 0.0);
399
400 if (error_abort) {
40f64e6f 401 /*
402 * Closing p[0] on timeout causes the entropy command to
403 * SIGPIPE. Take whatever output we got, and mark this
404 * command as slow
405 */
46058ce2 406 debug2("Command '%s' timed out", src->cmdstring);
407 src->sticky_badness *= 2;
408 src->badness = src->sticky_badness;
40f64e6f 409 return total_bytes_read;
46058ce2 410 }
411
412 if (WIFEXITED(status)) {
40f64e6f 413 if (WEXITSTATUS(status) == 0) {
414 return total_bytes_read;
46058ce2 415 } else {
40f64e6f 416 debug2("Command '%s' exit status was %d",
417 src->cmdstring, WEXITSTATUS(status));
46058ce2 418 src->badness = src->sticky_badness = 128;
40f64e6f 419 return 0.0;
46058ce2 420 }
421 } else if (WIFSIGNALED(status)) {
40f64e6f 422 debug2("Command '%s' returned on uncaught signal %d !",
423 src->cmdstring, status);
46058ce2 424 src->badness = src->sticky_badness = 128;
40f64e6f 425 return 0.0;
46058ce2 426 } else
40f64e6f 427 return 0.0;
428}
429
430double
431stir_from_system(void)
432{
433 double total_entropy_estimate;
434 long int i;
435
436 total_entropy_estimate = 0;
437
438 i = getpid();
439 RAND_add(&i, sizeof(i), 0.5);
440 total_entropy_estimate += 0.1;
441
442 i = getppid();
443 RAND_add(&i, sizeof(i), 0.5);
444 total_entropy_estimate += 0.1;
445
446 i = getuid();
447 RAND_add(&i, sizeof(i), 0.0);
448 i = getgid();
449 RAND_add(&i, sizeof(i), 0.0);
450
451 total_entropy_estimate += stir_gettimeofday(1.0);
452 total_entropy_estimate += stir_clock(0.5);
453 total_entropy_estimate += stir_rusage(RUSAGE_SELF, 2.0);
454
455 return total_entropy_estimate;
456}
457
458double
459stir_from_programs(void)
460{
461 int c;
462 double entropy, total_entropy;
75131bbd 463 unsigned char hash[SHA_DIGEST_LENGTH];
40f64e6f 464
465 total_entropy = 0;
466 for(c = 0; entropy_cmds[c].path != NULL; c++) {
467 if (!entropy_cmds[c].badness) {
468 /* Hash output from command */
469 entropy = hash_command_output(&entropy_cmds[c],
470 hash);
471
472 /* Scale back estimate by command's rate */
473 entropy *= entropy_cmds[c].rate;
474
475 /* Upper bound of entropy is SHA_DIGEST_LENGTH */
476 if (entropy > SHA_DIGEST_LENGTH)
477 entropy = SHA_DIGEST_LENGTH;
478
479 /* Stir it in */
480 RAND_add(hash, sizeof(hash), entropy);
481
482 debug3("Got %0.2f bytes of entropy from '%s'",
483 entropy, entropy_cmds[c].cmdstring);
484
485 total_entropy += entropy;
486
487 /* Execution time should be a bit unpredictable */
488 total_entropy += stir_gettimeofday(0.05);
489 total_entropy += stir_clock(0.05);
490 total_entropy += stir_rusage(RUSAGE_SELF, 0.1);
491 total_entropy += stir_rusage(RUSAGE_CHILDREN, 0.1);
492 } else {
493 debug2("Command '%s' disabled (badness %d)",
494 entropy_cmds[c].cmdstring,
495 entropy_cmds[c].badness);
496
497 if (entropy_cmds[c].badness > 0)
498 entropy_cmds[c].badness--;
499 }
500 }
501
502 return total_entropy;
46058ce2 503}
504
505/*
506 * prng seedfile functions
507 */
508int
40f64e6f 509prng_check_seedfile(char *filename)
510{
46058ce2 511 struct stat st;
512
40f64e6f 513 /*
514 * XXX raceable: eg replace seed between this stat and subsequent
515 * open. Not such a problem because we don't really trust the
516 * seed file anyway.
517 * XXX: use secure path checking as elsewhere in OpenSSH
518 */
46058ce2 519 if (lstat(filename, &st) == -1) {
520 /* Give up on hard errors */
521 if (errno != ENOENT)
40f64e6f 522 debug("WARNING: Couldn't stat random seed file "
523 "\"%.100s\": %s", filename, strerror(errno));
524 return 0;
46058ce2 525 }
526
527 /* regular file? */
528 if (!S_ISREG(st.st_mode))
40f64e6f 529 fatal("PRNG seedfile %.100s is not a regular file",
530 filename);
46058ce2 531
532 /* mode 0600, owned by root or the current user? */
533 if (((st.st_mode & 0177) != 0) || !(st.st_uid == getuid())) {
40f64e6f 534 debug("WARNING: PRNG seedfile %.100s must be mode 0600, "
535 "owned by uid %d", filename, getuid());
536 return 0;
46058ce2 537 }
538
40f64e6f 539 return 1;
46058ce2 540}
541
542void
40f64e6f 543prng_write_seedfile(void)
544{
46058ce2 545 int fd;
75131bbd 546 unsigned char seed[SEED_FILE_SIZE];
547 char filename[MAXPATHLEN];
46058ce2 548 struct passwd *pw;
549
550 pw = getpwuid(getuid());
551 if (pw == NULL)
40f64e6f 552 fatal("Couldn't get password entry for current user "
553 "(%i): %s", getuid(), strerror(errno));
46058ce2 554
555 /* Try to ensure that the parent directory is there */
556 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
40f64e6f 557 _PATH_SSH_USER_DIR);
46058ce2 558 mkdir(filename, 0700);
559
560 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
40f64e6f 561 SSH_PRNG_SEED_FILE);
46058ce2 562
563 debug("writing PRNG seed to file %.100s", filename);
564
565 RAND_bytes(seed, sizeof(seed));
566
567 /* Don't care if the seed doesn't exist */
568 prng_check_seedfile(filename);
569
570 if ((fd = open(filename, O_WRONLY|O_TRUNC|O_CREAT, 0600)) == -1) {
40f64e6f 571 debug("WARNING: couldn't access PRNG seedfile %.100s "
572 "(%.100s)", filename, strerror(errno));
46058ce2 573 } else {
40f64e6f 574 if (atomicio(write, fd, &seed, sizeof(seed)) < sizeof(seed))
575 fatal("problem writing PRNG seedfile %.100s "
576 "(%.100s)", filename, strerror(errno));
46058ce2 577 close(fd);
578 }
579}
580
581void
40f64e6f 582prng_read_seedfile(void)
583{
46058ce2 584 int fd;
40f64e6f 585 char seed[SEED_FILE_SIZE], filename[MAXPATHLEN];
46058ce2 586 struct passwd *pw;
587
588 pw = getpwuid(getuid());
589 if (pw == NULL)
40f64e6f 590 fatal("Couldn't get password entry for current user "
591 "(%i): %s", getuid(), strerror(errno));
46058ce2 592
593 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
594 SSH_PRNG_SEED_FILE);
595
596 debug("loading PRNG seed from file %.100s", filename);
597
598 if (!prng_check_seedfile(filename)) {
40f64e6f 599 verbose("Random seed file not found or invalid, ignoring.");
46058ce2 600 return;
601 }
602
603 /* open the file and read in the seed */
604 fd = open(filename, O_RDONLY);
605 if (fd == -1)
40f64e6f 606 fatal("could not open PRNG seedfile %.100s (%.100s)",
607 filename, strerror(errno));
46058ce2 608
40f64e6f 609 if (atomicio(read, fd, &seed, sizeof(seed)) < sizeof(seed)) {
610 verbose("invalid or short read from PRNG seedfile "
611 "%.100s - ignoring", filename);
46058ce2 612 memset(seed, '\0', sizeof(seed));
613 }
614 close(fd);
615
616 /* stir in the seed, with estimated entropy zero */
617 RAND_add(&seed, sizeof(seed), 0.0);
618}
619
620
621/*
622 * entropy command initialisation functions
623 */
624int
625prng_read_commands(char *cmdfilename)
626{
40f64e6f 627 char cmd[SEED_FILE_SIZE], *cp, line[1024], path[SEED_FILE_SIZE];
46058ce2 628 double est;
40f64e6f 629 entropy_cmd_t *entcmd;
630 FILE *f;
631 int cur_cmd, linenum, num_cmds, arg;
46058ce2 632
40f64e6f 633 if ((f = fopen(cmdfilename, "r")) == NULL) {
46058ce2 634 fatal("couldn't read entropy commands file %.100s: %.100s",
635 cmdfilename, strerror(errno));
636 }
637
40f64e6f 638 num_cmds = 64;
639 entcmd = xmalloc(num_cmds * sizeof(entropy_cmd_t));
640 memset(entcmd, '\0', num_cmds * sizeof(entropy_cmd_t));
46058ce2 641
642 /* Read in file */
40f64e6f 643 cur_cmd = linenum = 0;
46058ce2 644 while (fgets(line, sizeof(line), f)) {
46058ce2 645 linenum++;
646
40f64e6f 647 /* Skip leading whitespace, blank lines and comments */
46058ce2 648 cp = line + strspn(line, WHITESPACE);
649 if ((*cp == 0) || (*cp == '#'))
650 continue; /* done with this line */
651
40f64e6f 652 /*
653 * The first non-whitespace char should be a double quote
654 * delimiting the commandline
655 */
46058ce2 656 if (*cp != '"') {
40f64e6f 657 error("bad entropy command, %.100s line %d",
658 cmdfilename, linenum);
46058ce2 659 continue;
660 }
661
40f64e6f 662 /*
663 * First token, command args (incl. argv[0]) in double
664 * quotes
665 */
46058ce2 666 cp = strtok(cp, "\"");
667 if (cp == NULL) {
40f64e6f 668 error("missing or bad command string, %.100s "
669 "line %d -- ignored", cmdfilename, linenum);
46058ce2 670 continue;
671 }
672 strlcpy(cmd, cp, sizeof(cmd));
673
40f64e6f 674 /* Second token, full command path */
46058ce2 675 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
40f64e6f 676 error("missing command path, %.100s "
677 "line %d -- ignored", cmdfilename, linenum);
46058ce2 678 continue;
679 }
680
40f64e6f 681 /* Did configure mark this as dead? */
46058ce2 682 if (strncmp("undef", cp, 5) == 0)
683 continue;
684
685 strlcpy(path, cp, sizeof(path));
686
40f64e6f 687 /* Third token, entropy rate estimate for this command */
46058ce2 688 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
40f64e6f 689 error("missing entropy estimate, %.100s "
690 "line %d -- ignored", cmdfilename, linenum);
46058ce2 691 continue;
692 }
40f64e6f 693 est = strtod(cp, NULL);
46058ce2 694
695 /* end of line */
696 if ((cp = strtok(NULL, WHITESPACE)) != NULL) {
40f64e6f 697 error("garbage at end of line %d in %.100s "
698 "-- ignored", linenum, cmdfilename);
46058ce2 699 continue;
700 }
701
702 /* save the command for debug messages */
703 entcmd[cur_cmd].cmdstring = xstrdup(cmd);
704
705 /* split the command args */
706 cp = strtok(cmd, WHITESPACE);
707 arg = 0;
46058ce2 708 do {
40f64e6f 709 entcmd[cur_cmd].args[arg] = xstrdup(cp);
46058ce2 710 arg++;
40f64e6f 711 } while(arg < NUM_ARGS && (cp = strtok(NULL, WHITESPACE)));
46058ce2 712
713 if (strtok(NULL, WHITESPACE))
40f64e6f 714 error("ignored extra commands (max %d), %.100s "
715 "line %d", NUM_ARGS, cmdfilename, linenum);
46058ce2 716
717 /* Copy the command path and rate estimate */
718 entcmd[cur_cmd].path = xstrdup(path);
719 entcmd[cur_cmd].rate = est;
720
721 /* Initialise other values */
722 entcmd[cur_cmd].sticky_badness = 1;
723
724 cur_cmd++;
725
40f64e6f 726 /*
727 * If we've filled the array, reallocate it twice the size
728 * Do this now because even if this we're on the last
729 * command we need another slot to mark the last entry
730 */
46058ce2 731 if (cur_cmd == num_cmds) {
732 num_cmds *= 2;
40f64e6f 733 entcmd = xrealloc(entcmd, num_cmds *
734 sizeof(entropy_cmd_t));
46058ce2 735 }
736 }
737
738 /* zero the last entry */
40f64e6f 739 memset(&entcmd[cur_cmd], '\0', sizeof(entropy_cmd_t));
46058ce2 740
741 /* trim to size */
40f64e6f 742 entropy_cmds = xrealloc(entcmd, (cur_cmd + 1) *
743 sizeof(entropy_cmd_t));
46058ce2 744
40f64e6f 745 debug("Loaded %d entropy commands from %.100s", cur_cmd,
746 cmdfilename);
46058ce2 747
40f64e6f 748 return cur_cmd < MIN_ENTROPY_SOURCES ? -1 : 0;
46058ce2 749}
750
f6e6303d 751void
752usage(void)
753{
754 fprintf(stderr, "Usage: %s [options]\n", __progname);
755 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
756 fprintf(stderr, " Multiple -v increases verbosity.\n");
757 fprintf(stderr, " -x Force output in hexidecimal (for debugging)\n");
758 fprintf(stderr, " -X Force output in binary\n");
759 fprintf(stderr, " -b bytes Number of bytes to output (default %d)\n",
760 OUTPUT_SEED_SIZE);
761}
762
46058ce2 763int
764main(int argc, char **argv)
765{
f6e6303d 766 unsigned char *buf;
767 int ret, ch, debug_level, output_hex, bytes;
768 extern char *optarg;
769 LogLevel ll;
46058ce2 770
7bec72bc 771 __progname = get_progname(argv[0]);
46058ce2 772 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
773
f6e6303d 774 ll = SYSLOG_LEVEL_INFO;
775 debug_level = output_hex = 0;
776 bytes = OUTPUT_SEED_SIZE;
777
778 /* Don't write binary data to a tty, unless we are forced to */
779 if (isatty(STDOUT_FILENO))
780 output_hex = 1;
781
782 while ((ch = getopt(argc, argv, "vxXhb:")) != -1) {
783 switch (ch) {
784 case 'v':
785 if (debug_level < 3)
786 ll = SYSLOG_LEVEL_DEBUG1 + debug_level++;
787 break;
788 case 'x':
789 output_hex = 1;
790 break;
791 case 'X':
792 output_hex = 0;
793 break;
794 case 'b':
795 if ((bytes = atoi(optarg)) <= 0)
796 fatal("Invalid number of output bytes");
797 break;
798 case 'h':
799 usage();
800 exit(0);
801 default:
802 error("Invalid commandline option");
803 usage();
804 }
805 }
806
807 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
808
40f64e6f 809#ifdef USE_SEED_FILES
810 prng_read_seedfile();
811#endif
812
f6e6303d 813 buf = xmalloc(bytes);
814
40f64e6f 815 /*
816 * Seed the RNG from wherever we can
817 */
818
819 /* Take whatever is on the stack, but don't credit it */
f6e6303d 820 RAND_add(buf, bytes, 0);
40f64e6f 821
822 debug("Seeded RNG with %i bytes from system calls",
823 (int)stir_from_system());
824
825#ifdef PRNGD_PORT
f6e6303d 826 if (get_random_bytes_prngd(buf, bytes, PRNGD_PORT, NULL) == -1)
40f64e6f 827 fatal("Entropy collection failed");
f6e6303d 828 RAND_add(buf, bytes, bytes);
49d7ed32 829#elif defined(PRNGD_SOCKET)
f6e6303d 830 if (get_random_bytes_prngd(buf, bytes, 0, PRNGD_SOCKET) == -1)
40f64e6f 831 fatal("Entropy collection failed");
f6e6303d 832 RAND_add(buf, bytes, bytes);
40f64e6f 833#else
834 /* Read in collection commands */
835 if (prng_read_commands(SSH_PRNG_COMMAND_FILE) == -1)
836 fatal("PRNG initialisation failed -- exiting.");
837 debug("Seeded RNG with %i bytes from programs",
838 (int)stir_from_programs());
839#endif
840
841#ifdef USE_SEED_FILES
842 prng_write_seedfile();
843#endif
844
845 /*
846 * Write the seed to stdout
847 */
46058ce2 848
849 if (!RAND_status())
850 fatal("Not enough entropy in RNG");
851
f6e6303d 852 RAND_bytes(buf, bytes);
46058ce2 853
f6e6303d 854 if (output_hex) {
855 for(ret = 0; ret < bytes; ret++)
856 printf("%02x", (unsigned char)(buf[ret]));
857 printf("\n");
858 } else
859 ret = atomicio(write, STDOUT_FILENO, buf, bytes);
46058ce2 860
f6e6303d 861 memset(buf, '\0', bytes);
862 xfree(buf);
46058ce2 863
f6e6303d 864 return ret == bytes ? 0 : 1;
46058ce2 865}
This page took 2.533137 seconds and 5 git commands to generate.