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