blob: 7cbc6951e1ccc23fc4dd8e45ef8625b43070c5b7 [file] [log] [blame]
Damien Miller040f3832000-04-03 14:50:43 +10001/*
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.
Damien Miller040f3832000-04-03 14:50:43 +100012 *
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
Damien Miller5f056372000-04-16 12:31:48 +100030#include <openssl/rand.h>
31#include <openssl/sha.h>
Damien Miller040f3832000-04-03 14:50:43 +100032
Damien Millerecbb26d2000-07-15 14:59:14 +100033/* SunOS 4.4.4 needs this */
34#ifdef HAVE_FLOATINGPOINT_H
35# include <floatingpoint.h>
36#endif /* HAVE_FLOATINGPOINT_H */
37
Damien Miller21de4502001-01-17 09:37:15 +110038RCSID("$Id: entropy.c,v 1.23 2001/01/16 22:37:15 djm Exp $");
Damien Miller040f3832000-04-03 14:50:43 +100039
Damien Miller040f3832000-04-03 14:50:43 +100040#ifndef offsetof
41# define offsetof(type, member) ((size_t) &((type *)0)->member)
42#endif
Damien Miller14c12cb2000-06-07 22:20:23 +100043
Damien Miller14c12cb2000-06-07 22:20:23 +100044/* 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
Damien Miller7b22d652000-06-18 14:07:04 +100055#ifndef RUSAGE_SELF
56# define RUSAGE_SELF 0
57#endif
58#ifndef RUSAGE_CHILDREN
59# define RUSAGE_CHILDREN 0
60#endif
61
Damien Miller14c12cb2000-06-07 22:20:23 +100062#if defined(EGD_SOCKET) || defined(RANDOM_POOL)
63
64#ifdef EGD_SOCKET
Damien Miller040f3832000-04-03 14:50:43 +100065/* Collect entropy from EGD */
Damien Miller64681252000-06-26 13:01:33 +100066int get_random_bytes(unsigned char *buf, int len)
Damien Miller040f3832000-04-03 14:50:43 +100067{
Damien Miller64681252000-06-26 13:01:33 +100068 int fd;
69 char msg[2];
Damien Miller040f3832000-04-03 14:50:43 +100070 struct sockaddr_un addr;
71 int addr_len;
72
Damien Miller64681252000-06-26 13:01:33 +100073 /* Sanity checks */
Damien Miller040f3832000-04-03 14:50:43 +100074 if (sizeof(EGD_SOCKET) > sizeof(addr.sun_path))
75 fatal("Random pool path is too long");
Damien Miller040f3832000-04-03 14:50:43 +100076 if (len > 255)
77 fatal("Too many bytes to read from EGD");
Damien Miller64681252000-06-26 13:01:33 +100078
79 memset(&addr, '\0', sizeof(addr));
80 addr.sun_family = AF_UNIX;
81 strlcpy(addr.sun_path, EGD_SOCKET, sizeof(addr.sun_path));
82 addr_len = offsetof(struct sockaddr_un, sun_path) + sizeof(EGD_SOCKET);
Damien Miller040f3832000-04-03 14:50:43 +100083
Damien Miller64681252000-06-26 13:01:33 +100084 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 }
89
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 }
96
Damien Miller040f3832000-04-03 14:50:43 +100097 /* Send blocking read request to EGD */
Damien Miller64681252000-06-26 13:01:33 +100098 msg[0] = 0x02;
99 msg[1] = len;
Damien Miller040f3832000-04-03 14:50:43 +1000100
Damien Miller64681252000-06-26 13:01:33 +1000101 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 }
Damien Miller040f3832000-04-03 14:50:43 +1000107
Damien Miller64681252000-06-26 13:01:33 +1000108 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);
Damien Miller040f3832000-04-03 14:50:43 +1000118}
119#else /* !EGD_SOCKET */
120#ifdef RANDOM_POOL
121/* Collect entropy from /dev/urandom or pipe */
Damien Miller64681252000-06-26 13:01:33 +1000122int get_random_bytes(unsigned char *buf, int len)
Damien Miller040f3832000-04-03 14:50:43 +1000123{
Damien Miller64681252000-06-26 13:01:33 +1000124 int random_pool;
Damien Miller040f3832000-04-03 14:50:43 +1000125
Damien Miller64681252000-06-26 13:01:33 +1000126 random_pool = open(RANDOM_POOL, O_RDONLY);
Damien Miller040f3832000-04-03 14:50:43 +1000127 if (random_pool == -1) {
Damien Miller64681252000-06-26 13:01:33 +1000128 error("Couldn't open random pool \"%s\": %s",
129 RANDOM_POOL, strerror(errno));
130 return(0);
Damien Miller040f3832000-04-03 14:50:43 +1000131 }
132
Damien Miller64681252000-06-26 13:01:33 +1000133 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);
Damien Miller040f3832000-04-03 14:50:43 +1000143}
144#endif /* RANDOM_POOL */
145#endif /* EGD_SOCKET */
146
Damien Miller14c12cb2000-06-07 22:20:23 +1000147/*
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");
Damien Miller64681252000-06-26 13:01:33 +1000157
Damien Miller08006472000-06-26 13:55:31 +1000158 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
Damien Miller14c12cb2000-06-07 22:20:23 +1000165 memset(buf, '\0', sizeof(buf));
166}
167
Damien Millerf9b625c2000-07-09 22:42:32 +1000168/* No-op */
169void init_rng(void) {}
170
Damien Miller14c12cb2000-06-07 22:20:23 +1000171#else /* defined(EGD_SOCKET) || defined(RANDOM_POOL) */
172
Damien Miller040f3832000-04-03 14:50:43 +1000173/*
174 * FIXME: proper entropy estimations. All current values are guesses
Damien Miller4018c192000-04-30 09:30:44 +1000175 * FIXME: (ATL) do estimates at compile time?
Damien Miller040f3832000-04-03 14:50:43 +1000176 * FIXME: More entropy sources
177 */
178
Damien Miller4018c192000-04-30 09:30:44 +1000179/* slow command timeouts (all in milliseconds) */
180/* static int entropy_timeout_default = ENTROPY_TIMEOUT_MSEC; */
181static int entropy_timeout_current = ENTROPY_TIMEOUT_MSEC;
182
Damien Miller0437b332000-05-02 09:56:41 +1000183static int prng_seed_saved = 0;
Damien Millerf9b625c2000-07-09 22:42:32 +1000184static int prng_initialised = 0;
185uid_t original_uid;
Damien Miller040f3832000-04-03 14:50:43 +1000186
187typedef struct
188{
189 /* Proportion of data that is entropy */
190 double rate;
Damien Miller4018c192000-04-30 09:30:44 +1000191 /* 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;
Damien Miller040f3832000-04-03 14:50:43 +1000195 /* Path to executable */
Damien Miller0437b332000-05-02 09:56:41 +1000196 char *path;
Damien Miller040f3832000-04-03 14:50:43 +1000197 /* argv to pass to executable */
Damien Miller0437b332000-05-02 09:56:41 +1000198 char *args[5];
Damien Miller8d1fd572000-05-17 21:34:07 +1000199 /* full command string (debug) */
200 char *cmdstring;
Damien Miller040f3832000-04-03 14:50:43 +1000201} entropy_source_t;
202
Damien Miller4018c192000-04-30 09:30:44 +1000203double 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
Damien Miller0437b332000-05-02 09:56:41 +1000210/* this is initialised from a file, by prng_read_commands() */
211entropy_source_t *entropy_sources = NULL;
Damien Miller040f3832000-04-03 14:50:43 +1000212
Damien Miller040f3832000-04-03 14:50:43 +1000213double
214stir_from_system(void)
215{
216 double total_entropy_estimate;
217 long int i;
218
219 total_entropy_estimate = 0;
220
221 i = getpid();
Damien Miller7b22d652000-06-18 14:07:04 +1000222 RAND_add(&i, sizeof(i), 0.5);
Damien Miller040f3832000-04-03 14:50:43 +1000223 total_entropy_estimate += 0.1;
224
225 i = getppid();
Damien Miller7b22d652000-06-18 14:07:04 +1000226 RAND_add(&i, sizeof(i), 0.5);
Damien Miller040f3832000-04-03 14:50:43 +1000227 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);
Damien Miller7b22d652000-06-18 14:07:04 +1000235 total_entropy_estimate += stir_clock(0.5);
Damien Miller040f3832000-04-03 14:50:43 +1000236 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
Damien Miller040f3832000-04-03 14:50:43 +1000250 total_entropy_estimate = 0;
Damien Miller14c12cb2000-06-07 22:20:23 +1000251 for(i = 0; i < NUM_ENTROPY_RUNS; i++) {
Damien Miller040f3832000-04-03 14:50:43 +1000252 c = 0;
253 while (entropy_sources[c].path != NULL) {
Damien Miller040f3832000-04-03 14:50:43 +1000254
Damien Miller4018c192000-04-30 09:30:44 +1000255 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;
Damien Miller040f3832000-04-03 14:50:43 +1000261
Damien Miller4018c192000-04-30 09:30:44 +1000262 /* Upper bound of entropy estimate is SHA_DIGEST_LENGTH */
263 if (entropy_estimate > SHA_DIGEST_LENGTH)
264 entropy_estimate = SHA_DIGEST_LENGTH;
Damien Miller040f3832000-04-03 14:50:43 +1000265
Damien Miller14c12cb2000-06-07 22:20:23 +1000266 /* Scale back estimates for subsequent passes through list */
267 entropy_estimate /= SCALE_PER_RUN * (i + 1.0);
Damien Miller040f3832000-04-03 14:50:43 +1000268
Damien Miller4018c192000-04-30 09:30:44 +1000269 /* Stir it in */
270 RAND_add(hash, sizeof(hash), entropy_estimate);
Damien Miller040f3832000-04-03 14:50:43 +1000271
Damien Millercb5e44a2000-09-29 12:12:36 +1100272 debug3("Got %0.2f bytes of entropy from '%s'", entropy_estimate,
Damien Miller8d1fd572000-05-17 21:34:07 +1000273 entropy_sources[c].cmdstring);
Damien Miller040f3832000-04-03 14:50:43 +1000274
Damien Miller4018c192000-04-30 09:30:44 +1000275 total_entropy_estimate += entropy_estimate;
Damien Miller040f3832000-04-03 14:50:43 +1000276
277 /* Execution times should be a little unpredictable */
Damien Miller4018c192000-04-30 09:30:44 +1000278 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 {
Damien Millercb5e44a2000-09-29 12:12:36 +1100283 debug2("Command '%s' disabled (badness %d)",
Damien Miller8d1fd572000-05-17 21:34:07 +1000284 entropy_sources[c].cmdstring, entropy_sources[c].badness);
Damien Miller4018c192000-04-30 09:30:44 +1000285
286 if (entropy_sources[c].badness > 0)
287 entropy_sources[c].badness--;
288 }
289
Damien Miller040f3832000-04-03 14:50:43 +1000290 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
Damien Miller4018c192000-04-30 09:30:44 +1000331 if (getrusage(who, &ru) == -1)
Damien Miller7b22d652000-06-18 14:07:04 +1000332 return(0);
Damien Miller040f3832000-04-03 14:50:43 +1000333
Damien Miller7b22d652000-06-18 14:07:04 +1000334 RAND_add(&ru, sizeof(ru), entropy_estimate);
Damien Miller040f3832000-04-03 14:50:43 +1000335
336 return(entropy_estimate);
337#else /* _HAVE_GETRUSAGE */
338 return(0);
339#endif /* _HAVE_GETRUSAGE */
340}
341
Damien Miller8d1fd572000-05-17 21:34:07 +1000342
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
Damien Miller040f3832000-04-03 14:50:43 +1000353double
Damien Miller4018c192000-04-30 09:30:44 +1000354hash_output_from_command(entropy_source_t *src, char *hash)
Damien Miller040f3832000-04-03 14:50:43 +1000355{
356 static int devnull = -1;
357 int p[2];
Damien Miller4018c192000-04-30 09:30:44 +1000358 fd_set rdset;
359 int cmd_eof = 0, error_abort = 0;
Damien Miller8d1fd572000-05-17 21:34:07 +1000360 struct timeval tv_start, tv_current;
361 int msec_elapsed = 0;
Damien Miller040f3832000-04-03 14:50:43 +1000362 pid_t pid;
363 int status;
Damien Miller8d1fd572000-05-17 21:34:07 +1000364 char buf[16384];
Damien Miller040f3832000-04-03 14:50:43 +1000365 int bytes_read;
366 int total_bytes_read;
367 SHA_CTX sha;
368
Damien Millercb5e44a2000-09-29 12:12:36 +1100369 debug3("Reading output from \'%s\'", src->cmdstring);
370
Damien Miller040f3832000-04-03 14:50:43 +1000371 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
Damien Miller8d1fd572000-05-17 21:34:07 +1000380 (void)gettimeofday(&tv_start, NULL); /* record start time */
381
Damien Miller040f3832000-04-03 14:50:43 +1000382 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 */
Damien Miller4018c192000-04-30 09:30:44 +1000389 dup2(devnull, STDIN_FILENO);
390 dup2(p[1], STDOUT_FILENO);
391 dup2(p[1], STDERR_FILENO);
Damien Miller040f3832000-04-03 14:50:43 +1000392 close(p[0]);
393 close(p[1]);
394 close(devnull);
395
Damien Millerf9b625c2000-07-09 22:42:32 +1000396 setuid(original_uid);
Damien Miller4018c192000-04-30 09:30:44 +1000397 execv(src->path, (char**)(src->args));
Damien Miller8d1fd572000-05-17 21:34:07 +1000398 debug("(child) Couldn't exec '%s': %s", src->cmdstring,
399 strerror(errno));
Damien Miller040f3832000-04-03 14:50:43 +1000400 _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;
Damien Miller4018c192000-04-30 09:30:44 +1000412
413 while (!error_abort && !cmd_eof) {
414 int ret;
415 struct timeval tv;
Damien Miller8d1fd572000-05-17 21:34:07 +1000416 int msec_remaining;
417
418 (void) gettimeofday(&tv_current, 0);
Damien Miller14c12cb2000-06-07 22:20:23 +1000419 msec_elapsed = _get_timeval_msec_difference(&tv_start, &tv_current);
Damien Miller8d1fd572000-05-17 21:34:07 +1000420 if (msec_elapsed >= entropy_timeout_current) {
421 error_abort=1;
422 continue;
423 }
424 msec_remaining = entropy_timeout_current - msec_elapsed;
Damien Miller4018c192000-04-30 09:30:44 +1000425
426 FD_ZERO(&rdset);
427 FD_SET(p[0], &rdset);
Damien Miller8d1fd572000-05-17 21:34:07 +1000428 tv.tv_sec = msec_remaining / 1000;
429 tv.tv_usec = (msec_remaining % 1000) * 1000;
Damien Miller4018c192000-04-30 09:30:44 +1000430
431 ret = select(p[0]+1, &rdset, NULL, NULL, &tv);
Damien Miller8d1fd572000-05-17 21:34:07 +1000432
Damien Millerf9b625c2000-07-09 22:42:32 +1000433 RAND_add(&tv, sizeof(tv), 0.0);
434
Damien Miller4018c192000-04-30 09:30:44 +1000435 switch (ret) {
436 case 0:
437 /* timer expired */
438 error_abort = 1;
439 break;
Damien Miller4018c192000-04-30 09:30:44 +1000440 case 1:
441 /* command input */
442 bytes_read = read(p[0], buf, sizeof(buf));
Damien Millerf9b625c2000-07-09 22:42:32 +1000443 RAND_add(&bytes_read, sizeof(&bytes_read), 0.0);
Damien Miller4018c192000-04-30 09:30:44 +1000444 if (bytes_read == -1) {
445 error_abort = 1;
446 break;
Damien Millerf9b625c2000-07-09 22:42:32 +1000447 } else if (bytes_read) {
Damien Miller8d1fd572000-05-17 21:34:07 +1000448 SHA1_Update(&sha, buf, bytes_read);
449 total_bytes_read += bytes_read;
Damien Millerf9b625c2000-07-09 22:42:32 +1000450 } else {
Damien Miller8d1fd572000-05-17 21:34:07 +1000451 cmd_eof = 1;
Damien Millerf9b625c2000-07-09 22:42:32 +1000452 }
Damien Miller4018c192000-04-30 09:30:44 +1000453 break;
Damien Miller4018c192000-04-30 09:30:44 +1000454 case -1:
455 default:
Damien Millerf9b625c2000-07-09 22:42:32 +1000456 /* error */
Damien Miller8d1fd572000-05-17 21:34:07 +1000457 debug("Command '%s': select() failed: %s", src->cmdstring,
458 strerror(errno));
Damien Miller4018c192000-04-30 09:30:44 +1000459 error_abort = 1;
460 break;
Damien Millerf9b625c2000-07-09 22:42:32 +1000461 }
462 }
Damien Miller4018c192000-04-30 09:30:44 +1000463
Damien Miller040f3832000-04-03 14:50:43 +1000464 SHA1_Final(hash, &sha);
465
466 close(p[0]);
Damien Miller8d1fd572000-05-17 21:34:07 +1000467
Damien Millercb5e44a2000-09-29 12:12:36 +1100468 debug3("Time elapsed: %d msec", msec_elapsed);
Damien Miller040f3832000-04-03 14:50:43 +1000469
470 if (waitpid(pid, &status, 0) == -1) {
Damien Millercb5e44a2000-09-29 12:12:36 +1100471 error("Couldn't wait for child '%s' completion: %s", src->cmdstring,
Damien Miller8d1fd572000-05-17 21:34:07 +1000472 strerror(errno));
Damien Miller4018c192000-04-30 09:30:44 +1000473 return(0.0);
Damien Miller040f3832000-04-03 14:50:43 +1000474 }
475
476 RAND_add(&status, sizeof(&status), 0.0);
477
Damien Miller4018c192000-04-30 09:30:44 +1000478 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 */
Damien Millercb5e44a2000-09-29 12:12:36 +1100482 debug2("Command '%s' timed out", src->cmdstring);
Damien Miller4018c192000-04-30 09:30:44 +1000483 src->sticky_badness *= 2;
484 src->badness = src->sticky_badness;
Damien Miller040f3832000-04-03 14:50:43 +1000485 return(total_bytes_read);
Damien Miller4018c192000-04-30 09:30:44 +1000486 }
487
488 if (WIFEXITED(status)) {
489 if (WEXITSTATUS(status)==0) {
490 return(total_bytes_read);
491 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +1100492 debug2("Command '%s' exit status was %d", src->cmdstring,
Damien Miller14c12cb2000-06-07 22:20:23 +1000493 WEXITSTATUS(status));
Damien Miller4018c192000-04-30 09:30:44 +1000494 src->badness = src->sticky_badness = 128;
495 return (0.0);
496 }
497 } else if (WIFSIGNALED(status)) {
Damien Millercb5e44a2000-09-29 12:12:36 +1100498 debug2("Command '%s' returned on uncaught signal %d !", src->cmdstring,
Damien Miller14c12cb2000-06-07 22:20:23 +1000499 status);
Damien Miller4018c192000-04-30 09:30:44 +1000500 src->badness = src->sticky_badness = 128;
501 return(0.0);
502 } else
503 return(0.0);
Damien Miller040f3832000-04-03 14:50:43 +1000504}
Damien Miller4018c192000-04-30 09:30:44 +1000505
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) {
Damien Miller52dc96b2000-10-16 20:13:43 +1100517 /* Give up on hard errors */
Damien Miller4018c192000-04-30 09:30:44 +1000518 if (errno != ENOENT)
Damien Miller52dc96b2000-10-16 20:13:43 +1100519 debug("WARNING: Couldn't stat random seed file \"%s\": %s",
520 filename, strerror(errno));
Damien Miller4018c192000-04-30 09:30:44 +1000521
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? */
Damien Miller52dc96b2000-10-16 20:13:43 +1100530 if (((st.st_mode & 0177) != 0) || !(st.st_uid == original_uid)) {
531 debug("WARNING: PRNG seedfile %.100s must be mode 0600, owned by uid %d",
Damien Miller4018c192000-04-30 09:30:44 +1000532 filename, getuid());
Damien Miller52dc96b2000-10-16 20:13:43 +1100533 return(0);
534 }
535
Damien Miller4018c192000-04-30 09:30:44 +1000536 return(1);
537}
538
539void
540prng_write_seedfile(void) {
541 int fd;
542 char seed[1024];
543 char filename[1024];
544 struct passwd *pw;
545
546 /* Don't bother if we have already saved a seed */
547 if (prng_seed_saved)
548 return;
549
Damien Millerf9b625c2000-07-09 22:42:32 +1000550 setuid(original_uid);
551
Damien Millerfc0b11b2000-05-02 00:03:55 +1000552 prng_seed_saved = 1;
553
Damien Millerf9b625c2000-07-09 22:42:32 +1000554 pw = getpwuid(original_uid);
Damien Miller4018c192000-04-30 09:30:44 +1000555 if (pw == NULL)
556 fatal("Couldn't get password entry for current user (%i): %s",
Damien Millerf9b625c2000-07-09 22:42:32 +1000557 original_uid, strerror(errno));
Damien Miller4018c192000-04-30 09:30:44 +1000558
559 /* Try to ensure that the parent directory is there */
560 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
561 SSH_USER_DIR);
562 mkdir(filename, 0700);
563
564 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
565 SSH_PRNG_SEED_FILE);
566
567 debug("writing PRNG seed to file %.100s", filename);
568
569 RAND_bytes(seed, sizeof(seed));
570
571 /* Don't care if the seed doesn't exist */
572 prng_check_seedfile(filename);
573
Damien Miller52dc96b2000-10-16 20:13:43 +1100574 if ((fd = open(filename, O_WRONLY|O_TRUNC|O_CREAT, 0600)) == -1) {
575 debug("WARNING: couldn't access PRNG seedfile %.100s (%.100s)",
576 filename, strerror(errno));
577 } else {
578 if (atomicio(write, fd, &seed, sizeof(seed)) != sizeof(seed))
579 fatal("problem writing PRNG seedfile %.100s (%.100s)", filename,
580 strerror(errno));
Damien Miller4018c192000-04-30 09:30:44 +1000581
Damien Miller52dc96b2000-10-16 20:13:43 +1100582 close(fd);
583 }
Damien Miller4018c192000-04-30 09:30:44 +1000584}
585
586void
587prng_read_seedfile(void) {
588 int fd;
589 char seed[1024];
590 char filename[1024];
591 struct passwd *pw;
592
Damien Millerf9b625c2000-07-09 22:42:32 +1000593 pw = getpwuid(original_uid);
Damien Miller4018c192000-04-30 09:30:44 +1000594 if (pw == NULL)
595 fatal("Couldn't get password entry for current user (%i): %s",
Damien Millerf9b625c2000-07-09 22:42:32 +1000596 original_uid, strerror(errno));
Damien Miller4018c192000-04-30 09:30:44 +1000597
598 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
599 SSH_PRNG_SEED_FILE);
600
601 debug("loading PRNG seed from file %.100s", filename);
602
603 if (!prng_check_seedfile(filename)) {
Damien Miller21de4502001-01-17 09:37:15 +1100604 verbose("Random seed file not found or not valid, ignoring.");
Damien Miller4018c192000-04-30 09:30:44 +1000605 return;
606 }
607
608 /* open the file and read in the seed */
609 fd = open(filename, O_RDONLY);
610 if (fd == -1)
611 fatal("could not open PRNG seedfile %.100s (%.100s)", filename,
612 strerror(errno));
613
614 if (atomicio(read, fd, &seed, sizeof(seed)) != sizeof(seed)) {
615 verbose("invalid or short read from PRNG seedfile %.100s - ignoring",
616 filename);
617 memset(seed, '\0', sizeof(seed));
618 }
619 close(fd);
620
621 /* stir in the seed, with estimated entropy zero */
622 RAND_add(&seed, sizeof(seed), 0.0);
623}
624
Damien Miller0437b332000-05-02 09:56:41 +1000625
626/*
627 * entropy command initialisation functions
628 */
Damien Miller0437b332000-05-02 09:56:41 +1000629int
630prng_read_commands(char *cmdfilename)
631{
632 FILE *f;
Damien Miller0437b332000-05-02 09:56:41 +1000633 char *cp;
Damien Miller14c12cb2000-06-07 22:20:23 +1000634 char line[1024];
635 char cmd[1024];
636 char path[256];
Damien Miller0437b332000-05-02 09:56:41 +1000637 int linenum;
Damien Miller0437b332000-05-02 09:56:41 +1000638 int num_cmds = 64;
639 int cur_cmd = 0;
Damien Miller14c12cb2000-06-07 22:20:23 +1000640 double est;
641 entropy_source_t *entcmd;
Damien Miller0437b332000-05-02 09:56:41 +1000642
643 f = fopen(cmdfilename, "r");
644 if (!f) {
645 fatal("couldn't read entropy commands file %.100s: %.100s",
646 cmdfilename, strerror(errno));
647 }
648
Damien Miller0437b332000-05-02 09:56:41 +1000649 entcmd = (entropy_source_t *)xmalloc(num_cmds * sizeof(entropy_source_t));
650 memset(entcmd, '\0', num_cmds * sizeof(entropy_source_t));
651
Damien Miller14c12cb2000-06-07 22:20:23 +1000652 /* Read in file */
653 linenum = 0;
Damien Miller0437b332000-05-02 09:56:41 +1000654 while (fgets(line, sizeof(line), f)) {
Damien Miller14c12cb2000-06-07 22:20:23 +1000655 int arg;
656 char *argv;
657
Damien Miller0437b332000-05-02 09:56:41 +1000658 linenum++;
659
660 /* skip leading whitespace, test for blank line or comment */
661 cp = line + strspn(line, WHITESPACE);
662 if ((*cp == 0) || (*cp == '#'))
663 continue; /* done with this line */
664
Damien Miller14c12cb2000-06-07 22:20:23 +1000665 /* First non-whitespace char should be double quote delimiting */
666 /* commandline */
667 if (*cp != '"') {
Damien Miller0437b332000-05-02 09:56:41 +1000668 error("bad entropy command, %.100s line %d", cmdfilename,
669 linenum);
670 continue;
Damien Miller14c12cb2000-06-07 22:20:23 +1000671 }
672
673 /* first token, command args (incl. argv[0]) in double quotes */
674 cp = strtok(cp, "\"");
675 if (cp == NULL) {
676 error("missing or bad command string, %.100s line %d -- ignored",
677 cmdfilename, linenum);
678 continue;
679 }
680 strlcpy(cmd, cp, sizeof(cmd));
681
682 /* second token, full command path */
683 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
684 error("missing command path, %.100s line %d -- ignored",
685 cmdfilename, linenum);
686 continue;
687 }
688
689 /* did configure mark this as dead? */
690 if (strncmp("undef", cp, 5) == 0)
691 continue;
692
693 strlcpy(path, cp, sizeof(path));
694
695 /* third token, entropy rate estimate for this command */
696 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
697 error("missing entropy estimate, %.100s line %d -- ignored",
698 cmdfilename, linenum);
699 continue;
700 }
701 est = strtod(cp, &argv);
702
703 /* end of line */
704 if ((cp = strtok(NULL, WHITESPACE)) != NULL) {
705 error("garbage at end of line %d in %.100s -- ignored", linenum,
706 cmdfilename);
707 continue;
708 }
709
710 /* save the command for debug messages */
711 entcmd[cur_cmd].cmdstring = xstrdup(cmd);
712
713 /* split the command args */
714 cp = strtok(cmd, WHITESPACE);
715 arg = 0;
716 argv = NULL;
717 do {
718 char *s = (char*)xmalloc(strlen(cp) + 1);
719 strncpy(s, cp, strlen(cp) + 1);
720 entcmd[cur_cmd].args[arg] = s;
721 arg++;
722 } while ((arg < 5) && (cp = strtok(NULL, WHITESPACE)));
723
724 if (strtok(NULL, WHITESPACE))
725 error("ignored extra command elements (max 5), %.100s line %d",
726 cmdfilename, linenum);
727
728 /* Copy the command path and rate estimate */
729 entcmd[cur_cmd].path = xstrdup(path);
730 entcmd[cur_cmd].rate = est;
731
732 /* Initialise other values */
733 entcmd[cur_cmd].sticky_badness = 1;
734
735 cur_cmd++;
736
737 /* If we've filled the array, reallocate it twice the size */
738 /* Do this now because even if this we're on the last command,
739 we need another slot to mark the last entry */
740 if (cur_cmd == num_cmds) {
741 num_cmds *= 2;
742 entcmd = xrealloc(entcmd, num_cmds * sizeof(entropy_source_t));
Damien Miller0437b332000-05-02 09:56:41 +1000743 }
744 }
745
746 /* zero the last entry */
747 memset(&entcmd[cur_cmd], '\0', sizeof(entropy_source_t));
Damien Miller14c12cb2000-06-07 22:20:23 +1000748
Damien Miller0437b332000-05-02 09:56:41 +1000749 /* trim to size */
750 entropy_sources = xrealloc(entcmd, (cur_cmd+1) * sizeof(entropy_source_t));
751
Damien Millerf9b625c2000-07-09 22:42:32 +1000752 debug("Loaded %d entropy commands from %.100s", cur_cmd, cmdfilename);
Damien Miller0437b332000-05-02 09:56:41 +1000753
754 return (cur_cmd >= MIN_ENTROPY_SOURCES);
755}
756
Damien Miller040f3832000-04-03 14:50:43 +1000757/*
Damien Miller4018c192000-04-30 09:30:44 +1000758 * Write a keyfile at exit
759 */
760void
761prng_seed_cleanup(void *junk)
762{
763 prng_write_seedfile();
764}
765
766/*
767 * Conditionally Seed OpenSSL's random number pool from
768 * syscalls and program output
Damien Miller040f3832000-04-03 14:50:43 +1000769 */
770void
771seed_rng(void)
772{
Damien Millerf3c6cf12000-05-17 22:08:29 +1000773 void *old_sigchld_handler;
Damien Miller0437b332000-05-02 09:56:41 +1000774
Damien Millerf9b625c2000-07-09 22:42:32 +1000775 if (!prng_initialised)
776 fatal("RNG not initialised");
777
Damien Millerf3c6cf12000-05-17 22:08:29 +1000778 /* Make sure some other sigchld handler doesn't reap our entropy */
779 /* commands */
780 old_sigchld_handler = signal(SIGCHLD, SIG_DFL);
781
Damien Millerf9b625c2000-07-09 22:42:32 +1000782 debug("Seeded RNG with %i bytes from programs", (int)stir_from_programs());
783 debug("Seeded RNG with %i bytes from system calls", (int)stir_from_system());
784
785 if (!RAND_status())
786 fatal("Not enough entropy in RNG");
Damien Miller4018c192000-04-30 09:30:44 +1000787
Damien Millerf3c6cf12000-05-17 22:08:29 +1000788 signal(SIGCHLD, old_sigchld_handler);
789
Damien Miller8d1fd572000-05-17 21:34:07 +1000790 if (!RAND_status())
791 fatal("Couldn't initialise builtin random number generator -- exiting.");
Damien Miller040f3832000-04-03 14:50:43 +1000792}
Damien Millerf9b625c2000-07-09 22:42:32 +1000793
794void init_rng(void)
795{
Damien Millerd592b632000-11-25 10:09:32 +1100796 int original_euid;
797
Damien Millerf9b625c2000-07-09 22:42:32 +1000798 original_uid = getuid();
Damien Millerd592b632000-11-25 10:09:32 +1100799 original_euid = geteuid();
Damien Millerf9b625c2000-07-09 22:42:32 +1000800
801 /* Read in collection commands */
802 if (!prng_read_commands(SSH_PRNG_COMMAND_FILE))
803 fatal("PRNG initialisation failed -- exiting.");
804
805 /* Set ourselves up to save a seed upon exit */
806 prng_seed_saved = 0;
Damien Millerd592b632000-11-25 10:09:32 +1100807
808 /* Give up privs while reading seed file */
809 if ((original_uid != original_euid) && (seteuid(original_uid) == -1))
810 fatal("Couldn't give up privileges");
811
Damien Millerf9b625c2000-07-09 22:42:32 +1000812 prng_read_seedfile();
Damien Millerd592b632000-11-25 10:09:32 +1100813
814 if ((original_uid != original_euid) && (seteuid(original_euid) == -1))
815 fatal("Couldn't restore privileges");
816
Damien Millerf9b625c2000-07-09 22:42:32 +1000817 fatal_add_cleanup(prng_seed_cleanup, NULL);
818 atexit(prng_write_seedfile);
819
820 prng_initialised = 1;
821}
822
Damien Miller040f3832000-04-03 14:50:43 +1000823#endif /* defined(EGD_SOCKET) || defined(RANDOM_POOL) */