]> andersk Git - openssh.git/blame - entropy.c
- (djm) Rework ssh-rand-helper:
[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:
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
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 48#define RANDOM_SEED_SIZE 48
be0b9bb7 49
46058ce2 50RCSID("$Id$");
2b87da3b 51
46058ce2 52static uid_t original_uid, original_euid;
48c99b2c 53
e339aa53 54void
46058ce2 55seed_rng(void)
bfc9a610 56{
46058ce2 57 int devnull;
bfc9a610 58 int p[2];
59 pid_t pid;
46058ce2 60 int ret;
61 unsigned char buf[RANDOM_SEED_SIZE];
bfc9a610 62
46058ce2 63 if (RAND_status() == 1) {
64 debug3("RNG is ready, skipping seeding");
b7a87eea 65 return;
66 }
67
46058ce2 68 debug3("Seeing PRNG from %s", SSH_RAND_HELPER);
d3083fbd 69
46058ce2 70 if ((devnull = open("/dev/null", O_RDWR)) == -1)
71 fatal("Couldn't open /dev/null: %s", strerror(errno));
72 if (pipe(p) == -1)
73 fatal("pipe: %s", strerror(errno));
74
75 if ((pid = fork()) == -1)
76 fatal("Couldn't fork: %s", strerror(errno));
77 if (pid == 0) {
78 dup2(devnull, STDIN_FILENO);
79 dup2(p[1], STDOUT_FILENO);
80 /* Keep stderr open for errors */
81 close(p[0]);
82 close(p[1]);
83 close(devnull);
84
85 if (original_uid != original_euid &&
86 setuid(original_uid) == -1) {
87 fprintf(stderr, "(rand child) setuid: %s\n",
88 strerror(errno));
89 _exit(1);
48c99b2c 90 }
46058ce2 91
92 execl(SSH_RAND_HELPER, "ssh-rand-helper", NULL);
93 fprintf(stderr, "(rand child) Couldn't exec '%s': %s\n",
94 SSH_RAND_HELPER, strerror(errno));
95 _exit(1);
d3083fbd 96 }
97
46058ce2 98 close(devnull);
99 close(p[1]);
2b87da3b 100
46058ce2 101 memset(buf, '\0', sizeof(buf));
102 ret = atomicio(read, p[0], buf, sizeof(buf));
103 if (ret == -1)
104 fatal("Couldn't read from ssh-rand-helper: %s",
105 strerror(errno));
106 if (ret != sizeof(buf))
107 fatal("ssh-rand-helper child produced insufficient data");
a64009ad 108
46058ce2 109 close(p[0]);
264dce47 110
46058ce2 111 if (waitpid(pid, &ret, 0) == -1)
112 fatal("Couldn't wait for ssh-rand-helper completion: %s",
113 strerror(errno));
b7a87eea 114
46058ce2 115 /* We don't mind if the child exits upon a SIGPIPE */
116 if (!WIFEXITED(ret) &&
117 (!WIFSIGNALED(ret) || WTERMSIG(ret) != SIGPIPE))
118 fatal("ssh-rand-helper terminated abnormally");
119 if (WEXITSTATUS(ret) != 0)
120 fatal("ssh-rand-helper exit with exit status %d", ret);
a64009ad 121
46058ce2 122 RAND_add(buf, sizeof(buf), sizeof(buf));
123 memset(buf, '\0', sizeof(buf));
264dce47 124}
ad85db64 125
e339aa53 126void
46058ce2 127init_rng(void)
264dce47 128{
e9a13ac1 129 /*
46058ce2 130 * OpenSSL version numbers: MNNFFPPS: major minor fix patch status
131 * We match major, minor, fix and status (not patch)
e9a13ac1 132 */
46058ce2 133 if ((SSLeay() ^ OPENSSL_VERSION_NUMBER) & ~0xff0L)
134 fatal("OpenSSL version mismatch. Built against %lx, you "
135 "have %lx", OPENSSL_VERSION_NUMBER, SSLeay());
264dce47 136
46058ce2 137 if ((original_uid = getuid()) == -1)
138 fatal("getuid: %s", strerror(errno));
139 if ((original_euid = geteuid()) == -1)
140 fatal("geteuid: %s", strerror(errno));
bfc9a610 141}
This page took 0.207717 seconds and 5 git commands to generate.