2014-03-04 13:29:42 +01:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2014-03-04 13:29:42 +01: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.
|
|
|
|
*/
|
2017-04-01 07:47:36 +02:00
|
|
|
#ifndef TLS_H
|
|
|
|
#define TLS_H
|
2015-06-28 09:37:17 +02:00
|
|
|
|
2014-03-04 13:29:42 +01:00
|
|
|
#include "nghttp2_config.h"
|
|
|
|
|
2015-06-28 09:37:17 +02:00
|
|
|
#include <cinttypes>
|
|
|
|
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
|
2018-09-09 09:32:34 +02:00
|
|
|
#include "ssl_compat.h"
|
|
|
|
|
2014-03-04 13:29:42 +01:00
|
|
|
namespace nghttp2 {
|
|
|
|
|
2017-04-01 07:47:36 +02:00
|
|
|
namespace tls {
|
2014-03-04 13:29:42 +01:00
|
|
|
|
|
|
|
// Acquire OpenSSL global lock to share SSL_CTX across multiple
|
|
|
|
// threads. The constructor acquires lock and destructor unlocks.
|
|
|
|
class LibsslGlobalLock {
|
|
|
|
public:
|
|
|
|
LibsslGlobalLock();
|
2014-11-27 15:39:04 +01:00
|
|
|
LibsslGlobalLock(const LibsslGlobalLock &) = delete;
|
|
|
|
LibsslGlobalLock &operator=(const LibsslGlobalLock &) = delete;
|
2014-03-04 13:29:42 +01:00
|
|
|
};
|
|
|
|
|
2022-06-19 17:32:43 +02:00
|
|
|
// Recommended general purpose "Intermediate compatibility" cipher
|
|
|
|
// suites for TLSv1.2 by mozilla.
|
2017-01-09 06:42:40 +01:00
|
|
|
//
|
|
|
|
// https://wiki.mozilla.org/Security/Server_Side_TLS
|
|
|
|
constexpr char DEFAULT_CIPHER_LIST[] =
|
2022-06-19 17:32:43 +02:00
|
|
|
"ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-"
|
|
|
|
"AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-"
|
|
|
|
"POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-"
|
|
|
|
"AES256-GCM-SHA384";
|
2014-06-28 08:28:19 +02:00
|
|
|
|
2022-06-19 17:32:43 +02:00
|
|
|
// Recommended general purpose "Modern compatibility" cipher suites
|
|
|
|
// for TLSv1.3 by mozilla.
|
|
|
|
//
|
|
|
|
// https://wiki.mozilla.org/Security/Server_Side_TLS
|
2018-09-09 09:32:34 +02:00
|
|
|
constexpr char DEFAULT_TLS13_CIPHER_LIST[] =
|
2022-06-19 17:32:43 +02:00
|
|
|
#if OPENSSL_1_1_1_API && !defined(OPENSSL_IS_BORINGSSL)
|
|
|
|
"TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256"
|
|
|
|
#else
|
2018-09-09 09:32:34 +02:00
|
|
|
""
|
2022-06-19 17:32:43 +02:00
|
|
|
#endif
|
2018-09-09 09:32:34 +02:00
|
|
|
;
|
|
|
|
|
2017-02-14 16:40:43 +01:00
|
|
|
constexpr auto NGHTTP2_TLS_MIN_VERSION = TLS1_VERSION;
|
|
|
|
#ifdef TLS1_3_VERSION
|
|
|
|
constexpr auto NGHTTP2_TLS_MAX_VERSION = TLS1_3_VERSION;
|
2017-11-23 06:19:12 +01:00
|
|
|
#else // !TLS1_3_VERSION
|
2017-02-14 16:40:43 +01:00
|
|
|
constexpr auto NGHTTP2_TLS_MAX_VERSION = TLS1_2_VERSION;
|
|
|
|
#endif // !TLS1_3_VERSION
|
|
|
|
|
2015-06-28 09:37:17 +02:00
|
|
|
const char *get_tls_protocol(SSL *ssl);
|
|
|
|
|
|
|
|
struct TLSSessionInfo {
|
|
|
|
const char *cipher;
|
|
|
|
const char *protocol;
|
|
|
|
const uint8_t *session_id;
|
2015-06-28 15:15:04 +02:00
|
|
|
bool session_reused;
|
2015-06-28 09:37:17 +02:00
|
|
|
size_t session_id_length;
|
|
|
|
};
|
|
|
|
|
|
|
|
TLSSessionInfo *get_tls_session_info(TLSSessionInfo *tls_info, SSL *ssl);
|
|
|
|
|
2016-02-06 09:05:14 +01:00
|
|
|
// Returns true iff the negotiated protocol is TLSv1.2.
|
|
|
|
bool check_http2_tls_version(SSL *ssl);
|
|
|
|
|
|
|
|
// Returns true iff the negotiated cipher suite is in HTTP/2 cipher
|
2021-04-02 15:31:15 +02:00
|
|
|
// block list.
|
|
|
|
bool check_http2_cipher_block_list(SSL *ssl);
|
2016-02-06 09:05:14 +01:00
|
|
|
|
2015-08-19 16:33:53 +02:00
|
|
|
// Returns true if SSL/TLS requirement for HTTP/2 is fulfilled.
|
|
|
|
// To fulfill the requirement, the following 2 terms must be hold:
|
|
|
|
//
|
|
|
|
// 1. The negotiated protocol must be TLSv1.2.
|
2021-04-02 15:31:15 +02:00
|
|
|
// 2. The negotiated cipher cuite is not listed in the block list
|
2015-08-19 16:33:53 +02:00
|
|
|
// described in RFC 7540.
|
|
|
|
bool check_http2_requirement(SSL *ssl);
|
|
|
|
|
2015-09-29 16:31:50 +02:00
|
|
|
// Initializes OpenSSL library
|
|
|
|
void libssl_init();
|
|
|
|
|
2017-02-14 16:40:43 +01:00
|
|
|
// Sets TLS min and max versions to |ssl_ctx|. This function returns
|
|
|
|
// 0 if it succeeds, or -1.
|
|
|
|
int ssl_ctx_set_proto_versions(SSL_CTX *ssl_ctx, int min, int max);
|
|
|
|
|
2017-04-01 07:47:36 +02:00
|
|
|
} // namespace tls
|
2014-03-04 13:29:42 +01:00
|
|
|
|
|
|
|
} // namespace nghttp2
|
2015-06-28 09:37:17 +02:00
|
|
|
|
2017-04-01 07:47:36 +02:00
|
|
|
#endif // TLS_H
|