]> andersk Git - openssh.git/blame - ssh-rand-helper.c
- (djm) Add KrbV support patch from Simon Wilkinson <simon@sxw.org.uk>
[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
66
40f64e6f 67#ifdef HAVE___PROGNAME
68extern char *__progname;
69#else
70char *__progname;
71#endif
72
46058ce2 73#ifndef offsetof
74# define offsetof(type, member) ((size_t) &((type *)0)->member)
75#endif
76
46058ce2 77#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
49d7ed32 86#if !defined(PRNGD_SOCKET) && !defined(PRNGD_PORT)
40f64e6f 87# define USE_SEED_FILES
46058ce2 88#endif
89
40f64e6f 90typedef struct {
91 /* Proportion of data that is entropy */
92 double rate;
93 /* Counter goes positive if this command times out */
94 unsigned int badness;
95 /* Increases by factor of two each timeout */
96 unsigned int sticky_badness;
97 /* Path to executable */
98 char *path;
99 /* argv to pass to executable */
100 char *args[NUM_ARGS]; /* XXX: arbitrary limit */
101 /* full command string (debug) */
102 char *cmdstring;
103} entropy_cmd_t;
104
105/* slow command timeouts (all in milliseconds) */
106/* static int entropy_timeout_default = ENTROPY_TIMEOUT_MSEC; */
107static int entropy_timeout_current = ENTROPY_TIMEOUT_MSEC;
108
109/* this is initialised from a file, by prng_read_commands() */
110static entropy_cmd_t *entropy_cmds = NULL;
111
112/* Prototypes */
113double stir_from_system(void);
114double stir_from_programs(void);
115double stir_gettimeofday(double entropy_estimate);
116double stir_clock(double entropy_estimate);
117double stir_rusage(int who, double entropy_estimate);
118double hash_command_output(entropy_cmd_t *src, char *hash);
119int get_random_bytes_prngd(unsigned char *buf, int len,
120 unsigned short tcp_port, char *socket_path);
121
122/*
123 * Collect 'len' bytes of entropy into 'buf' from PRNGD/EGD daemon
124 * listening either on 'tcp_port', or via Unix domain socket at *
125 * 'socket_path'.
126 * Either a non-zero tcp_port or a non-null socket_path must be
127 * supplied.
128 * Returns 0 on success, -1 on error
129 */
46058ce2 130int
40f64e6f 131get_random_bytes_prngd(unsigned char *buf, int len,
132 unsigned short tcp_port, char *socket_path)
46058ce2 133{
40f64e6f 134 int fd, addr_len, rval, errors;
46058ce2 135 char msg[2];
40f64e6f 136 struct sockaddr_storage addr;
137 struct sockaddr_in *addr_in = (struct sockaddr_in *)&addr;
138 struct sockaddr_un *addr_un = (struct sockaddr_un *)&addr;
46058ce2 139 mysig_t old_sigpipe;
140
40f64e6f 141 /* Sanity checks */
142 if (socket_path == NULL && tcp_port == 0)
143 fatal("You must specify a port or a socket");
144 if (socket_path != NULL &&
145 strlen(socket_path) >= sizeof(addr_un->sun_path))
146 fatal("Random pool path is too long");
46058ce2 147 if (len > 255)
148 fatal("Too many bytes to read from PRNGD");
149
150 memset(&addr, '\0', sizeof(addr));
151
40f64e6f 152 if (tcp_port != 0) {
153 addr_in->sin_family = AF_INET;
154 addr_in->sin_addr.s_addr = htonl(INADDR_LOOPBACK);
155 addr_in->sin_port = htons(tcp_port);
156 addr_len = sizeof(*addr_in);
157 } else {
158 addr_un->sun_family = AF_UNIX;
159 strlcpy(addr_un->sun_path, socket_path,
160 sizeof(addr_un->sun_path));
161 addr_len = offsetof(struct sockaddr_un, sun_path) +
162 strlen(socket_path) + 1;
163 }
46058ce2 164
165 old_sigpipe = mysignal(SIGPIPE, SIG_IGN);
166
40f64e6f 167 errors = 0;
168 rval = -1;
46058ce2 169reopen:
40f64e6f 170 fd = socket(addr.ss_family, SOCK_STREAM, 0);
46058ce2 171 if (fd == -1) {
40f64e6f 172 error("Couldn't create socket: %s", strerror(errno));
46058ce2 173 goto done;
174 }
46058ce2 175
176 if (connect(fd, (struct sockaddr*)&addr, addr_len) == -1) {
40f64e6f 177 if (tcp_port != 0) {
178 error("Couldn't connect to PRNGD port %d: %s",
179 tcp_port, strerror(errno));
180 } else {
181 error("Couldn't connect to PRNGD socket \"%s\": %s",
182 addr_un->sun_path, strerror(errno));
183 }
46058ce2 184 goto done;
185 }
186
187 /* Send blocking read request to PRNGD */
188 msg[0] = 0x02;
189 msg[1] = len;
190
191 if (atomicio(write, fd, msg, sizeof(msg)) != sizeof(msg)) {
192 if (errno == EPIPE && errors < 10) {
193 close(fd);
194 errors++;
195 goto reopen;
196 }
197 error("Couldn't write to PRNGD socket: %s",
198 strerror(errno));
199 goto done;
200 }
201
202 if (atomicio(read, fd, buf, len) != len) {
203 if (errno == EPIPE && errors < 10) {
204 close(fd);
205 errors++;
206 goto reopen;
207 }
208 error("Couldn't read from PRNGD socket: %s",
209 strerror(errno));
210 goto done;
211 }
212
40f64e6f 213 rval = 0;
46058ce2 214done:
215 mysignal(SIGPIPE, old_sigpipe);
216 if (fd != -1)
217 close(fd);
40f64e6f 218 return rval;
46058ce2 219}
220
221double
222stir_gettimeofday(double entropy_estimate)
223{
224 struct timeval tv;
225
226 if (gettimeofday(&tv, NULL) == -1)
227 fatal("Couldn't gettimeofday: %s", strerror(errno));
228
229 RAND_add(&tv, sizeof(tv), entropy_estimate);
230
40f64e6f 231 return entropy_estimate;
46058ce2 232}
233
234double
235stir_clock(double entropy_estimate)
236{
237#ifdef HAVE_CLOCK
238 clock_t c;
239
240 c = clock();
241 RAND_add(&c, sizeof(c), entropy_estimate);
242
40f64e6f 243 return entropy_estimate;
46058ce2 244#else /* _HAVE_CLOCK */
40f64e6f 245 return 0;
46058ce2 246#endif /* _HAVE_CLOCK */
247}
248
249double
250stir_rusage(int who, double entropy_estimate)
251{
252#ifdef HAVE_GETRUSAGE
253 struct rusage ru;
254
255 if (getrusage(who, &ru) == -1)
40f64e6f 256 return 0;
46058ce2 257
258 RAND_add(&ru, sizeof(ru), entropy_estimate);
259
40f64e6f 260 return entropy_estimate;
46058ce2 261#else /* _HAVE_GETRUSAGE */
40f64e6f 262 return 0;
46058ce2 263#endif /* _HAVE_GETRUSAGE */
264}
265
46058ce2 266static int
40f64e6f 267timeval_diff(struct timeval *t1, struct timeval *t2)
268{
46058ce2 269 int secdiff, usecdiff;
270
271 secdiff = t2->tv_sec - t1->tv_sec;
272 usecdiff = (secdiff*1000000) + (t2->tv_usec - t1->tv_usec);
273 return (int)(usecdiff / 1000);
274}
275
276double
40f64e6f 277hash_command_output(entropy_cmd_t *src, char *hash)
46058ce2 278{
40f64e6f 279 char buf[8192];
46058ce2 280 fd_set rdset;
40f64e6f 281 int bytes_read, cmd_eof, error_abort, msec_elapsed, p[2];
282 int status, total_bytes_read;
283 static int devnull = -1;
46058ce2 284 pid_t pid;
46058ce2 285 SHA_CTX sha;
40f64e6f 286 struct timeval tv_start, tv_current;
46058ce2 287
288 debug3("Reading output from \'%s\'", src->cmdstring);
289
290 if (devnull == -1) {
291 devnull = open("/dev/null", O_RDWR);
292 if (devnull == -1)
40f64e6f 293 fatal("Couldn't open /dev/null: %s",
294 strerror(errno));
46058ce2 295 }
296
297 if (pipe(p) == -1)
298 fatal("Couldn't open pipe: %s", strerror(errno));
299
300 (void)gettimeofday(&tv_start, NULL); /* record start time */
301
302 switch (pid = fork()) {
303 case -1: /* Error */
304 close(p[0]);
305 close(p[1]);
306 fatal("Couldn't fork: %s", strerror(errno));
307 /* NOTREACHED */
308 case 0: /* Child */
309 dup2(devnull, STDIN_FILENO);
310 dup2(p[1], STDOUT_FILENO);
311 dup2(p[1], STDERR_FILENO);
312 close(p[0]);
313 close(p[1]);
314 close(devnull);
315
316 execv(src->path, (char**)(src->args));
40f64e6f 317
318 debug("(child) Couldn't exec '%s': %s",
319 src->cmdstring, strerror(errno));
46058ce2 320 _exit(-1);
321 default: /* Parent */
322 break;
323 }
324
325 RAND_add(&pid, sizeof(&pid), 0.0);
326
327 close(p[1]);
328
329 /* Hash output from child */
330 SHA1_Init(&sha);
46058ce2 331
40f64e6f 332 cmd_eof = error_abort = msec_elapsed = total_bytes_read = 0;
46058ce2 333 while (!error_abort && !cmd_eof) {
334 int ret;
335 struct timeval tv;
336 int msec_remaining;
337
338 (void) gettimeofday(&tv_current, 0);
40f64e6f 339 msec_elapsed = timeval_diff(&tv_start, &tv_current);
46058ce2 340 if (msec_elapsed >= entropy_timeout_current) {
341 error_abort=1;
342 continue;
343 }
344 msec_remaining = entropy_timeout_current - msec_elapsed;
345
346 FD_ZERO(&rdset);
347 FD_SET(p[0], &rdset);
40f64e6f 348 tv.tv_sec = msec_remaining / 1000;
46058ce2 349 tv.tv_usec = (msec_remaining % 1000) * 1000;
350
40f64e6f 351 ret = select(p[0] + 1, &rdset, NULL, NULL, &tv);
46058ce2 352
353 RAND_add(&tv, sizeof(tv), 0.0);
354
355 switch (ret) {
356 case 0:
357 /* timer expired */
358 error_abort = 1;
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",
394 src->cmdstring, strerror(errno));
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;
463 char hash[SHA_DIGEST_LENGTH];
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;
40f64e6f 546 char seed[SEED_FILE_SIZE], filename[MAXPATHLEN];
46058ce2 547 struct passwd *pw;
548
549 pw = getpwuid(getuid());
550 if (pw == NULL)
40f64e6f 551 fatal("Couldn't get password entry for current user "
552 "(%i): %s", getuid(), strerror(errno));
46058ce2 553
554 /* Try to ensure that the parent directory is there */
555 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
40f64e6f 556 _PATH_SSH_USER_DIR);
46058ce2 557 mkdir(filename, 0700);
558
559 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
40f64e6f 560 SSH_PRNG_SEED_FILE);
46058ce2 561
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) {
40f64e6f 570 debug("WARNING: couldn't access PRNG seedfile %.100s "
571 "(%.100s)", filename, strerror(errno));
46058ce2 572 } else {
40f64e6f 573 if (atomicio(write, fd, &seed, sizeof(seed)) < sizeof(seed))
574 fatal("problem writing PRNG seedfile %.100s "
575 "(%.100s)", filename, strerror(errno));
46058ce2 576 close(fd);
577 }
578}
579
580void
40f64e6f 581prng_read_seedfile(void)
582{
46058ce2 583 int fd;
40f64e6f 584 char seed[SEED_FILE_SIZE], filename[MAXPATHLEN];
46058ce2 585 struct passwd *pw;
586
587 pw = getpwuid(getuid());
588 if (pw == NULL)
40f64e6f 589 fatal("Couldn't get password entry for current user "
590 "(%i): %s", getuid(), strerror(errno));
46058ce2 591
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)) {
40f64e6f 598 verbose("Random seed file not found or invalid, ignoring.");
46058ce2 599 return;
600 }
601
602 /* open the file and read in the seed */
603 fd = open(filename, O_RDONLY);
604 if (fd == -1)
40f64e6f 605 fatal("could not open PRNG seedfile %.100s (%.100s)",
606 filename, strerror(errno));
46058ce2 607
40f64e6f 608 if (atomicio(read, fd, &seed, sizeof(seed)) < sizeof(seed)) {
609 verbose("invalid or short read from PRNG seedfile "
610 "%.100s - ignoring", filename);
46058ce2 611 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{
40f64e6f 626 char cmd[SEED_FILE_SIZE], *cp, line[1024], path[SEED_FILE_SIZE];
46058ce2 627 double est;
40f64e6f 628 entropy_cmd_t *entcmd;
629 FILE *f;
630 int cur_cmd, linenum, num_cmds, arg;
46058ce2 631
40f64e6f 632 if ((f = fopen(cmdfilename, "r")) == NULL) {
46058ce2 633 fatal("couldn't read entropy commands file %.100s: %.100s",
634 cmdfilename, strerror(errno));
635 }
636
40f64e6f 637 num_cmds = 64;
638 entcmd = xmalloc(num_cmds * sizeof(entropy_cmd_t));
639 memset(entcmd, '\0', num_cmds * sizeof(entropy_cmd_t));
46058ce2 640
641 /* Read in file */
40f64e6f 642 cur_cmd = linenum = 0;
46058ce2 643 while (fgets(line, sizeof(line), f)) {
46058ce2 644 linenum++;
645
40f64e6f 646 /* Skip leading whitespace, blank lines and comments */
46058ce2 647 cp = line + strspn(line, WHITESPACE);
648 if ((*cp == 0) || (*cp == '#'))
649 continue; /* done with this line */
650
40f64e6f 651 /*
652 * The first non-whitespace char should be a double quote
653 * delimiting the commandline
654 */
46058ce2 655 if (*cp != '"') {
40f64e6f 656 error("bad entropy command, %.100s line %d",
657 cmdfilename, linenum);
46058ce2 658 continue;
659 }
660
40f64e6f 661 /*
662 * First token, command args (incl. argv[0]) in double
663 * quotes
664 */
46058ce2 665 cp = strtok(cp, "\"");
666 if (cp == NULL) {
40f64e6f 667 error("missing or bad command string, %.100s "
668 "line %d -- ignored", cmdfilename, linenum);
46058ce2 669 continue;
670 }
671 strlcpy(cmd, cp, sizeof(cmd));
672
40f64e6f 673 /* Second token, full command path */
46058ce2 674 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
40f64e6f 675 error("missing command path, %.100s "
676 "line %d -- ignored", cmdfilename, linenum);
46058ce2 677 continue;
678 }
679
40f64e6f 680 /* Did configure mark this as dead? */
46058ce2 681 if (strncmp("undef", cp, 5) == 0)
682 continue;
683
684 strlcpy(path, cp, sizeof(path));
685
40f64e6f 686 /* Third token, entropy rate estimate for this command */
46058ce2 687 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
40f64e6f 688 error("missing entropy estimate, %.100s "
689 "line %d -- ignored", cmdfilename, linenum);
46058ce2 690 continue;
691 }
40f64e6f 692 est = strtod(cp, NULL);
46058ce2 693
694 /* end of line */
695 if ((cp = strtok(NULL, WHITESPACE)) != NULL) {
40f64e6f 696 error("garbage at end of line %d in %.100s "
697 "-- ignored", linenum, cmdfilename);
46058ce2 698 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;
46058ce2 707 do {
40f64e6f 708 entcmd[cur_cmd].args[arg] = xstrdup(cp);
46058ce2 709 arg++;
40f64e6f 710 } while(arg < NUM_ARGS && (cp = strtok(NULL, WHITESPACE)));
46058ce2 711
712 if (strtok(NULL, WHITESPACE))
40f64e6f 713 error("ignored extra commands (max %d), %.100s "
714 "line %d", NUM_ARGS, cmdfilename, linenum);
46058ce2 715
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
40f64e6f 725 /*
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 */
46058ce2 730 if (cur_cmd == num_cmds) {
731 num_cmds *= 2;
40f64e6f 732 entcmd = xrealloc(entcmd, num_cmds *
733 sizeof(entropy_cmd_t));
46058ce2 734 }
735 }
736
737 /* zero the last entry */
40f64e6f 738 memset(&entcmd[cur_cmd], '\0', sizeof(entropy_cmd_t));
46058ce2 739
740 /* trim to size */
40f64e6f 741 entropy_cmds = xrealloc(entcmd, (cur_cmd + 1) *
742 sizeof(entropy_cmd_t));
46058ce2 743
40f64e6f 744 debug("Loaded %d entropy commands from %.100s", cur_cmd,
745 cmdfilename);
46058ce2 746
40f64e6f 747 return cur_cmd < MIN_ENTROPY_SOURCES ? -1 : 0;
46058ce2 748}
749
46058ce2 750int
751main(int argc, char **argv)
752{
40f64e6f 753 unsigned char buf[OUTPUT_SEED_SIZE];
46058ce2 754 int ret;
755
7bec72bc 756 __progname = get_progname(argv[0]);
46058ce2 757 /* XXX: need some debugging mode */
758 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
759
40f64e6f 760#ifdef USE_SEED_FILES
761 prng_read_seedfile();
762#endif
763
764 /*
765 * Seed the RNG from wherever we can
766 */
767
768 /* Take whatever is on the stack, but don't credit it */
769 RAND_add(buf, sizeof(buf), 0);
770
771 debug("Seeded RNG with %i bytes from system calls",
772 (int)stir_from_system());
773
774#ifdef PRNGD_PORT
49d7ed32 775 if (get_random_bytes_prngd(buf, sizeof(buf), PRNGD_PORT, NULL) == -1)
40f64e6f 776 fatal("Entropy collection failed");
777 RAND_add(buf, sizeof(buf), sizeof(buf));
49d7ed32 778#elif defined(PRNGD_SOCKET)
779 if (get_random_bytes_prngd(buf, sizeof(buf), 0, PRNGD_SOCKET) == -1)
40f64e6f 780 fatal("Entropy collection failed");
781 RAND_add(buf, sizeof(buf), sizeof(buf));
782#else
783 /* Read in collection commands */
784 if (prng_read_commands(SSH_PRNG_COMMAND_FILE) == -1)
785 fatal("PRNG initialisation failed -- exiting.");
786 debug("Seeded RNG with %i bytes from programs",
787 (int)stir_from_programs());
788#endif
789
790#ifdef USE_SEED_FILES
791 prng_write_seedfile();
792#endif
793
794 /*
795 * Write the seed to stdout
796 */
46058ce2 797
798 if (!RAND_status())
799 fatal("Not enough entropy in RNG");
800
801 RAND_bytes(buf, sizeof(buf));
802
803 ret = atomicio(write, STDOUT_FILENO, buf, sizeof(buf));
804
805 memset(buf, '\0', sizeof(buf));
806
807 return ret == sizeof(buf) ? 0 : 1;
808}
809
This page took 0.188609 seconds and 5 git commands to generate.