]> andersk Git - openssh.git/blame - entropy.c
- (dtucker) [entropy.c] Remove unnecessary tests for getuid and geteuid
[openssh.git] / entropy.c
CommitLineData
bfc9a610 1/*
46058ce2 2 * Copyright (c) 2001 Damien Miller. All rights reserved.
bfc9a610 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
35484284 27#include <openssl/rand.h>
c7c72446 28#include <openssl/crypto.h>
bfc9a610 29
42f11eb2 30#include "ssh.h"
e1a023df 31#include "misc.h"
42f11eb2 32#include "xmalloc.h"
33#include "atomicio.h"
effa6591 34#include "pathnames.h"
42f11eb2 35#include "log.h"
36
48c99b2c 37/*
46058ce2 38 * Portable OpenSSH PRNG seeding:
aff51935 39 * If OpenSSL has not "internally seeded" itself (e.g. pulled data from
40 * /dev/random), then we execute a "ssh-rand-helper" program which
41 * collects entropy and writes it to stdout. The child program must
46058ce2 42 * write at least RANDOM_SEED_SIZE bytes. The child is run with stderr
43 * attached, so error/debugging output should be visible.
44 *
45 * XXX: we should tell the child how many bytes we need.
48c99b2c 46 */
2b87da3b 47
46058ce2 48RCSID("$Id$");
2b87da3b 49
f1b0ecc3 50#ifndef OPENSSL_PRNG_ONLY
51#define RANDOM_SEED_SIZE 48
46058ce2 52static uid_t original_uid, original_euid;
f1b0ecc3 53#endif
48c99b2c 54
e339aa53 55void
46058ce2 56seed_rng(void)
bfc9a610 57{
f1b0ecc3 58#ifndef OPENSSL_PRNG_ONLY
46058ce2 59 int devnull;
bfc9a610 60 int p[2];
61 pid_t pid;
46058ce2 62 int ret;
63 unsigned char buf[RANDOM_SEED_SIZE];
6dc63b4f 64 mysig_t old_sigchld;
bfc9a610 65
46058ce2 66 if (RAND_status() == 1) {
67 debug3("RNG is ready, skipping seeding");
b7a87eea 68 return;
69 }
70
dc254471 71 debug3("Seeding PRNG from %s", SSH_RAND_HELPER);
d3083fbd 72
46058ce2 73 if ((devnull = open("/dev/null", O_RDWR)) == -1)
74 fatal("Couldn't open /dev/null: %s", strerror(errno));
75 if (pipe(p) == -1)
76 fatal("pipe: %s", strerror(errno));
77
f00d1f78 78 old_sigchld = signal(SIGCHLD, SIG_DFL);
46058ce2 79 if ((pid = fork()) == -1)
80 fatal("Couldn't fork: %s", strerror(errno));
81 if (pid == 0) {
82 dup2(devnull, STDIN_FILENO);
83 dup2(p[1], STDOUT_FILENO);
84 /* Keep stderr open for errors */
85 close(p[0]);
86 close(p[1]);
87 close(devnull);
88
aff51935 89 if (original_uid != original_euid &&
90 ( seteuid(getuid()) == -1 ||
ac033f8c 91 setuid(original_uid) == -1) ) {
aff51935 92 fprintf(stderr, "(rand child) setuid(%li): %s\n",
7be625e1 93 (long int)original_uid, strerror(errno));
46058ce2 94 _exit(1);
48c99b2c 95 }
b6453d99 96
46058ce2 97 execl(SSH_RAND_HELPER, "ssh-rand-helper", NULL);
aff51935 98 fprintf(stderr, "(rand child) Couldn't exec '%s': %s\n",
46058ce2 99 SSH_RAND_HELPER, strerror(errno));
100 _exit(1);
d3083fbd 101 }
102
46058ce2 103 close(devnull);
104 close(p[1]);
2b87da3b 105
46058ce2 106 memset(buf, '\0', sizeof(buf));
107 ret = atomicio(read, p[0], buf, sizeof(buf));
108 if (ret == -1)
109 fatal("Couldn't read from ssh-rand-helper: %s",
110 strerror(errno));
111 if (ret != sizeof(buf))
112 fatal("ssh-rand-helper child produced insufficient data");
a64009ad 113
46058ce2 114 close(p[0]);
264dce47 115
46058ce2 116 if (waitpid(pid, &ret, 0) == -1)
98c044d0 117 fatal("Couldn't wait for ssh-rand-helper completion: %s",
118 strerror(errno));
f00d1f78 119 signal(SIGCHLD, old_sigchld);
b7a87eea 120
46058ce2 121 /* We don't mind if the child exits upon a SIGPIPE */
aff51935 122 if (!WIFEXITED(ret) &&
46058ce2 123 (!WIFSIGNALED(ret) || WTERMSIG(ret) != SIGPIPE))
124 fatal("ssh-rand-helper terminated abnormally");
125 if (WEXITSTATUS(ret) != 0)
126 fatal("ssh-rand-helper exit with exit status %d", ret);
a64009ad 127
46058ce2 128 RAND_add(buf, sizeof(buf), sizeof(buf));
129 memset(buf, '\0', sizeof(buf));
f1b0ecc3 130
131#endif /* OPENSSL_PRNG_ONLY */
132 if (RAND_status() != 1)
133 fatal("PRNG is not seeded");
264dce47 134}
ad85db64 135
e339aa53 136void
aff51935 137init_rng(void)
264dce47 138{
e9a13ac1 139 /*
46058ce2 140 * OpenSSL version numbers: MNNFFPPS: major minor fix patch status
141 * We match major, minor, fix and status (not patch)
e9a13ac1 142 */
46058ce2 143 if ((SSLeay() ^ OPENSSL_VERSION_NUMBER) & ~0xff0L)
144 fatal("OpenSSL version mismatch. Built against %lx, you "
145 "have %lx", OPENSSL_VERSION_NUMBER, SSLeay());
264dce47 146
f1b0ecc3 147#ifndef OPENSSL_PRNG_ONLY
759ab0d9 148 original_uid = getuid();
149 original_euid = geteuid();
f1b0ecc3 150#endif
bfc9a610 151}
f1b0ecc3 152
This page took 1.832953 seconds and 5 git commands to generate.