2012-06-05 18:26:04 +02:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2012-06-05 18:26:04 +02:00
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* 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 "shrpx_ssl.h"
|
|
|
|
|
2015-05-13 15:30:35 +02:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
2012-06-05 18:26:04 +02:00
|
|
|
#include <sys/socket.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#endif // HAVE_SYS_SOCKET_H
|
|
|
|
#ifdef HAVE_NETDB_H
|
2012-06-05 18:26:04 +02:00
|
|
|
#include <netdb.h>
|
2015-05-13 15:30:35 +02:00
|
|
|
#endif // HAVE_NETDB_H
|
2012-06-07 15:39:57 +02:00
|
|
|
#include <netinet/tcp.h>
|
2012-06-08 15:41:24 +02:00
|
|
|
#include <pthread.h>
|
2015-03-30 16:20:40 +02:00
|
|
|
#include <sys/types.h>
|
2012-06-08 15:41:24 +02:00
|
|
|
|
2012-11-22 13:46:15 +01:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
2012-06-08 15:41:24 +02:00
|
|
|
#include <openssl/crypto.h>
|
2012-11-22 13:46:15 +01:00
|
|
|
#include <openssl/x509.h>
|
|
|
|
#include <openssl/x509v3.h>
|
2015-01-07 16:01:09 +01:00
|
|
|
#include <openssl/rand.h>
|
2012-06-05 18:26:04 +02:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
#include <nghttp2/nghttp2.h>
|
2012-11-18 13:23:13 +01:00
|
|
|
|
2014-04-26 12:36:35 +02:00
|
|
|
#ifdef HAVE_SPDYLAY
|
|
|
|
#include <spdylay/spdylay.h>
|
|
|
|
#endif // HAVE_SPDYLAY
|
|
|
|
|
2012-06-05 18:26:04 +02:00
|
|
|
#include "shrpx_log.h"
|
|
|
|
#include "shrpx_client_handler.h"
|
|
|
|
#include "shrpx_config.h"
|
2014-06-26 15:55:22 +02:00
|
|
|
#include "shrpx_worker.h"
|
2014-10-13 14:09:00 +02:00
|
|
|
#include "shrpx_downstream_connection_pool.h"
|
2015-07-12 15:16:20 +02:00
|
|
|
#include "shrpx_http2_session.h"
|
2012-11-22 13:46:15 +01:00
|
|
|
#include "util.h"
|
2014-06-28 08:28:19 +02:00
|
|
|
#include "ssl.h"
|
2015-02-02 14:47:12 +01:00
|
|
|
#include "template.h"
|
2012-11-22 13:46:15 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
using namespace nghttp2;
|
2012-06-05 18:26:04 +02:00
|
|
|
|
|
|
|
namespace shrpx {
|
|
|
|
|
|
|
|
namespace ssl {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
int next_proto_cb(SSL *s, const unsigned char **data, unsigned int *len,
|
2014-11-27 15:39:04 +01:00
|
|
|
void *arg) {
|
|
|
|
auto &prefs = get_config()->alpn_prefs;
|
2014-06-10 16:15:29 +02:00
|
|
|
*data = prefs.data();
|
|
|
|
*len = prefs.size();
|
2012-06-05 18:26:04 +02:00
|
|
|
return SSL_TLSEXT_ERR_OK;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int verify_callback(int preverify_ok, X509_STORE_CTX *ctx) {
|
|
|
|
if (!preverify_ok) {
|
2013-11-01 17:10:18 +01:00
|
|
|
int err = X509_STORE_CTX_get_error(ctx);
|
|
|
|
int depth = X509_STORE_CTX_get_error_depth(ctx);
|
|
|
|
LOG(ERROR) << "client certificate verify error:num=" << err << ":"
|
2014-11-27 15:39:04 +01:00
|
|
|
<< X509_verify_cert_error_string(err) << ":depth=" << depth;
|
2013-11-01 17:10:18 +01:00
|
|
|
}
|
|
|
|
return preverify_ok;
|
2012-06-05 18:26:04 +02:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
std::vector<unsigned char> set_alpn_prefs(const std::vector<char *> &protos) {
|
2014-11-14 15:14:39 +01:00
|
|
|
size_t len = 0;
|
2014-06-10 16:15:29 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
for (auto proto : protos) {
|
2014-11-14 15:14:39 +01:00
|
|
|
auto n = strlen(proto);
|
2014-06-10 16:15:29 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (n > 255) {
|
2014-11-14 15:14:39 +01:00
|
|
|
LOG(FATAL) << "Too long ALPN identifier: " << n;
|
2014-06-10 16:15:29 +02:00
|
|
|
DIE();
|
|
|
|
}
|
|
|
|
|
2014-11-14 15:14:39 +01:00
|
|
|
len += 1 + n;
|
2012-07-15 14:39:19 +02:00
|
|
|
}
|
2014-11-14 15:14:39 +01:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (len > (1 << 16) - 1) {
|
|
|
|
LOG(FATAL) << "Too long ALPN identifier list: " << len;
|
|
|
|
DIE();
|
2014-11-14 15:19:16 +01:00
|
|
|
}
|
|
|
|
|
2014-11-14 15:14:39 +01:00
|
|
|
auto out = std::vector<unsigned char>(len);
|
|
|
|
auto ptr = out.data();
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
for (auto proto : protos) {
|
2014-11-14 15:14:39 +01:00
|
|
|
auto proto_len = strlen(proto);
|
|
|
|
|
|
|
|
*ptr++ = proto_len;
|
|
|
|
memcpy(ptr, proto, proto_len);
|
|
|
|
ptr += proto_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return out;
|
2012-07-15 14:39:19 +02:00
|
|
|
}
|
|
|
|
|
2012-12-07 15:42:58 +01:00
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int ssl_pem_passwd_cb(char *buf, int size, int rwflag, void *user_data) {
|
|
|
|
auto config = static_cast<Config *>(user_data);
|
2014-06-08 14:02:40 +02:00
|
|
|
int len = (int)strlen(config->private_key_passwd.get());
|
2012-12-03 07:33:04 +01:00
|
|
|
if (size < len + 1) {
|
|
|
|
LOG(ERROR) << "ssl_pem_passwd_cb: buf is too small " << size;
|
|
|
|
return 0;
|
|
|
|
}
|
2012-12-07 15:42:58 +01:00
|
|
|
// Copy string including last '\0'.
|
2014-06-08 14:02:40 +02:00
|
|
|
memcpy(buf, config->private_key_passwd.get(), len + 1);
|
2012-12-03 07:33:04 +01:00
|
|
|
return len;
|
|
|
|
}
|
2012-12-07 15:42:58 +01:00
|
|
|
} // namespace
|
2012-12-03 07:33:04 +01:00
|
|
|
|
2013-02-06 15:27:05 +01:00
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int servername_callback(SSL *ssl, int *al, void *arg) {
|
2015-02-11 11:18:41 +01:00
|
|
|
auto handler = static_cast<ClientHandler *>(SSL_get_app_data(ssl));
|
|
|
|
auto worker = handler->get_worker();
|
|
|
|
auto cert_tree = worker->get_cert_lookup_tree();
|
2015-01-12 16:18:27 +01:00
|
|
|
if (cert_tree) {
|
2013-02-06 15:27:05 +01:00
|
|
|
const char *hostname = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (hostname) {
|
2015-02-02 14:47:12 +01:00
|
|
|
auto ssl_ctx = cert_tree->lookup(hostname, strlen(hostname));
|
2014-11-27 15:39:04 +01:00
|
|
|
if (ssl_ctx) {
|
2013-02-06 15:27:05 +01:00
|
|
|
SSL_set_SSL_CTX(ssl, ssl_ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-30 16:20:40 +02:00
|
|
|
return SSL_TLSEXT_ERR_OK;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2015-06-12 14:27:12 +02:00
|
|
|
namespace {
|
|
|
|
std::shared_ptr<std::vector<uint8_t>>
|
|
|
|
get_ocsp_data(TLSContextData *tls_ctx_data) {
|
|
|
|
std::lock_guard<std::mutex> g(tls_ctx_data->mu);
|
|
|
|
return tls_ctx_data->ocsp_data;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2015-03-30 16:20:40 +02:00
|
|
|
namespace {
|
|
|
|
int ocsp_resp_cb(SSL *ssl, void *arg) {
|
|
|
|
auto ssl_ctx = SSL_get_SSL_CTX(ssl);
|
|
|
|
auto tls_ctx_data =
|
|
|
|
static_cast<TLSContextData *>(SSL_CTX_get_app_data(ssl_ctx));
|
|
|
|
|
2015-06-12 14:27:12 +02:00
|
|
|
auto data = get_ocsp_data(tls_ctx_data);
|
2015-03-30 16:20:40 +02:00
|
|
|
|
2015-06-12 14:27:12 +02:00
|
|
|
if (!data) {
|
|
|
|
return SSL_TLSEXT_ERR_OK;
|
|
|
|
}
|
2015-03-30 16:20:40 +02:00
|
|
|
|
2015-06-12 14:27:12 +02:00
|
|
|
auto buf =
|
|
|
|
static_cast<uint8_t *>(CRYPTO_malloc(data->size(), __FILE__, __LINE__));
|
2014-04-27 16:17:19 +02:00
|
|
|
|
2015-06-12 14:27:12 +02:00
|
|
|
if (!buf) {
|
|
|
|
return SSL_TLSEXT_ERR_OK;
|
2015-03-30 16:20:40 +02:00
|
|
|
}
|
2015-06-12 14:27:12 +02:00
|
|
|
|
|
|
|
std::copy(std::begin(*data), std::end(*data), buf);
|
|
|
|
|
|
|
|
SSL_set_tlsext_status_ocsp_resp(ssl, buf, data->size());
|
|
|
|
|
2014-04-27 16:17:19 +02:00
|
|
|
return SSL_TLSEXT_ERR_OK;
|
2013-02-06 15:27:05 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2015-01-07 16:01:09 +01:00
|
|
|
namespace {
|
|
|
|
int ticket_key_cb(SSL *ssl, unsigned char *key_name, unsigned char *iv,
|
|
|
|
EVP_CIPHER_CTX *ctx, HMAC_CTX *hctx, int enc) {
|
|
|
|
auto handler = static_cast<ClientHandler *>(SSL_get_app_data(ssl));
|
2015-02-11 11:18:41 +01:00
|
|
|
auto worker = handler->get_worker();
|
|
|
|
const auto &ticket_keys = worker->get_ticket_keys();
|
2015-01-07 17:57:59 +01:00
|
|
|
|
2015-01-07 16:01:09 +01:00
|
|
|
if (!ticket_keys) {
|
2015-01-08 12:46:35 +01:00
|
|
|
// No ticket keys available.
|
|
|
|
return -1;
|
2015-01-07 16:01:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
auto &keys = ticket_keys->keys;
|
|
|
|
assert(!keys.empty());
|
|
|
|
|
|
|
|
if (enc) {
|
|
|
|
if (RAND_bytes(iv, EVP_MAX_IV_LENGTH) == 0) {
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
CLOG(INFO, handler) << "session ticket key: RAND_bytes failed";
|
|
|
|
}
|
2015-01-08 12:46:35 +01:00
|
|
|
return -1;
|
2015-01-07 16:01:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
auto &key = keys[0];
|
|
|
|
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
CLOG(INFO, handler) << "encrypt session ticket key: "
|
2015-07-17 18:49:20 +02:00
|
|
|
<< util::format_hex(key.data.name);
|
2015-01-07 16:01:09 +01:00
|
|
|
}
|
|
|
|
|
2015-07-17 18:49:20 +02:00
|
|
|
memcpy(key_name, key.data.name, sizeof(key.data.name));
|
2015-01-07 16:01:09 +01:00
|
|
|
|
2015-07-17 18:49:20 +02:00
|
|
|
EVP_EncryptInit_ex(ctx, get_config()->tls_ticket_cipher, nullptr,
|
|
|
|
key.data.enc_key, iv);
|
|
|
|
HMAC_Init_ex(hctx, key.data.hmac_key, key.hmac_keylen, key.hmac, nullptr);
|
2015-01-07 16:01:09 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < keys.size(); ++i) {
|
|
|
|
auto &key = keys[0];
|
2015-07-17 18:49:20 +02:00
|
|
|
if (memcmp(key_name, key.data.name, sizeof(key.data.name)) == 0) {
|
2015-01-07 16:01:09 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == keys.size()) {
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
CLOG(INFO, handler) << "session ticket key "
|
|
|
|
<< util::format_hex(key_name, 16) << " not found";
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LOG_ENABLED(INFO)) {
|
|
|
|
CLOG(INFO, handler) << "decrypt session ticket key: "
|
|
|
|
<< util::format_hex(key_name, 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto &key = keys[i];
|
2015-07-17 18:49:20 +02:00
|
|
|
HMAC_Init_ex(hctx, key.data.hmac_key, key.hmac_keylen, key.hmac, nullptr);
|
|
|
|
EVP_DecryptInit_ex(ctx, key.cipher, nullptr, key.data.enc_key, iv);
|
2015-01-07 16:01:09 +01:00
|
|
|
|
|
|
|
return i == 0 ? 1 : 2;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2014-01-18 11:53:52 +01:00
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
void info_callback(const SSL *ssl, int where, int ret) {
|
2014-01-18 11:53:52 +01:00
|
|
|
// To mitigate possible DOS attack using lots of renegotiations, we
|
|
|
|
// disable renegotiation. Since OpenSSL does not provide an easy way
|
|
|
|
// to disable it, we check that renegotiation is started in this
|
|
|
|
// callback.
|
2014-11-27 15:39:04 +01:00
|
|
|
if (where & SSL_CB_HANDSHAKE_START) {
|
2015-02-04 13:15:58 +01:00
|
|
|
auto conn = static_cast<Connection *>(SSL_get_app_data(ssl));
|
|
|
|
if (conn && conn->tls.initial_handshake_done) {
|
|
|
|
// We only set SSL_get_app_data for ClientHandler for now.
|
|
|
|
auto handler = static_cast<ClientHandler *>(conn->data);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (LOG_ENABLED(INFO)) {
|
2014-01-18 11:53:52 +01:00
|
|
|
CLOG(INFO, handler) << "TLS renegotiation started";
|
|
|
|
}
|
2015-02-04 13:15:58 +01:00
|
|
|
handler->start_immediate_shutdown();
|
2014-01-18 11:53:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2014-01-01 15:54:28 +01:00
|
|
|
#if OPENSSL_VERSION_NUMBER >= 0x10002000L
|
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int alpn_select_proto_cb(SSL *ssl, const unsigned char **out,
|
|
|
|
unsigned char *outlen, const unsigned char *in,
|
|
|
|
unsigned int inlen, void *arg) {
|
2014-05-21 14:16:44 +02:00
|
|
|
// We assume that get_config()->npn_list contains ALPN protocol
|
|
|
|
// identifier sorted by preference order. So we just break when we
|
|
|
|
// found the first overlap.
|
2014-11-27 15:39:04 +01:00
|
|
|
for (auto target_proto_id : get_config()->npn_list) {
|
2014-05-21 14:16:44 +02:00
|
|
|
auto target_proto_len =
|
2014-11-27 15:39:04 +01:00
|
|
|
strlen(reinterpret_cast<const char *>(target_proto_id));
|
2014-05-21 14:16:44 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
for (auto p = in, end = in + inlen; p < end;) {
|
2014-05-21 14:16:44 +02:00
|
|
|
auto proto_id = p + 1;
|
|
|
|
auto proto_len = *p;
|
2014-04-26 15:37:48 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (proto_id + proto_len <= end && target_proto_len == proto_len &&
|
|
|
|
memcmp(target_proto_id, proto_id, proto_len) == 0) {
|
2014-04-26 12:36:35 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
*out = reinterpret_cast<const unsigned char *>(proto_id);
|
2014-05-21 14:16:44 +02:00
|
|
|
*outlen = proto_len;
|
2014-04-26 12:36:35 +02:00
|
|
|
|
2014-05-21 14:16:44 +02:00
|
|
|
return SSL_TLSEXT_ERR_OK;
|
|
|
|
}
|
2014-04-26 12:36:35 +02:00
|
|
|
|
2014-05-21 14:16:44 +02:00
|
|
|
p += 1 + proto_len;
|
|
|
|
}
|
2014-04-26 12:36:35 +02:00
|
|
|
}
|
|
|
|
|
2014-05-21 14:16:44 +02:00
|
|
|
return SSL_TLSEXT_ERR_NOACK;
|
2014-01-01 15:54:28 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L
|
|
|
|
|
2014-01-02 03:49:38 +01:00
|
|
|
namespace {
|
2015-05-29 15:31:02 +02:00
|
|
|
constexpr const char *tls_names[] = {"TLSv1.2", "TLSv1.1", "TLSv1.0"};
|
|
|
|
constexpr size_t tls_namelen = array_size(tls_names);
|
|
|
|
constexpr long int tls_masks[] = {SSL_OP_NO_TLSv1_2, SSL_OP_NO_TLSv1_1,
|
|
|
|
SSL_OP_NO_TLSv1};
|
2014-06-08 15:52:27 +02:00
|
|
|
} // namespace
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
long int create_tls_proto_mask(const std::vector<char *> &tls_proto_list) {
|
2014-01-02 03:49:38 +01:00
|
|
|
long int res = 0;
|
2014-06-08 15:52:27 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
for (size_t i = 0; i < tls_namelen; ++i) {
|
2014-01-02 03:49:38 +01:00
|
|
|
size_t j;
|
2014-11-27 15:39:04 +01:00
|
|
|
for (j = 0; j < tls_proto_list.size(); ++j) {
|
|
|
|
if (util::strieq(tls_names[i], tls_proto_list[j])) {
|
2014-01-02 03:49:38 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (j == tls_proto_list.size()) {
|
2014-06-08 15:52:27 +02:00
|
|
|
res |= tls_masks[i];
|
2014-01-02 03:49:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
SSL_CTX *create_ssl_context(const char *private_key_file,
|
|
|
|
const char *cert_file) {
|
2015-01-12 14:47:30 +01:00
|
|
|
auto ssl_ctx = SSL_CTX_new(SSLv23_server_method());
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!ssl_ctx) {
|
2013-09-23 11:49:39 +02:00
|
|
|
LOG(FATAL) << ERR_error_string(ERR_get_error(), nullptr);
|
2012-06-05 18:26:04 +02:00
|
|
|
DIE();
|
|
|
|
}
|
2014-01-02 03:49:38 +01:00
|
|
|
|
2015-06-22 16:26:45 +02:00
|
|
|
auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) |
|
|
|
|
SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_NO_COMPRESSION |
|
|
|
|
SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
|
|
|
|
SSL_OP_SINGLE_ECDH_USE | SSL_OP_SINGLE_DH_USE |
|
|
|
|
SSL_OP_CIPHER_SERVER_PREFERENCE |
|
|
|
|
get_config()->tls_proto_mask;
|
|
|
|
|
|
|
|
SSL_CTX_set_options(ssl_ctx, ssl_opts);
|
2012-06-07 15:39:57 +02:00
|
|
|
|
2012-07-14 16:24:03 +02:00
|
|
|
const unsigned char sid_ctx[] = "shrpx";
|
2014-11-27 15:39:04 +01:00
|
|
|
SSL_CTX_set_session_id_context(ssl_ctx, sid_ctx, sizeof(sid_ctx) - 1);
|
2012-07-14 16:24:03 +02:00
|
|
|
SSL_CTX_set_session_cache_mode(ssl_ctx, SSL_SESS_CACHE_SERVER);
|
|
|
|
|
2014-01-13 15:01:22 +01:00
|
|
|
const char *ciphers;
|
2014-11-27 15:39:04 +01:00
|
|
|
if (get_config()->ciphers) {
|
2014-06-08 14:02:40 +02:00
|
|
|
ciphers = get_config()->ciphers.get();
|
2014-01-13 15:01:22 +01:00
|
|
|
} else {
|
2014-06-28 08:28:19 +02:00
|
|
|
ciphers = nghttp2::ssl::DEFAULT_CIPHER_LIST;
|
2014-01-13 15:01:22 +01:00
|
|
|
}
|
2014-06-10 15:47:22 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (SSL_CTX_set_cipher_list(ssl_ctx, ciphers) == 0) {
|
|
|
|
LOG(FATAL) << "SSL_CTX_set_cipher_list " << ciphers
|
|
|
|
<< " failed: " << ERR_error_string(ERR_get_error(), nullptr);
|
2014-01-13 15:01:22 +01:00
|
|
|
DIE();
|
2012-08-20 14:50:03 +02:00
|
|
|
}
|
|
|
|
|
2013-09-07 16:37:17 +02:00
|
|
|
#ifndef OPENSSL_NO_EC
|
2014-01-01 15:26:00 +01:00
|
|
|
|
2014-06-06 16:15:36 +02:00
|
|
|
// Disabled SSL_CTX_set_ecdh_auto, because computational cost of
|
|
|
|
// chosen curve is much higher than P-256.
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
// #if OPENSSL_VERSION_NUMBER >= 0x10002000L
|
|
|
|
// SSL_CTX_set_ecdh_auto(ssl_ctx, 1);
|
|
|
|
// #else // OPENSSL_VERSION_NUBMER < 0x10002000L
|
2013-08-30 15:07:42 +02:00
|
|
|
// Use P-256, which is sufficiently secure at the time of this
|
|
|
|
// writing.
|
|
|
|
auto ecdh = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (ecdh == nullptr) {
|
2013-08-30 15:07:42 +02:00
|
|
|
LOG(FATAL) << "EC_KEY_new_by_curv_name failed: "
|
|
|
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
|
|
|
DIE();
|
|
|
|
}
|
|
|
|
SSL_CTX_set_tmp_ecdh(ssl_ctx, ecdh);
|
|
|
|
EC_KEY_free(ecdh);
|
2014-06-06 16:15:36 +02:00
|
|
|
// #endif // OPENSSL_VERSION_NUBMER < 0x10002000L
|
2014-01-01 15:26:00 +01:00
|
|
|
|
2014-05-14 16:22:23 +02:00
|
|
|
#endif // OPENSSL_NO_EC
|
2013-08-30 15:07:42 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (get_config()->dh_param_file) {
|
2013-08-30 15:07:42 +02:00
|
|
|
// Read DH parameters from file
|
2014-06-08 14:02:40 +02:00
|
|
|
auto bio = BIO_new_file(get_config()->dh_param_file.get(), "r");
|
2014-11-27 15:39:04 +01:00
|
|
|
if (bio == nullptr) {
|
2013-08-30 15:07:42 +02:00
|
|
|
LOG(FATAL) << "BIO_new_file() failed: "
|
|
|
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
|
|
|
DIE();
|
|
|
|
}
|
|
|
|
auto dh = PEM_read_bio_DHparams(bio, nullptr, nullptr, nullptr);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (dh == nullptr) {
|
2013-08-30 15:07:42 +02:00
|
|
|
LOG(FATAL) << "PEM_read_bio_DHparams() failed: "
|
|
|
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
|
|
|
DIE();
|
|
|
|
}
|
|
|
|
SSL_CTX_set_tmp_dh(ssl_ctx, dh);
|
|
|
|
DH_free(dh);
|
|
|
|
BIO_free(bio);
|
|
|
|
}
|
|
|
|
|
2012-06-05 18:26:04 +02:00
|
|
|
SSL_CTX_set_mode(ssl_ctx, SSL_MODE_AUTO_RETRY);
|
|
|
|
SSL_CTX_set_mode(ssl_ctx, SSL_MODE_RELEASE_BUFFERS);
|
2012-12-03 07:33:04 +01:00
|
|
|
if (get_config()->private_key_passwd) {
|
|
|
|
SSL_CTX_set_default_passwd_cb(ssl_ctx, ssl_pem_passwd_cb);
|
|
|
|
SSL_CTX_set_default_passwd_cb_userdata(ssl_ctx, (void *)get_config());
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (SSL_CTX_use_PrivateKey_file(ssl_ctx, private_key_file,
|
|
|
|
SSL_FILETYPE_PEM) != 1) {
|
2012-11-14 13:14:11 +01:00
|
|
|
LOG(FATAL) << "SSL_CTX_use_PrivateKey_file failed: "
|
2013-09-23 11:49:39 +02:00
|
|
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
2012-06-05 18:26:04 +02:00
|
|
|
DIE();
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (SSL_CTX_use_certificate_chain_file(ssl_ctx, cert_file) != 1) {
|
2012-11-14 13:14:11 +01:00
|
|
|
LOG(FATAL) << "SSL_CTX_use_certificate_file failed: "
|
2013-09-23 11:49:39 +02:00
|
|
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
2012-06-05 18:26:04 +02:00
|
|
|
DIE();
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (SSL_CTX_check_private_key(ssl_ctx) != 1) {
|
2012-11-14 13:14:11 +01:00
|
|
|
LOG(FATAL) << "SSL_CTX_check_private_key failed: "
|
2013-09-23 11:49:39 +02:00
|
|
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
2012-06-05 18:26:04 +02:00
|
|
|
DIE();
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (get_config()->verify_client) {
|
|
|
|
if (get_config()->verify_client_cacert) {
|
|
|
|
if (SSL_CTX_load_verify_locations(
|
|
|
|
ssl_ctx, get_config()->verify_client_cacert.get(), nullptr) !=
|
|
|
|
1) {
|
2014-06-08 14:02:40 +02:00
|
|
|
|
2013-11-01 17:10:18 +01:00
|
|
|
LOG(FATAL) << "Could not load trusted ca certificates from "
|
2014-06-08 14:02:40 +02:00
|
|
|
<< get_config()->verify_client_cacert.get() << ": "
|
2013-11-01 17:10:18 +01:00
|
|
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
|
|
|
DIE();
|
|
|
|
}
|
2014-01-08 16:07:51 +01:00
|
|
|
// It is heard that SSL_CTX_load_verify_locations() may leave
|
|
|
|
// error even though it returns success. See
|
|
|
|
// http://forum.nginx.org/read.php?29,242540
|
|
|
|
ERR_clear_error();
|
2014-11-27 15:39:04 +01:00
|
|
|
auto list =
|
|
|
|
SSL_load_client_CA_file(get_config()->verify_client_cacert.get());
|
|
|
|
if (!list) {
|
2014-01-08 16:07:51 +01:00
|
|
|
LOG(FATAL) << "Could not load ca certificates from "
|
2014-06-08 14:02:40 +02:00
|
|
|
<< get_config()->verify_client_cacert.get() << ": "
|
2014-01-08 16:07:51 +01:00
|
|
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
|
|
|
DIE();
|
|
|
|
}
|
|
|
|
SSL_CTX_set_client_CA_list(ssl_ctx, list);
|
2013-11-01 17:10:18 +01:00
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
SSL_CTX_set_verify(ssl_ctx, SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE |
|
|
|
|
SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
|
2012-06-05 18:26:04 +02:00
|
|
|
verify_callback);
|
|
|
|
}
|
2013-02-06 15:27:05 +01:00
|
|
|
SSL_CTX_set_tlsext_servername_callback(ssl_ctx, servername_callback);
|
2015-01-07 16:01:09 +01:00
|
|
|
SSL_CTX_set_tlsext_ticket_key_cb(ssl_ctx, ticket_key_cb);
|
2015-03-30 16:20:40 +02:00
|
|
|
SSL_CTX_set_tlsext_status_cb(ssl_ctx, ocsp_resp_cb);
|
2014-01-18 11:53:52 +01:00
|
|
|
SSL_CTX_set_info_callback(ssl_ctx, info_callback);
|
2013-02-06 15:27:05 +01:00
|
|
|
|
2014-01-01 15:54:28 +01:00
|
|
|
// NPN advertisement
|
2014-06-10 16:15:29 +02:00
|
|
|
SSL_CTX_set_next_protos_advertised_cb(ssl_ctx, next_proto_cb, nullptr);
|
2014-01-01 15:54:28 +01:00
|
|
|
#if OPENSSL_VERSION_NUMBER >= 0x10002000L
|
|
|
|
// ALPN selection callback
|
|
|
|
SSL_CTX_set_alpn_select_cb(ssl_ctx, alpn_select_proto_cb, nullptr);
|
|
|
|
#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L
|
2015-03-30 16:20:40 +02:00
|
|
|
|
|
|
|
auto tls_ctx_data = new TLSContextData();
|
|
|
|
tls_ctx_data->cert_file = cert_file;
|
|
|
|
|
|
|
|
SSL_CTX_set_app_data(ssl_ctx, tls_ctx_data);
|
|
|
|
|
2012-06-05 18:26:04 +02:00
|
|
|
return ssl_ctx;
|
|
|
|
}
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int select_next_proto_cb(SSL *ssl, unsigned char **out, unsigned char *outlen,
|
2012-11-18 13:23:13 +01:00
|
|
|
const unsigned char *in, unsigned int inlen,
|
2014-11-27 15:39:04 +01:00
|
|
|
void *arg) {
|
2014-12-15 14:51:34 +01:00
|
|
|
if (!util::select_h2(const_cast<const unsigned char **>(out), outlen, in,
|
|
|
|
inlen)) {
|
|
|
|
return SSL_TLSEXT_ERR_NOACK;
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2014-12-15 14:51:34 +01:00
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
return SSL_TLSEXT_ERR_OK;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
SSL_CTX *create_ssl_client_context() {
|
2015-01-12 14:47:30 +01:00
|
|
|
auto ssl_ctx = SSL_CTX_new(SSLv23_client_method());
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!ssl_ctx) {
|
2013-09-23 11:49:39 +02:00
|
|
|
LOG(FATAL) << ERR_error_string(ERR_get_error(), nullptr);
|
2012-11-18 13:23:13 +01:00
|
|
|
DIE();
|
|
|
|
}
|
2015-06-22 16:26:45 +02:00
|
|
|
|
|
|
|
auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) |
|
|
|
|
SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_NO_COMPRESSION |
|
|
|
|
SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
|
|
|
|
get_config()->tls_proto_mask;
|
|
|
|
|
|
|
|
SSL_CTX_set_options(ssl_ctx, ssl_opts);
|
2012-11-18 13:23:13 +01:00
|
|
|
|
2014-01-13 15:01:22 +01:00
|
|
|
const char *ciphers;
|
2014-11-27 15:39:04 +01:00
|
|
|
if (get_config()->ciphers) {
|
2014-06-08 14:02:40 +02:00
|
|
|
ciphers = get_config()->ciphers.get();
|
2014-01-13 15:01:22 +01:00
|
|
|
} else {
|
2014-06-19 16:26:30 +02:00
|
|
|
ciphers = "HIGH:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!3DES:!MD5:!PSK";
|
2014-01-13 15:01:22 +01:00
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (SSL_CTX_set_cipher_list(ssl_ctx, ciphers) == 0) {
|
|
|
|
LOG(FATAL) << "SSL_CTX_set_cipher_list " << ciphers
|
|
|
|
<< " failed: " << ERR_error_string(ERR_get_error(), nullptr);
|
2014-01-13 15:01:22 +01:00
|
|
|
DIE();
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SSL_CTX_set_mode(ssl_ctx, SSL_MODE_AUTO_RETRY);
|
|
|
|
SSL_CTX_set_mode(ssl_ctx, SSL_MODE_RELEASE_BUFFERS);
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (SSL_CTX_set_default_verify_paths(ssl_ctx) != 1) {
|
2014-11-08 02:51:56 +01:00
|
|
|
LOG(WARN) << "Could not load system trusted ca certificates: "
|
|
|
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
2012-11-22 13:46:15 +01:00
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (get_config()->cacert) {
|
|
|
|
if (SSL_CTX_load_verify_locations(ssl_ctx, get_config()->cacert.get(),
|
|
|
|
nullptr) != 1) {
|
2014-06-08 14:02:40 +02:00
|
|
|
|
2012-11-22 13:46:15 +01:00
|
|
|
LOG(FATAL) << "Could not load trusted ca certificates from "
|
2014-06-08 14:02:40 +02:00
|
|
|
<< get_config()->cacert.get() << ": "
|
2013-09-23 11:49:39 +02:00
|
|
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
2013-11-02 14:58:02 +01:00
|
|
|
DIE();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (get_config()->client_private_key_file) {
|
|
|
|
if (SSL_CTX_use_PrivateKey_file(ssl_ctx,
|
|
|
|
get_config()->client_private_key_file.get(),
|
|
|
|
SSL_FILETYPE_PEM) != 1) {
|
2013-11-02 14:58:02 +01:00
|
|
|
LOG(FATAL) << "Could not load client private key from "
|
2014-06-08 14:02:40 +02:00
|
|
|
<< get_config()->client_private_key_file.get() << ": "
|
2013-11-02 14:58:02 +01:00
|
|
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
|
|
|
DIE();
|
|
|
|
}
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (get_config()->client_cert_file) {
|
|
|
|
if (SSL_CTX_use_certificate_chain_file(
|
|
|
|
ssl_ctx, get_config()->client_cert_file.get()) != 1) {
|
2014-06-08 14:02:40 +02:00
|
|
|
|
2013-11-02 14:58:02 +01:00
|
|
|
LOG(FATAL) << "Could not load client certificate from "
|
2014-06-08 14:02:40 +02:00
|
|
|
<< get_config()->client_cert_file.get() << ": "
|
2013-11-02 14:58:02 +01:00
|
|
|
<< ERR_error_string(ERR_get_error(), nullptr);
|
2012-11-22 13:46:15 +01:00
|
|
|
DIE();
|
|
|
|
}
|
|
|
|
}
|
2014-01-01 15:54:28 +01:00
|
|
|
// NPN selection callback
|
2013-09-23 11:49:39 +02:00
|
|
|
SSL_CTX_set_next_proto_select_cb(ssl_ctx, select_next_proto_cb, nullptr);
|
2014-01-01 15:54:28 +01:00
|
|
|
|
|
|
|
#if OPENSSL_VERSION_NUMBER >= 0x10002000L
|
2014-06-10 16:15:29 +02:00
|
|
|
// ALPN advertisement; We only advertise HTTP/2
|
2014-11-14 15:14:39 +01:00
|
|
|
auto proto_list = util::get_default_alpn();
|
2014-06-08 15:52:27 +02:00
|
|
|
|
2014-11-14 15:14:39 +01:00
|
|
|
SSL_CTX_set_alpn_protos(ssl_ctx, proto_list.data(), proto_list.size());
|
2014-01-01 15:54:28 +01:00
|
|
|
#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
return ssl_ctx;
|
|
|
|
}
|
|
|
|
|
2015-02-11 11:18:41 +01:00
|
|
|
ClientHandler *accept_connection(Worker *worker, int fd, sockaddr *addr,
|
|
|
|
int addrlen) {
|
2012-06-05 18:26:04 +02:00
|
|
|
char host[NI_MAXHOST];
|
2014-11-19 17:53:30 +01:00
|
|
|
char service[NI_MAXSERV];
|
2012-06-05 18:26:04 +02:00
|
|
|
int rv;
|
2014-11-27 15:39:04 +01:00
|
|
|
rv = getnameinfo(addr, addrlen, host, sizeof(host), service, sizeof(service),
|
2014-12-05 17:07:05 +01:00
|
|
|
NI_NUMERICHOST | NI_NUMERICSERV);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (rv != 0) {
|
2014-06-26 15:55:22 +02:00
|
|
|
LOG(ERROR) << "getnameinfo() failed: " << gai_strerror(rv);
|
2012-11-19 13:40:59 +01:00
|
|
|
|
2014-06-26 15:55:22 +02:00
|
|
|
return nullptr;
|
|
|
|
}
|
2014-06-12 16:39:58 +02:00
|
|
|
|
2014-06-26 15:55:22 +02:00
|
|
|
int val = 1;
|
2014-11-27 15:39:04 +01:00
|
|
|
rv = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, reinterpret_cast<char *>(&val),
|
|
|
|
sizeof(val));
|
|
|
|
if (rv == -1) {
|
2014-11-08 02:51:56 +01:00
|
|
|
LOG(WARN) << "Setting option TCP_NODELAY failed: errno=" << errno;
|
2014-06-26 15:55:22 +02:00
|
|
|
}
|
|
|
|
SSL *ssl = nullptr;
|
2015-02-11 11:18:41 +01:00
|
|
|
auto ssl_ctx = worker->get_sv_ssl_ctx();
|
2014-11-27 15:39:04 +01:00
|
|
|
if (ssl_ctx) {
|
2014-06-26 15:55:22 +02:00
|
|
|
ssl = SSL_new(ssl_ctx);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!ssl) {
|
|
|
|
LOG(ERROR) << "SSL_new() failed: " << ERR_error_string(ERR_get_error(),
|
|
|
|
nullptr);
|
2014-06-26 15:55:22 +02:00
|
|
|
return nullptr;
|
2012-11-18 13:23:13 +01:00
|
|
|
}
|
2014-06-26 15:55:22 +02:00
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
if (SSL_set_fd(ssl, fd) == 0) {
|
|
|
|
LOG(ERROR) << "SSL_set_fd() failed: " << ERR_error_string(ERR_get_error(),
|
|
|
|
nullptr);
|
2014-06-26 15:55:22 +02:00
|
|
|
SSL_free(ssl);
|
2013-09-24 16:17:53 +02:00
|
|
|
return nullptr;
|
|
|
|
}
|
2014-06-26 15:55:22 +02:00
|
|
|
|
2014-12-27 18:59:06 +01:00
|
|
|
SSL_set_accept_state(ssl);
|
2012-06-05 18:26:04 +02:00
|
|
|
}
|
2014-06-26 15:55:22 +02:00
|
|
|
|
2015-02-11 11:18:41 +01:00
|
|
|
return new ClientHandler(worker, fd, ssl, host, service);
|
2012-06-05 18:26:04 +02:00
|
|
|
}
|
|
|
|
|
2012-11-22 13:46:15 +01:00
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
bool tls_hostname_match(const char *pattern, const char *hostname) {
|
2012-11-22 13:46:15 +01:00
|
|
|
const char *ptWildcard = strchr(pattern, '*');
|
2014-11-27 15:39:04 +01:00
|
|
|
if (ptWildcard == nullptr) {
|
2012-11-22 13:46:15 +01:00
|
|
|
return util::strieq(pattern, hostname);
|
|
|
|
}
|
|
|
|
const char *ptLeftLabelEnd = strchr(pattern, '.');
|
|
|
|
bool wildcardEnabled = true;
|
|
|
|
// Do case-insensitive match. At least 2 dots are required to enable
|
|
|
|
// wildcard match. Also wildcard must be in the left-most label.
|
|
|
|
// Don't attempt to match a presented identifier where the wildcard
|
|
|
|
// character is embedded within an A-label.
|
2014-11-27 15:39:04 +01:00
|
|
|
if (ptLeftLabelEnd == 0 || strchr(ptLeftLabelEnd + 1, '.') == 0 ||
|
|
|
|
ptLeftLabelEnd < ptWildcard || util::istartsWith(pattern, "xn--")) {
|
2012-11-22 13:46:15 +01:00
|
|
|
wildcardEnabled = false;
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!wildcardEnabled) {
|
2012-11-22 13:46:15 +01:00
|
|
|
return util::strieq(pattern, hostname);
|
|
|
|
}
|
|
|
|
const char *hnLeftLabelEnd = strchr(hostname, '.');
|
2014-11-27 15:39:04 +01:00
|
|
|
if (hnLeftLabelEnd == 0 || !util::strieq(ptLeftLabelEnd, hnLeftLabelEnd)) {
|
2012-11-22 13:46:15 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Perform wildcard match. Here '*' must match at least one
|
|
|
|
// character.
|
2014-11-27 15:39:04 +01:00
|
|
|
if (hnLeftLabelEnd - hostname < ptLeftLabelEnd - pattern) {
|
2012-11-22 13:46:15 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return util::istartsWith(hostname, hnLeftLabelEnd, pattern, ptWildcard) &&
|
2014-11-27 15:39:04 +01:00
|
|
|
util::iendsWith(hostname, hnLeftLabelEnd, ptWildcard + 1,
|
|
|
|
ptLeftLabelEnd);
|
2012-11-22 13:46:15 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
2014-11-27 15:39:04 +01:00
|
|
|
int verify_hostname(const char *hostname, const sockaddr_union *su,
|
|
|
|
size_t salen, const std::vector<std::string> &dns_names,
|
|
|
|
const std::vector<std::string> &ip_addrs,
|
|
|
|
const std::string &common_name) {
|
|
|
|
if (util::numeric_host(hostname)) {
|
|
|
|
if (ip_addrs.empty()) {
|
2012-11-22 13:46:15 +01:00
|
|
|
return util::strieq(common_name.c_str(), hostname) ? 0 : -1;
|
|
|
|
}
|
|
|
|
const void *saddr;
|
2014-11-27 15:39:04 +01:00
|
|
|
switch (su->storage.ss_family) {
|
2012-11-22 13:46:15 +01:00
|
|
|
case AF_INET:
|
|
|
|
saddr = &su->in.sin_addr;
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
saddr = &su->in6.sin6_addr;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
for (size_t i = 0; i < ip_addrs.size(); ++i) {
|
|
|
|
if (salen == ip_addrs[i].size() &&
|
|
|
|
memcmp(saddr, ip_addrs[i].c_str(), salen) == 0) {
|
2012-11-22 13:46:15 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2014-11-27 15:39:04 +01:00
|
|
|
if (dns_names.empty()) {
|
2012-11-22 13:46:15 +01:00
|
|
|
return tls_hostname_match(common_name.c_str(), hostname) ? 0 : -1;
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
for (size_t i = 0; i < dns_names.size(); ++i) {
|
|
|
|
if (tls_hostname_match(dns_names[i].c_str(), hostname)) {
|
2012-11-22 13:46:15 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
void get_altnames(X509 *cert, std::vector<std::string> &dns_names,
|
|
|
|
std::vector<std::string> &ip_addrs,
|
|
|
|
std::string &common_name) {
|
|
|
|
GENERAL_NAMES *altnames = static_cast<GENERAL_NAMES *>(
|
|
|
|
X509_get_ext_d2i(cert, NID_subject_alt_name, nullptr, nullptr));
|
|
|
|
if (altnames) {
|
2015-02-06 15:27:15 +01:00
|
|
|
auto altnames_deleter = defer(GENERAL_NAMES_free, altnames);
|
2012-11-22 13:46:15 +01:00
|
|
|
size_t n = sk_GENERAL_NAME_num(altnames);
|
2014-11-27 15:39:04 +01:00
|
|
|
for (size_t i = 0; i < n; ++i) {
|
2012-11-22 13:46:15 +01:00
|
|
|
const GENERAL_NAME *altname = sk_GENERAL_NAME_value(altnames, i);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (altname->type == GEN_DNS) {
|
2012-11-22 13:46:15 +01:00
|
|
|
const char *name;
|
2014-11-27 15:39:04 +01:00
|
|
|
name = reinterpret_cast<char *>(ASN1_STRING_data(altname->d.ia5));
|
|
|
|
if (!name) {
|
2012-11-22 13:46:15 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
size_t len = ASN1_STRING_length(altname->d.ia5);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (std::find(name, name + len, '\0') != name + len) {
|
2012-11-22 13:46:15 +01:00
|
|
|
// Embedded NULL is not permitted.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
dns_names.push_back(std::string(name, len));
|
2014-11-27 15:39:04 +01:00
|
|
|
} else if (altname->type == GEN_IPADD) {
|
2012-11-22 13:46:15 +01:00
|
|
|
const unsigned char *ip_addr = altname->d.iPAddress->data;
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!ip_addr) {
|
2012-11-22 13:46:15 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
size_t len = altname->d.iPAddress->length;
|
2014-11-27 15:39:04 +01:00
|
|
|
ip_addrs.push_back(
|
|
|
|
std::string(reinterpret_cast<const char *>(ip_addr), len));
|
2012-11-22 13:46:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
X509_NAME *subjectname = X509_get_subject_name(cert);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!subjectname) {
|
2014-11-08 02:51:56 +01:00
|
|
|
LOG(WARN) << "Could not get X509 name object from the certificate.";
|
2013-02-06 15:27:05 +01:00
|
|
|
return;
|
2012-11-22 13:46:15 +01:00
|
|
|
}
|
|
|
|
int lastpos = -1;
|
2014-11-27 15:39:04 +01:00
|
|
|
while (1) {
|
|
|
|
lastpos = X509_NAME_get_index_by_NID(subjectname, NID_commonName, lastpos);
|
|
|
|
if (lastpos == -1) {
|
2012-11-22 13:46:15 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
X509_NAME_ENTRY *entry = X509_NAME_get_entry(subjectname, lastpos);
|
|
|
|
unsigned char *out;
|
|
|
|
int outlen = ASN1_STRING_to_UTF8(&out, X509_NAME_ENTRY_get_data(entry));
|
2014-11-27 15:39:04 +01:00
|
|
|
if (outlen < 0) {
|
2012-11-22 13:46:15 +01:00
|
|
|
continue;
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (std::find(out, out + outlen, '\0') != out + outlen) {
|
2012-11-22 13:46:15 +01:00
|
|
|
// Embedded NULL is not permitted.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
common_name.assign(&out[0], &out[outlen]);
|
|
|
|
OPENSSL_free(out);
|
|
|
|
break;
|
|
|
|
}
|
2013-02-06 15:27:05 +01:00
|
|
|
}
|
|
|
|
|
2015-07-09 19:52:11 +02:00
|
|
|
int check_cert(SSL *ssl, const DownstreamAddr *addr) {
|
2013-09-23 11:40:17 +02:00
|
|
|
auto cert = SSL_get_peer_certificate(ssl);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!cert) {
|
2013-02-06 15:27:05 +01:00
|
|
|
LOG(ERROR) << "No certificate found";
|
|
|
|
return -1;
|
|
|
|
}
|
2015-02-06 15:27:15 +01:00
|
|
|
auto cert_deleter = defer(X509_free, cert);
|
2013-02-06 15:27:05 +01:00
|
|
|
long verify_res = SSL_get_verify_result(ssl);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (verify_res != X509_V_OK) {
|
2013-02-06 15:27:05 +01:00
|
|
|
LOG(ERROR) << "Certificate verification failed: "
|
|
|
|
<< X509_verify_cert_error_string(verify_res);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
std::string common_name;
|
|
|
|
std::vector<std::string> dns_names;
|
|
|
|
std::vector<std::string> ip_addrs;
|
|
|
|
get_altnames(cert, dns_names, ip_addrs, common_name);
|
2015-07-09 19:52:11 +02:00
|
|
|
if (verify_hostname(addr->host.get(), &addr->addr, addr->addrlen, dns_names,
|
2014-12-06 10:31:46 +01:00
|
|
|
ip_addrs, common_name) != 0) {
|
2012-11-22 13:46:15 +01:00
|
|
|
LOG(ERROR) << "Certificate verification failed: hostname does not match";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-02 14:47:12 +01:00
|
|
|
CertLookupTree::CertLookupTree() {
|
|
|
|
root_.ssl_ctx = nullptr;
|
|
|
|
root_.str = nullptr;
|
|
|
|
root_.first = root_.last = 0;
|
2013-02-06 15:27:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
2013-02-13 16:28:55 +01:00
|
|
|
// The |offset| is the index in the hostname we are examining. We are
|
|
|
|
// going to scan from |offset| in backwards.
|
2015-02-02 14:47:12 +01:00
|
|
|
void cert_lookup_tree_add_cert(CertNode *node, SSL_CTX *ssl_ctx, char *hostname,
|
|
|
|
size_t len, int offset) {
|
2013-02-06 15:27:05 +01:00
|
|
|
int i, next_len = node->next.size();
|
2013-02-13 16:28:55 +01:00
|
|
|
char c = hostname[offset];
|
2013-09-23 11:40:17 +02:00
|
|
|
CertNode *cn = nullptr;
|
2014-11-27 15:39:04 +01:00
|
|
|
for (i = 0; i < next_len; ++i) {
|
2015-02-02 14:47:12 +01:00
|
|
|
cn = node->next[i].get();
|
2014-11-27 15:39:04 +01:00
|
|
|
if (cn->str[cn->first] == c) {
|
2013-02-06 15:27:05 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (i == next_len) {
|
|
|
|
if (c == '*') {
|
2013-02-13 16:28:55 +01:00
|
|
|
// We assume hostname as wildcard hostname when first '*' is
|
|
|
|
// encountered. Note that as per RFC 6125 (6.4.3), there are
|
|
|
|
// some restrictions for wildcard hostname. We just ignore
|
|
|
|
// these rules here but do the proper check when we do the
|
|
|
|
// match.
|
2015-02-02 14:47:12 +01:00
|
|
|
node->wildcard_certs.emplace_back(hostname, ssl_ctx);
|
|
|
|
return;
|
2013-02-13 16:28:55 +01:00
|
|
|
}
|
2015-02-02 14:47:12 +01:00
|
|
|
|
2013-02-06 15:27:05 +01:00
|
|
|
int j;
|
2015-02-02 14:47:12 +01:00
|
|
|
auto new_node = make_unique<CertNode>();
|
|
|
|
new_node->str = hostname;
|
|
|
|
new_node->first = offset;
|
|
|
|
// If wildcard is found, set the region before it because we
|
|
|
|
// don't include it in [first, last).
|
|
|
|
for (j = offset; j >= 0 && hostname[j] != '*'; --j)
|
2014-11-27 15:39:04 +01:00
|
|
|
;
|
2015-02-02 14:47:12 +01:00
|
|
|
new_node->last = j;
|
|
|
|
if (j == -1) {
|
|
|
|
new_node->ssl_ctx = ssl_ctx;
|
2013-02-13 16:28:55 +01:00
|
|
|
} else {
|
2015-02-02 14:47:12 +01:00
|
|
|
new_node->ssl_ctx = nullptr;
|
|
|
|
new_node->wildcard_certs.emplace_back(hostname, ssl_ctx);
|
|
|
|
}
|
|
|
|
node->next.push_back(std::move(new_node));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int j;
|
|
|
|
for (i = cn->first, j = offset;
|
|
|
|
i > cn->last && j >= 0 && cn->str[i] == hostname[j]; --i, --j)
|
|
|
|
;
|
|
|
|
if (i == cn->last) {
|
|
|
|
if (j == -1) {
|
|
|
|
// If the same hostname already exists, we don't overwrite
|
|
|
|
// exiting ssl_ctx
|
|
|
|
if (!cn->ssl_ctx) {
|
2013-02-13 16:28:55 +01:00
|
|
|
cn->ssl_ctx = ssl_ctx;
|
|
|
|
}
|
2015-02-02 14:47:12 +01:00
|
|
|
return;
|
2013-02-06 15:27:05 +01:00
|
|
|
}
|
2015-02-02 14:47:12 +01:00
|
|
|
|
|
|
|
// The existing hostname is a suffix of this hostname. Continue
|
|
|
|
// matching at potion j.
|
|
|
|
cert_lookup_tree_add_cert(cn, ssl_ctx, hostname, len, j);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
auto new_node = make_unique<CertNode>();
|
|
|
|
new_node->ssl_ctx = cn->ssl_ctx;
|
|
|
|
new_node->str = cn->str;
|
|
|
|
new_node->first = i;
|
|
|
|
new_node->last = cn->last;
|
|
|
|
new_node->wildcard_certs.swap(cn->wildcard_certs);
|
|
|
|
new_node->next.swap(cn->next);
|
|
|
|
|
|
|
|
cn->next.push_back(std::move(new_node));
|
|
|
|
}
|
|
|
|
|
|
|
|
cn->last = i;
|
|
|
|
if (j == -1) {
|
|
|
|
// This hostname is a suffix of the existing hostname.
|
|
|
|
cn->ssl_ctx = ssl_ctx;
|
|
|
|
return;
|
2013-02-06 15:27:05 +01:00
|
|
|
}
|
2015-02-02 14:47:12 +01:00
|
|
|
|
|
|
|
// This hostname and existing one share suffix.
|
|
|
|
cn->ssl_ctx = nullptr;
|
|
|
|
cert_lookup_tree_add_cert(cn, ssl_ctx, hostname, len, j);
|
2013-02-06 15:27:05 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2015-02-02 14:47:12 +01:00
|
|
|
void CertLookupTree::add_cert(SSL_CTX *ssl_ctx, const char *hostname,
|
|
|
|
size_t len) {
|
2014-11-27 15:39:04 +01:00
|
|
|
if (len == 0) {
|
2013-02-06 15:27:05 +01:00
|
|
|
return;
|
|
|
|
}
|
2013-02-13 16:28:55 +01:00
|
|
|
// Copy hostname including terminal NULL
|
2015-02-02 14:47:12 +01:00
|
|
|
hosts_.push_back(make_unique<char[]>(len + 1));
|
|
|
|
const auto &host_copy = hosts_.back();
|
2014-11-27 15:39:04 +01:00
|
|
|
for (size_t i = 0; i < len; ++i) {
|
2013-02-13 16:28:55 +01:00
|
|
|
host_copy[i] = util::lowcase(hostname[i]);
|
|
|
|
}
|
|
|
|
host_copy[len] = '\0';
|
2015-02-02 14:47:12 +01:00
|
|
|
cert_lookup_tree_add_cert(&root_, ssl_ctx, host_copy.get(), len, len - 1);
|
2013-02-06 15:27:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
2015-02-02 14:47:12 +01:00
|
|
|
SSL_CTX *cert_lookup_tree_lookup(CertNode *node, const char *hostname,
|
|
|
|
size_t len, int offset) {
|
2013-02-13 16:28:55 +01:00
|
|
|
int i, j;
|
2014-11-27 15:39:04 +01:00
|
|
|
for (i = node->first, j = offset;
|
|
|
|
i > node->last && j >= 0 && node->str[i] == util::lowcase(hostname[j]);
|
|
|
|
--i, --j)
|
|
|
|
;
|
|
|
|
if (i != node->last) {
|
2013-09-23 11:40:17 +02:00
|
|
|
return nullptr;
|
|
|
|
}
|
2014-11-27 15:39:04 +01:00
|
|
|
if (j == -1) {
|
|
|
|
if (node->ssl_ctx) {
|
2013-09-23 11:40:17 +02:00
|
|
|
// exact match
|
|
|
|
return node->ssl_ctx;
|
|
|
|
}
|
2015-02-02 14:47:12 +01:00
|
|
|
|
|
|
|
// Do not perform wildcard-match because '*' must match at least
|
|
|
|
// one character.
|
|
|
|
return nullptr;
|
2013-09-23 11:40:17 +02:00
|
|
|
}
|
2015-02-02 14:47:12 +01:00
|
|
|
for (const auto &wildcert : node->wildcard_certs) {
|
2014-11-27 15:39:04 +01:00
|
|
|
if (tls_hostname_match(wildcert.first, hostname)) {
|
2013-09-23 11:40:17 +02:00
|
|
|
return wildcert.second;
|
|
|
|
}
|
|
|
|
}
|
2015-02-02 14:47:12 +01:00
|
|
|
auto c = util::lowcase(hostname[j]);
|
|
|
|
for (const auto &next_node : node->next) {
|
2014-11-27 15:39:04 +01:00
|
|
|
if (next_node->str[next_node->first] == c) {
|
2015-02-02 14:47:12 +01:00
|
|
|
return cert_lookup_tree_lookup(next_node.get(), hostname, len, j);
|
2013-02-06 15:27:05 +01:00
|
|
|
}
|
|
|
|
}
|
2013-09-23 11:40:17 +02:00
|
|
|
return nullptr;
|
2013-02-06 15:27:05 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2015-02-02 14:47:12 +01:00
|
|
|
SSL_CTX *CertLookupTree::lookup(const char *hostname, size_t len) {
|
|
|
|
return cert_lookup_tree_lookup(&root_, hostname, len, len - 1);
|
2013-02-06 15:27:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int cert_lookup_tree_add_cert_from_file(CertLookupTree *lt, SSL_CTX *ssl_ctx,
|
2014-11-27 15:39:04 +01:00
|
|
|
const char *certfile) {
|
2013-09-23 11:40:17 +02:00
|
|
|
auto bio = BIO_new(BIO_s_file());
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!bio) {
|
2013-02-06 15:27:05 +01:00
|
|
|
LOG(ERROR) << "BIO_new failed";
|
|
|
|
return -1;
|
|
|
|
}
|
2015-02-06 15:27:15 +01:00
|
|
|
auto bio_deleter = defer(BIO_vfree, bio);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!BIO_read_filename(bio, certfile)) {
|
2013-02-06 15:27:05 +01:00
|
|
|
LOG(ERROR) << "Could not read certificate file '" << certfile << "'";
|
|
|
|
return -1;
|
|
|
|
}
|
2013-09-23 11:40:17 +02:00
|
|
|
auto cert = PEM_read_bio_X509(bio, nullptr, nullptr, nullptr);
|
2014-11-27 15:39:04 +01:00
|
|
|
if (!cert) {
|
|
|
|
LOG(ERROR) << "Could not read X509 structure from file '" << certfile
|
|
|
|
<< "'";
|
2013-02-06 15:27:05 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2015-02-06 15:27:15 +01:00
|
|
|
auto cert_deleter = defer(X509_free, cert);
|
2013-02-06 15:27:05 +01:00
|
|
|
std::string common_name;
|
|
|
|
std::vector<std::string> dns_names;
|
|
|
|
std::vector<std::string> ip_addrs;
|
|
|
|
get_altnames(cert, dns_names, ip_addrs, common_name);
|
2014-11-27 15:39:04 +01:00
|
|
|
for (auto &dns_name : dns_names) {
|
2015-02-02 14:47:12 +01:00
|
|
|
lt->add_cert(ssl_ctx, dns_name.c_str(), dns_name.size());
|
2013-02-06 15:27:05 +01:00
|
|
|
}
|
2015-02-02 14:47:12 +01:00
|
|
|
lt->add_cert(ssl_ctx, common_name.c_str(), common_name.size());
|
2013-02-06 15:27:05 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
bool in_proto_list(const std::vector<char *> &protos,
|
|
|
|
const unsigned char *needle, size_t len) {
|
|
|
|
for (auto proto : protos) {
|
|
|
|
if (strlen(proto) == len && memcmp(proto, needle, len) == 0) {
|
2014-01-01 16:53:07 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
bool check_http2_requirement(SSL *ssl) {
|
2014-04-26 15:37:48 +02:00
|
|
|
auto tls_ver = SSL_version(ssl);
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
switch (tls_ver) {
|
2014-04-26 15:37:48 +02:00
|
|
|
case TLS1_2_VERSION:
|
|
|
|
break;
|
|
|
|
default:
|
2014-11-27 15:39:04 +01:00
|
|
|
if (LOG_ENABLED(INFO)) {
|
2014-11-06 15:32:56 +01:00
|
|
|
LOG(INFO) << "TLSv1.2 was not negotiated. "
|
|
|
|
<< "HTTP/2 must not be negotiated.";
|
|
|
|
}
|
2014-04-26 15:37:48 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-30 16:20:40 +02:00
|
|
|
SSL_CTX *setup_server_ssl_context(std::vector<SSL_CTX *> &all_ssl_ctx,
|
|
|
|
CertLookupTree *cert_tree) {
|
2015-01-12 16:18:27 +01:00
|
|
|
if (get_config()->upstream_no_tls) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto ssl_ctx = ssl::create_ssl_context(get_config()->private_key_file.get(),
|
|
|
|
get_config()->cert_file.get());
|
|
|
|
|
2015-03-30 16:20:40 +02:00
|
|
|
all_ssl_ctx.push_back(ssl_ctx);
|
|
|
|
|
2015-01-25 07:36:14 +01:00
|
|
|
if (get_config()->subcerts.empty()) {
|
|
|
|
return ssl_ctx;
|
|
|
|
}
|
|
|
|
|
2015-02-11 11:18:41 +01:00
|
|
|
if (!cert_tree) {
|
|
|
|
LOG(WARN) << "We have multiple additional certificates (--subcert), but "
|
|
|
|
"cert_tree is not given. SNI may not work.";
|
|
|
|
return ssl_ctx;
|
|
|
|
}
|
2015-01-12 16:18:27 +01:00
|
|
|
|
|
|
|
for (auto &keycert : get_config()->subcerts) {
|
|
|
|
auto ssl_ctx =
|
|
|
|
ssl::create_ssl_context(keycert.first.c_str(), keycert.second.c_str());
|
2015-03-30 16:20:40 +02:00
|
|
|
all_ssl_ctx.push_back(ssl_ctx);
|
2015-01-12 16:18:27 +01:00
|
|
|
if (ssl::cert_lookup_tree_add_cert_from_file(
|
|
|
|
cert_tree, ssl_ctx, keycert.second.c_str()) == -1) {
|
|
|
|
LOG(FATAL) << "Failed to add sub certificate.";
|
|
|
|
DIE();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-25 07:36:14 +01:00
|
|
|
if (ssl::cert_lookup_tree_add_cert_from_file(
|
|
|
|
cert_tree, ssl_ctx, get_config()->cert_file.get()) == -1) {
|
|
|
|
LOG(FATAL) << "Failed to add default certificate.";
|
|
|
|
DIE();
|
2015-01-12 16:18:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return ssl_ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_CTX *setup_client_ssl_context() {
|
|
|
|
if (get_config()->client_mode) {
|
|
|
|
return get_config()->downstream_no_tls ? nullptr
|
|
|
|
: ssl::create_ssl_client_context();
|
|
|
|
}
|
|
|
|
|
|
|
|
return get_config()->http2_bridge && !get_config()->downstream_no_tls
|
|
|
|
? ssl::create_ssl_client_context()
|
|
|
|
: nullptr;
|
|
|
|
}
|
|
|
|
|
2015-02-11 11:18:41 +01:00
|
|
|
CertLookupTree *create_cert_lookup_tree() {
|
|
|
|
if (get_config()->upstream_no_tls || get_config()->subcerts.empty()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return new ssl::CertLookupTree();
|
|
|
|
}
|
|
|
|
|
2012-06-05 18:26:04 +02:00
|
|
|
} // namespace ssl
|
|
|
|
|
|
|
|
} // namespace shrpx
|