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