blob: 3b0893b3e2d3810a02089ea5567354807ab42047 [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
Damien Miller5f056372000-04-16 12:31:48 +100027#include <openssl/rand.h>
28#include <openssl/sha.h>
Damien Miller767c7fc2001-02-27 09:20:57 +110029#include <openssl/crypto.h>
Damien Miller040f3832000-04-03 14:50:43 +100030
Damien Millerecbb26d2000-07-15 14:59:14 +100031/* SunOS 4.4.4 needs this */
32#ifdef HAVE_FLOATINGPOINT_H
33# include <floatingpoint.h>
34#endif /* HAVE_FLOATINGPOINT_H */
35
Ben Lindstrom226cfa02001-01-22 05:34:40 +000036#include "ssh.h"
Damien Millera1072a82001-02-18 15:28:11 +110037#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000038#include "xmalloc.h"
39#include "atomicio.h"
Ben Lindstromcb577332001-01-22 21:06:19 +000040#include "pathnames.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000041#include "log.h"
42
Damien Miller3456d322001-02-27 11:00:52 +110043RCSID("$Id: entropy.c,v 1.34 2001/02/27 00:00:52 djm Exp $");
Damien Miller040f3832000-04-03 14:50:43 +100044
Damien Miller040f3832000-04-03 14:50:43 +100045#ifndef offsetof
46# define offsetof(type, member) ((size_t) &((type *)0)->member)
47#endif
Damien Miller14c12cb2000-06-07 22:20:23 +100048
Damien Miller14c12cb2000-06-07 22:20:23 +100049/* Number of times to pass through command list gathering entropy */
50#define NUM_ENTROPY_RUNS 1
51
52/* Scale entropy estimates back by this amount on subsequent runs */
53#define SCALE_PER_RUN 10.0
54
55/* Minimum number of commands to be considered valid */
56#define MIN_ENTROPY_SOURCES 16
57
58#define WHITESPACE " \t\n"
59
Damien Miller7b22d652000-06-18 14:07:04 +100060#ifndef RUSAGE_SELF
61# define RUSAGE_SELF 0
62#endif
63#ifndef RUSAGE_CHILDREN
64# define RUSAGE_CHILDREN 0
65#endif
66
Damien Millerfbd884a2001-02-27 08:39:07 +110067#if defined(_POSIX_SAVED_IDS) && !defined(BROKEN_SAVED_UIDS)
68# define SAVED_IDS_WORK_WITH_SETEUID
69#endif
70
Damien Miller767c7fc2001-02-27 09:20:57 +110071void check_openssl_version(void)
72{
73 if (SSLeay() != OPENSSL_VERSION_NUMBER)
Damien Miller3456d322001-02-27 11:00:52 +110074 fatal("OpenSSL version mismatch. Built against %lx, you "
75 "have %lx", OPENSSL_VERSION_NUMBER, SSLeay());
Damien Miller767c7fc2001-02-27 09:20:57 +110076}
77
78
Damien Miller14c12cb2000-06-07 22:20:23 +100079#if defined(EGD_SOCKET) || defined(RANDOM_POOL)
80
81#ifdef EGD_SOCKET
Damien Miller040f3832000-04-03 14:50:43 +100082/* Collect entropy from EGD */
Damien Miller64681252000-06-26 13:01:33 +100083int get_random_bytes(unsigned char *buf, int len)
Damien Miller040f3832000-04-03 14:50:43 +100084{
Damien Miller64681252000-06-26 13:01:33 +100085 int fd;
86 char msg[2];
Damien Miller040f3832000-04-03 14:50:43 +100087 struct sockaddr_un addr;
Damien Millerb3ffc5f2001-02-18 12:44:29 +110088 int addr_len, rval, errors;
Damien Millera1072a82001-02-18 15:28:11 +110089 mysig_t old_sigpipe;
Damien Miller040f3832000-04-03 14:50:43 +100090
Damien Miller64681252000-06-26 13:01:33 +100091 /* Sanity checks */
Damien Miller040f3832000-04-03 14:50:43 +100092 if (sizeof(EGD_SOCKET) > sizeof(addr.sun_path))
93 fatal("Random pool path is too long");
Damien Miller040f3832000-04-03 14:50:43 +100094 if (len > 255)
95 fatal("Too many bytes to read from EGD");
Damien Miller64681252000-06-26 13:01:33 +100096
97 memset(&addr, '\0', sizeof(addr));
98 addr.sun_family = AF_UNIX;
99 strlcpy(addr.sun_path, EGD_SOCKET, sizeof(addr.sun_path));
100 addr_len = offsetof(struct sockaddr_un, sun_path) + sizeof(EGD_SOCKET);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000101
Damien Millera1072a82001-02-18 15:28:11 +1100102 old_sigpipe = mysignal(SIGPIPE, SIG_IGN);
Damien Millerb3ffc5f2001-02-18 12:44:29 +1100103
104 errors = rval = 0;
105reopen:
Damien Miller64681252000-06-26 13:01:33 +1000106 fd = socket(AF_UNIX, SOCK_STREAM, 0);
107 if (fd == -1) {
108 error("Couldn't create AF_UNIX socket: %s", strerror(errno));
Damien Millerb3ffc5f2001-02-18 12:44:29 +1100109 goto done;
Damien Miller64681252000-06-26 13:01:33 +1000110 }
111
112 if (connect(fd, (struct sockaddr*)&addr, addr_len) == -1) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000113 error("Couldn't connect to EGD socket \"%s\": %s",
Damien Miller64681252000-06-26 13:01:33 +1000114 addr.sun_path, strerror(errno));
Damien Millerb3ffc5f2001-02-18 12:44:29 +1100115 goto done;
Damien Miller64681252000-06-26 13:01:33 +1000116 }
117
Damien Miller040f3832000-04-03 14:50:43 +1000118 /* Send blocking read request to EGD */
Damien Miller64681252000-06-26 13:01:33 +1000119 msg[0] = 0x02;
120 msg[1] = len;
Damien Miller040f3832000-04-03 14:50:43 +1000121
Damien Miller64681252000-06-26 13:01:33 +1000122 if (atomicio(write, fd, msg, sizeof(msg)) != sizeof(msg)) {
Damien Millerb3ffc5f2001-02-18 12:44:29 +1100123 if (errno == EPIPE && errors < 10) {
124 close(fd);
125 errors++;
126 goto reopen;
127 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000128 error("Couldn't write to EGD socket \"%s\": %s",
Damien Miller64681252000-06-26 13:01:33 +1000129 EGD_SOCKET, strerror(errno));
Damien Millerb3ffc5f2001-02-18 12:44:29 +1100130 goto done;
Damien Miller64681252000-06-26 13:01:33 +1000131 }
Damien Miller040f3832000-04-03 14:50:43 +1000132
Damien Miller64681252000-06-26 13:01:33 +1000133 if (atomicio(read, fd, buf, len) != len) {
Damien Millerb3ffc5f2001-02-18 12:44:29 +1100134 if (errno == EPIPE && errors < 10) {
135 close(fd);
136 errors++;
137 goto reopen;
138 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000139 error("Couldn't read from EGD socket \"%s\": %s",
Damien Miller64681252000-06-26 13:01:33 +1000140 EGD_SOCKET, strerror(errno));
Damien Millerb3ffc5f2001-02-18 12:44:29 +1100141 goto done;
Damien Miller64681252000-06-26 13:01:33 +1000142 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000143
Damien Millerb3ffc5f2001-02-18 12:44:29 +1100144 rval = 1;
145done:
Kevin Steves4679f5b2001-02-18 11:34:32 +0000146 mysignal(SIGPIPE, old_sigpipe);
Damien Millerb3ffc5f2001-02-18 12:44:29 +1100147 if (fd != -1)
148 close(fd);
149 return(rval);
Damien Miller040f3832000-04-03 14:50:43 +1000150}
151#else /* !EGD_SOCKET */
152#ifdef RANDOM_POOL
153/* Collect entropy from /dev/urandom or pipe */
Damien Miller64681252000-06-26 13:01:33 +1000154int get_random_bytes(unsigned char *buf, int len)
Damien Miller040f3832000-04-03 14:50:43 +1000155{
Damien Miller64681252000-06-26 13:01:33 +1000156 int random_pool;
Damien Miller040f3832000-04-03 14:50:43 +1000157
Damien Miller64681252000-06-26 13:01:33 +1000158 random_pool = open(RANDOM_POOL, O_RDONLY);
Damien Miller040f3832000-04-03 14:50:43 +1000159 if (random_pool == -1) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000160 error("Couldn't open random pool \"%s\": %s",
Damien Miller64681252000-06-26 13:01:33 +1000161 RANDOM_POOL, strerror(errno));
162 return(0);
Damien Miller040f3832000-04-03 14:50:43 +1000163 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000164
Damien Miller64681252000-06-26 13:01:33 +1000165 if (atomicio(read, random_pool, buf, len) != len) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000166 error("Couldn't read from random pool \"%s\": %s",
Damien Miller64681252000-06-26 13:01:33 +1000167 RANDOM_POOL, strerror(errno));
168 close(random_pool);
169 return(0);
170 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000171
Damien Miller64681252000-06-26 13:01:33 +1000172 close(random_pool);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000173
Damien Miller64681252000-06-26 13:01:33 +1000174 return(1);
Damien Miller040f3832000-04-03 14:50:43 +1000175}
176#endif /* RANDOM_POOL */
177#endif /* EGD_SOCKET */
178
Damien Miller14c12cb2000-06-07 22:20:23 +1000179/*
180 * Seed OpenSSL's random number pool from Kernel random number generator
181 * or EGD
182 */
183void
184seed_rng(void)
185{
186 char buf[32];
Kevin Stevesef4eea92001-02-05 12:42:17 +0000187
Damien Miller14c12cb2000-06-07 22:20:23 +1000188 debug("Seeding random number generator");
Damien Miller64681252000-06-26 13:01:33 +1000189
Damien Miller08006472000-06-26 13:55:31 +1000190 if (!get_random_bytes(buf, sizeof(buf))) {
191 if (!RAND_status())
192 fatal("Entropy collection failed and entropy exhausted");
193 } else {
194 RAND_add(buf, sizeof(buf), sizeof(buf));
195 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000196
Damien Miller14c12cb2000-06-07 22:20:23 +1000197 memset(buf, '\0', sizeof(buf));
198}
199
Damien Miller767c7fc2001-02-27 09:20:57 +1100200void init_rng(void)
201{
202 check_openssl_version();
203}
Damien Millerf9b625c2000-07-09 22:42:32 +1000204
Damien Miller14c12cb2000-06-07 22:20:23 +1000205#else /* defined(EGD_SOCKET) || defined(RANDOM_POOL) */
206
Kevin Stevesef4eea92001-02-05 12:42:17 +0000207/*
Damien Miller040f3832000-04-03 14:50:43 +1000208 * FIXME: proper entropy estimations. All current values are guesses
Damien Miller4018c192000-04-30 09:30:44 +1000209 * FIXME: (ATL) do estimates at compile time?
Damien Miller040f3832000-04-03 14:50:43 +1000210 * FIXME: More entropy sources
211 */
212
Damien Miller4018c192000-04-30 09:30:44 +1000213/* slow command timeouts (all in milliseconds) */
214/* static int entropy_timeout_default = ENTROPY_TIMEOUT_MSEC; */
215static int entropy_timeout_current = ENTROPY_TIMEOUT_MSEC;
216
Damien Miller0437b332000-05-02 09:56:41 +1000217static int prng_seed_saved = 0;
Damien Millerf9b625c2000-07-09 22:42:32 +1000218static int prng_initialised = 0;
219uid_t original_uid;
Damien Miller040f3832000-04-03 14:50:43 +1000220
221typedef struct
222{
223 /* Proportion of data that is entropy */
224 double rate;
Damien Miller4018c192000-04-30 09:30:44 +1000225 /* Counter goes positive if this command times out */
226 unsigned int badness;
227 /* Increases by factor of two each timeout */
228 unsigned int sticky_badness;
Damien Miller040f3832000-04-03 14:50:43 +1000229 /* Path to executable */
Damien Miller0437b332000-05-02 09:56:41 +1000230 char *path;
Damien Miller040f3832000-04-03 14:50:43 +1000231 /* argv to pass to executable */
Damien Miller0437b332000-05-02 09:56:41 +1000232 char *args[5];
Damien Miller8d1fd572000-05-17 21:34:07 +1000233 /* full command string (debug) */
234 char *cmdstring;
Damien Miller040f3832000-04-03 14:50:43 +1000235} entropy_source_t;
236
Damien Miller4018c192000-04-30 09:30:44 +1000237double stir_from_system(void);
238double stir_from_programs(void);
239double stir_gettimeofday(double entropy_estimate);
240double stir_clock(double entropy_estimate);
241double stir_rusage(int who, double entropy_estimate);
242double hash_output_from_command(entropy_source_t *src, char *hash);
243
Damien Miller0437b332000-05-02 09:56:41 +1000244/* this is initialised from a file, by prng_read_commands() */
245entropy_source_t *entropy_sources = NULL;
Damien Miller040f3832000-04-03 14:50:43 +1000246
Kevin Stevesef4eea92001-02-05 12:42:17 +0000247double
Damien Miller040f3832000-04-03 14:50:43 +1000248stir_from_system(void)
249{
250 double total_entropy_estimate;
251 long int i;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000252
Damien Miller040f3832000-04-03 14:50:43 +1000253 total_entropy_estimate = 0;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000254
Damien Miller040f3832000-04-03 14:50:43 +1000255 i = getpid();
Damien Miller7b22d652000-06-18 14:07:04 +1000256 RAND_add(&i, sizeof(i), 0.5);
Damien Miller040f3832000-04-03 14:50:43 +1000257 total_entropy_estimate += 0.1;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000258
Damien Miller040f3832000-04-03 14:50:43 +1000259 i = getppid();
Damien Miller7b22d652000-06-18 14:07:04 +1000260 RAND_add(&i, sizeof(i), 0.5);
Damien Miller040f3832000-04-03 14:50:43 +1000261 total_entropy_estimate += 0.1;
262
263 i = getuid();
264 RAND_add(&i, sizeof(i), 0.0);
265 i = getgid();
266 RAND_add(&i, sizeof(i), 0.0);
267
268 total_entropy_estimate += stir_gettimeofday(1.0);
Damien Miller7b22d652000-06-18 14:07:04 +1000269 total_entropy_estimate += stir_clock(0.5);
Damien Miller040f3832000-04-03 14:50:43 +1000270 total_entropy_estimate += stir_rusage(RUSAGE_SELF, 2.0);
271
272 return(total_entropy_estimate);
273}
274
Kevin Stevesef4eea92001-02-05 12:42:17 +0000275double
Damien Miller040f3832000-04-03 14:50:43 +1000276stir_from_programs(void)
277{
278 int i;
279 int c;
280 double entropy_estimate;
281 double total_entropy_estimate;
282 char hash[SHA_DIGEST_LENGTH];
283
Damien Miller040f3832000-04-03 14:50:43 +1000284 total_entropy_estimate = 0;
Damien Miller14c12cb2000-06-07 22:20:23 +1000285 for(i = 0; i < NUM_ENTROPY_RUNS; i++) {
Damien Miller040f3832000-04-03 14:50:43 +1000286 c = 0;
287 while (entropy_sources[c].path != NULL) {
Damien Miller040f3832000-04-03 14:50:43 +1000288
Damien Miller4018c192000-04-30 09:30:44 +1000289 if (!entropy_sources[c].badness) {
290 /* Hash output from command */
291 entropy_estimate = hash_output_from_command(&entropy_sources[c], hash);
292
293 /* Scale back entropy estimate according to command's rate */
294 entropy_estimate *= entropy_sources[c].rate;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000295
Damien Miller4018c192000-04-30 09:30:44 +1000296 /* Upper bound of entropy estimate is SHA_DIGEST_LENGTH */
297 if (entropy_estimate > SHA_DIGEST_LENGTH)
298 entropy_estimate = SHA_DIGEST_LENGTH;
Damien Miller040f3832000-04-03 14:50:43 +1000299
Kevin Stevesef4eea92001-02-05 12:42:17 +0000300 /* Scale back estimates for subsequent passes through list */
Damien Miller14c12cb2000-06-07 22:20:23 +1000301 entropy_estimate /= SCALE_PER_RUN * (i + 1.0);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000302
Damien Miller4018c192000-04-30 09:30:44 +1000303 /* Stir it in */
304 RAND_add(hash, sizeof(hash), entropy_estimate);
Damien Miller040f3832000-04-03 14:50:43 +1000305
Kevin Stevesef4eea92001-02-05 12:42:17 +0000306 debug3("Got %0.2f bytes of entropy from '%s'", entropy_estimate,
Damien Miller8d1fd572000-05-17 21:34:07 +1000307 entropy_sources[c].cmdstring);
Damien Miller040f3832000-04-03 14:50:43 +1000308
Damien Miller4018c192000-04-30 09:30:44 +1000309 total_entropy_estimate += entropy_estimate;
Damien Miller040f3832000-04-03 14:50:43 +1000310
311 /* Execution times should be a little unpredictable */
Damien Miller4018c192000-04-30 09:30:44 +1000312 total_entropy_estimate += stir_gettimeofday(0.05);
313 total_entropy_estimate += stir_clock(0.05);
314 total_entropy_estimate += stir_rusage(RUSAGE_SELF, 0.1);
315 total_entropy_estimate += stir_rusage(RUSAGE_CHILDREN, 0.1);
316 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +1100317 debug2("Command '%s' disabled (badness %d)",
Damien Miller8d1fd572000-05-17 21:34:07 +1000318 entropy_sources[c].cmdstring, entropy_sources[c].badness);
Damien Miller4018c192000-04-30 09:30:44 +1000319
320 if (entropy_sources[c].badness > 0)
321 entropy_sources[c].badness--;
322 }
323
Damien Miller040f3832000-04-03 14:50:43 +1000324 c++;
325 }
326 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000327
Damien Miller040f3832000-04-03 14:50:43 +1000328 return(total_entropy_estimate);
329}
330
331double
332stir_gettimeofday(double entropy_estimate)
333{
334 struct timeval tv;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000335
Damien Miller040f3832000-04-03 14:50:43 +1000336 if (gettimeofday(&tv, NULL) == -1)
337 fatal("Couldn't gettimeofday: %s", strerror(errno));
338
339 RAND_add(&tv, sizeof(tv), entropy_estimate);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000340
Damien Miller040f3832000-04-03 14:50:43 +1000341 return(entropy_estimate);
342}
343
344double
345stir_clock(double entropy_estimate)
346{
347#ifdef HAVE_CLOCK
348 clock_t c;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000349
Damien Miller040f3832000-04-03 14:50:43 +1000350 c = clock();
351 RAND_add(&c, sizeof(c), entropy_estimate);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000352
Damien Miller040f3832000-04-03 14:50:43 +1000353 return(entropy_estimate);
354#else /* _HAVE_CLOCK */
355 return(0);
356#endif /* _HAVE_CLOCK */
357}
358
359double
360stir_rusage(int who, double entropy_estimate)
361{
362#ifdef HAVE_GETRUSAGE
363 struct rusage ru;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000364
Damien Miller4018c192000-04-30 09:30:44 +1000365 if (getrusage(who, &ru) == -1)
Damien Miller7b22d652000-06-18 14:07:04 +1000366 return(0);
Damien Miller040f3832000-04-03 14:50:43 +1000367
Damien Miller7b22d652000-06-18 14:07:04 +1000368 RAND_add(&ru, sizeof(ru), entropy_estimate);
Damien Miller040f3832000-04-03 14:50:43 +1000369
370 return(entropy_estimate);
371#else /* _HAVE_GETRUSAGE */
372 return(0);
373#endif /* _HAVE_GETRUSAGE */
374}
375
Damien Miller8d1fd572000-05-17 21:34:07 +1000376
377static
378int
379_get_timeval_msec_difference(struct timeval *t1, struct timeval *t2) {
380 int secdiff, usecdiff;
381
382 secdiff = t2->tv_sec - t1->tv_sec;
383 usecdiff = (secdiff*1000000) + (t2->tv_usec - t1->tv_usec);
384 return (int)(usecdiff / 1000);
385}
386
Damien Miller040f3832000-04-03 14:50:43 +1000387double
Damien Miller4018c192000-04-30 09:30:44 +1000388hash_output_from_command(entropy_source_t *src, char *hash)
Damien Miller040f3832000-04-03 14:50:43 +1000389{
390 static int devnull = -1;
391 int p[2];
Damien Miller4018c192000-04-30 09:30:44 +1000392 fd_set rdset;
393 int cmd_eof = 0, error_abort = 0;
Damien Miller8d1fd572000-05-17 21:34:07 +1000394 struct timeval tv_start, tv_current;
395 int msec_elapsed = 0;
Damien Miller040f3832000-04-03 14:50:43 +1000396 pid_t pid;
397 int status;
Damien Miller8d1fd572000-05-17 21:34:07 +1000398 char buf[16384];
Damien Miller040f3832000-04-03 14:50:43 +1000399 int bytes_read;
400 int total_bytes_read;
401 SHA_CTX sha;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000402
Damien Millercb5e44a2000-09-29 12:12:36 +1100403 debug3("Reading output from \'%s\'", src->cmdstring);
404
Damien Miller040f3832000-04-03 14:50:43 +1000405 if (devnull == -1) {
406 devnull = open("/dev/null", O_RDWR);
407 if (devnull == -1)
408 fatal("Couldn't open /dev/null: %s", strerror(errno));
409 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000410
Damien Miller040f3832000-04-03 14:50:43 +1000411 if (pipe(p) == -1)
412 fatal("Couldn't open pipe: %s", strerror(errno));
413
Damien Miller8d1fd572000-05-17 21:34:07 +1000414 (void)gettimeofday(&tv_start, NULL); /* record start time */
415
Damien Miller040f3832000-04-03 14:50:43 +1000416 switch (pid = fork()) {
417 case -1: /* Error */
418 close(p[0]);
419 close(p[1]);
420 fatal("Couldn't fork: %s", strerror(errno));
421 /* NOTREACHED */
422 case 0: /* Child */
Damien Miller4018c192000-04-30 09:30:44 +1000423 dup2(devnull, STDIN_FILENO);
424 dup2(p[1], STDOUT_FILENO);
425 dup2(p[1], STDERR_FILENO);
Damien Miller040f3832000-04-03 14:50:43 +1000426 close(p[0]);
427 close(p[1]);
428 close(devnull);
429
Damien Millerf9b625c2000-07-09 22:42:32 +1000430 setuid(original_uid);
Damien Miller4018c192000-04-30 09:30:44 +1000431 execv(src->path, (char**)(src->args));
Damien Miller8d1fd572000-05-17 21:34:07 +1000432 debug("(child) Couldn't exec '%s': %s", src->cmdstring,
433 strerror(errno));
Damien Miller040f3832000-04-03 14:50:43 +1000434 _exit(-1);
435 default: /* Parent */
436 break;
437 }
438
439 RAND_add(&pid, sizeof(&pid), 0.0);
440
441 close(p[1]);
442
443 /* Hash output from child */
444 SHA1_Init(&sha);
445 total_bytes_read = 0;
Damien Miller4018c192000-04-30 09:30:44 +1000446
447 while (!error_abort && !cmd_eof) {
448 int ret;
449 struct timeval tv;
Damien Miller8d1fd572000-05-17 21:34:07 +1000450 int msec_remaining;
451
452 (void) gettimeofday(&tv_current, 0);
Damien Miller14c12cb2000-06-07 22:20:23 +1000453 msec_elapsed = _get_timeval_msec_difference(&tv_start, &tv_current);
Damien Miller8d1fd572000-05-17 21:34:07 +1000454 if (msec_elapsed >= entropy_timeout_current) {
455 error_abort=1;
456 continue;
457 }
458 msec_remaining = entropy_timeout_current - msec_elapsed;
Damien Miller4018c192000-04-30 09:30:44 +1000459
460 FD_ZERO(&rdset);
461 FD_SET(p[0], &rdset);
Damien Miller8d1fd572000-05-17 21:34:07 +1000462 tv.tv_sec = msec_remaining / 1000;
463 tv.tv_usec = (msec_remaining % 1000) * 1000;
Damien Miller4018c192000-04-30 09:30:44 +1000464
465 ret = select(p[0]+1, &rdset, NULL, NULL, &tv);
Damien Miller8d1fd572000-05-17 21:34:07 +1000466
Damien Millerf9b625c2000-07-09 22:42:32 +1000467 RAND_add(&tv, sizeof(tv), 0.0);
468
Damien Miller4018c192000-04-30 09:30:44 +1000469 switch (ret) {
470 case 0:
471 /* timer expired */
472 error_abort = 1;
473 break;
Damien Miller4018c192000-04-30 09:30:44 +1000474 case 1:
475 /* command input */
476 bytes_read = read(p[0], buf, sizeof(buf));
Damien Millerf9b625c2000-07-09 22:42:32 +1000477 RAND_add(&bytes_read, sizeof(&bytes_read), 0.0);
Damien Miller4018c192000-04-30 09:30:44 +1000478 if (bytes_read == -1) {
479 error_abort = 1;
480 break;
Damien Millerf9b625c2000-07-09 22:42:32 +1000481 } else if (bytes_read) {
Damien Miller8d1fd572000-05-17 21:34:07 +1000482 SHA1_Update(&sha, buf, bytes_read);
483 total_bytes_read += bytes_read;
Damien Millerf9b625c2000-07-09 22:42:32 +1000484 } else {
Damien Miller8d1fd572000-05-17 21:34:07 +1000485 cmd_eof = 1;
Damien Millerf9b625c2000-07-09 22:42:32 +1000486 }
Damien Miller4018c192000-04-30 09:30:44 +1000487 break;
Damien Miller4018c192000-04-30 09:30:44 +1000488 case -1:
489 default:
Damien Millerf9b625c2000-07-09 22:42:32 +1000490 /* error */
Damien Miller8d1fd572000-05-17 21:34:07 +1000491 debug("Command '%s': select() failed: %s", src->cmdstring,
492 strerror(errno));
Damien Miller4018c192000-04-30 09:30:44 +1000493 error_abort = 1;
494 break;
Damien Millerf9b625c2000-07-09 22:42:32 +1000495 }
496 }
Damien Miller4018c192000-04-30 09:30:44 +1000497
Damien Miller040f3832000-04-03 14:50:43 +1000498 SHA1_Final(hash, &sha);
499
500 close(p[0]);
Damien Miller8d1fd572000-05-17 21:34:07 +1000501
Damien Millercb5e44a2000-09-29 12:12:36 +1100502 debug3("Time elapsed: %d msec", msec_elapsed);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000503
Damien Miller040f3832000-04-03 14:50:43 +1000504 if (waitpid(pid, &status, 0) == -1) {
Damien Millercb5e44a2000-09-29 12:12:36 +1100505 error("Couldn't wait for child '%s' completion: %s", src->cmdstring,
Damien Miller8d1fd572000-05-17 21:34:07 +1000506 strerror(errno));
Damien Miller4018c192000-04-30 09:30:44 +1000507 return(0.0);
Damien Miller040f3832000-04-03 14:50:43 +1000508 }
509
510 RAND_add(&status, sizeof(&status), 0.0);
511
Damien Miller4018c192000-04-30 09:30:44 +1000512 if (error_abort) {
513 /* closing p[0] on timeout causes the entropy command to
514 * SIGPIPE. Take whatever output we got, and mark this command
515 * as slow */
Damien Millercb5e44a2000-09-29 12:12:36 +1100516 debug2("Command '%s' timed out", src->cmdstring);
Damien Miller4018c192000-04-30 09:30:44 +1000517 src->sticky_badness *= 2;
518 src->badness = src->sticky_badness;
Damien Miller040f3832000-04-03 14:50:43 +1000519 return(total_bytes_read);
Damien Miller4018c192000-04-30 09:30:44 +1000520 }
521
522 if (WIFEXITED(status)) {
523 if (WEXITSTATUS(status)==0) {
524 return(total_bytes_read);
525 } else {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000526 debug2("Command '%s' exit status was %d", src->cmdstring,
Damien Miller14c12cb2000-06-07 22:20:23 +1000527 WEXITSTATUS(status));
Damien Miller4018c192000-04-30 09:30:44 +1000528 src->badness = src->sticky_badness = 128;
529 return (0.0);
530 }
531 } else if (WIFSIGNALED(status)) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000532 debug2("Command '%s' returned on uncaught signal %d !", src->cmdstring,
Damien Miller14c12cb2000-06-07 22:20:23 +1000533 status);
Damien Miller4018c192000-04-30 09:30:44 +1000534 src->badness = src->sticky_badness = 128;
535 return(0.0);
536 } else
537 return(0.0);
Damien Miller040f3832000-04-03 14:50:43 +1000538}
Damien Miller4018c192000-04-30 09:30:44 +1000539
540/*
541 * prng seedfile functions
542 */
543int
544prng_check_seedfile(char *filename) {
545
546 struct stat st;
547
548 /* FIXME raceable: eg replace seed between this stat and subsequent open */
549 /* Not such a problem because we don't trust the seed file anyway */
550 if (lstat(filename, &st) == -1) {
Damien Miller52dc96b2000-10-16 20:13:43 +1100551 /* Give up on hard errors */
Damien Miller4018c192000-04-30 09:30:44 +1000552 if (errno != ENOENT)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000553 debug("WARNING: Couldn't stat random seed file \"%s\": %s",
Damien Miller52dc96b2000-10-16 20:13:43 +1100554 filename, strerror(errno));
Damien Miller4018c192000-04-30 09:30:44 +1000555
556 return(0);
557 }
558
559 /* regular file? */
560 if (!S_ISREG(st.st_mode))
561 fatal("PRNG seedfile %.100s is not a regular file", filename);
562
563 /* mode 0600, owned by root or the current user? */
Damien Miller52dc96b2000-10-16 20:13:43 +1100564 if (((st.st_mode & 0177) != 0) || !(st.st_uid == original_uid)) {
565 debug("WARNING: PRNG seedfile %.100s must be mode 0600, owned by uid %d",
Damien Miller4018c192000-04-30 09:30:44 +1000566 filename, getuid());
Damien Miller52dc96b2000-10-16 20:13:43 +1100567 return(0);
568 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000569
Damien Miller4018c192000-04-30 09:30:44 +1000570 return(1);
571}
572
573void
574prng_write_seedfile(void) {
575 int fd;
576 char seed[1024];
577 char filename[1024];
578 struct passwd *pw;
579
580 /* Don't bother if we have already saved a seed */
581 if (prng_seed_saved)
582 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000583
Damien Millerf9b625c2000-07-09 22:42:32 +1000584 setuid(original_uid);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000585
Damien Millerfc0b11b2000-05-02 00:03:55 +1000586 prng_seed_saved = 1;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000587
Damien Millerf9b625c2000-07-09 22:42:32 +1000588 pw = getpwuid(original_uid);
Damien Miller4018c192000-04-30 09:30:44 +1000589 if (pw == NULL)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000590 fatal("Couldn't get password entry for current user (%i): %s",
Damien Millerf9b625c2000-07-09 22:42:32 +1000591 original_uid, strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000592
Damien Miller4018c192000-04-30 09:30:44 +1000593 /* Try to ensure that the parent directory is there */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000594 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
Ben Lindstromcb577332001-01-22 21:06:19 +0000595 _PATH_SSH_USER_DIR);
Damien Miller4018c192000-04-30 09:30:44 +1000596 mkdir(filename, 0700);
597
Kevin Stevesef4eea92001-02-05 12:42:17 +0000598 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
Damien Miller4018c192000-04-30 09:30:44 +1000599 SSH_PRNG_SEED_FILE);
600
601 debug("writing PRNG seed to file %.100s", filename);
602
603 RAND_bytes(seed, sizeof(seed));
604
605 /* Don't care if the seed doesn't exist */
606 prng_check_seedfile(filename);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000607
Damien Miller52dc96b2000-10-16 20:13:43 +1100608 if ((fd = open(filename, O_WRONLY|O_TRUNC|O_CREAT, 0600)) == -1) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000609 debug("WARNING: couldn't access PRNG seedfile %.100s (%.100s)",
Damien Miller52dc96b2000-10-16 20:13:43 +1100610 filename, strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000611 } else {
Damien Miller52dc96b2000-10-16 20:13:43 +1100612 if (atomicio(write, fd, &seed, sizeof(seed)) != sizeof(seed))
Kevin Stevesef4eea92001-02-05 12:42:17 +0000613 fatal("problem writing PRNG seedfile %.100s (%.100s)", filename,
Damien Miller52dc96b2000-10-16 20:13:43 +1100614 strerror(errno));
Damien Miller4018c192000-04-30 09:30:44 +1000615
Damien Miller52dc96b2000-10-16 20:13:43 +1100616 close(fd);
617 }
Damien Miller4018c192000-04-30 09:30:44 +1000618}
619
620void
621prng_read_seedfile(void) {
622 int fd;
623 char seed[1024];
624 char filename[1024];
625 struct passwd *pw;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000626
Damien Millerf9b625c2000-07-09 22:42:32 +1000627 pw = getpwuid(original_uid);
Damien Miller4018c192000-04-30 09:30:44 +1000628 if (pw == NULL)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000629 fatal("Couldn't get password entry for current user (%i): %s",
Damien Millerf9b625c2000-07-09 22:42:32 +1000630 original_uid, strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000631
632 snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir,
Damien Miller4018c192000-04-30 09:30:44 +1000633 SSH_PRNG_SEED_FILE);
634
635 debug("loading PRNG seed from file %.100s", filename);
636
637 if (!prng_check_seedfile(filename)) {
Damien Miller21de4502001-01-17 09:37:15 +1100638 verbose("Random seed file not found or not valid, ignoring.");
Damien Miller4018c192000-04-30 09:30:44 +1000639 return;
640 }
641
642 /* open the file and read in the seed */
643 fd = open(filename, O_RDONLY);
644 if (fd == -1)
Kevin Stevesef4eea92001-02-05 12:42:17 +0000645 fatal("could not open PRNG seedfile %.100s (%.100s)", filename,
Damien Miller4018c192000-04-30 09:30:44 +1000646 strerror(errno));
647
648 if (atomicio(read, fd, &seed, sizeof(seed)) != sizeof(seed)) {
649 verbose("invalid or short read from PRNG seedfile %.100s - ignoring",
650 filename);
651 memset(seed, '\0', sizeof(seed));
652 }
653 close(fd);
654
655 /* stir in the seed, with estimated entropy zero */
656 RAND_add(&seed, sizeof(seed), 0.0);
657}
658
Damien Miller0437b332000-05-02 09:56:41 +1000659
660/*
661 * entropy command initialisation functions
662 */
Damien Miller0437b332000-05-02 09:56:41 +1000663int
664prng_read_commands(char *cmdfilename)
665{
666 FILE *f;
Damien Miller0437b332000-05-02 09:56:41 +1000667 char *cp;
Damien Miller14c12cb2000-06-07 22:20:23 +1000668 char line[1024];
669 char cmd[1024];
670 char path[256];
Damien Miller0437b332000-05-02 09:56:41 +1000671 int linenum;
Damien Miller0437b332000-05-02 09:56:41 +1000672 int num_cmds = 64;
673 int cur_cmd = 0;
Damien Miller14c12cb2000-06-07 22:20:23 +1000674 double est;
675 entropy_source_t *entcmd;
Damien Miller0437b332000-05-02 09:56:41 +1000676
677 f = fopen(cmdfilename, "r");
678 if (!f) {
679 fatal("couldn't read entropy commands file %.100s: %.100s",
680 cmdfilename, strerror(errno));
681 }
682
Damien Miller0437b332000-05-02 09:56:41 +1000683 entcmd = (entropy_source_t *)xmalloc(num_cmds * sizeof(entropy_source_t));
684 memset(entcmd, '\0', num_cmds * sizeof(entropy_source_t));
685
Damien Miller14c12cb2000-06-07 22:20:23 +1000686 /* Read in file */
687 linenum = 0;
Damien Miller0437b332000-05-02 09:56:41 +1000688 while (fgets(line, sizeof(line), f)) {
Damien Miller14c12cb2000-06-07 22:20:23 +1000689 int arg;
690 char *argv;
691
Damien Miller0437b332000-05-02 09:56:41 +1000692 linenum++;
693
694 /* skip leading whitespace, test for blank line or comment */
695 cp = line + strspn(line, WHITESPACE);
696 if ((*cp == 0) || (*cp == '#'))
697 continue; /* done with this line */
698
Damien Miller14c12cb2000-06-07 22:20:23 +1000699 /* First non-whitespace char should be double quote delimiting */
700 /* commandline */
701 if (*cp != '"') {
Damien Miller0437b332000-05-02 09:56:41 +1000702 error("bad entropy command, %.100s line %d", cmdfilename,
703 linenum);
704 continue;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000705 }
Damien Miller14c12cb2000-06-07 22:20:23 +1000706
707 /* first token, command args (incl. argv[0]) in double quotes */
708 cp = strtok(cp, "\"");
709 if (cp == NULL) {
710 error("missing or bad command string, %.100s line %d -- ignored",
711 cmdfilename, linenum);
712 continue;
713 }
714 strlcpy(cmd, cp, sizeof(cmd));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000715
Damien Miller14c12cb2000-06-07 22:20:23 +1000716 /* second token, full command path */
717 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
718 error("missing command path, %.100s line %d -- ignored",
719 cmdfilename, linenum);
720 continue;
721 }
722
723 /* did configure mark this as dead? */
724 if (strncmp("undef", cp, 5) == 0)
725 continue;
726
Kevin Stevesef4eea92001-02-05 12:42:17 +0000727 strlcpy(path, cp, sizeof(path));
Damien Miller14c12cb2000-06-07 22:20:23 +1000728
729 /* third token, entropy rate estimate for this command */
730 if ((cp = strtok(NULL, WHITESPACE)) == NULL) {
731 error("missing entropy estimate, %.100s line %d -- ignored",
732 cmdfilename, linenum);
733 continue;
734 }
735 est = strtod(cp, &argv);
736
737 /* end of line */
738 if ((cp = strtok(NULL, WHITESPACE)) != NULL) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000739 error("garbage at end of line %d in %.100s -- ignored", linenum,
Damien Miller14c12cb2000-06-07 22:20:23 +1000740 cmdfilename);
741 continue;
742 }
743
744 /* save the command for debug messages */
745 entcmd[cur_cmd].cmdstring = xstrdup(cmd);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000746
Damien Miller14c12cb2000-06-07 22:20:23 +1000747 /* split the command args */
748 cp = strtok(cmd, WHITESPACE);
749 arg = 0;
750 argv = NULL;
751 do {
752 char *s = (char*)xmalloc(strlen(cp) + 1);
753 strncpy(s, cp, strlen(cp) + 1);
754 entcmd[cur_cmd].args[arg] = s;
755 arg++;
756 } while ((arg < 5) && (cp = strtok(NULL, WHITESPACE)));
Kevin Stevesef4eea92001-02-05 12:42:17 +0000757
Damien Miller14c12cb2000-06-07 22:20:23 +1000758 if (strtok(NULL, WHITESPACE))
759 error("ignored extra command elements (max 5), %.100s line %d",
760 cmdfilename, linenum);
761
762 /* Copy the command path and rate estimate */
763 entcmd[cur_cmd].path = xstrdup(path);
764 entcmd[cur_cmd].rate = est;
765
766 /* Initialise other values */
767 entcmd[cur_cmd].sticky_badness = 1;
768
769 cur_cmd++;
770
771 /* If we've filled the array, reallocate it twice the size */
772 /* Do this now because even if this we're on the last command,
773 we need another slot to mark the last entry */
774 if (cur_cmd == num_cmds) {
775 num_cmds *= 2;
776 entcmd = xrealloc(entcmd, num_cmds * sizeof(entropy_source_t));
Damien Miller0437b332000-05-02 09:56:41 +1000777 }
778 }
779
780 /* zero the last entry */
781 memset(&entcmd[cur_cmd], '\0', sizeof(entropy_source_t));
Damien Miller14c12cb2000-06-07 22:20:23 +1000782
Damien Miller0437b332000-05-02 09:56:41 +1000783 /* trim to size */
784 entropy_sources = xrealloc(entcmd, (cur_cmd+1) * sizeof(entropy_source_t));
785
Damien Millerf9b625c2000-07-09 22:42:32 +1000786 debug("Loaded %d entropy commands from %.100s", cur_cmd, cmdfilename);
Damien Miller0437b332000-05-02 09:56:41 +1000787
788 return (cur_cmd >= MIN_ENTROPY_SOURCES);
789}
790
Damien Miller040f3832000-04-03 14:50:43 +1000791/*
Damien Miller4018c192000-04-30 09:30:44 +1000792 * Write a keyfile at exit
Kevin Stevesef4eea92001-02-05 12:42:17 +0000793 */
Damien Miller4018c192000-04-30 09:30:44 +1000794void
795prng_seed_cleanup(void *junk)
796{
797 prng_write_seedfile();
798}
799
800/*
801 * Conditionally Seed OpenSSL's random number pool from
802 * syscalls and program output
Damien Miller040f3832000-04-03 14:50:43 +1000803 */
804void
805seed_rng(void)
806{
Damien Millera1072a82001-02-18 15:28:11 +1100807 mysig_t old_sigchld_handler;
Damien Miller0437b332000-05-02 09:56:41 +1000808
Damien Millerf9b625c2000-07-09 22:42:32 +1000809 if (!prng_initialised)
810 fatal("RNG not initialised");
Kevin Stevesef4eea92001-02-05 12:42:17 +0000811
Damien Millerf3c6cf12000-05-17 22:08:29 +1000812 /* Make sure some other sigchld handler doesn't reap our entropy */
813 /* commands */
Damien Millera1072a82001-02-18 15:28:11 +1100814 old_sigchld_handler = mysignal(SIGCHLD, SIG_DFL);
Damien Millerf3c6cf12000-05-17 22:08:29 +1000815
Damien Millerf9b625c2000-07-09 22:42:32 +1000816 debug("Seeded RNG with %i bytes from programs", (int)stir_from_programs());
817 debug("Seeded RNG with %i bytes from system calls", (int)stir_from_system());
818
819 if (!RAND_status())
820 fatal("Not enough entropy in RNG");
Damien Miller4018c192000-04-30 09:30:44 +1000821
Damien Millera1072a82001-02-18 15:28:11 +1100822 mysignal(SIGCHLD, old_sigchld_handler);
Damien Millerf3c6cf12000-05-17 22:08:29 +1000823
Damien Miller8d1fd572000-05-17 21:34:07 +1000824 if (!RAND_status())
825 fatal("Couldn't initialise builtin random number generator -- exiting.");
Damien Miller040f3832000-04-03 14:50:43 +1000826}
Damien Millerf9b625c2000-07-09 22:42:32 +1000827
Kevin Stevesef4eea92001-02-05 12:42:17 +0000828void init_rng(void)
Damien Millerf9b625c2000-07-09 22:42:32 +1000829{
Damien Millerd592b632000-11-25 10:09:32 +1100830 int original_euid;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000831
Damien Miller767c7fc2001-02-27 09:20:57 +1100832 check_openssl_version();
833
Damien Millerf9b625c2000-07-09 22:42:32 +1000834 original_uid = getuid();
Damien Millerd592b632000-11-25 10:09:32 +1100835 original_euid = geteuid();
Damien Millerf9b625c2000-07-09 22:42:32 +1000836
837 /* Read in collection commands */
838 if (!prng_read_commands(SSH_PRNG_COMMAND_FILE))
839 fatal("PRNG initialisation failed -- exiting.");
840
841 /* Set ourselves up to save a seed upon exit */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000842 prng_seed_saved = 0;
Damien Millerd592b632000-11-25 10:09:32 +1100843
844 /* Give up privs while reading seed file */
Damien Millerbb7c9762001-02-26 20:49:58 +1100845#ifdef SAVED_IDS_WORK_WITH_SETEUID
Damien Millerd592b632000-11-25 10:09:32 +1100846 if ((original_uid != original_euid) && (seteuid(original_uid) == -1))
847 fatal("Couldn't give up privileges");
Damien Millerbb7c9762001-02-26 20:49:58 +1100848#else /* SAVED_IDS_WORK_WITH_SETEUID */
849 /*
850 * Propagate the privileged uid to all of our uids.
851 * Set the effective uid to the given (unprivileged) uid.
852 */
Damien Miller248131a2001-02-27 09:47:16 +1100853 if (original_uid != original_euid && (setuid(original_euid) == -1 ||
854 seteuid(original_uid) == -1))
Damien Millerbb7c9762001-02-26 20:49:58 +1100855 fatal("Couldn't give up privileges");
856#endif /* SAVED_IDS_WORK_WITH_SETEUID */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000857
Damien Millerf9b625c2000-07-09 22:42:32 +1000858 prng_read_seedfile();
Damien Millerd592b632000-11-25 10:09:32 +1100859
Damien Millerbb7c9762001-02-26 20:49:58 +1100860#ifdef SAVED_IDS_WORK_WITH_SETEUID
Damien Millerd592b632000-11-25 10:09:32 +1100861 if ((original_uid != original_euid) && (seteuid(original_euid) == -1))
862 fatal("Couldn't restore privileges");
Damien Millerbb7c9762001-02-26 20:49:58 +1100863#else /* SAVED_IDS_WORK_WITH_SETEUID */
864 /*
865 * We are unable to restore the real uid to its unprivileged value.
866 * Propagate the real uid (usually more privileged) to effective uid
867 * as well.
868 */
Damien Miller248131a2001-02-27 09:47:16 +1100869 if (original_uid != original_euid && (seteuid(original_euid) == -1 ||
870 setuid(original_uid) == -1))
Damien Millerbb7c9762001-02-26 20:49:58 +1100871 fatal("Couldn't restore privileges");
872#endif /* SAVED_IDS_WORK_WITH_SETEUID */
Damien Millerd592b632000-11-25 10:09:32 +1100873
Damien Millerf9b625c2000-07-09 22:42:32 +1000874 fatal_add_cleanup(prng_seed_cleanup, NULL);
875 atexit(prng_write_seedfile);
876
877 prng_initialised = 1;
878}
879
Damien Miller040f3832000-04-03 14:50:43 +1000880#endif /* defined(EGD_SOCKET) || defined(RANDOM_POOL) */