blob: ccabb136441a32566972b2f76abe4235c1cb881c [file] [log] [blame]
Damien Miller040f3832000-04-03 14:50:43 +10001/*
Damien Miller62116dc2001-12-24 01:41:47 +11002 * Copyright (c) 2001 Damien Miller. All rights reserved.
Damien Miller040f3832000-04-03 14:50:43 +10003 *
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.
Damien Miller040f3832000-04-03 14:50:43 +100012 *
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
Darren Tuckerd82cbcb2006-03-16 07:21:35 +110027#include <sys/types.h>
28#include <sys/wait.h>
29
Darren Tuckere0e4aad2006-07-11 19:01:51 +100030#ifdef HAVE_SYS_STAT_H
31# include <sys/stat.h>
32#endif
33
34#ifdef HAVE_FCNTL_H
35# include <fcntl.h>
36#endif
Damien Millerded319c2006-09-01 15:38:36 +100037#include <stdarg.h>
Darren Tuckerecf28ba2006-08-05 15:50:20 +100038#include <unistd.h>
Darren Tucker23dd6582006-09-28 19:40:20 +100039#include <signal.h>
Darren Tuckere0e4aad2006-07-11 19:01:51 +100040
Damien Miller5f056372000-04-16 12:31:48 +100041#include <openssl/rand.h>
Damien Miller767c7fc2001-02-27 09:20:57 +110042#include <openssl/crypto.h>
Darren Tuckerc6f82192005-09-27 22:46:32 +100043#include <openssl/err.h>
Damien Miller040f3832000-04-03 14:50:43 +100044
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "ssh.h"
Damien Millera1072a82001-02-18 15:28:11 +110046#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000047#include "xmalloc.h"
48#include "atomicio.h"
Ben Lindstromcb577332001-01-22 21:06:19 +000049#include "pathnames.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050#include "log.h"
Darren Tuckerc6f82192005-09-27 22:46:32 +100051#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052
Damien Miller14c12cb2000-06-07 22:20:23 +100053/*
Damien Miller62116dc2001-12-24 01:41:47 +110054 * Portable OpenSSH PRNG seeding:
Damien Millera8e06ce2003-11-21 23:48:55 +110055 * If OpenSSL has not "internally seeded" itself (e.g. pulled data from
56 * /dev/random), then we execute a "ssh-rand-helper" program which
57 * collects entropy and writes it to stdout. The child program must
Damien Miller62116dc2001-12-24 01:41:47 +110058 * write at least RANDOM_SEED_SIZE bytes. The child is run with stderr
59 * attached, so error/debugging output should be visible.
60 *
61 * XXX: we should tell the child how many bytes we need.
Damien Miller14c12cb2000-06-07 22:20:23 +100062 */
Damien Miller62116dc2001-12-24 01:41:47 +110063
Damien Miller6c21c512002-01-22 21:57:53 +110064#ifndef OPENSSL_PRNG_ONLY
Damien Miller62116dc2001-12-24 01:41:47 +110065#define RANDOM_SEED_SIZE 48
Damien Miller62116dc2001-12-24 01:41:47 +110066static uid_t original_uid, original_euid;
Damien Miller6c21c512002-01-22 21:57:53 +110067#endif
Damien Miller62116dc2001-12-24 01:41:47 +110068
Damien Miller14c12cb2000-06-07 22:20:23 +100069void
70seed_rng(void)
71{
Damien Miller6c21c512002-01-22 21:57:53 +110072#ifndef OPENSSL_PRNG_ONLY
Damien Miller62116dc2001-12-24 01:41:47 +110073 int devnull;
74 int p[2];
75 pid_t pid;
76 int ret;
77 unsigned char buf[RANDOM_SEED_SIZE];
Damien Millera370f4d2002-04-18 22:53:22 +100078 mysig_t old_sigchld;
Kevin Stevesef4eea92001-02-05 12:42:17 +000079
Damien Miller62116dc2001-12-24 01:41:47 +110080 if (RAND_status() == 1) {
81 debug3("RNG is ready, skipping seeding");
82 return;
Damien Miller08006472000-06-26 13:55:31 +100083 }
Kevin Stevesef4eea92001-02-05 12:42:17 +000084
Kevin Steves58193072002-03-11 00:16:34 +000085 debug3("Seeding PRNG from %s", SSH_RAND_HELPER);
Damien Miller62116dc2001-12-24 01:41:47 +110086
87 if ((devnull = open("/dev/null", O_RDWR)) == -1)
88 fatal("Couldn't open /dev/null: %s", strerror(errno));
89 if (pipe(p) == -1)
90 fatal("pipe: %s", strerror(errno));
91
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +000092 old_sigchld = signal(SIGCHLD, SIG_DFL);
Damien Miller62116dc2001-12-24 01:41:47 +110093 if ((pid = fork()) == -1)
94 fatal("Couldn't fork: %s", strerror(errno));
95 if (pid == 0) {
96 dup2(devnull, STDIN_FILENO);
97 dup2(p[1], STDOUT_FILENO);
98 /* Keep stderr open for errors */
99 close(p[0]);
100 close(p[1]);
101 close(devnull);
102
Damien Millera8e06ce2003-11-21 23:48:55 +1100103 if (original_uid != original_euid &&
104 ( seteuid(getuid()) == -1 ||
Tim Ricef02dccc2002-04-21 11:26:10 -0700105 setuid(original_uid) == -1) ) {
Damien Millera8e06ce2003-11-21 23:48:55 +1100106 fprintf(stderr, "(rand child) setuid(%li): %s\n",
Damien Millerc46b6bc2003-05-16 15:51:44 +1000107 (long int)original_uid, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100108 _exit(1);
109 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100110
Damien Miller62116dc2001-12-24 01:41:47 +1100111 execl(SSH_RAND_HELPER, "ssh-rand-helper", NULL);
Damien Millera8e06ce2003-11-21 23:48:55 +1100112 fprintf(stderr, "(rand child) Couldn't exec '%s': %s\n",
Damien Miller62116dc2001-12-24 01:41:47 +1100113 SSH_RAND_HELPER, strerror(errno));
114 _exit(1);
115 }
116
117 close(devnull);
118 close(p[1]);
119
120 memset(buf, '\0', sizeof(buf));
121 ret = atomicio(read, p[0], buf, sizeof(buf));
122 if (ret == -1)
123 fatal("Couldn't read from ssh-rand-helper: %s",
124 strerror(errno));
125 if (ret != sizeof(buf))
126 fatal("ssh-rand-helper child produced insufficient data");
127
128 close(p[0]);
129
130 if (waitpid(pid, &ret, 0) == -1)
Damien Millerb6f72f52005-07-17 17:26:43 +1000131 fatal("Couldn't wait for ssh-rand-helper completion: %s",
132 strerror(errno));
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +0000133 signal(SIGCHLD, old_sigchld);
Damien Miller62116dc2001-12-24 01:41:47 +1100134
135 /* We don't mind if the child exits upon a SIGPIPE */
Damien Millera8e06ce2003-11-21 23:48:55 +1100136 if (!WIFEXITED(ret) &&
Damien Miller62116dc2001-12-24 01:41:47 +1100137 (!WIFSIGNALED(ret) || WTERMSIG(ret) != SIGPIPE))
138 fatal("ssh-rand-helper terminated abnormally");
139 if (WEXITSTATUS(ret) != 0)
140 fatal("ssh-rand-helper exit with exit status %d", ret);
141
142 RAND_add(buf, sizeof(buf), sizeof(buf));
Damien Miller14c12cb2000-06-07 22:20:23 +1000143 memset(buf, '\0', sizeof(buf));
Damien Miller6c21c512002-01-22 21:57:53 +1100144
145#endif /* OPENSSL_PRNG_ONLY */
146 if (RAND_status() != 1)
147 fatal("PRNG is not seeded");
Damien Miller14c12cb2000-06-07 22:20:23 +1000148}
149
Damien Miller60bc5172001-03-19 09:38:15 +1100150void
Damien Millera8e06ce2003-11-21 23:48:55 +1100151init_rng(void)
Damien Miller767c7fc2001-02-27 09:20:57 +1100152{
Damien Millerbb7c9762001-02-26 20:49:58 +1100153 /*
Damien Miller62116dc2001-12-24 01:41:47 +1100154 * OpenSSL version numbers: MNNFFPPS: major minor fix patch status
155 * We match major, minor, fix and status (not patch)
Damien Millerbb7c9762001-02-26 20:49:58 +1100156 */
Damien Miller62116dc2001-12-24 01:41:47 +1100157 if ((SSLeay() ^ OPENSSL_VERSION_NUMBER) & ~0xff0L)
158 fatal("OpenSSL version mismatch. Built against %lx, you "
159 "have %lx", OPENSSL_VERSION_NUMBER, SSLeay());
Kevin Stevesef4eea92001-02-05 12:42:17 +0000160
Damien Miller6c21c512002-01-22 21:57:53 +1100161#ifndef OPENSSL_PRNG_ONLY
Darren Tuckerf1377bd2005-09-27 19:50:25 +1000162 original_uid = getuid();
163 original_euid = geteuid();
Damien Miller6c21c512002-01-22 21:57:53 +1100164#endif
Damien Millerf9b625c2000-07-09 22:42:32 +1000165}
Damien Miller6c21c512002-01-22 21:57:53 +1100166
Darren Tuckerc6f82192005-09-27 22:46:32 +1000167#ifndef OPENSSL_PRNG_ONLY
168void
169rexec_send_rng_seed(Buffer *m)
170{
171 u_char buf[RANDOM_SEED_SIZE];
172
173 if (RAND_bytes(buf, sizeof(buf)) <= 0) {
174 error("Couldn't obtain random bytes (error %ld)",
175 ERR_get_error());
176 buffer_put_string(m, "", 0);
177 } else
178 buffer_put_string(m, buf, sizeof(buf));
179}
180
181void
182rexec_recv_rng_seed(Buffer *m)
183{
Darren Tucker46e7ba52005-09-28 08:26:30 +1000184 u_char *buf;
Darren Tuckerc6f82192005-09-27 22:46:32 +1000185 u_int len;
186
187 buf = buffer_get_string_ret(m, &len);
188 if (buf != NULL) {
189 debug3("rexec_recv_rng_seed: seeding rng with %u bytes", len);
190 RAND_add(buf, len, len);
191 }
192}
193#endif