Files
archived-rtty/src/ssl.c
T
Jianhui Zhao 59bc14aafb ssl: Fix bug while use wolfssl
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2020-01-31 15:00:37 +08:00

222 lines
5.7 KiB
C

/*
* MIT License
*
* Copyright (c) 2019 Jianhui Zhao <zhaojh329@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include <errno.h>
#include <stdlib.h>
#include "log.h"
#include "ssl.h"
#include "buffer.h"
#if RTTY_SSL_SUPPORT
#if RTTY_HAVE_MBEDTLS
#include <mbedtls/ssl.h>
#include <mbedtls/entropy.h>
#include <mbedtls/ctr_drbg.h>
#include <mbedtls/net_sockets.h>
struct rtty_ssl_ctx {
mbedtls_net_context net;
mbedtls_ssl_context ssl;
mbedtls_ssl_config cfg;
mbedtls_ctr_drbg_context drbg;
mbedtls_entropy_context etpy;
mbedtls_x509_crt x509;
bool last_read_ok;
};
#else
#if RTTY_HAVE_OPENSSL
#include <openssl/ssl.h>
#include <openssl/err.h>
#elif RTTY_HAVE_WOLFSSL
#define WC_NO_HARDEN
#include <wolfssl/openssl/ssl.h>
#include <wolfssl/openssl/err.h>
#endif
struct rtty_ssl_ctx {
SSL_CTX *ctx;
SSL *ssl;
};
#endif
int rtty_ssl_init(struct rtty_ssl_ctx **ctx, int sock, const char *host)
{
struct rtty_ssl_ctx *c = calloc(1, sizeof(struct rtty_ssl_ctx));
if (!ctx) {
log_err("calloc failed: %s\n", strerror(errno));
return -1;
}
#if RTTY_HAVE_MBEDTLS
mbedtls_net_init(&c->net);
mbedtls_ssl_init(&c->ssl);
mbedtls_ssl_config_init(&c->cfg);
mbedtls_ctr_drbg_init(&c->drbg);
mbedtls_x509_crt_init(&c->x509);
mbedtls_entropy_init(&c->etpy);
mbedtls_ctr_drbg_seed(&c->drbg, mbedtls_entropy_func, &c->etpy, NULL, 0);
mbedtls_ssl_config_defaults(&c->cfg, MBEDTLS_SSL_IS_CLIENT,
MBEDTLS_SSL_TRANSPORT_STREAM, MBEDTLS_SSL_PRESET_DEFAULT);
mbedtls_ssl_conf_authmode(&c->cfg, MBEDTLS_SSL_VERIFY_OPTIONAL);
mbedtls_ssl_conf_ca_chain(&c->cfg, &c->x509, NULL);
mbedtls_ssl_conf_rng(&c->cfg, mbedtls_ctr_drbg_random, &c->drbg);
mbedtls_ssl_set_bio(&c->ssl, &c->net, mbedtls_net_send,
mbedtls_net_recv, NULL);
mbedtls_ssl_set_hostname(&c->ssl, host);
mbedtls_ssl_setup(&c->ssl, &c->cfg);
c->net.fd = sock;
#else
#if RTTY_HAVE_WOLFSSL
wolfSSL_Init();
c->ctx = SSL_CTX_new(TLSv1_2_client_method());
#elif OPENSSL_VERSION_NUMBER < 0x10100000L
SSL_library_init();
SSL_load_error_strings();
c->ctx = SSL_CTX_new(SSLv23_client_method());
#else
c->ctx = SSL_CTX_new(TLS_client_method());
#endif
SSL_CTX_set_verify(c->ctx, SSL_VERIFY_NONE, NULL);
c->ssl = SSL_new(c->ctx);
#if RTTY_HAVE_OPENSSL
SSL_set_tlsext_host_name(c->ssl, host);
#endif
SSL_set_fd(c->ssl, sock);
#endif
*ctx = c;
return 0;
}
int rtty_ssl_handshake(struct rtty_ssl_ctx *ctx)
{
#if RTTY_HAVE_MBEDTLS
int ret = mbedtls_ssl_handshake(&ctx->ssl);
if (ret == MBEDTLS_ERR_SSL_WANT_READ || ret == MBEDTLS_ERR_SSL_WANT_WRITE)
return 0;
if (ret == 0)
return 1;
return -1;
#else
int ret = SSL_connect(ctx->ssl);
if (ret == 1) {
return 1;
} else {
int err = SSL_get_error(ctx->ssl, ret);
if (err == SSL_ERROR_WANT_READ || err == SSL_ERROR_WANT_WRITE)
return 0;
log_err("%s\n", ERR_reason_error_string(err));
return -1;
}
#endif
}
void rtty_ssl_free(struct rtty_ssl_ctx *ctx)
{
if (!ctx)
return;
#if RTTY_HAVE_MBEDTLS
mbedtls_ssl_free(&ctx->ssl);
mbedtls_ssl_config_free(&ctx->cfg);
#else
SSL_shutdown(ctx->ssl);
SSL_CTX_free(ctx->ctx);
#endif
free(ctx);
}
int rtty_ssl_read(int fd, void *buf, size_t count, void *arg)
{
struct rtty_ssl_ctx *ctx = arg;
#if RTTY_HAVE_MBEDTLS
int ret;
if (ctx->last_read_ok) {
ctx->last_read_ok = false;
return P_FD_PENDING;
}
ret = mbedtls_ssl_read(&ctx->ssl, buf, count);
if (ret < 0) {
if (ret == MBEDTLS_ERR_SSL_WANT_READ)
return P_FD_PENDING;
return P_FD_ERR;
}
if (ret > 0)
ctx->last_read_ok = true;
#else
int ret = SSL_read(ctx->ssl, buf, count);
if (ret < 0) {
int err = SSL_get_error(ctx->ssl, ret);
if (err == SSL_ERROR_WANT_READ)
return P_FD_PENDING;
log_err("%s\n", ERR_reason_error_string(err));
return P_FD_ERR;
}
#endif
return ret;
}
int rtty_ssl_write(int fd, void *buf, size_t count, void *arg)
{
struct rtty_ssl_ctx *ctx = arg;
#if RTTY_HAVE_MBEDTLS
int ret = mbedtls_ssl_write(&ctx->ssl, buf, count);
if (ret < 0) {
if (ret == MBEDTLS_ERR_SSL_WANT_WRITE)
return P_FD_PENDING;
return P_FD_ERR;
}
#else
int ret = SSL_write(ctx->ssl, buf, count);
if (ret < 0) {
int err = SSL_get_error(ctx->ssl, ret);
if (err == SSL_ERROR_WANT_WRITE)
return P_FD_PENDING;
log_err("%s\n", ERR_reason_error_string(err));
return P_FD_ERR;
}
#endif
return ret;
}
#endif