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