1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
|
/*
* ssl.c: Dealing with SSL connections to ircd.
*
* Written By Matthew R. Green
*
* Copyright (c) 2014 Matthew R. Green
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "irc.h"
IRCII_RCSID("@(#)$eterna: ssl.c,v 2.10 2014/08/25 04:45:38 mrg Exp $");
#ifdef USE_OPENSSL
#include <openssl/ssl.h>
#include <openssl/err.h>
#endif
#include "ssl.h"
#include "output.h"
#include "server.h"
#include "ircaux.h"
#include "debug.h"
#include "vars.h"
/*
* We provide a backend that lets server.c use the same functions in
* either normal or SSL mode. So this really is a general IO routine
* for normal or SSL as well as the SSL setup/etc handling.
*/
#ifdef USE_OPENSSL
static void ssl_print_error_queue(const char *);
static SSL_CTX *ssl_ctx;
/* SslInfo: private structure per-server connection. */
struct ssl_info_stru {
SSL *ssl;
};
static void
ssl_print_error_queue(const char *msg)
{
unsigned long sslcode = ERR_get_error();
do {
yell("--- %s: SSL error: %s:%s:%s",
msg,
ERR_lib_error_string(sslcode),
ERR_func_error_string(sslcode),
ERR_reason_error_string(sslcode));
Debug(DB_SSL, "%s: SSL error: %s:%s:%s",
msg,
ERR_lib_error_string(sslcode),
ERR_func_error_string(sslcode),
ERR_reason_error_string(sslcode));
} while ((sslcode = ERR_get_error()));
}
#endif
/*
* we keep local copies of each of the variables so we can properly determine
* when something has changed. if neither ca_path nor ca_file is set, then we
* load the default paths.
*/
void
ssl_setup_certs(u_char *dummy)
{
#ifdef USE_OPENSSL
if (!ssl_ctx)
return;
static u_char *ca_file;
static u_char *ca_path;
static u_char *chain_file;
static u_char *private_key_file;
u_char *cur_ca_file = get_string_var(SSL_CA_FILE_VAR);
u_char *cur_ca_path = get_string_var(SSL_CA_PATH_VAR);
u_char *cur_chain_file = get_string_var(SSL_CA_CHAIN_FILE_VAR);
u_char *cur_private_key_file =
get_string_var(SSL_CA_PRIVATE_KEY_FILE_VAR);
if (ca_file != cur_ca_file ||
ca_path != cur_ca_path)
{
ca_file = cur_ca_file;
ca_path = cur_ca_path;
Debug(DB_SSL, "calling SSL_CTX_load_verify_locations(%s, %s)",
ca_file, ca_path);
SSL_CTX_load_verify_locations(ssl_ctx, CP(ca_file), CP(ca_path));
}
if (!ca_path && !ca_file)
SSL_CTX_set_default_verify_paths(ssl_ctx);
if (chain_file != cur_chain_file)
{
chain_file = cur_chain_file;
Debug(DB_SSL, "calling SSL_CTX_use_certificate_chain_file(%s)",
chain_file);
SSL_CTX_use_certificate_chain_file(ssl_ctx, CP(chain_file));
}
if (private_key_file != cur_private_key_file)
{
private_key_file = cur_private_key_file;
Debug(DB_SSL, "calling SSL_CTX_use_PrivateKey_file(%s)",
private_key_file);
SSL_CTX_use_PrivateKey_file(ssl_ctx, CP(private_key_file),
SSL_FILETYPE_PEM);
}
#endif
}
/*
* returns either OK, FAIL or PENDING.
*/
ssl_init_status
ssl_init_connection(int server, int fd, SslInfo **newp)
{
#ifdef USE_OPENSSL
SslInfo *new = NULL;
static int first = 1;
ssl_init_status status = SSL_INIT_OK;
int rv;
server_ssl_level ssl_level;
ssl_level = server_do_ssl(server);
if (ssl_level == SSL_OFF)
{
Debug(DB_SSL, "no SSL this server");
goto cleanup;
}
if (first)
{
first = 0;
if (!SSL_library_init())
{
yell("Unable to initialise SSL");
goto cleanup;
}
SSL_load_error_strings();
OpenSSL_add_all_algorithms();
Debug(DB_SSL, "init");
ssl_ctx = SSL_CTX_new(SSLv23_client_method());
if (!ssl_ctx)
{
yell("Unable to create SSL context");
ssl_print_error_queue("failed to create SSL context");
goto cleanup;
}
ssl_setup_certs(NULL);
}
if (*newp)
new = *newp;
else
{
new = new_malloc(sizeof *new);
new->ssl = NULL;
new->ssl = SSL_new(ssl_ctx);
if (!new->ssl)
{
yell("Unable to create new SSL session");
ssl_print_error_queue("failed to create SSL session");
goto cleanup;
}
SSL_set_mode(new->ssl, SSL_MODE_AUTO_RETRY);
SSL_set_fd(new->ssl, fd);
if (ssl_level == SSL_VERIFY)
{
SSL_set_verify(new->ssl, SSL_VERIFY_PEER, NULL);
}
else
{
yell("SSL connection not verified, may be insecure");
SSL_set_verify(new->ssl, SSL_VERIFY_NONE, NULL);
}
}
rv = SSL_connect(new->ssl);
if (rv != 1)
{
int ssl_err;
Debug(DB_SSL, "SSL_connect failed: %d", rv);
ssl_err = SSL_get_error(new->ssl, rv);
/*
* Are we connected yet? If not, return pending
* so that the caller can continue processing other
* events until we're ready again. The traditional
* loop against SSL_connect() does not work so great
* for non-blocking sockets.
*/
if (ssl_err == SSL_ERROR_WANT_READ ||
ssl_err == SSL_ERROR_WANT_WRITE)
{
/* take the path out that writes *newp */
status = SSL_INIT_PENDING;
goto out;
}
yell("Unable to connect to SSL server");
ssl_print_error_queue("SSL_connect failed");
status = SSL_INIT_FAIL;
goto cleanup;
}
yell("Connected to SSL successfully!");
status = SSL_INIT_OK;
Debug(DB_SSL, "success!");
out:
*newp = new;
return status;
cleanup:
if (new)
{
if (new->ssl)
SSL_free(new->ssl);
new_free(&new);
}
goto out;
#else
return SSL_INIT_OK;
#endif
}
void
ssl_close_connection(SslInfo **ssl_info)
{
#ifdef USE_OPENSSL
if (!*ssl_info)
return;
if ((*ssl_info)->ssl)
SSL_free((*ssl_info)->ssl);
new_free(ssl_info);
#endif
}
ssize_t
ssl_write(SslInfo *info, int fd, const void *buf, size_t len)
{
#ifdef USE_OPENSSL
if (info && info->ssl)
{
int rv;
rv = SSL_write(info->ssl, buf, len);
if (rv < 0)
{
int ssl_err = SSL_get_error(info->ssl, rv);
if (ssl_err == SSL_ERROR_WANT_READ ||
ssl_err == SSL_ERROR_WANT_WRITE)
return -2;
ssl_print_error_queue("SSL_write failed");
}
return rv;
}
else
#endif
return write(fd, buf, len);
}
ssize_t
ssl_read(SslInfo *info, int fd, void *buf, size_t len)
{
#ifdef USE_OPENSSL
if (info && info->ssl)
{
int rv;
rv = SSL_read(info->ssl, buf, len);
if (rv < 0)
{
int ssl_err = SSL_get_error(info->ssl, rv);
if (ssl_err == SSL_ERROR_WANT_READ ||
ssl_err == SSL_ERROR_WANT_WRITE)
return -2;
ssl_print_error_queue("SSL_read failed");
}
return rv;
}
else
#endif
return read(fd, buf, len);
}
|