2008-04-01 18:52:26 +02:00
|
|
|
/*
|
|
|
|
* libratbox: a library used by ircd-ratbox and other things
|
|
|
|
* openssl.c: openssl related code
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2008 ircd-ratbox development team
|
|
|
|
* Copyright (C) 2007-2008 Aaron Sethman <androsyn@ratbox.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2014-03-03 05:25:47 +01:00
|
|
|
*
|
2008-04-01 18:52:26 +02:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
|
|
|
* USA
|
|
|
|
*
|
|
|
|
* $Id: commio.c 24808 2008-01-02 08:17:05Z androsyn $
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libratbox_config.h>
|
|
|
|
#include <ratbox_lib.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_OPENSSL
|
|
|
|
|
|
|
|
#include <commio-int.h>
|
|
|
|
#include <commio-ssl.h>
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
#include <openssl/dh.h>
|
|
|
|
#include <openssl/err.h>
|
2015-03-24 06:22:25 +01:00
|
|
|
#include <openssl/evp.h>
|
2008-04-01 18:52:26 +02:00
|
|
|
#include <openssl/rand.h>
|
2015-10-23 18:05:33 +02:00
|
|
|
#include <openssl/opensslv.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a mess but what can you do when the library authors
|
|
|
|
* refuse to play ball with established conventions?
|
|
|
|
*/
|
|
|
|
#if defined(LIBRESSL_VERSION_NUMBER) && (LIBRESSL_VERSION_NUMBER >= 0x20020002L)
|
|
|
|
# define LRB_HAVE_TLS_METHOD_API 1
|
|
|
|
#else
|
|
|
|
# if !defined(LIBRESSL_VERSION_NUMBER) && (OPENSSL_VERSION_NUMBER >= 0x10100000L)
|
|
|
|
# define LRB_HAVE_TLS_METHOD_API 1
|
|
|
|
# endif
|
|
|
|
#endif
|
2008-04-01 18:52:26 +02:00
|
|
|
|
|
|
|
static SSL_CTX *ssl_server_ctx;
|
|
|
|
static SSL_CTX *ssl_client_ctx;
|
2008-06-25 07:28:30 +02:00
|
|
|
static int libratbox_index = -1;
|
2008-04-01 18:52:26 +02:00
|
|
|
|
2008-12-03 00:49:39 +01:00
|
|
|
static unsigned long
|
|
|
|
get_last_err(void)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
unsigned long t_err, err = 0;
|
|
|
|
err = ERR_get_error();
|
|
|
|
if(err == 0)
|
|
|
|
return 0;
|
2008-12-03 00:49:39 +01:00
|
|
|
|
2008-04-01 18:52:26 +02:00
|
|
|
while((t_err = ERR_get_error()) > 0)
|
|
|
|
err = t_err;
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_shutdown(rb_fde_t *F)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
if(F == NULL || F->ssl == NULL)
|
|
|
|
return;
|
|
|
|
SSL_set_shutdown((SSL *) F->ssl, SSL_RECEIVED_SHUTDOWN);
|
|
|
|
|
2008-12-03 00:49:39 +01:00
|
|
|
for(i = 0; i < 4; i++)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
if(SSL_shutdown((SSL *) F->ssl))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
get_last_err();
|
|
|
|
SSL_free((SSL *) F->ssl);
|
|
|
|
}
|
|
|
|
|
2008-06-25 07:28:30 +02:00
|
|
|
unsigned int
|
|
|
|
rb_ssl_handshake_count(rb_fde_t *F)
|
|
|
|
{
|
|
|
|
return F->handshake_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_ssl_clear_handshake_count(rb_fde_t *F)
|
|
|
|
{
|
|
|
|
F->handshake_count = 0;
|
|
|
|
}
|
|
|
|
|
2008-04-01 18:52:26 +02:00
|
|
|
static void
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_timeout(rb_fde_t *F, void *notused)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
2008-04-10 18:37:42 +02:00
|
|
|
lrb_assert(F->accept != NULL);
|
|
|
|
F->accept->callback(F, RB_ERR_TIMEOUT, NULL, 0, F->accept->data);
|
2008-04-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-03 00:49:39 +01:00
|
|
|
static void
|
|
|
|
rb_ssl_info_callback(SSL * ssl, int where, int ret)
|
2008-06-25 07:28:30 +02:00
|
|
|
{
|
|
|
|
if(where & SSL_CB_HANDSHAKE_START)
|
|
|
|
{
|
|
|
|
rb_fde_t *F = SSL_get_ex_data(ssl, libratbox_index);
|
|
|
|
if(F == NULL)
|
|
|
|
return;
|
|
|
|
F->handshake_count++;
|
2008-12-03 00:49:39 +01:00
|
|
|
}
|
2008-06-25 07:28:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rb_setup_ssl_cb(rb_fde_t *F)
|
|
|
|
{
|
|
|
|
SSL_set_ex_data(F->ssl, libratbox_index, (char *)F);
|
2008-12-03 00:49:39 +01:00
|
|
|
SSL_set_info_callback((SSL *) F->ssl, (void (*)(const SSL *,int,int))rb_ssl_info_callback);
|
2008-06-25 07:28:30 +02:00
|
|
|
}
|
|
|
|
|
2008-04-01 18:52:26 +02:00
|
|
|
static void
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_tryaccept(rb_fde_t *F, void *data)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
int ssl_err;
|
|
|
|
lrb_assert(F->accept != NULL);
|
2008-04-10 18:37:42 +02:00
|
|
|
int flags;
|
2008-05-12 19:54:24 +02:00
|
|
|
struct acceptdata *ad;
|
2008-04-01 18:52:26 +02:00
|
|
|
|
|
|
|
if(!SSL_is_init_finished((SSL *) F->ssl))
|
|
|
|
{
|
|
|
|
if((ssl_err = SSL_accept((SSL *) F->ssl)) <= 0)
|
|
|
|
{
|
|
|
|
switch (ssl_err = SSL_get_error((SSL *) F->ssl, ssl_err))
|
|
|
|
{
|
|
|
|
case SSL_ERROR_WANT_READ:
|
|
|
|
case SSL_ERROR_WANT_WRITE:
|
2008-04-10 18:37:42 +02:00
|
|
|
if(ssl_err == SSL_ERROR_WANT_WRITE)
|
|
|
|
flags = RB_SELECT_WRITE;
|
|
|
|
else
|
|
|
|
flags = RB_SELECT_READ;
|
|
|
|
F->ssl_errno = get_last_err();
|
|
|
|
rb_setselect(F, flags, rb_ssl_tryaccept, NULL);
|
|
|
|
break;
|
|
|
|
case SSL_ERROR_SYSCALL:
|
|
|
|
F->accept->callback(F, RB_ERROR, NULL, 0, F->accept->data);
|
|
|
|
break;
|
2008-04-01 18:52:26 +02:00
|
|
|
default:
|
|
|
|
F->ssl_errno = get_last_err();
|
|
|
|
F->accept->callback(F, RB_ERROR_SSL, NULL, 0, F->accept->data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rb_settimeout(F, 0, NULL, NULL);
|
|
|
|
rb_setselect(F, RB_SELECT_READ | RB_SELECT_WRITE, NULL, NULL);
|
2008-12-03 00:49:39 +01:00
|
|
|
|
2008-05-12 19:54:24 +02:00
|
|
|
ad = F->accept;
|
2008-04-01 18:52:26 +02:00
|
|
|
F->accept = NULL;
|
2008-12-03 00:49:39 +01:00
|
|
|
ad->callback(F, RB_OK, (struct sockaddr *)&ad->S, ad->addrlen, ad->data);
|
2008-05-12 19:54:24 +02:00
|
|
|
rb_free(ad);
|
2008-04-01 18:52:26 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-06-25 07:28:30 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
rb_ssl_accept_common(rb_fde_t *new_F)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
int ssl_err;
|
|
|
|
if((ssl_err = SSL_accept((SSL *) new_F->ssl)) <= 0)
|
|
|
|
{
|
|
|
|
switch (ssl_err = SSL_get_error((SSL *) new_F->ssl, ssl_err))
|
|
|
|
{
|
|
|
|
case SSL_ERROR_SYSCALL:
|
|
|
|
if(rb_ignore_errno(errno))
|
|
|
|
case SSL_ERROR_WANT_READ:
|
|
|
|
case SSL_ERROR_WANT_WRITE:
|
|
|
|
{
|
|
|
|
new_F->ssl_errno = get_last_err();
|
|
|
|
rb_setselect(new_F, RB_SELECT_READ | RB_SELECT_WRITE,
|
|
|
|
rb_ssl_tryaccept, NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
new_F->ssl_errno = get_last_err();
|
|
|
|
new_F->accept->callback(new_F, RB_ERROR_SSL, NULL, 0, new_F->accept->data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rb_ssl_tryaccept(new_F, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-25 07:28:30 +02:00
|
|
|
void
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_start_accepted(rb_fde_t *new_F, ACCB * cb, void *data, int timeout)
|
2008-06-25 07:28:30 +02:00
|
|
|
{
|
|
|
|
new_F->type |= RB_FD_SSL;
|
|
|
|
new_F->ssl = SSL_new(ssl_server_ctx);
|
|
|
|
new_F->accept = rb_malloc(sizeof(struct acceptdata));
|
|
|
|
|
|
|
|
new_F->accept->callback = cb;
|
|
|
|
new_F->accept->data = data;
|
|
|
|
rb_settimeout(new_F, timeout, rb_ssl_timeout, NULL);
|
|
|
|
|
|
|
|
new_F->accept->addrlen = 0;
|
|
|
|
SSL_set_fd((SSL *) new_F->ssl, rb_get_fd(new_F));
|
|
|
|
rb_setup_ssl_cb(new_F);
|
|
|
|
rb_ssl_accept_common(new_F);
|
|
|
|
}
|
|
|
|
|
2008-04-01 18:52:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_accept_setup(rb_fde_t *F, rb_fde_t *new_F, struct sockaddr *st, int addrlen)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
new_F->type |= RB_FD_SSL;
|
|
|
|
new_F->ssl = SSL_new(ssl_server_ctx);
|
|
|
|
new_F->accept = rb_malloc(sizeof(struct acceptdata));
|
|
|
|
|
|
|
|
new_F->accept->callback = F->accept->callback;
|
|
|
|
new_F->accept->data = F->accept->data;
|
|
|
|
rb_settimeout(new_F, 10, rb_ssl_timeout, NULL);
|
|
|
|
memcpy(&new_F->accept->S, st, addrlen);
|
|
|
|
new_F->accept->addrlen = addrlen;
|
|
|
|
|
2008-07-30 00:41:27 +02:00
|
|
|
SSL_set_fd((SSL *) new_F->ssl, rb_get_fd(new_F));
|
2008-06-25 07:28:30 +02:00
|
|
|
rb_setup_ssl_cb(new_F);
|
|
|
|
rb_ssl_accept_common(new_F);
|
2008-04-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_read_or_write(int r_or_w, rb_fde_t *F, void *rbuf, const void *wbuf, size_t count)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
ssize_t ret;
|
|
|
|
unsigned long err;
|
|
|
|
SSL *ssl = F->ssl;
|
|
|
|
|
|
|
|
if(r_or_w == 0)
|
2008-12-03 00:49:39 +01:00
|
|
|
ret = (ssize_t) SSL_read(ssl, rbuf, (int)count);
|
2008-04-01 18:52:26 +02:00
|
|
|
else
|
2008-12-03 00:49:39 +01:00
|
|
|
ret = (ssize_t) SSL_write(ssl, wbuf, (int)count);
|
2008-04-01 18:52:26 +02:00
|
|
|
|
|
|
|
if(ret < 0)
|
|
|
|
{
|
|
|
|
switch (SSL_get_error(ssl, ret))
|
|
|
|
{
|
|
|
|
case SSL_ERROR_WANT_READ:
|
|
|
|
errno = EAGAIN;
|
|
|
|
return RB_RW_SSL_NEED_READ;
|
|
|
|
case SSL_ERROR_WANT_WRITE:
|
|
|
|
errno = EAGAIN;
|
|
|
|
return RB_RW_SSL_NEED_WRITE;
|
|
|
|
case SSL_ERROR_ZERO_RETURN:
|
|
|
|
return 0;
|
|
|
|
case SSL_ERROR_SYSCALL:
|
|
|
|
err = get_last_err();
|
|
|
|
if(err == 0)
|
|
|
|
{
|
|
|
|
F->ssl_errno = 0;
|
|
|
|
return RB_RW_IO_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
err = get_last_err();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
F->ssl_errno = err;
|
|
|
|
if(err > 0)
|
|
|
|
{
|
|
|
|
errno = EIO; /* not great but... */
|
|
|
|
return RB_RW_SSL_ERROR;
|
|
|
|
}
|
|
|
|
return RB_RW_IO_ERROR;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_read(rb_fde_t *F, void *buf, size_t count)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
return rb_ssl_read_or_write(0, F, buf, NULL, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_write(rb_fde_t *F, const void *buf, size_t count)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
return rb_ssl_read_or_write(1, F, NULL, buf, count);
|
|
|
|
}
|
|
|
|
|
2010-01-31 19:04:20 +01:00
|
|
|
static int
|
|
|
|
verify_accept_all_cb(int preverify_ok, X509_STORE_CTX *x509_ctx)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-05-09 00:30:51 +02:00
|
|
|
static const char *
|
|
|
|
get_ssl_error(unsigned long err)
|
|
|
|
{
|
|
|
|
static char buf[512];
|
|
|
|
|
|
|
|
ERR_error_string_n(err, buf, sizeof buf);
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2008-04-01 18:52:26 +02:00
|
|
|
int
|
|
|
|
rb_init_ssl(void)
|
|
|
|
{
|
|
|
|
int ret = 1;
|
2008-06-25 07:28:30 +02:00
|
|
|
char libratbox_data[] = "libratbox data";
|
2015-05-20 18:41:34 +02:00
|
|
|
const char libratbox_ciphers[] = "kEECDH+HIGH:kEDH+HIGH:HIGH:!RC4:!aNULL";
|
2008-04-01 18:52:26 +02:00
|
|
|
SSL_load_error_strings();
|
|
|
|
SSL_library_init();
|
2008-06-25 07:28:30 +02:00
|
|
|
libratbox_index = SSL_get_ex_new_index(0, libratbox_data, NULL, NULL, NULL);
|
2015-05-20 04:27:59 +02:00
|
|
|
|
2015-10-23 18:05:33 +02:00
|
|
|
#ifndef LRB_HAVE_TLS_METHOD_API
|
2008-04-01 18:52:26 +02:00
|
|
|
ssl_server_ctx = SSL_CTX_new(SSLv23_server_method());
|
2015-05-20 04:27:59 +02:00
|
|
|
#else
|
|
|
|
ssl_server_ctx = SSL_CTX_new(TLS_server_method());
|
|
|
|
#endif
|
|
|
|
|
2008-04-01 18:52:26 +02:00
|
|
|
if(ssl_server_ctx == NULL)
|
|
|
|
{
|
|
|
|
rb_lib_log("rb_init_openssl: Unable to initialize OpenSSL server context: %s",
|
2010-05-09 00:30:51 +02:00
|
|
|
get_ssl_error(ERR_get_error()));
|
2008-04-01 18:52:26 +02:00
|
|
|
ret = 0;
|
|
|
|
}
|
2015-05-20 04:27:59 +02:00
|
|
|
|
|
|
|
long server_options = SSL_CTX_get_options(ssl_server_ctx);
|
|
|
|
|
2015-10-23 18:05:33 +02:00
|
|
|
#ifndef LRB_HAVE_TLS_METHOD_API
|
2015-05-20 04:27:59 +02:00
|
|
|
server_options |= SSL_OP_NO_SSLv2;
|
|
|
|
server_options |= SSL_OP_NO_SSLv3;
|
|
|
|
#endif
|
|
|
|
|
2014-01-15 22:25:26 +01:00
|
|
|
#ifdef SSL_OP_SINGLE_DH_USE
|
2015-05-20 04:27:59 +02:00
|
|
|
server_options |= SSL_OP_SINGLE_DH_USE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SSL_OP_SINGLE_ECDH_USE
|
|
|
|
server_options |= SSL_OP_SINGLE_ECDH_USE;
|
2015-02-09 21:18:32 +01:00
|
|
|
#endif
|
2015-05-20 04:27:59 +02:00
|
|
|
|
2015-02-09 21:18:32 +01:00
|
|
|
#ifdef SSL_OP_NO_TICKET
|
2015-05-20 04:27:59 +02:00
|
|
|
server_options |= SSL_OP_NO_TICKET;
|
2014-01-15 22:25:26 +01:00
|
|
|
#endif
|
2015-05-20 04:27:59 +02:00
|
|
|
|
|
|
|
server_options |= SSL_OP_CIPHER_SERVER_PREFERENCE;
|
|
|
|
|
|
|
|
SSL_CTX_set_options(ssl_server_ctx, server_options);
|
2010-01-31 19:04:20 +01:00
|
|
|
SSL_CTX_set_verify(ssl_server_ctx, SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE, verify_accept_all_cb);
|
2015-02-09 21:19:09 +01:00
|
|
|
SSL_CTX_set_session_cache_mode(ssl_server_ctx, SSL_SESS_CACHE_OFF);
|
2015-05-20 18:41:34 +02:00
|
|
|
SSL_CTX_set_cipher_list(ssl_server_ctx, libratbox_ciphers);
|
2013-11-30 20:55:01 +01:00
|
|
|
|
|
|
|
/* Set ECDHE on OpenSSL 1.00+, but make sure it's actually available because redhat are dicks
|
|
|
|
and bastardise their OpenSSL for stupid reasons... */
|
2015-05-20 04:27:59 +02:00
|
|
|
#if (OPENSSL_VERSION_NUMBER >= 0x10000000L) && defined(NID_secp384r1)
|
2014-03-03 00:56:20 +01:00
|
|
|
EC_KEY *key = EC_KEY_new_by_curve_name(NID_secp384r1);
|
|
|
|
if (key) {
|
|
|
|
SSL_CTX_set_tmp_ecdh(ssl_server_ctx, key);
|
|
|
|
EC_KEY_free(key);
|
|
|
|
}
|
2013-09-06 20:05:49 +02:00
|
|
|
#endif
|
2008-12-03 00:49:39 +01:00
|
|
|
|
2015-10-23 18:05:33 +02:00
|
|
|
#ifndef LRB_HAVE_TLS_METHOD_API
|
2015-10-23 18:08:15 +02:00
|
|
|
ssl_client_ctx = SSL_CTX_new(SSLv23_client_method());
|
2015-05-20 04:27:59 +02:00
|
|
|
#else
|
2015-05-20 12:39:04 +02:00
|
|
|
ssl_client_ctx = SSL_CTX_new(TLS_client_method());
|
2015-05-20 04:27:59 +02:00
|
|
|
#endif
|
2008-04-01 18:52:26 +02:00
|
|
|
|
|
|
|
if(ssl_client_ctx == NULL)
|
|
|
|
{
|
|
|
|
rb_lib_log("rb_init_openssl: Unable to initialize OpenSSL client context: %s",
|
2010-05-09 00:30:51 +02:00
|
|
|
get_ssl_error(ERR_get_error()));
|
2008-04-01 18:52:26 +02:00
|
|
|
ret = 0;
|
|
|
|
}
|
2015-02-09 21:18:32 +01:00
|
|
|
|
2015-10-23 18:08:15 +02:00
|
|
|
#ifndef LRB_HAVE_TLS_METHOD_API
|
|
|
|
SSL_CTX_set_options(ssl_client_ctx, SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3);
|
|
|
|
#endif
|
|
|
|
|
2015-02-09 21:18:32 +01:00
|
|
|
#ifdef SSL_OP_NO_TICKET
|
|
|
|
SSL_CTX_set_options(ssl_client_ctx, SSL_OP_NO_TICKET);
|
|
|
|
#endif
|
|
|
|
|
2015-05-20 18:41:34 +02:00
|
|
|
SSL_CTX_set_cipher_list(ssl_client_ctx, libratbox_ciphers);
|
|
|
|
|
2008-04-01 18:52:26 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_setup_ssl_server(const char *cert, const char *keyfile, const char *dhfile)
|
|
|
|
{
|
|
|
|
DH *dh;
|
|
|
|
unsigned long err;
|
|
|
|
if(cert == NULL)
|
|
|
|
{
|
|
|
|
rb_lib_log("rb_setup_ssl_server: No certificate file");
|
|
|
|
return 0;
|
|
|
|
}
|
2010-12-14 05:58:09 +01:00
|
|
|
if(!SSL_CTX_use_certificate_chain_file(ssl_server_ctx, cert) || !SSL_CTX_use_certificate_chain_file(ssl_client_ctx, cert))
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
err = ERR_get_error();
|
|
|
|
rb_lib_log("rb_setup_ssl_server: Error loading certificate file [%s]: %s", cert,
|
2010-05-09 00:30:51 +02:00
|
|
|
get_ssl_error(err));
|
2008-04-01 18:52:26 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(keyfile == NULL)
|
|
|
|
{
|
|
|
|
rb_lib_log("rb_setup_ssl_server: No key file");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-14 05:58:09 +01:00
|
|
|
if(!SSL_CTX_use_PrivateKey_file(ssl_server_ctx, keyfile, SSL_FILETYPE_PEM) || !SSL_CTX_use_PrivateKey_file(ssl_client_ctx, keyfile, SSL_FILETYPE_PEM))
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
err = ERR_get_error();
|
|
|
|
rb_lib_log("rb_setup_ssl_server: Error loading keyfile [%s]: %s", keyfile,
|
2010-05-09 00:30:51 +02:00
|
|
|
get_ssl_error(err));
|
2008-04-01 18:52:26 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(dhfile != NULL)
|
|
|
|
{
|
|
|
|
/* DH parameters aren't necessary, but they are nice..if they didn't pass one..that is their problem */
|
2008-12-03 00:49:39 +01:00
|
|
|
BIO *bio = BIO_new_file(dhfile, "r");
|
|
|
|
if(bio != NULL)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
2008-12-03 00:49:39 +01:00
|
|
|
dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
|
2008-04-01 18:52:26 +02:00
|
|
|
if(dh == NULL)
|
|
|
|
{
|
|
|
|
err = ERR_get_error();
|
|
|
|
rb_lib_log
|
|
|
|
("rb_setup_ssl_server: Error loading DH params file [%s]: %s",
|
2010-05-09 00:30:51 +02:00
|
|
|
dhfile, get_ssl_error(err));
|
2008-12-03 00:49:39 +01:00
|
|
|
BIO_free(bio);
|
2008-04-01 18:52:26 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2008-12-03 00:49:39 +01:00
|
|
|
BIO_free(bio);
|
2008-04-01 18:52:26 +02:00
|
|
|
SSL_CTX_set_tmp_dh(ssl_server_ctx, dh);
|
2008-12-03 00:49:39 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
err = ERR_get_error();
|
|
|
|
rb_lib_log("rb_setup_ssl_server: Error loading DH params file [%s]: %s",
|
2010-05-09 00:30:51 +02:00
|
|
|
dhfile, get_ssl_error(err));
|
2008-04-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-03-17 15:48:25 +01:00
|
|
|
rb_ssl_listen(rb_fde_t *F, int backlog, int defer_accept)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
2012-03-17 15:48:25 +01:00
|
|
|
int result;
|
|
|
|
|
|
|
|
result = rb_listen(F, backlog, defer_accept);
|
2008-04-01 18:52:26 +02:00
|
|
|
F->type = RB_FD_SOCKET | RB_FD_LISTEN | RB_FD_SSL;
|
2012-03-17 15:48:25 +01:00
|
|
|
|
|
|
|
return result;
|
2008-04-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct ssl_connect
|
|
|
|
{
|
|
|
|
CNCB *callback;
|
|
|
|
void *data;
|
|
|
|
int timeout;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_connect_realcb(rb_fde_t *F, int status, struct ssl_connect *sconn)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
F->connect->callback = sconn->callback;
|
|
|
|
F->connect->data = sconn->data;
|
|
|
|
rb_free(sconn);
|
|
|
|
rb_connect_callback(F, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_tryconn_timeout_cb(rb_fde_t *F, void *data)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
rb_ssl_connect_realcb(F, RB_ERR_TIMEOUT, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_tryconn_cb(rb_fde_t *F, void *data)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
struct ssl_connect *sconn = data;
|
|
|
|
int ssl_err;
|
|
|
|
if(!SSL_is_init_finished((SSL *) F->ssl))
|
|
|
|
{
|
|
|
|
if((ssl_err = SSL_connect((SSL *) F->ssl)) <= 0)
|
|
|
|
{
|
|
|
|
switch (ssl_err = SSL_get_error((SSL *) F->ssl, ssl_err))
|
|
|
|
{
|
|
|
|
case SSL_ERROR_SYSCALL:
|
|
|
|
if(rb_ignore_errno(errno))
|
|
|
|
case SSL_ERROR_WANT_READ:
|
|
|
|
case SSL_ERROR_WANT_WRITE:
|
|
|
|
{
|
|
|
|
F->ssl_errno = get_last_err();
|
|
|
|
rb_setselect(F, RB_SELECT_READ | RB_SELECT_WRITE,
|
|
|
|
rb_ssl_tryconn_cb, sconn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
F->ssl_errno = get_last_err();
|
|
|
|
rb_ssl_connect_realcb(F, RB_ERROR_SSL, sconn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rb_ssl_connect_realcb(F, RB_OK, sconn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_tryconn(rb_fde_t *F, int status, void *data)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
struct ssl_connect *sconn = data;
|
|
|
|
int ssl_err;
|
|
|
|
if(status != RB_OK)
|
|
|
|
{
|
|
|
|
rb_ssl_connect_realcb(F, status, sconn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
F->type |= RB_FD_SSL;
|
|
|
|
F->ssl = SSL_new(ssl_client_ctx);
|
|
|
|
SSL_set_fd((SSL *) F->ssl, F->fd);
|
2008-06-25 07:28:30 +02:00
|
|
|
rb_setup_ssl_cb(F);
|
2008-04-01 18:52:26 +02:00
|
|
|
rb_settimeout(F, sconn->timeout, rb_ssl_tryconn_timeout_cb, sconn);
|
|
|
|
if((ssl_err = SSL_connect((SSL *) F->ssl)) <= 0)
|
|
|
|
{
|
|
|
|
switch (ssl_err = SSL_get_error((SSL *) F->ssl, ssl_err))
|
|
|
|
{
|
|
|
|
case SSL_ERROR_SYSCALL:
|
|
|
|
if(rb_ignore_errno(errno))
|
|
|
|
case SSL_ERROR_WANT_READ:
|
|
|
|
case SSL_ERROR_WANT_WRITE:
|
|
|
|
{
|
|
|
|
F->ssl_errno = get_last_err();
|
|
|
|
rb_setselect(F, RB_SELECT_READ | RB_SELECT_WRITE,
|
|
|
|
rb_ssl_tryconn_cb, sconn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
F->ssl_errno = get_last_err();
|
|
|
|
rb_ssl_connect_realcb(F, RB_ERROR_SSL, sconn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rb_ssl_connect_realcb(F, RB_OK, sconn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_connect_tcp_ssl(rb_fde_t *F, struct sockaddr *dest,
|
2008-04-01 18:52:26 +02:00
|
|
|
struct sockaddr *clocal, int socklen, CNCB * callback, void *data, int timeout)
|
|
|
|
{
|
|
|
|
struct ssl_connect *sconn;
|
|
|
|
if(F == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
sconn = rb_malloc(sizeof(struct ssl_connect));
|
|
|
|
sconn->data = data;
|
|
|
|
sconn->callback = callback;
|
|
|
|
sconn->timeout = timeout;
|
|
|
|
rb_connect_tcp(F, dest, clocal, socklen, rb_ssl_tryconn, sconn, timeout);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_ssl_start_connected(rb_fde_t *F, CNCB * callback, void *data, int timeout)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
|
|
|
struct ssl_connect *sconn;
|
|
|
|
int ssl_err;
|
|
|
|
if(F == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
sconn = rb_malloc(sizeof(struct ssl_connect));
|
|
|
|
sconn->data = data;
|
|
|
|
sconn->callback = callback;
|
|
|
|
sconn->timeout = timeout;
|
|
|
|
F->connect = rb_malloc(sizeof(struct conndata));
|
|
|
|
F->connect->callback = callback;
|
|
|
|
F->connect->data = data;
|
|
|
|
F->type |= RB_FD_SSL;
|
|
|
|
F->ssl = SSL_new(ssl_client_ctx);
|
2008-12-03 00:49:39 +01:00
|
|
|
|
2008-04-01 18:52:26 +02:00
|
|
|
SSL_set_fd((SSL *) F->ssl, F->fd);
|
2008-06-25 07:28:30 +02:00
|
|
|
rb_setup_ssl_cb(F);
|
2008-04-01 18:52:26 +02:00
|
|
|
rb_settimeout(F, sconn->timeout, rb_ssl_tryconn_timeout_cb, sconn);
|
|
|
|
if((ssl_err = SSL_connect((SSL *) F->ssl)) <= 0)
|
|
|
|
{
|
|
|
|
switch (ssl_err = SSL_get_error((SSL *) F->ssl, ssl_err))
|
|
|
|
{
|
|
|
|
case SSL_ERROR_SYSCALL:
|
|
|
|
if(rb_ignore_errno(errno))
|
|
|
|
case SSL_ERROR_WANT_READ:
|
|
|
|
case SSL_ERROR_WANT_WRITE:
|
|
|
|
{
|
|
|
|
F->ssl_errno = get_last_err();
|
|
|
|
rb_setselect(F, RB_SELECT_READ | RB_SELECT_WRITE,
|
|
|
|
rb_ssl_tryconn_cb, sconn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
F->ssl_errno = get_last_err();
|
|
|
|
rb_ssl_connect_realcb(F, RB_ERROR_SSL, sconn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rb_ssl_connect_realcb(F, RB_OK, sconn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_init_prng(const char *path, prng_seed_t seed_type)
|
|
|
|
{
|
|
|
|
if(seed_type == RB_PRNG_DEFAULT)
|
|
|
|
{
|
2008-12-03 00:49:39 +01:00
|
|
|
#ifdef _WIN32
|
2008-04-01 18:52:26 +02:00
|
|
|
RAND_screen();
|
|
|
|
#endif
|
|
|
|
return RAND_status();
|
|
|
|
}
|
|
|
|
if(path == NULL)
|
|
|
|
return RAND_status();
|
|
|
|
|
|
|
|
switch (seed_type)
|
|
|
|
{
|
|
|
|
case RB_PRNG_FILE:
|
|
|
|
if(RAND_load_file(path, -1) == -1)
|
|
|
|
return -1;
|
|
|
|
break;
|
2008-12-03 00:49:39 +01:00
|
|
|
#ifdef _WIN32
|
2008-04-01 18:52:26 +02:00
|
|
|
case RB_PRNGWIN32:
|
|
|
|
RAND_screen();
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RAND_status();
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_get_random(void *buf, size_t length)
|
|
|
|
{
|
2008-07-30 00:41:27 +02:00
|
|
|
int ret;
|
2008-12-03 00:49:39 +01:00
|
|
|
|
2008-07-30 00:41:27 +02:00
|
|
|
if((ret = RAND_bytes(buf, length)) == 0)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
2008-07-30 00:41:27 +02:00
|
|
|
/* remove the error from the queue */
|
2008-12-03 00:49:39 +01:00
|
|
|
ERR_get_error();
|
2008-04-01 18:52:26 +02:00
|
|
|
}
|
2008-07-30 00:41:27 +02:00
|
|
|
return ret;
|
2008-04-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
2008-12-03 00:49:39 +01:00
|
|
|
rb_get_ssl_strerror(rb_fde_t *F)
|
2008-04-01 18:52:26 +02:00
|
|
|
{
|
2010-05-09 00:30:51 +02:00
|
|
|
return get_ssl_error(F->ssl_errno);
|
2008-04-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
2010-01-31 19:04:20 +01:00
|
|
|
int
|
2015-05-27 23:46:46 +02:00
|
|
|
rb_get_ssl_certfp(rb_fde_t *F, uint8_t certfp[RB_SSL_CERTFP_LEN], int method)
|
2010-01-31 19:04:20 +01:00
|
|
|
{
|
|
|
|
X509 *cert;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (F->ssl == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
cert = SSL_get_peer_certificate((SSL *) F->ssl);
|
|
|
|
if(cert != NULL)
|
|
|
|
{
|
|
|
|
res = SSL_get_verify_result((SSL *) F->ssl);
|
2015-03-24 06:25:38 +01:00
|
|
|
if(
|
|
|
|
res == X509_V_OK ||
|
|
|
|
res == X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN ||
|
|
|
|
res == X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE ||
|
|
|
|
res == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT ||
|
|
|
|
res == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY)
|
2010-01-31 19:04:20 +01:00
|
|
|
{
|
2015-05-27 23:46:46 +02:00
|
|
|
const EVP_MD *evp;
|
|
|
|
unsigned int len;
|
|
|
|
|
|
|
|
switch(method)
|
|
|
|
{
|
|
|
|
case RB_SSL_CERTFP_METH_SHA1:
|
|
|
|
evp = EVP_sha1();
|
|
|
|
len = RB_SSL_CERTFP_LEN_SHA1;
|
|
|
|
break;
|
|
|
|
case RB_SSL_CERTFP_METH_SHA256:
|
|
|
|
evp = EVP_sha256();
|
|
|
|
len = RB_SSL_CERTFP_LEN_SHA256;
|
|
|
|
break;
|
|
|
|
case RB_SSL_CERTFP_METH_SHA512:
|
|
|
|
evp = EVP_sha512();
|
|
|
|
len = RB_SSL_CERTFP_LEN_SHA512;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
X509_digest(cert, evp, certfp, &len);
|
2013-08-14 18:54:57 +02:00
|
|
|
X509_free(cert);
|
2015-05-27 23:46:46 +02:00
|
|
|
return len;
|
2010-01-31 19:04:20 +01:00
|
|
|
}
|
2010-02-19 16:55:15 +01:00
|
|
|
X509_free(cert);
|
2010-01-31 19:04:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-01 18:52:26 +02:00
|
|
|
int
|
|
|
|
rb_supports_ssl(void)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-12-22 10:49:01 +01:00
|
|
|
void
|
|
|
|
rb_get_ssl_info(char *buf, size_t len)
|
|
|
|
{
|
2014-03-03 05:25:47 +01:00
|
|
|
rb_snprintf(buf, len, "Using SSL: %s compiled: 0x%lx, library 0x%lx",
|
2011-03-20 18:46:32 +01:00
|
|
|
SSLeay_version(SSLEAY_VERSION),
|
|
|
|
(long)OPENSSL_VERSION_NUMBER, SSLeay());
|
2008-12-22 10:49:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-01 18:52:26 +02:00
|
|
|
#endif /* HAVE_OPESSL */
|