2015-12-04 05:32:33 +01:00
|
|
|
/*
|
2016-03-06 10:49:27 +01:00
|
|
|
* librb: a library used by ircd-ratbox and other things
|
2016-05-05 05:31:32 +02:00
|
|
|
* mbedtls.c: ARM mbedTLS backend
|
2015-12-04 05:32:33 +01:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2008 ircd-ratbox development team
|
|
|
|
* Copyright (C) 2007-2008 Aaron Sethman <androsyn@ratbox.org>
|
|
|
|
* Copyright (C) 2015 William Pitcock <nenolod@dereferenced.org>
|
2016-05-05 05:31:32 +02:00
|
|
|
* Copyright (C) 2016 Aaron Jones <aaronmdjones@gmail.com>
|
2015-12-04 05:32:33 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-07-01 05:04:00 +02:00
|
|
|
#include <rb/rb.h>
|
|
|
|
#include <rb/commio_int.h>
|
|
|
|
#include <rb/ssl.h>
|
2015-12-04 05:32:33 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_MBEDTLS
|
|
|
|
|
|
|
|
#include "mbedtls/entropy.h"
|
|
|
|
#include "mbedtls/ctr_drbg.h"
|
|
|
|
#include "mbedtls/certs.h"
|
|
|
|
#include "mbedtls/x509.h"
|
|
|
|
#include "mbedtls/ssl.h"
|
|
|
|
#include "mbedtls/net.h"
|
|
|
|
#include "mbedtls/error.h"
|
|
|
|
#include "mbedtls/debug.h"
|
|
|
|
#include "mbedtls/dhm.h"
|
|
|
|
#include "mbedtls/version.h"
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
#include "mbedtls_embedded_data.h"
|
2015-12-04 05:32:33 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
mbedtls_x509_crt crt;
|
|
|
|
mbedtls_pk_context key;
|
|
|
|
mbedtls_dhm_context dhp;
|
|
|
|
mbedtls_ssl_config server_cfg;
|
|
|
|
mbedtls_ssl_config client_cfg;
|
|
|
|
size_t refcount;
|
|
|
|
} rb_mbedtls_cfg_context;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
rb_mbedtls_cfg_context *cfg;
|
|
|
|
mbedtls_ssl_context ssl;
|
|
|
|
} rb_mbedtls_ssl_context;
|
|
|
|
|
|
|
|
#define SSL_C(x) ((rb_mbedtls_ssl_context *) (x)->ssl)->cfg
|
|
|
|
#define SSL_P(x) &((rb_mbedtls_ssl_context *) (x)->ssl)->ssl
|
|
|
|
|
|
|
|
static mbedtls_ctr_drbg_context ctr_drbg_ctx;
|
|
|
|
static mbedtls_entropy_context entropy_ctx;
|
|
|
|
|
|
|
|
static mbedtls_x509_crt dummy_ca_ctx;
|
|
|
|
static rb_mbedtls_cfg_context *rb_mbedtls_cfg = NULL;
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
rb_get_ssl_strerror_internal(int err)
|
|
|
|
{
|
|
|
|
static char errbuf[512];
|
|
|
|
|
|
|
|
#ifdef MBEDTLS_ERROR_C
|
|
|
|
char mbed_errbuf[512];
|
|
|
|
mbedtls_strerror(err, mbed_errbuf, sizeof mbed_errbuf);
|
|
|
|
snprintf(errbuf, sizeof errbuf, "(-0x%x) %s", -err, mbed_errbuf);
|
|
|
|
#else
|
|
|
|
snprintf(errbuf, sizeof errbuf, "-0x%x", -err);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return errbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
rb_get_ssl_strerror(rb_fde_t *F)
|
|
|
|
{
|
|
|
|
return rb_get_ssl_strerror_internal(F->ssl_errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rb_mbedtls_cfg_incref(rb_mbedtls_cfg_context *cfg)
|
|
|
|
{
|
|
|
|
lrb_assert(cfg->refcount > 0);
|
|
|
|
|
|
|
|
cfg->refcount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rb_mbedtls_cfg_decref(rb_mbedtls_cfg_context *cfg)
|
|
|
|
{
|
|
|
|
if(cfg == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
lrb_assert(cfg->refcount > 0);
|
|
|
|
|
|
|
|
if((--cfg->refcount) > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mbedtls_ssl_config_free(&cfg->client_cfg);
|
|
|
|
mbedtls_ssl_config_free(&cfg->server_cfg);
|
|
|
|
mbedtls_dhm_free(&cfg->dhp);
|
|
|
|
mbedtls_pk_free(&cfg->key);
|
|
|
|
mbedtls_x509_crt_free(&cfg->crt);
|
|
|
|
|
|
|
|
rb_free(cfg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static rb_mbedtls_cfg_context *rb_mbedtls_cfg_new(void)
|
|
|
|
{
|
|
|
|
rb_mbedtls_cfg_context *cfg;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if((cfg = rb_malloc(sizeof(rb_mbedtls_cfg_context))) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
mbedtls_x509_crt_init(&cfg->crt);
|
|
|
|
mbedtls_pk_init(&cfg->key);
|
|
|
|
mbedtls_dhm_init(&cfg->dhp);
|
|
|
|
mbedtls_ssl_config_init(&cfg->server_cfg);
|
|
|
|
mbedtls_ssl_config_init(&cfg->client_cfg);
|
|
|
|
|
|
|
|
cfg->refcount = 1;
|
|
|
|
|
|
|
|
if((ret = mbedtls_ssl_config_defaults(&cfg->server_cfg,
|
|
|
|
MBEDTLS_SSL_IS_SERVER, MBEDTLS_SSL_TRANSPORT_STREAM,
|
|
|
|
MBEDTLS_SSL_PRESET_DEFAULT)) != 0)
|
|
|
|
{
|
|
|
|
rb_lib_log("rb_mbedtls_cfg_new: ssl_config_defaults (server): %s",
|
|
|
|
rb_get_ssl_strerror_internal(ret));
|
|
|
|
rb_mbedtls_cfg_decref(cfg);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if((ret = mbedtls_ssl_config_defaults(&cfg->client_cfg,
|
|
|
|
MBEDTLS_SSL_IS_CLIENT, MBEDTLS_SSL_TRANSPORT_STREAM,
|
|
|
|
MBEDTLS_SSL_PRESET_DEFAULT)) != 0)
|
|
|
|
{
|
|
|
|
rb_lib_log("rb_mbedtls_cfg_new: ssl_config_defaults (client): %s",
|
|
|
|
rb_get_ssl_strerror_internal(ret));
|
|
|
|
rb_mbedtls_cfg_decref(cfg);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
mbedtls_ssl_conf_rng(&cfg->server_cfg, mbedtls_ctr_drbg_random, &ctr_drbg_ctx);
|
|
|
|
mbedtls_ssl_conf_rng(&cfg->client_cfg, mbedtls_ctr_drbg_random, &ctr_drbg_ctx);
|
|
|
|
|
|
|
|
mbedtls_ssl_conf_ca_chain(&cfg->server_cfg, &dummy_ca_ctx, NULL);
|
|
|
|
mbedtls_ssl_conf_ca_chain(&cfg->client_cfg, &dummy_ca_ctx, NULL);
|
|
|
|
|
|
|
|
mbedtls_ssl_conf_authmode(&cfg->server_cfg, MBEDTLS_SSL_VERIFY_OPTIONAL);
|
|
|
|
mbedtls_ssl_conf_authmode(&cfg->client_cfg, MBEDTLS_SSL_VERIFY_NONE);
|
|
|
|
|
|
|
|
return cfg;
|
|
|
|
}
|
2015-12-04 05:32:33 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
rb_ssl_shutdown(rb_fde_t *F)
|
|
|
|
{
|
|
|
|
if(F == NULL || F->ssl == NULL)
|
|
|
|
return;
|
2016-05-05 05:31:32 +02:00
|
|
|
|
|
|
|
if(SSL_P(F) != NULL)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
for(int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
int r = mbedtls_ssl_close_notify(SSL_P(F));
|
|
|
|
if(r != MBEDTLS_ERR_SSL_WANT_READ && r != MBEDTLS_ERR_SSL_WANT_WRITE)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mbedtls_ssl_free(SSL_P(F));
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
2016-05-05 05:31:32 +02:00
|
|
|
|
|
|
|
if(SSL_C(F) != NULL)
|
|
|
|
rb_mbedtls_cfg_decref(SSL_C(F));
|
|
|
|
|
2015-12-04 05:32:33 +01:00
|
|
|
rb_free(F->ssl);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rb_ssl_timeout(rb_fde_t *F, void *notused)
|
|
|
|
{
|
|
|
|
lrb_assert(F->accept != NULL);
|
|
|
|
F->accept->callback(F, RB_ERR_TIMEOUT, NULL, 0, F->accept->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
do_ssl_handshake(rb_fde_t *F, PF * callback, void *data)
|
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
int ret = mbedtls_ssl_handshake(SSL_P(F));
|
2015-12-04 05:32:33 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if(ret == 0)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
F->handshake_count++;
|
|
|
|
return 1;
|
|
|
|
}
|
2015-12-04 07:01:40 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if(ret == -1 && rb_ignore_errno(errno))
|
|
|
|
ret = MBEDTLS_ERR_SSL_WANT_READ;
|
2015-12-04 07:01:40 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
switch(ret)
|
|
|
|
{
|
|
|
|
case MBEDTLS_ERR_SSL_WANT_READ:
|
|
|
|
rb_setselect(F, RB_SELECT_READ, callback, data);
|
|
|
|
return 0;
|
|
|
|
case MBEDTLS_ERR_SSL_WANT_WRITE:
|
|
|
|
rb_setselect(F, RB_SELECT_WRITE, callback, data);
|
|
|
|
return 0;
|
|
|
|
default:
|
2015-12-04 05:32:33 +01:00
|
|
|
F->ssl_errno = ret;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rb_ssl_tryaccept(rb_fde_t *F, void *data)
|
|
|
|
{
|
|
|
|
lrb_assert(F->accept != NULL);
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
int ret = do_ssl_handshake(F, rb_ssl_tryaccept, NULL);
|
2015-12-04 05:32:33 +01:00
|
|
|
|
|
|
|
/* do_ssl_handshake does the rb_setselect */
|
|
|
|
if(ret == 0)
|
|
|
|
return;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
struct acceptdata *ad = F->accept;
|
2015-12-04 05:32:33 +01:00
|
|
|
F->accept = NULL;
|
|
|
|
rb_settimeout(F, 0, NULL, NULL);
|
|
|
|
rb_setselect(F, RB_SELECT_READ | RB_SELECT_WRITE, NULL, NULL);
|
|
|
|
|
|
|
|
if(ret > 0)
|
|
|
|
ad->callback(F, RB_OK, (struct sockaddr *)&ad->S, ad->addrlen, ad->data);
|
|
|
|
else
|
|
|
|
ad->callback(F, RB_ERROR_SSL, NULL, 0, ad->data);
|
|
|
|
|
|
|
|
rb_free(ad);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
rb_ssl_read_cb(void *opaque, unsigned char *buf, size_t size)
|
|
|
|
{
|
|
|
|
rb_fde_t *F = opaque;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
int ret = (int) read(F->fd, buf, size);
|
|
|
|
if(ret < 0 && rb_ignore_errno(errno))
|
2015-12-04 07:01:40 +01:00
|
|
|
return MBEDTLS_ERR_SSL_WANT_READ;
|
|
|
|
|
|
|
|
return ret;
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
rb_ssl_write_cb(void *opaque, const unsigned char *buf, size_t size)
|
|
|
|
{
|
|
|
|
rb_fde_t *F = opaque;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
int ret = (int) write(F->fd, buf, size);
|
|
|
|
if(ret < 0 && rb_ignore_errno(errno))
|
2015-12-04 07:01:40 +01:00
|
|
|
return MBEDTLS_ERR_SSL_WANT_WRITE;
|
|
|
|
|
|
|
|
return ret;
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_ssl_setup_mbed_context(rb_fde_t *F, bool is_server)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_mbedtls_ssl_context *mbed_ssl_ctx;
|
|
|
|
mbedtls_ssl_config *mbed_config;
|
2015-12-04 05:32:33 +01:00
|
|
|
int ret;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if((mbed_ssl_ctx = rb_malloc(sizeof(rb_mbedtls_ssl_context))) == NULL)
|
|
|
|
{
|
|
|
|
rb_lib_log("rb_ssl_setup_mbed_context: rb_malloc: allocation failure");
|
|
|
|
rb_close(F);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(is_server)
|
|
|
|
mbed_config = &rb_mbedtls_cfg->server_cfg;
|
|
|
|
else
|
|
|
|
mbed_config = &rb_mbedtls_cfg->client_cfg;
|
|
|
|
|
|
|
|
mbedtls_ssl_init(&mbed_ssl_ctx->ssl);
|
|
|
|
mbedtls_ssl_set_bio(&mbed_ssl_ctx->ssl, F, rb_ssl_write_cb, rb_ssl_read_cb, NULL);
|
|
|
|
|
|
|
|
if((ret = mbedtls_ssl_setup(&mbed_ssl_ctx->ssl, mbed_config)) != 0)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_lib_log("rb_ssl_setup_mbed_context: ssl_setup: %s",
|
|
|
|
rb_get_ssl_strerror_internal(ret));
|
|
|
|
mbedtls_ssl_free(&mbed_ssl_ctx->ssl);
|
|
|
|
rb_free(mbed_ssl_ctx);
|
2015-12-04 05:32:33 +01:00
|
|
|
rb_close(F);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
mbed_ssl_ctx->cfg = rb_mbedtls_cfg;
|
|
|
|
rb_mbedtls_cfg_incref(mbed_ssl_ctx->cfg);
|
|
|
|
F->ssl = mbed_ssl_ctx;
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_ssl_start_accepted(rb_fde_t *F, ACCB * cb, void *data, int timeout)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
F->type |= RB_FD_SSL;
|
|
|
|
F->accept = rb_malloc(sizeof(struct acceptdata));
|
2015-12-04 05:32:33 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
F->accept->callback = cb;
|
|
|
|
F->accept->data = data;
|
|
|
|
rb_settimeout(F, timeout, rb_ssl_timeout, NULL);
|
2015-12-04 05:32:33 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
F->accept->addrlen = 0;
|
2015-12-04 05:32:33 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_ssl_setup_mbed_context(F, true);
|
|
|
|
if(do_ssl_handshake(F, rb_ssl_tryaccept, NULL))
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
struct acceptdata *ad = F->accept;
|
|
|
|
F->accept = NULL;
|
|
|
|
ad->callback(F, RB_OK, (struct sockaddr *)&ad->S, ad->addrlen, ad->data);
|
2015-12-04 05:32:33 +01:00
|
|
|
rb_free(ad);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_ssl_accept_setup(rb_fde_t *F, rb_fde_t *new_F, struct sockaddr *st, int addrlen)
|
|
|
|
{
|
|
|
|
new_F->type |= RB_FD_SSL;
|
|
|
|
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);
|
2016-05-05 05:31:32 +02:00
|
|
|
|
2015-12-04 05:32:33 +01:00
|
|
|
memcpy(&new_F->accept->S, st, addrlen);
|
|
|
|
new_F->accept->addrlen = addrlen;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_ssl_setup_mbed_context(new_F, true);
|
2015-12-04 05:32:33 +01:00
|
|
|
if(do_ssl_handshake(F, rb_ssl_tryaccept, NULL))
|
|
|
|
{
|
|
|
|
struct acceptdata *ad = F->accept;
|
|
|
|
F->accept = NULL;
|
|
|
|
ad->callback(F, RB_OK, (struct sockaddr *)&ad->S, ad->addrlen, ad->data);
|
|
|
|
rb_free(ad);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_ssl_read_or_write(bool do_read, rb_fde_t *F, void *rbuf, const void *wbuf, size_t count)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
|
|
|
ssize_t ret;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if(do_read)
|
|
|
|
ret = mbedtls_ssl_read(SSL_P(F), rbuf, count);
|
2015-12-04 05:32:33 +01:00
|
|
|
else
|
2016-05-05 05:31:32 +02:00
|
|
|
ret = mbedtls_ssl_write(SSL_P(F), wbuf, count);
|
2015-12-04 05:32:33 +01:00
|
|
|
|
|
|
|
if(ret < 0)
|
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
switch(ret)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
|
|
|
case MBEDTLS_ERR_SSL_WANT_READ:
|
|
|
|
return RB_RW_SSL_NEED_READ;
|
|
|
|
case MBEDTLS_ERR_SSL_WANT_WRITE:
|
|
|
|
return RB_RW_SSL_NEED_WRITE;
|
|
|
|
default:
|
|
|
|
F->ssl_errno = ret;
|
|
|
|
errno = EIO;
|
2016-06-12 13:33:06 +02:00
|
|
|
return RB_RW_SSL_ERROR;
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t
|
|
|
|
rb_ssl_read(rb_fde_t *F, void *buf, size_t count)
|
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
return rb_ssl_read_or_write(true, F, buf, NULL, count);
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t
|
|
|
|
rb_ssl_write(rb_fde_t *F, const void *buf, size_t count)
|
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
return rb_ssl_read_or_write(false, F, NULL, buf, count);
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_init_ssl(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
mbedtls_ctr_drbg_init(&ctr_drbg_ctx);
|
|
|
|
mbedtls_entropy_init(&entropy_ctx);
|
2015-12-04 05:32:33 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if((ret = mbedtls_ctr_drbg_seed(&ctr_drbg_ctx, mbedtls_entropy_func, &entropy_ctx,
|
|
|
|
(const unsigned char *)rb_mbedtls_personal_str, sizeof(rb_mbedtls_personal_str))) != 0)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_lib_log("rb_init_ssl: ctr_drbg_seed: %s",
|
|
|
|
rb_get_ssl_strerror_internal(ret));
|
2015-12-04 05:32:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if((ret = mbedtls_x509_crt_parse_der(&dummy_ca_ctx, rb_mbedtls_dummy_ca_certificate,
|
|
|
|
sizeof(rb_mbedtls_dummy_ca_certificate))) != 0)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_lib_log("rb_init_ssl: x509_crt_parse_der (Dummy CA): %s",
|
|
|
|
rb_get_ssl_strerror_internal(ret));
|
2015-12-04 05:32:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_setup_ssl_server(const char *certfile, const char *keyfile, const char *dhfile, const char *cipher_list)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_mbedtls_cfg_context *newcfg;
|
2015-12-04 05:32:33 +01:00
|
|
|
int ret;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if(certfile == NULL)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_lib_log("rb_setup_ssl_server: no certificate file specified");
|
2015-12-04 05:32:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if(keyfile == NULL)
|
|
|
|
keyfile = certfile;
|
|
|
|
|
|
|
|
if((newcfg = rb_mbedtls_cfg_new()) == NULL)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_lib_log("rb_setup_ssl_server: rb_mbedtls_cfg_new: allocation failed");
|
2015-12-04 05:32:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if((ret = mbedtls_x509_crt_parse_file(&newcfg->crt, certfile)) != 0)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_lib_log("rb_setup_ssl_server: x509_crt_parse_file ('%s'): %s",
|
|
|
|
certfile, rb_get_ssl_strerror_internal(ret));
|
|
|
|
rb_mbedtls_cfg_decref(newcfg);
|
2015-12-04 05:32:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2016-05-05 05:31:32 +02:00
|
|
|
if((ret = mbedtls_pk_parse_keyfile(&newcfg->key, keyfile, NULL)) != 0)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_lib_log("rb_setup_ssl_server: pk_parse_keyfile ('%s'): %s",
|
|
|
|
keyfile, rb_get_ssl_strerror_internal(ret));
|
|
|
|
rb_mbedtls_cfg_decref(newcfg);
|
2015-12-04 05:32:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
/* Absense of DH parameters does not matter with mbedTLS, as it comes with its own defaults
|
|
|
|
Thus, clients can still use DHE- ciphersuites, just over a weaker, common DH group
|
|
|
|
So, we do not consider failure to parse DH parameters as fatal */
|
|
|
|
if(dhfile == NULL)
|
|
|
|
{
|
|
|
|
rb_lib_log("rb_setup_ssl_server: no DH parameters file specified");
|
|
|
|
}
|
|
|
|
else
|
2015-12-05 05:42:10 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
if((ret = mbedtls_dhm_parse_dhmfile(&newcfg->dhp, dhfile)) != 0)
|
|
|
|
{
|
|
|
|
rb_lib_log("rb_setup_ssl_server: dhm_parse_dhmfile ('%s'): %s",
|
|
|
|
dhfile, rb_get_ssl_strerror_internal(ret));
|
|
|
|
}
|
|
|
|
else if((ret = mbedtls_ssl_conf_dh_param_ctx(&newcfg->server_cfg, &newcfg->dhp)) != 0)
|
|
|
|
{
|
|
|
|
rb_lib_log("rb_setup_ssl_server: ssl_conf_dh_param_ctx: %s",
|
|
|
|
rb_get_ssl_strerror_internal(ret));
|
|
|
|
}
|
2015-12-05 05:42:10 +01:00
|
|
|
}
|
2015-12-04 05:32:33 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if((ret = mbedtls_ssl_conf_own_cert(&newcfg->server_cfg, &newcfg->crt, &newcfg->key)) != 0)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_lib_log("rb_setup_ssl_server: ssl_conf_own_cert (server): %s",
|
|
|
|
rb_get_ssl_strerror_internal(ret));
|
|
|
|
rb_mbedtls_cfg_decref(newcfg);
|
2015-12-04 05:32:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2016-05-05 05:31:32 +02:00
|
|
|
if((ret = mbedtls_ssl_conf_own_cert(&newcfg->client_cfg, &newcfg->crt, &newcfg->key)) != 0)
|
2015-12-05 05:42:10 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_lib_log("rb_setup_ssl_server: ssl_conf_own_cert (client): %s",
|
|
|
|
rb_get_ssl_strerror_internal(ret));
|
|
|
|
rb_mbedtls_cfg_decref(newcfg);
|
2015-12-05 05:42:10 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-12-12 14:50:48 +01:00
|
|
|
/* XXX support cipher lists when added to mbedtls */
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_mbedtls_cfg_decref(rb_mbedtls_cfg);
|
|
|
|
rb_mbedtls_cfg = newcfg;
|
|
|
|
|
2015-12-04 05:32:33 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_ssl_listen(rb_fde_t *F, int backlog, int defer_accept)
|
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
int result = rb_listen(F, backlog, defer_accept);
|
2015-12-04 05:32:33 +01:00
|
|
|
F->type = RB_FD_SOCKET | RB_FD_LISTEN | RB_FD_SSL;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ssl_connect
|
|
|
|
{
|
|
|
|
CNCB *callback;
|
|
|
|
void *data;
|
|
|
|
int timeout;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
rb_ssl_connect_realcb(rb_fde_t *F, int status, struct ssl_connect *sconn)
|
|
|
|
{
|
|
|
|
F->connect->callback = sconn->callback;
|
|
|
|
F->connect->data = sconn->data;
|
|
|
|
rb_free(sconn);
|
|
|
|
rb_connect_callback(F, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rb_ssl_tryconn_timeout_cb(rb_fde_t *F, void *data)
|
|
|
|
{
|
|
|
|
rb_ssl_connect_realcb(F, RB_ERR_TIMEOUT, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rb_ssl_tryconn_cb(rb_fde_t *F, void *data)
|
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
int ret = do_ssl_handshake(F, rb_ssl_tryconn_cb, data);
|
2015-12-04 05:32:33 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
switch(ret)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
|
|
|
case -1:
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_ssl_connect_realcb(F, RB_ERROR_SSL, data);
|
2015-12-04 05:32:33 +01:00
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
/* do_ssl_handshake does the rb_setselect stuff */
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_ssl_connect_realcb(F, RB_OK, data);
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rb_ssl_tryconn(rb_fde_t *F, int status, void *data)
|
|
|
|
{
|
|
|
|
if(status != RB_OK)
|
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_ssl_connect_realcb(F, status, data);
|
2015-12-04 05:32:33 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
F->type |= RB_FD_SSL;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_ssl_setup_mbed_context(F, false);
|
|
|
|
rb_settimeout(F, ((struct ssl_connect *)data)->timeout, rb_ssl_tryconn_timeout_cb, data);
|
|
|
|
do_ssl_handshake(F, rb_ssl_tryconn_cb, data);
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_connect_tcp_ssl(rb_fde_t *F, struct sockaddr *dest,
|
2016-04-24 18:11:20 +02:00
|
|
|
struct sockaddr *clocal, CNCB * callback, void *data, int timeout)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
|
|
|
if(F == NULL)
|
|
|
|
return;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
struct ssl_connect *sconn = rb_malloc(sizeof(struct ssl_connect));
|
2015-12-04 05:32:33 +01:00
|
|
|
sconn->data = data;
|
|
|
|
sconn->callback = callback;
|
|
|
|
sconn->timeout = timeout;
|
2016-05-05 05:31:32 +02:00
|
|
|
|
2016-04-24 18:11:20 +02:00
|
|
|
rb_connect_tcp(F, dest, clocal, rb_ssl_tryconn, sconn, timeout);
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_ssl_start_connected(rb_fde_t *F, CNCB * callback, void *data, int timeout)
|
|
|
|
{
|
|
|
|
if(F == NULL)
|
|
|
|
return;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
struct ssl_connect *sconn = rb_malloc(sizeof(struct ssl_connect));
|
2015-12-04 05:32:33 +01:00
|
|
|
sconn->data = data;
|
|
|
|
sconn->callback = callback;
|
|
|
|
sconn->timeout = timeout;
|
2016-05-05 05:31:32 +02:00
|
|
|
|
2015-12-04 05:32:33 +01:00
|
|
|
F->connect = rb_malloc(sizeof(struct conndata));
|
|
|
|
F->connect->callback = callback;
|
|
|
|
F->connect->data = data;
|
|
|
|
F->type |= RB_FD_SSL;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_ssl_setup_mbed_context(F, false);
|
2015-12-04 05:32:33 +01:00
|
|
|
rb_settimeout(F, sconn->timeout, rb_ssl_tryconn_timeout_cb, sconn);
|
2016-05-05 05:31:32 +02:00
|
|
|
do_ssl_handshake(F, rb_ssl_tryconn_cb, sconn);
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_init_prng(const char *path, prng_seed_t seed_type)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_get_random(void *buf, size_t length)
|
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
if(mbedtls_ctr_drbg_random(&ctr_drbg_ctx, buf, length))
|
2015-12-04 05:32:33 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-04-26 21:21:23 +02:00
|
|
|
static size_t
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_make_certfp(const mbedtls_x509_crt *peer_cert, uint8_t certfp[RB_SSL_CERTFP_LEN], int method)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2015-12-05 13:37:04 +01:00
|
|
|
const mbedtls_md_info_t *md_info;
|
2015-05-27 23:46:46 +02:00
|
|
|
mbedtls_md_type_t md_type;
|
2016-04-23 23:51:05 +02:00
|
|
|
bool spki = false;
|
2016-05-05 05:31:32 +02:00
|
|
|
size_t hashlen;
|
2016-04-26 21:21:23 +02:00
|
|
|
int ret;
|
2015-12-04 05:32:33 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
uint8_t der_pubkey[8192];
|
|
|
|
void* data = peer_cert->raw.p;
|
|
|
|
size_t datalen = peer_cert->raw.len;
|
|
|
|
|
|
|
|
switch(method)
|
2015-05-27 23:46:46 +02:00
|
|
|
{
|
2016-04-23 23:51:05 +02:00
|
|
|
case RB_SSL_CERTFP_METH_CERT_SHA1:
|
2015-05-27 23:46:46 +02:00
|
|
|
md_type = MBEDTLS_MD_SHA1;
|
2016-05-05 05:31:32 +02:00
|
|
|
hashlen = RB_SSL_CERTFP_LEN_SHA1;
|
2016-04-23 23:45:13 +02:00
|
|
|
break;
|
2016-05-05 05:31:32 +02:00
|
|
|
|
2016-04-23 23:51:05 +02:00
|
|
|
case RB_SSL_CERTFP_METH_SPKI_SHA256:
|
|
|
|
spki = true;
|
|
|
|
case RB_SSL_CERTFP_METH_CERT_SHA256:
|
2015-05-27 23:46:46 +02:00
|
|
|
md_type = MBEDTLS_MD_SHA256;
|
2016-05-05 05:31:32 +02:00
|
|
|
hashlen = RB_SSL_CERTFP_LEN_SHA256;
|
2016-04-23 23:45:13 +02:00
|
|
|
break;
|
2016-05-05 05:31:32 +02:00
|
|
|
|
2016-04-23 23:51:05 +02:00
|
|
|
case RB_SSL_CERTFP_METH_SPKI_SHA512:
|
|
|
|
spki = true;
|
|
|
|
case RB_SSL_CERTFP_METH_CERT_SHA512:
|
2015-05-27 23:46:46 +02:00
|
|
|
md_type = MBEDTLS_MD_SHA512;
|
2016-05-05 05:31:32 +02:00
|
|
|
hashlen = RB_SSL_CERTFP_LEN_SHA512;
|
2016-04-23 23:45:13 +02:00
|
|
|
break;
|
2016-05-05 05:31:32 +02:00
|
|
|
|
2015-05-27 23:46:46 +02:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if((md_info = mbedtls_md_info_from_type(md_type)) == NULL)
|
2015-12-04 05:32:33 +01:00
|
|
|
return 0;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if(spki)
|
2015-12-04 05:32:33 +01:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
if ((ret = mbedtls_pk_write_pubkey_der((mbedtls_pk_context *)&peer_cert->pk,
|
|
|
|
der_pubkey, sizeof(der_pubkey))) < 0)
|
2016-04-23 23:51:05 +02:00
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
rb_lib_log("rb_get_ssl_certfp: pk_write_pubkey_der: %s",
|
|
|
|
rb_get_ssl_strerror_internal(ret));
|
|
|
|
return 0;
|
2016-04-23 23:51:05 +02:00
|
|
|
}
|
2016-05-05 05:31:32 +02:00
|
|
|
data = der_pubkey + (sizeof(der_pubkey) - ret);
|
|
|
|
datalen = ret;
|
2016-04-23 23:51:05 +02:00
|
|
|
}
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if((ret = mbedtls_md(md_info, data, datalen, certfp)) != 0)
|
|
|
|
{
|
|
|
|
rb_lib_log("rb_get_ssl_certfp: mbedtls_md: %s",
|
|
|
|
rb_get_ssl_strerror_internal(ret));
|
|
|
|
return 0;
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
return hashlen;
|
2016-04-26 21:21:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_get_ssl_certfp(rb_fde_t *F, uint8_t certfp[RB_SSL_CERTFP_LEN], int method)
|
|
|
|
{
|
|
|
|
const mbedtls_x509_crt *peer_cert;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if ((peer_cert = mbedtls_ssl_get_peer_cert(SSL_P(F))) == NULL)
|
2016-04-26 21:21:23 +02:00
|
|
|
return 0;
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
return (int) rb_make_certfp(peer_cert, certfp, method);
|
2016-04-26 21:21:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_get_ssl_certfp_file(const char *filename, uint8_t certfp[RB_SSL_CERTFP_LEN], int method)
|
|
|
|
{
|
|
|
|
mbedtls_x509_crt cert;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
mbedtls_x509_crt_init(&cert);
|
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
if ((ret = mbedtls_x509_crt_parse_file(&cert, filename)) != 0)
|
2016-04-26 21:21:23 +02:00
|
|
|
return -1;
|
2015-12-04 05:32:33 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
size_t len = rb_make_certfp(&cert, certfp, method);
|
|
|
|
|
|
|
|
mbedtls_x509_crt_free(&cert);
|
|
|
|
|
|
|
|
return (int) len;
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_supports_ssl(void)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_get_ssl_info(char *buf, size_t len)
|
|
|
|
{
|
|
|
|
char version_str[512];
|
|
|
|
mbedtls_version_get_string(version_str);
|
|
|
|
|
2016-08-20 05:16:33 +02:00
|
|
|
(void) snprintf(buf, len, "ARM mbedTLS: compiled (v%s), library (v%s)",
|
|
|
|
MBEDTLS_VERSION_STRING, version_str);
|
2015-12-04 05:32:33 +01:00
|
|
|
}
|
|
|
|
|
2015-12-11 15:32:02 +01:00
|
|
|
const char *
|
|
|
|
rb_ssl_get_cipher(rb_fde_t *F)
|
|
|
|
{
|
2016-05-05 05:31:32 +02:00
|
|
|
if(F == NULL || F->ssl == NULL || SSL_P(F) == NULL)
|
2015-12-11 15:32:02 +01:00
|
|
|
return NULL;
|
2016-08-20 05:16:33 +02:00
|
|
|
|
|
|
|
static char buf[512];
|
|
|
|
|
|
|
|
const char *version = mbedtls_ssl_get_version(SSL_P(F));
|
|
|
|
const char *cipher = mbedtls_ssl_get_ciphersuite(SSL_P(F));
|
|
|
|
|
|
|
|
(void) snprintf(buf, sizeof buf, "%s, %s", version, cipher);
|
|
|
|
|
|
|
|
return buf;
|
2015-12-11 15:32:02 +01:00
|
|
|
}
|
2015-12-04 05:32:33 +01:00
|
|
|
|
2016-05-05 05:31:32 +02:00
|
|
|
#endif /* HAVE_MBEDTLS */
|