blob: 9305f89aeada187ad9d2e5af338305ff3f8c4921 [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
Damien Miller72ef7c12015-01-15 02:21:31 +110027#ifdef WITH_OPENSSL
28
Darren Tuckerd82cbcb2006-03-16 07:21:35 +110029#include <sys/types.h>
Damien Millerf22019b2011-05-05 13:48:37 +100030#include <sys/socket.h>
31#ifdef HAVE_SYS_UN_H
32# include <sys/un.h>
Darren Tuckere0e4aad2006-07-11 19:01:51 +100033#endif
34
Damien Millerf22019b2011-05-05 13:48:37 +100035#include <netinet/in.h>
36#include <arpa/inet.h>
37
38#include <errno.h>
Darren Tucker23dd6582006-09-28 19:40:20 +100039#include <signal.h>
Damien Millerf22019b2011-05-05 13:48:37 +100040#include <string.h>
Darren Tuckera8d51ee2007-03-13 07:35:38 +110041#include <unistd.h>
Damien Millerf22019b2011-05-05 13:48:37 +100042#include <stddef.h> /* for offsetof */
Darren Tuckere0e4aad2006-07-11 19:01:51 +100043
Damien Miller5f056372000-04-16 12:31:48 +100044#include <openssl/rand.h>
Damien Miller767c7fc2001-02-27 09:20:57 +110045#include <openssl/crypto.h>
Darren Tuckerc6f82192005-09-27 22:46:32 +100046#include <openssl/err.h>
Damien Miller040f3832000-04-03 14:50:43 +100047
Damien Miller86687062014-07-02 15:28:02 +100048#include "openbsd-compat/openssl-compat.h"
49
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050#include "ssh.h"
Damien Millera1072a82001-02-18 15:28:11 +110051#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052#include "xmalloc.h"
53#include "atomicio.h"
Ben Lindstromcb577332001-01-22 21:06:19 +000054#include "pathnames.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000055#include "log.h"
Darren Tuckerc6f82192005-09-27 22:46:32 +100056#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000057
Damien Miller14c12cb2000-06-07 22:20:23 +100058/*
Damien Miller62116dc2001-12-24 01:41:47 +110059 * Portable OpenSSH PRNG seeding:
Damien Millera8e06ce2003-11-21 23:48:55 +110060 * If OpenSSL has not "internally seeded" itself (e.g. pulled data from
Damien Millerf22019b2011-05-05 13:48:37 +100061 * /dev/random), then collect RANDOM_SEED_SIZE bytes of randomness from
62 * PRNGd.
Damien Miller14c12cb2000-06-07 22:20:23 +100063 */
Damien Miller6c21c512002-01-22 21:57:53 +110064#ifndef OPENSSL_PRNG_ONLY
Damien Millerf22019b2011-05-05 13:48:37 +100065
Damien Miller62116dc2001-12-24 01:41:47 +110066#define RANDOM_SEED_SIZE 48
Damien Miller62116dc2001-12-24 01:41:47 +110067
Damien Millerf22019b2011-05-05 13:48:37 +100068/*
69 * Collect 'len' bytes of entropy into 'buf' from PRNGD/EGD daemon
70 * listening either on 'tcp_port', or via Unix domain socket at *
71 * 'socket_path'.
72 * Either a non-zero tcp_port or a non-null socket_path must be
73 * supplied.
74 * Returns 0 on success, -1 on error
75 */
76int
77get_random_bytes_prngd(unsigned char *buf, int len,
78 unsigned short tcp_port, char *socket_path)
Damien Miller14c12cb2000-06-07 22:20:23 +100079{
Damien Millerf22019b2011-05-05 13:48:37 +100080 int fd, addr_len, rval, errors;
81 u_char msg[2];
82 struct sockaddr_storage addr;
83 struct sockaddr_in *addr_in = (struct sockaddr_in *)&addr;
84 struct sockaddr_un *addr_un = (struct sockaddr_un *)&addr;
85 mysig_t old_sigpipe;
Kevin Stevesef4eea92001-02-05 12:42:17 +000086
Damien Millerf22019b2011-05-05 13:48:37 +100087 /* Sanity checks */
88 if (socket_path == NULL && tcp_port == 0)
89 fatal("You must specify a port or a socket");
90 if (socket_path != NULL &&
91 strlen(socket_path) >= sizeof(addr_un->sun_path))
92 fatal("Random pool path is too long");
93 if (len <= 0 || len > 255)
94 fatal("Too many bytes (%d) to read from PRNGD", len);
95
96 memset(&addr, '\0', sizeof(addr));
97
98 if (tcp_port != 0) {
99 addr_in->sin_family = AF_INET;
100 addr_in->sin_addr.s_addr = htonl(INADDR_LOOPBACK);
101 addr_in->sin_port = htons(tcp_port);
102 addr_len = sizeof(*addr_in);
103 } else {
104 addr_un->sun_family = AF_UNIX;
105 strlcpy(addr_un->sun_path, socket_path,
106 sizeof(addr_un->sun_path));
107 addr_len = offsetof(struct sockaddr_un, sun_path) +
108 strlen(socket_path) + 1;
Damien Miller08006472000-06-26 13:55:31 +1000109 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000110
Damien Millerf22019b2011-05-05 13:48:37 +1000111 old_sigpipe = mysignal(SIGPIPE, SIG_IGN);
Damien Miller62116dc2001-12-24 01:41:47 +1100112
Damien Millerf22019b2011-05-05 13:48:37 +1000113 errors = 0;
114 rval = -1;
115reopen:
116 fd = socket(addr.ss_family, SOCK_STREAM, 0);
117 if (fd == -1) {
118 error("Couldn't create socket: %s", strerror(errno));
119 goto done;
120 }
Damien Miller62116dc2001-12-24 01:41:47 +1100121
Damien Millerf22019b2011-05-05 13:48:37 +1000122 if (connect(fd, (struct sockaddr*)&addr, addr_len) == -1) {
123 if (tcp_port != 0) {
124 error("Couldn't connect to PRNGD port %d: %s",
125 tcp_port, strerror(errno));
126 } else {
127 error("Couldn't connect to PRNGD socket \"%s\": %s",
128 addr_un->sun_path, strerror(errno));
Damien Miller62116dc2001-12-24 01:41:47 +1100129 }
Damien Millerf22019b2011-05-05 13:48:37 +1000130 goto done;
Damien Miller62116dc2001-12-24 01:41:47 +1100131 }
132
Damien Millerf22019b2011-05-05 13:48:37 +1000133 /* Send blocking read request to PRNGD */
134 msg[0] = 0x02;
135 msg[1] = len;
Damien Miller62116dc2001-12-24 01:41:47 +1100136
Damien Millerf22019b2011-05-05 13:48:37 +1000137 if (atomicio(vwrite, fd, msg, sizeof(msg)) != sizeof(msg)) {
138 if (errno == EPIPE && errors < 10) {
139 close(fd);
140 errors++;
141 goto reopen;
142 }
143 error("Couldn't write to PRNGD socket: %s",
Damien Miller62116dc2001-12-24 01:41:47 +1100144 strerror(errno));
Damien Millerf22019b2011-05-05 13:48:37 +1000145 goto done;
146 }
Damien Miller62116dc2001-12-24 01:41:47 +1100147
Damien Millerf22019b2011-05-05 13:48:37 +1000148 if (atomicio(read, fd, buf, len) != (size_t)len) {
149 if (errno == EPIPE && errors < 10) {
150 close(fd);
151 errors++;
152 goto reopen;
153 }
154 error("Couldn't read from PRNGD socket: %s",
Damien Millerb6f72f52005-07-17 17:26:43 +1000155 strerror(errno));
Damien Millerf22019b2011-05-05 13:48:37 +1000156 goto done;
157 }
Damien Miller62116dc2001-12-24 01:41:47 +1100158
Damien Millerf22019b2011-05-05 13:48:37 +1000159 rval = 0;
160done:
161 mysignal(SIGPIPE, old_sigpipe);
162 if (fd != -1)
163 close(fd);
164 return rval;
Damien Miller14c12cb2000-06-07 22:20:23 +1000165}
166
Damien Millerf22019b2011-05-05 13:48:37 +1000167static int
168seed_from_prngd(unsigned char *buf, size_t bytes)
Damien Miller767c7fc2001-02-27 09:20:57 +1100169{
Damien Millerf22019b2011-05-05 13:48:37 +1000170#ifdef PRNGD_PORT
171 debug("trying egd/prngd port %d", PRNGD_PORT);
172 if (get_random_bytes_prngd(buf, bytes, PRNGD_PORT, NULL) == 0)
173 return 0;
Damien Miller6c21c512002-01-22 21:57:53 +1100174#endif
Damien Millerf22019b2011-05-05 13:48:37 +1000175#ifdef PRNGD_SOCKET
176 debug("trying egd/prngd socket %s", PRNGD_SOCKET);
177 if (get_random_bytes_prngd(buf, bytes, 0, PRNGD_SOCKET) == 0)
178 return 0;
179#endif
180 return -1;
Damien Millerf9b625c2000-07-09 22:42:32 +1000181}
Damien Miller6c21c512002-01-22 21:57:53 +1100182
Darren Tuckerc6f82192005-09-27 22:46:32 +1000183void
184rexec_send_rng_seed(Buffer *m)
185{
186 u_char buf[RANDOM_SEED_SIZE];
187
188 if (RAND_bytes(buf, sizeof(buf)) <= 0) {
189 error("Couldn't obtain random bytes (error %ld)",
190 ERR_get_error());
191 buffer_put_string(m, "", 0);
192 } else
193 buffer_put_string(m, buf, sizeof(buf));
194}
195
196void
197rexec_recv_rng_seed(Buffer *m)
198{
Darren Tucker46e7ba52005-09-28 08:26:30 +1000199 u_char *buf;
Darren Tuckerc6f82192005-09-27 22:46:32 +1000200 u_int len;
201
202 buf = buffer_get_string_ret(m, &len);
203 if (buf != NULL) {
204 debug3("rexec_recv_rng_seed: seeding rng with %u bytes", len);
205 RAND_add(buf, len, len);
206 }
207}
Damien Millerf22019b2011-05-05 13:48:37 +1000208#endif /* OPENSSL_PRNG_ONLY */
209
210void
211seed_rng(void)
212{
213#ifndef OPENSSL_PRNG_ONLY
214 unsigned char buf[RANDOM_SEED_SIZE];
Darren Tuckerc6f82192005-09-27 22:46:32 +1000215#endif
Darren Tucker316fac62014-06-17 23:06:07 +1000216 if (!ssh_compatible_openssl(OPENSSL_VERSION_NUMBER, SSLeay()))
Damien Millerf22019b2011-05-05 13:48:37 +1000217 fatal("OpenSSL version mismatch. Built against %lx, you "
218 "have %lx", (u_long)OPENSSL_VERSION_NUMBER, SSLeay());
219
220#ifndef OPENSSL_PRNG_ONLY
221 if (RAND_status() == 1) {
222 debug3("RNG is ready, skipping seeding");
223 return;
224 }
225
226 if (seed_from_prngd(buf, sizeof(buf)) == -1)
227 fatal("Could not obtain seed from PRNGd");
228 RAND_add(buf, sizeof(buf), sizeof(buf));
229 memset(buf, '\0', sizeof(buf));
230
231#endif /* OPENSSL_PRNG_ONLY */
232 if (RAND_status() != 1)
233 fatal("PRNG is not seeded");
234}
Damien Miller72ef7c12015-01-15 02:21:31 +1100235
236#else /* WITH_OPENSSL */
237
238/* Handled in arc4random() */
239void
240seed_rng(void)
241{
242}
243
244#endif /* WITH_OPENSSL */