Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #852 #1016

Merged
merged 3 commits into from
May 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions tempesta_fw/sock_clnt.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,16 @@
* this program; if not, write to the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "tempesta_fw.h"
#include "cfg.h"
#include "classifier.h"
#include "client.h"
#include "connection.h"
#include "log.h"
#include "sync_socket.h"
#include "tempesta_fw.h"
#include "server.h"
#include "procfs.h"
#include "server.h"
#include "sync_socket.h"
#include "tls.h"

/*
* ------------------------------------------------------------------------
Expand Down Expand Up @@ -175,7 +176,7 @@ tfw_sock_clnt_new(struct sock *sk)

r = tfw_connection_new(conn);
if (r) {
TFW_ERR("conn_init() hook returned error\n");
TFW_ERR("cannot establish a new client connection\n");
goto err_conn;
}

Expand All @@ -196,7 +197,6 @@ tfw_sock_clnt_new(struct sock *sk)
return 0;

err_conn:
tfw_connection_drop(conn);
tfw_cli_conn_free((TfwCliConn *)conn);
err_client:
tfw_client_put(cli);
Expand Down Expand Up @@ -483,12 +483,16 @@ tfw_cfgop_listen(TfwCfgSpec *cs, TfwCfgEntry *ce)
if (!in_str)
goto parse_err;

if (!strcasecmp(in_str, "http"))
if (!strcasecmp(in_str, "http")) {
return tfw_listen_sock_add(&addr, TFW_FSM_HTTP);
else if (!strcasecmp(in_str, "https"))
}
else if (!strcasecmp(in_str, "https")) {
tfw_tls_cfg_require();
return tfw_listen_sock_add(&addr, TFW_FSM_HTTPS);
else
}
else {
goto parse_err;
}

parse_err:
TFW_ERR_NL("Unable to parse 'listen' value: '%s'\n",
Expand Down
2 changes: 1 addition & 1 deletion tempesta_fw/tempesta_fw.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#define TFW_AUTHOR "Tempesta Technologies, Inc"
#define TFW_NAME "Tempesta FW"
#define TFW_VERSION "0.5.2"
#define TFW_VERSION "0.5.3"

#define DEF_MAX_PORTS 8

Expand Down
52 changes: 37 additions & 15 deletions tempesta_fw/tls.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Tempesta FW
*
* Transport Layer Security (TLS) implementation.
* Transport Layer Security (TLS) interfaces to Tempesta TLS.
*
* Copyright (C) 2015-2018 Tempesta Technologies, Inc.
*
Expand All @@ -19,8 +19,6 @@
* this program; if not, write to the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <linux/vmalloc.h>

#include "cfg.h"
#include "connection.h"
#include "client.h"
Expand Down Expand Up @@ -282,11 +280,6 @@ tfw_tls_conn_init(TfwConn *c)
ss_skb_queue_head_init(&tls->rx_queue);
ss_skb_queue_head_init(&tls->tx_queue);

if (!tfw_tls.crt.version) {
TFW_ERR("TLS:%p no certificate specified\n", tls);
return -EINVAL;
}

r = mbedtls_ssl_setup(&tls->ssl, &tfw_tls.cfg);
if (r) {
TFW_ERR("TLS:%p setup failed (%x)\n", tls, -r);
Expand All @@ -296,9 +289,8 @@ tfw_tls_conn_init(TfwConn *c)
mbedtls_ssl_set_bio(&tls->ssl, c,
tfw_tls_send_cb, tfw_tls_recv_cb, NULL);

if (tfw_conn_hook_call(TFW_FSM_HTTP, c, conn_init)) {
if (tfw_conn_hook_call(TFW_FSM_HTTP, c, conn_init))
return -EINVAL;
}

spin_lock_init(&tls->lock);
tfw_gfsm_state_init(&c->state, c, TFW_TLS_FSM_INIT);
Expand Down Expand Up @@ -410,6 +402,21 @@ tfw_tls_do_cleanup(void)
* ------------------------------------------------------------------------
*/

/* TLS configuration state. */
#define TFW_TLS_CFG_F_DISABLED 0U
#define TFW_TLS_CFG_F_REQUIRED 1U
#define TFW_TLS_CFG_F_CERT 2U
#define TFW_TLS_CFG_F_CKEY 4U
#define TFW_TLS_CFG_M_ALL (TFW_TLS_CFG_F_CERT | TFW_TLS_CFG_F_CKEY)

static unsigned int tfw_tls_cgf = TFW_TLS_CFG_F_DISABLED;

void
tfw_tls_cfg_require(void)
{
tfw_tls_cgf |= TFW_TLS_CFG_F_REQUIRED;
}

static int
tfw_tls_start(void)
{
Expand Down Expand Up @@ -468,6 +475,7 @@ tfw_cfgop_ssl_certificate(TfwCfgSpec *cs, TfwCfgEntry *ce)
cs->name, -r);
return -EINVAL;
}
tfw_tls_cgf |= TFW_TLS_CFG_F_CERT;

return 0;
}
Expand All @@ -476,6 +484,7 @@ static void
tfw_cfgop_cleanup_ssl_certificate(TfwCfgSpec *cs)
{
mbedtls_x509_crt_free(&tfw_tls.crt);
tfw_tls_cgf &= ~TFW_TLS_CFG_F_CERT;
}

/**
Expand Down Expand Up @@ -518,6 +527,7 @@ tfw_cfgop_ssl_certificate_key(TfwCfgSpec *cs, TfwCfgEntry *ce)
cs->name, -r);
return -EINVAL;
}
tfw_tls_cgf |= TFW_TLS_CFG_F_CKEY;

return 0;
}
Expand All @@ -526,14 +536,26 @@ static void
tfw_cfgop_cleanup_ssl_certificate_key(TfwCfgSpec *cs)
{
mbedtls_pk_free(&tfw_tls.key);
tfw_tls_cgf &= ~TFW_TLS_CFG_F_CKEY;
}

static int
tfw_tls_cfgend(void)
{
if ((tfw_tls.crt.version && !tfw_tls.key.pk_ctx) ||
(!tfw_tls.crt.version && tfw_tls.key.pk_ctx)) {
TFW_ERR_NL("TLS: SSL certificate/key pair is incomplete\n");
if (!(tfw_tls_cgf & TFW_TLS_CFG_F_REQUIRED)) {
if (tfw_tls_cgf)
TFW_WARN_NL("TLS: no HTTPS listener,"
" configuration ignored\n");
return 0;
}
if (!(tfw_tls_cgf & TFW_TLS_CFG_F_CERT)) {
TFW_ERR_NL("TLS: please specify a certificate with"
" tls_certificate configuration option\n");
return -EINVAL;
}
if (!(tfw_tls_cgf & TFW_TLS_CFG_F_CKEY)) {
TFW_ERR_NL("TLS: please specify a certificate key with"
" tls_certificate_key configuration option\n");
return -EINVAL;
}

Expand All @@ -542,15 +564,15 @@ tfw_tls_cfgend(void)

static TfwCfgSpec tfw_tls_specs[] = {
{
.name = "ssl_certificate",
.name = "tls_certificate",
.deflt = NULL,
.handler = tfw_cfgop_ssl_certificate,
.allow_none = true,
.allow_repeat = false,
.cleanup = tfw_cfgop_cleanup_ssl_certificate,
},
{
.name = "ssl_certificate_key",
.name = "tls_certificate_key",
.deflt = NULL,
.handler = tfw_cfgop_ssl_certificate_key,
.allow_none = true,
Expand Down
4 changes: 3 additions & 1 deletion tempesta_fw/tls.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Tempesta FW
*
* Copyright (C) 2015 Tempesta Technologies, Inc.
* Copyright (C) 2015-2018 Tempesta Technologies, Inc.
*
* 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
Expand Down Expand Up @@ -63,5 +63,7 @@ typedef struct {
spinlock_t lock;
} TfwTlsContext;

void tfw_tls_cfg_require(void);

#endif /* __TFW_TLS_H__ */