]> andersk Git - openssh.git/blame - entropy.c
- (djm) Merge some of Nalin Dahyabhai <nalin@redhat.com> changes from the
[openssh.git] / entropy.c
CommitLineData
bfc9a610 1/*
2 * Copyright (c) 2000 Damien Miller. All rights reserved.
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.
bfc9a610 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 "ssh.h"
28#include "xmalloc.h"
29
35484284 30#include <openssl/rand.h>
31#include <openssl/sha.h>
bfc9a610 32
819b676f 33/* SunOS 4.4.4 needs this */
34#ifdef HAVE_FLOATINGPOINT_H
35# include <floatingpoint.h>
36#endif /* HAVE_FLOATINGPOINT_H */
37
bfc9a610 38RCSID("$Id$");
39
bfc9a610 40#ifndef offsetof
41# define offsetof(type, member) ((size_t) &((type *)0)->member)
42#endif
48c99b2c 43
48c99b2c 44/* Number of times to pass through command list gathering entropy */
45#define NUM_ENTROPY_RUNS 1
46
47/* Scale entropy estimates back by this amount on subsequent runs */
48#define SCALE_PER_RUN 10.0
49
50/* Minimum number of commands to be considered valid */
51#define MIN_ENTROPY_SOURCES 16
52
53#define WHITESPACE " \t\n"
54
cbd7492e 55#ifndef RUSAGE_SELF
56# define RUSAGE_SELF 0
57#endif
58#ifndef RUSAGE_CHILDREN
59# define RUSAGE_CHILDREN 0
60#endif
61
48c99b2c 62#if defined(EGD_SOCKET) || defined(RANDOM_POOL)
63
64#ifdef EGD_SOCKET
bfc9a610 65/* Collect entropy from EGD */
be0b9bb7 66int get_random_bytes(unsigned char *buf, int len)
bfc9a610 67{
be0b9bb7 68 int fd;
69 char msg[2];
bfc9a610 70 struct sockaddr_un addr;
71 int addr_len;
72
be0b9bb7 73 /* Sanity checks */
bfc9a610 74 if (sizeof(EGD_SOCKET) > sizeof(addr.sun_path))
75 fatal("Random pool path is too long");
be0b9bb7 76 if (len > 255)
77 fatal("Too many bytes to read from EGD");
78
79 memset(&addr, '\0', sizeof(addr));
80 addr.sun_family = AF_UNIX;
48c99b2c 81 strlcpy(addr.sun_path, EGD_SOCKET, sizeof(addr.sun_path));
bfc9a610 82 addr_len = offsetof(struct sockaddr_un, sun_path) + sizeof(EGD_SOCKET);
83
be0b9bb7 84 fd = socket(AF_UNIX, SOCK_STREAM, 0);
85 if (fd == -1) {
86 error("Couldn't create AF_UNIX socket: %s", strerror(errno));
87 return(0);
88 }
bfc9a610 89
be0b9bb7 90 if (connect(fd, (struct sockaddr*)&addr, addr_len) == -1) {
91 error("Couldn't connect to EGD socket \"%s\": %s",
92 addr.sun_path, strerror(errno));
93 close(fd);
94 return(0);
95 }
bfc9a610 96
be0b9bb7 97 /* Send blocking read request to EGD */
98 msg[0] = 0x02;
99 msg[1] = len;
100
101 if (atomicio(write, fd, msg, sizeof(msg)) != sizeof(msg)) {
102 error("Couldn't write to EGD socket \"%s\": %s",
103 EGD_SOCKET, strerror(errno));
104 close(fd);
105 return(0);
106 }
bfc9a610 107
be0b9bb7 108 if (atomicio(read, fd, buf, len) != len) {
109 error("Couldn't read from EGD socket \"%s\": %s",
110 EGD_SOCKET, strerror(errno));
111 close(fd);
112 return(0);
113 }
114
115 close(fd);
116
117 return(1);
bfc9a610 118}
119#else /* !EGD_SOCKET */
120#ifdef RANDOM_POOL
121/* Collect entropy from /dev/urandom or pipe */
be0b9bb7 122int get_random_bytes(unsigned char *buf, int len)
bfc9a610 123{
be0b9bb7 124 int random_pool;
bfc9a610 125
be0b9bb7 126 random_pool = open(RANDOM_POOL, O_RDONLY);
bfc9a610 127 if (random_pool == -1) {
be0b9bb7 128 error("Couldn't open random pool \"%s\": %s",
129 RANDOM_POOL, strerror(errno));
130 return(0);
bfc9a610 131 }
132
be0b9bb7 133 if (atomicio(read, random_pool, buf, len) != len) {
134 error("Couldn't read from random pool \"%s\": %s",
135 RANDOM_POOL, strerror(errno));
136 close(random_pool);
137 return(0);
138 }
139
140 close(random_pool);
141
142 return(1);
bfc9a610 143}
144#endif /* RANDOM_POOL */
145#endif /* EGD_SOCKET */
146
48c99b2c 147/*
148 * Seed OpenSSL's random number pool from Kernel random number generator
149 * or EGD
150 */
151void
152seed_rng(void)
153{
154 char buf[32];
155
156 debug("Seeding random number generator");
be0b9bb7 157
b5b3f75d 158 if (!get_random_bytes(buf, sizeof(buf))) {
159 if (!RAND_status())
160 fatal("Entropy collection failed and entropy exhausted");
161 } else {
162 RAND_add(buf, sizeof(buf), sizeof(buf));
163 }
164
48c99b2c 165 memset(buf, '\0', sizeof(buf));
166}
167
264dce47 168/* No-op */
169void init_rng(void) {}
170
48c99b2c 171#else /* defined(EGD_SOCKET) || defined(RANDOM_POOL) */
172
bfc9a610 173/*
174 * FIXME: proper entropy estimations. All current values are guesses
b7a87eea 175 * FIXME: (ATL) do estimates at compile time?
bfc9a610 176 * FIXME: More entropy sources
177 */
178
b7a87eea 179/* slow command timeouts (all in milliseconds) */
180/* static int entropy_timeout_default = ENTROPY_TIMEOUT_MSEC; */
181static int entropy_timeout_current = ENTROPY_TIMEOUT_MSEC;
182
d3083fbd 183static int prng_seed_saved = 0;
264dce47 184static int prng_initialised = 0;
185uid_t original_uid;
bfc9a610 186
187typedef struct
188{
189 /* Proportion of data that is entropy */
190 double rate;
b7a87eea 191 /* Counter goes positive if this command times out */
192 unsigned int badness;
193 /* Increases by factor of two each timeout */
194 unsigned int sticky_badness;
bfc9a610 195 /* Path to executable */
d3083fbd 196 char *path;
bfc9a610 197 /* argv to pass to executable */
d3083fbd 198 char *args[5];
ad85db64 199 /* full command string (debug) */
200 char *cmdstring;
bfc9a610 201} entropy_source_t;
202
b7a87eea 203double stir_from_system(void);
204double stir_from_programs(void);
205double stir_gettimeofday(double entropy_estimate);
206double stir_clock(double entropy_estimate);
207double stir_rusage(int who, double entropy_estimate);
208double hash_output_from_command(entropy_source_t *src, char *hash);
209
d3083fbd 210/* this is initialised from a file, by prng_read_commands() */
211entropy_source_t *entropy_sources = NULL;
bfc9a610 212
bfc9a610 213double
214stir_from_system(void)
215{
216 double total_entropy_estimate;
217 long int i;
218
219 total_entropy_estimate = 0;
220
221 i = getpid();
cbd7492e 222 RAND_add(&i, sizeof(i), 0.5);
bfc9a610 223 total_entropy_estimate += 0.1;
224
225 i = getppid();
cbd7492e 226 RAND_add(&i, sizeof(i), 0.5);
bfc9a610 227 total_entropy_estimate += 0.1;
228
229 i = getuid();
230 RAND_add(&i, sizeof(i), 0.0);
231 i = getgid();
232 RAND_add(&i, sizeof(i), 0.0);
233
234 total_entropy_estimate += stir_gettimeofday(1.0);
cbd7492e 235 total_entropy_estimate += stir_clock(0.5);
bfc9a610 236 total_entropy_estimate += stir_rusage(RUSAGE_SELF, 2.0);
237
238 return(total_entropy_estimate);
239}
240
241double
242stir_from_programs(void)
243{
244 int i;
245 int c;
246 double entropy_estimate;
247 double total_entropy_estimate;
248 char hash[SHA_DIGEST_LENGTH];
249
bfc9a610 250 total_entropy_estimate = 0;
48c99b2c 251 for(i = 0; i < NUM_ENTROPY_RUNS; i++) {
bfc9a610 252 c = 0;
253 while (entropy_sources[c].path != NULL) {
bfc9a610 254
b7a87eea 255 if (!entropy_sources[c].badness) {
256 /* Hash output from command */
257 entropy_estimate = hash_output_from_command(&entropy_sources[c], hash);
258
259 /* Scale back entropy estimate according to command's rate */
260 entropy_estimate *= entropy_sources[c].rate;
bfc9a610 261
b7a87eea 262 /* Upper bound of entropy estimate is SHA_DIGEST_LENGTH */
263 if (entropy_estimate > SHA_DIGEST_LENGTH)
264 entropy_estimate = SHA_DIGEST_LENGTH;
bfc9a610 265
48c99b2c 266 /* Scale back estimates for subsequent passes through list */
267 entropy_estimate /= SCALE_PER_RUN * (i + 1.0);
bfc9a610 268
b7a87eea 269 /* Stir it in */
270 RAND_add(hash, sizeof(hash), entropy_estimate);
bfc9a610 271
22d89d24 272 debug3("Got %0.2f bytes of entropy from '%s'", entropy_estimate,
ad85db64 273 entropy_sources[c].cmdstring);
bfc9a610 274
b7a87eea 275 total_entropy_estimate += entropy_estimate;
bfc9a610 276
277 /* Execution times should be a little unpredictable */
b7a87eea 278 total_entropy_estimate += stir_gettimeofday(0.05);
279 total_entropy_estimate += stir_clock(0.05);
280 total_entropy_estimate += stir_rusage(RUSAGE_SELF, 0.1);
281 total_entropy_estimate += stir_rusage(RUSAGE_CHILDREN, 0.1);
282 } else {
22d89d24 283 debug2("Command '%s' disabled (badness %d)",
ad85db64 284 entropy_sources[c].cmdstring, entropy_sources[c].badness);
b7a87eea 285
286 if (entropy_sources[c].badness > 0)
287 entropy_sources[c].badness--;
288 }
289
bfc9a610 290 c++;
291 }
292 }
293
294 return(total_entropy_estimate);
295}
296
297double
298stir_gettimeofday(double entropy_estimate)
299{
300 struct timeval tv;
301
302 if (gettimeofday(&tv, NULL) == -1)
303 fatal("Couldn't gettimeofday: %s", strerror(errno));
304
305 RAND_add(&tv, sizeof(tv), entropy_estimate);
306
307 return(entropy_estimate);
308}
309
310double
311stir_clock(double entropy_estimate)
312{
313#ifdef HAVE_CLOCK
314 clock_t c;
315
316 c = clock();
317 RAND_add(&c, sizeof(c), entropy_estimate);
318
319 return(entropy_estimate);
320#else /* _HAVE_CLOCK */
321 return(0);
322#endif /* _HAVE_CLOCK */
323}
324
325double
326stir_rusage(int who, double entropy_estimate)
327{
328#ifdef HAVE_GETRUSAGE
329 struct rusage ru;
330
b7a87eea 331 if (getrusage(who, &ru) == -1)
cbd7492e 332 return(0);
bfc9a610 333
cbd7492e 334 RAND_add(&ru, sizeof(ru), entropy_estimate);
bfc9a610 335
336 return(entropy_estimate);
337#else /* _HAVE_GETRUSAGE */
338 return(0);
339#endif /* _HAVE_GETRUSAGE */
340}
341
ad85db64 342
343static
344int
345_get_timeval_msec_difference(struct timeval *t1, struct timeval *t2) {
346 int secdiff, usecdiff;
347
348 secdiff = t2->tv_sec - t1->tv_sec;
349 usecdiff = (secdiff*1000000) + (t2->tv_usec - t1->tv_usec);
350 return (int)(usecdiff / 1000);
351}
352
bfc9a610 353double
b7a87eea 354hash_output_from_command(entropy_source_t *src, char *hash)
bfc9a610 355{
356 static int devnull = -1;
357 int p[2];
b7a87eea 358 fd_set rdset;
359 int cmd_eof = 0, error_abort = 0;
ad85db64 360 struct timeval tv_start, tv_current;
361 int msec_elapsed = 0;
bfc9a610 362 pid_t pid;
363 int status;
ad85db64 364 char buf[16384];
bfc9a610 365 int bytes_read;
366 int total_bytes_read;
367 SHA_CTX sha;
368
22d89d24 369 debug3("Reading output from \'%s\'", src->cmdstring);
370
bfc9a610 371 if (devnull == -1) {
372 devnull = open("/dev/null", O_RDWR);
373 if (devnull == -1)
374 fatal("Couldn't open /dev/null: %s", strerror(errno));
375 }
376
377 if (pipe(p) == -1)
378 fatal("Couldn't open pipe: %s", strerror(errno));
379
ad85db64 380 (void)gettimeofday(&tv_start, NULL); /* record start time */
381
bfc9a610 382 switch (pid = fork()) {
383 case -1: /* Error */
384 close(p[0]);
385 close(p[1]);
386 fatal("Couldn't fork: %s", strerror(errno));
387 /* NOTREACHED */
388 case 0: /* Child */
b7a87eea 389 dup2(devnull, STDIN_FILENO);
390 dup2(p[1], STDOUT_FILENO);
391 dup2(p[1], STDERR_FILENO);
bfc9a610 392 close(p[0]);
393 close(p[1]);
394 close(devnull);
395
264dce47 396 setuid(original_uid);
b7a87eea 397 execv(src->path, (char**)(src->args));
ad85db64 398 debug("(child) Couldn't exec '%s': %s", src->cmdstring,
399 strerror(errno));
bfc9a610 400 _exit(-1);
401 default: /* Parent */
402 break;
403 }
404
405 RAND_add(&pid, sizeof(&pid), 0.0);
406
407 close(p[1]);
408
409 /* Hash output from child */
410 SHA1_Init(&sha);
411 total_bytes_read = 0;
b7a87eea 412
413 while (!error_abort && !cmd_eof) {
414 int ret;
415 struct timeval tv;
ad85db64 416 int msec_remaining;
417
418 (void) gettimeofday(&tv_current, 0);
48c99b2c 419 msec_elapsed = _get_timeval_msec_difference(&tv_start, &tv_current);
ad85db64 420 if (msec_elapsed >= entropy_timeout_current) {
421 error_abort=1;
422 continue;
423 }
424 msec_remaining = entropy_timeout_current - msec_elapsed;
b7a87eea 425
426 FD_ZERO(&rdset);
427 FD_SET(p[0], &rdset);
ad85db64 428 tv.tv_sec = msec_remaining / 1000;
429 tv.tv_usec = (msec_remaining % 1000) * 1000;
b7a87eea 430
431 ret = select(p[0]+1, &rdset, NULL, NULL, &tv);
ad85db64 432
264dce47 433 RAND_add(&tv, sizeof(tv), 0.0);
434
b7a87eea 435 switch (ret) {
436 case 0:
437 /* timer expired */
438 error_abort = 1;
439 break;
b7a87eea 440 case 1:
441 /* command input */
442 bytes_read = read(p[0], buf, sizeof(buf));
264dce47 443 RAND_add(&bytes_read, sizeof(&bytes_read), 0.0);
b7a87eea 444 if (bytes_read == -1) {
445 error_abort = 1;
446 break;
264dce47 447 } else if (bytes_read) {
ad85db64 448 SHA1_Update(&sha, buf, bytes_read);
449 total_bytes_read += bytes_read;
264dce47 450 } else {
ad85db64 451 cmd_eof = 1;
264dce47 452 }
b7a87eea 453 break;
b7a87eea 454 case -1:
455 default:
264dce47 456 /* error */
ad85db64 457 debug("Command '%s': select() failed: %s", src->cmdstring,
458 strerror(errno));
b7a87eea 459 error_abort = 1;
460 break;
264dce47 461 }
462 }
b7a87eea 463
bfc9a610 464 SHA1_Final(hash, &sha);
465
466 close(p[0]);
ad85db64 467
22d89d24 468 debug3("Time elapsed: %d msec", msec_elapsed);
bfc9a610 469
470 if (waitpid(pid, &status, 0) == -1) {
22d89d24 471 error("Couldn't wait for child '%s' completion: %s", src->cmdstring,
ad85db64 472 strerror(errno));
b7a87eea 473 return(0.0);
bfc9a610 474 }
475
476 RAND_add(&status, sizeof(&status), 0.0);
477
b7a87eea 478 if (error_abort) {
479 /* closing p[0] on timeout causes the entropy command to
480 * SIGPIPE. Take whatever output we got, and mark this command
481 * as slow */
22d89d24 482 debug2("Command '%s' timed out", src->cmdstring);
b7a87eea 483 src->sticky_badness *= 2;
484 src->badness = src->sticky_badness;
bfc9a610 485 return(total_bytes_read);
b7a87eea 486 }
487
488 if (WIFEXITED(status)) {
489 if (WEXITSTATUS(status)==0) {
490 return(total_bytes_read);
491 } else {
22d89d24 492 debug2("Command '%s' exit status was %d", src->cmdstring,
48c99b2c 493 WEXITSTATUS(status));
b7a87eea 494 src->badness = src->sticky_badness = 128;
495 return (0.0);
496 }
497 } else if (WIFSIGNALED(status)) {
22d89d24 498 debug2("Command '%s' returned on uncaught signal %d !", src->cmdstring,
48c99b2c 499 status);
b7a87eea 500 src->badness = src->sticky_badness = 128;
501 return(0.0);
502 } else
503 return(0.0);
504}
505
506/*
507 * prng seedfile functions
508 */
509int
510prng_check_seedfile(char *filename) {
511
512 struct stat st;
513
514 /* FIXME raceable: eg replace seed between this stat and subsequent open */
515 /* Not such a problem because we don't trust the seed file anyway */
516 if (lstat(filename, &st) == -1) {
517 /* Fail on hard errors */
518 if (errno != ENOENT)
519 fatal("Couldn't stat random seed file \"%s\": %s", filename,
520 strerror(errno));
521
522 return(0);
523 }
524
525 /* regular file? */
526 if (!S_ISREG(st.st_mode))
527 fatal("PRNG seedfile %.100s is not a regular file", filename);
528
529 /* mode 0600, owned by root or the current user? */
264dce47 530 if (((st.st_mode & 0177) != 0) || !(st.st_uid == original_uid))
b7a87eea 531 fatal("PRNG seedfile %.100s must be mode 0600, owned by uid %d",
532 filename, getuid());
533
534 return(1);
535}
536
537void
538prng_write_seedfile(void) {
539 int fd;
540 char seed[1024];
541 char filename[1024];
542 struct passwd *pw;
543
544 /* Don't bother if we have already saved a seed */
545 if (prng_seed_saved)
546 return;
547
264dce47 548 setuid(original_uid);
549
52bcc044 550 prng_seed_saved = 1;
551
264dce47 552 pw = getpwuid(original_uid);
b7a87eea 553 if (pw == NULL)
554 fatal("Couldn't get password entry for current user (%i): %s",
264dce47 555 original_uid, strerror(errno));
b7a87eea 556
557 /* Try to ensure that the parent directory is there */
558 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
559 SSH_USER_DIR);
560 mkdir(filename, 0700);
561
562 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
563 SSH_PRNG_SEED_FILE);
564
565 debug("writing PRNG seed to file %.100s", filename);
566
567 RAND_bytes(seed, sizeof(seed));
568
569 /* Don't care if the seed doesn't exist */
570 prng_check_seedfile(filename);
571
572 if ((fd = open(filename, O_WRONLY|O_TRUNC|O_CREAT, 0600)) == -1)
573 fatal("couldn't access PRNG seedfile %.100s (%.100s)", filename,
574 strerror(errno));
575
576 if (atomicio(write, fd, &seed, sizeof(seed)) != sizeof(seed))
577 fatal("problem writing PRNG seedfile %.100s (%.100s)", filename,
578 strerror(errno));
579
580 close(fd);
581}
582
583void
584prng_read_seedfile(void) {
585 int fd;
586 char seed[1024];
587 char filename[1024];
588 struct passwd *pw;
589
264dce47 590 pw = getpwuid(original_uid);
b7a87eea 591 if (pw == NULL)
592 fatal("Couldn't get password entry for current user (%i): %s",
264dce47 593 original_uid, strerror(errno));
b7a87eea 594
595 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
596 SSH_PRNG_SEED_FILE);
597
598 debug("loading PRNG seed from file %.100s", filename);
599
600 if (!prng_check_seedfile(filename)) {
601 verbose("Random seed file not found, creating new");
602 prng_write_seedfile();
603
604 /* Reseed immediatly */
605 (void)stir_from_system();
606 (void)stir_from_programs();
607 return;
608 }
609
610 /* open the file and read in the seed */
611 fd = open(filename, O_RDONLY);
612 if (fd == -1)
613 fatal("could not open PRNG seedfile %.100s (%.100s)", filename,
614 strerror(errno));
615
616 if (atomicio(read, fd, &seed, sizeof(seed)) != sizeof(seed)) {
617 verbose("invalid or short read from PRNG seedfile %.100s - ignoring",
618 filename);
619 memset(seed, '\0', sizeof(seed));
620 }
621 close(fd);
622
623 /* stir in the seed, with estimated entropy zero */
624 RAND_add(&seed, sizeof(seed), 0.0);
bfc9a610 625}
b7a87eea 626
d3083fbd 627
628/*
629 * entropy command initialisation functions
630 */
d3083fbd 631int
632prng_read_commands(char *cmdfilename)
633{
634 FILE *f;
d3083fbd 635 char *cp;
48c99b2c 636 char line[1024];
637 char cmd[1024];
638 char path[256];
d3083fbd 639 int linenum;
d3083fbd 640 int num_cmds = 64;
641 int cur_cmd = 0;
48c99b2c 642 double est;
643 entropy_source_t *entcmd;
d3083fbd 644
645 f = fopen(cmdfilename, "r");
646 if (!f) {
647 fatal("couldn't read entropy commands file %.100s: %.100s",
648 cmdfilename, strerror(errno));
649 }
650
d3083fbd 651 entcmd = (entropy_source_t *)xmalloc(num_cmds * sizeof(entropy_source_t));
652 memset(entcmd, '\0', num_cmds * sizeof(entropy_source_t));
653
48c99b2c 654 /* Read in file */
655 linenum = 0;
d3083fbd 656 while (fgets(line, sizeof(line), f)) {
48c99b2c 657 int arg;
658 char *argv;
659
d3083fbd 660 linenum++;
661
662 /* skip leading whitespace, test for blank line or comment */
663 cp = line + strspn(line, WHITESPACE);
664 if ((*cp == 0) || (*cp == '#'))
665 continue; /* done with this line */
666
48c99b2c 667 /* First non-whitespace char should be double quote delimiting */
668 /* commandline */
669 if (*cp != '"') {
670 error("bad entropy command, %.100s line %d", cmdfilename,
671 linenum);
672 continue;
673 }
d3083fbd 674
48c99b2c 675 /* first token, command args (incl. argv[0]) in double quotes */
676 cp = strtok(cp, "\"");
677 if (cp == NULL) {
678 error("missing or bad command string, %.100s line %d -- ignored",
679 cmdfilename, linenum);
680 continue;
681 }
682 strlcpy(cmd, cp, sizeof(cmd));
683
684 /* second token, full command path */
685 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
686 error("missing command path, %.100s line %d -- ignored",
687 cmdfilename, linenum);
688 continue;
689 }
d3083fbd 690
48c99b2c 691 /* did configure mark this as dead? */
692 if (strncmp("undef", cp, 5) == 0)
693 continue;
d3083fbd 694
48c99b2c 695 strlcpy(path, cp, sizeof(path));
696
697 /* third token, entropy rate estimate for this command */
698 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
699 error("missing entropy estimate, %.100s line %d -- ignored",
700 cmdfilename, linenum);
701 continue;
702 }
703 est = strtod(cp, &argv);
704
705 /* end of line */
706 if ((cp = strtok(NULL, WHITESPACE)) != NULL) {
707 error("garbage at end of line %d in %.100s -- ignored", linenum,
708 cmdfilename);
d3083fbd 709 continue;
710 }
48c99b2c 711
712 /* save the command for debug messages */
713 entcmd[cur_cmd].cmdstring = xstrdup(cmd);
714
715 /* split the command args */
716 cp = strtok(cmd, WHITESPACE);
717 arg = 0;
718 argv = NULL;
719 do {
720 char *s = (char*)xmalloc(strlen(cp) + 1);
721 strncpy(s, cp, strlen(cp) + 1);
722 entcmd[cur_cmd].args[arg] = s;
723 arg++;
724 } while ((arg < 5) && (cp = strtok(NULL, WHITESPACE)));
725
726 if (strtok(NULL, WHITESPACE))
727 error("ignored extra command elements (max 5), %.100s line %d",
728 cmdfilename, linenum);
729
730 /* Copy the command path and rate estimate */
731 entcmd[cur_cmd].path = xstrdup(path);
732 entcmd[cur_cmd].rate = est;
733
734 /* Initialise other values */
735 entcmd[cur_cmd].sticky_badness = 1;
736
737 cur_cmd++;
738
739 /* If we've filled the array, reallocate it twice the size */
740 /* Do this now because even if this we're on the last command,
741 we need another slot to mark the last entry */
742 if (cur_cmd == num_cmds) {
743 num_cmds *= 2;
744 entcmd = xrealloc(entcmd, num_cmds * sizeof(entropy_source_t));
745 }
d3083fbd 746 }
747
748 /* zero the last entry */
749 memset(&entcmd[cur_cmd], '\0', sizeof(entropy_source_t));
48c99b2c 750
d3083fbd 751 /* trim to size */
752 entropy_sources = xrealloc(entcmd, (cur_cmd+1) * sizeof(entropy_source_t));
753
264dce47 754 debug("Loaded %d entropy commands from %.100s", cur_cmd, cmdfilename);
d3083fbd 755
756 return (cur_cmd >= MIN_ENTROPY_SOURCES);
757}
758
b7a87eea 759/*
760 * Write a keyfile at exit
761 */
762void
763prng_seed_cleanup(void *junk)
764{
765 prng_write_seedfile();
766}
767
bfc9a610 768/*
b7a87eea 769 * Conditionally Seed OpenSSL's random number pool from
770 * syscalls and program output
bfc9a610 771 */
772void
773seed_rng(void)
774{
a64009ad 775 void *old_sigchld_handler;
d3083fbd 776
264dce47 777 if (!prng_initialised)
778 fatal("RNG not initialised");
779
a64009ad 780 /* Make sure some other sigchld handler doesn't reap our entropy */
781 /* commands */
782 old_sigchld_handler = signal(SIGCHLD, SIG_DFL);
783
264dce47 784 debug("Seeded RNG with %i bytes from programs", (int)stir_from_programs());
785 debug("Seeded RNG with %i bytes from system calls", (int)stir_from_system());
786
787 if (!RAND_status())
788 fatal("Not enough entropy in RNG");
b7a87eea 789
a64009ad 790 signal(SIGCHLD, old_sigchld_handler);
791
ad85db64 792 if (!RAND_status())
793 fatal("Couldn't initialise builtin random number generator -- exiting.");
264dce47 794}
ad85db64 795
264dce47 796void init_rng(void)
797{
798 original_uid = getuid();
799
800 /* Read in collection commands */
801 if (!prng_read_commands(SSH_PRNG_COMMAND_FILE))
802 fatal("PRNG initialisation failed -- exiting.");
803
804 /* Set ourselves up to save a seed upon exit */
805 prng_seed_saved = 0;
806 prng_read_seedfile();
807 fatal_add_cleanup(prng_seed_cleanup, NULL);
808 atexit(prng_write_seedfile);
809
810 prng_initialised = 1;
bfc9a610 811}
264dce47 812
bfc9a610 813#endif /* defined(EGD_SOCKET) || defined(RANDOM_POOL) */
This page took 0.18681 seconds and 5 git commands to generate.