2014-12-11 00:09:52 +00:00
|
|
|
/* Copyright (c) 2014, Google Inc.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
|
|
|
|
|
|
|
#include <openssl/base.h>
|
|
|
|
|
2017-03-30 16:16:07 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2014-12-11 00:09:52 +00:00
|
|
|
#include <openssl/err.h>
|
2016-11-29 22:04:13 +00:00
|
|
|
#include <openssl/rand.h>
|
2014-12-11 00:09:52 +00:00
|
|
|
#include <openssl/ssl.h>
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
#include "transport_common.h"
|
|
|
|
|
|
|
|
|
|
|
|
static const struct argument kArguments[] = {
|
|
|
|
{
|
2016-12-07 15:31:16 +00:00
|
|
|
"-accept", kRequiredArgument,
|
|
|
|
"The port of the server to bind on; eg 45102",
|
2014-12-11 00:09:52 +00:00
|
|
|
},
|
|
|
|
{
|
2016-12-07 15:31:16 +00:00
|
|
|
"-cipher", kOptionalArgument,
|
|
|
|
"An OpenSSL-style cipher suite string that configures the offered "
|
|
|
|
"ciphers",
|
2014-12-11 00:09:52 +00:00
|
|
|
},
|
2017-04-14 10:59:34 +01:00
|
|
|
{
|
|
|
|
"-curves", kOptionalArgument,
|
|
|
|
"An OpenSSL-style ECDH curves list that configures the offered curves",
|
|
|
|
},
|
2016-07-16 13:51:58 +01:00
|
|
|
{
|
2016-12-07 15:31:16 +00:00
|
|
|
"-max-version", kOptionalArgument,
|
|
|
|
"The maximum acceptable protocol version",
|
2016-07-16 13:51:58 +01:00
|
|
|
},
|
|
|
|
{
|
2016-12-07 15:31:16 +00:00
|
|
|
"-min-version", kOptionalArgument,
|
|
|
|
"The minimum acceptable protocol version",
|
2016-07-16 13:51:58 +01:00
|
|
|
},
|
2014-12-11 00:09:52 +00:00
|
|
|
{
|
2016-12-07 15:31:16 +00:00
|
|
|
"-key", kOptionalArgument,
|
2017-04-09 14:52:47 +01:00
|
|
|
"PEM-encoded file containing the private key. A self-signed "
|
|
|
|
"certificate is generated at runtime if this argument is not provided.",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"-cert", kOptionalArgument,
|
|
|
|
"PEM-encoded file containing the leaf certificate and optional "
|
|
|
|
"certificate chain. This is taken from the -key argument if this "
|
|
|
|
"argument is not provided.",
|
2014-12-11 00:09:52 +00:00
|
|
|
},
|
2015-08-12 11:47:11 +01:00
|
|
|
{
|
2016-12-07 15:31:16 +00:00
|
|
|
"-ocsp-response", kOptionalArgument, "OCSP response file to send",
|
2015-08-12 11:47:11 +01:00
|
|
|
},
|
2014-12-11 00:09:52 +00:00
|
|
|
{
|
2016-12-07 15:31:16 +00:00
|
|
|
"-loop", kBooleanArgument,
|
|
|
|
"The server will continue accepting new sequential connections.",
|
|
|
|
},
|
2017-01-11 16:34:52 +00:00
|
|
|
{
|
|
|
|
"-early-data", kBooleanArgument, "Allow early data",
|
|
|
|
},
|
2017-06-13 17:45:25 +01:00
|
|
|
{
|
|
|
|
"-tls13-variant", kBooleanArgument, "Enable TLS 1.3 variants",
|
|
|
|
},
|
2017-08-18 20:23:44 +01:00
|
|
|
{
|
|
|
|
"-debug", kBooleanArgument,
|
|
|
|
"Print debug information about the handshake",
|
|
|
|
},
|
2016-12-07 15:31:16 +00:00
|
|
|
{
|
|
|
|
"", kOptionalArgument, "",
|
2014-12-11 00:09:52 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2017-03-30 16:16:07 +01:00
|
|
|
struct FileCloser {
|
|
|
|
void operator()(FILE *file) {
|
|
|
|
fclose(file);
|
2015-08-12 11:47:11 +01:00
|
|
|
}
|
2017-03-30 16:16:07 +01:00
|
|
|
};
|
2015-08-12 11:47:11 +01:00
|
|
|
|
2017-03-30 16:16:07 +01:00
|
|
|
using ScopedFILE = std::unique_ptr<FILE, FileCloser>;
|
2015-08-12 11:47:11 +01:00
|
|
|
|
2017-03-30 16:16:07 +01:00
|
|
|
static bool LoadOCSPResponse(SSL_CTX *ctx, const char *filename) {
|
|
|
|
ScopedFILE f(fopen(filename, "rb"));
|
|
|
|
std::vector<uint8_t> data;
|
|
|
|
if (f == nullptr ||
|
|
|
|
!ReadAll(&data, f.get())) {
|
|
|
|
fprintf(stderr, "Error reading %s.\n", filename);
|
|
|
|
return false;
|
2015-08-12 11:47:11 +01:00
|
|
|
}
|
|
|
|
|
2017-03-30 16:16:07 +01:00
|
|
|
if (!SSL_CTX_set_ocsp_response(ctx, data.data(), data.size())) {
|
|
|
|
return false;
|
2015-08-12 11:47:11 +01:00
|
|
|
}
|
|
|
|
|
2017-03-30 16:16:07 +01:00
|
|
|
return true;
|
2015-08-12 11:47:11 +01:00
|
|
|
}
|
|
|
|
|
2016-11-29 22:04:13 +00:00
|
|
|
static bssl::UniquePtr<EVP_PKEY> MakeKeyPairForSelfSignedCert() {
|
|
|
|
bssl::UniquePtr<EC_KEY> ec_key(EC_KEY_new_by_curve_name(NID_X9_62_prime256v1));
|
|
|
|
if (!ec_key || !EC_KEY_generate_key(ec_key.get())) {
|
|
|
|
fprintf(stderr, "Failed to generate key pair.\n");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
bssl::UniquePtr<EVP_PKEY> evp_pkey(EVP_PKEY_new());
|
|
|
|
if (!evp_pkey || !EVP_PKEY_assign_EC_KEY(evp_pkey.get(), ec_key.release())) {
|
|
|
|
fprintf(stderr, "Failed to assign key pair.\n");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return evp_pkey;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bssl::UniquePtr<X509> MakeSelfSignedCert(EVP_PKEY *evp_pkey,
|
|
|
|
const int valid_days) {
|
|
|
|
bssl::UniquePtr<X509> x509(X509_new());
|
|
|
|
uint32_t serial;
|
|
|
|
RAND_bytes(reinterpret_cast<uint8_t*>(&serial), sizeof(serial));
|
2016-12-01 19:11:26 +00:00
|
|
|
ASN1_INTEGER_set(X509_get_serialNumber(x509.get()), serial >> 1);
|
2016-11-29 22:04:13 +00:00
|
|
|
X509_gmtime_adj(X509_get_notBefore(x509.get()), 0);
|
|
|
|
X509_gmtime_adj(X509_get_notAfter(x509.get()), 60 * 60 * 24 * valid_days);
|
|
|
|
|
|
|
|
X509_NAME* subject = X509_get_subject_name(x509.get());
|
|
|
|
X509_NAME_add_entry_by_txt(subject, "C", MBSTRING_ASC,
|
|
|
|
reinterpret_cast<const uint8_t *>("US"), -1, -1,
|
|
|
|
0);
|
|
|
|
X509_NAME_add_entry_by_txt(subject, "O", MBSTRING_ASC,
|
|
|
|
reinterpret_cast<const uint8_t *>("BoringSSL"), -1,
|
|
|
|
-1, 0);
|
|
|
|
X509_set_issuer_name(x509.get(), subject);
|
|
|
|
|
|
|
|
if (!X509_set_pubkey(x509.get(), evp_pkey)) {
|
|
|
|
fprintf(stderr, "Failed to set public key.\n");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (!X509_sign(x509.get(), evp_pkey, EVP_sha256())) {
|
|
|
|
fprintf(stderr, "Failed to sign certificate.\n");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return x509;
|
|
|
|
}
|
|
|
|
|
2017-08-18 20:23:44 +01:00
|
|
|
static void InfoCallback(const SSL *ssl, int type, int value) {
|
|
|
|
switch (type) {
|
|
|
|
case SSL_CB_HANDSHAKE_START:
|
|
|
|
fprintf(stderr, "Handshake started.\n");
|
|
|
|
break;
|
|
|
|
case SSL_CB_HANDSHAKE_DONE:
|
|
|
|
fprintf(stderr, "Handshake done.\n");
|
|
|
|
break;
|
|
|
|
case SSL_CB_ACCEPT_LOOP:
|
|
|
|
fprintf(stderr, "Handshake progress: %s\n", SSL_state_string_long(ssl));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-13 19:02:51 +01:00
|
|
|
static FILE *g_keylog_file = nullptr;
|
|
|
|
|
|
|
|
static void KeyLogCallback(const SSL *ssl, const char *line) {
|
|
|
|
fprintf(g_keylog_file, "%s\n", line);
|
|
|
|
fflush(g_keylog_file);
|
|
|
|
}
|
|
|
|
|
2014-12-11 00:09:52 +00:00
|
|
|
bool Server(const std::vector<std::string> &args) {
|
2015-01-28 06:32:08 +00:00
|
|
|
if (!InitSocketLibrary()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-12-11 00:09:52 +00:00
|
|
|
std::map<std::string, std::string> args_map;
|
|
|
|
|
|
|
|
if (!ParseKeyValueArguments(&args_map, args, kArguments)) {
|
|
|
|
PrintUsage(kArguments);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-10-20 20:13:26 +01:00
|
|
|
bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method()));
|
2014-12-11 00:09:52 +00:00
|
|
|
|
2017-09-13 19:02:51 +01:00
|
|
|
const char *keylog_file = getenv("SSLKEYLOGFILE");
|
|
|
|
if (keylog_file) {
|
|
|
|
g_keylog_file = fopen(keylog_file, "a");
|
|
|
|
if (g_keylog_file == nullptr) {
|
|
|
|
perror("fopen");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
SSL_CTX_set_keylog_callback(ctx.get(), KeyLogCallback);
|
|
|
|
}
|
|
|
|
|
2014-12-11 00:09:52 +00:00
|
|
|
// Server authentication is required.
|
|
|
|
if (args_map.count("-key") != 0) {
|
2017-04-09 14:52:47 +01:00
|
|
|
std::string key = args_map["-key"];
|
|
|
|
if (!SSL_CTX_use_PrivateKey_file(ctx.get(), key.c_str(),
|
|
|
|
SSL_FILETYPE_PEM)) {
|
|
|
|
fprintf(stderr, "Failed to load private key: %s\n", key.c_str());
|
2016-11-29 22:04:13 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-04-09 14:52:47 +01:00
|
|
|
const std::string &cert =
|
|
|
|
args_map.count("-cert") != 0 ? args_map["-cert"] : key;
|
|
|
|
if (!SSL_CTX_use_certificate_chain_file(ctx.get(), cert.c_str())) {
|
|
|
|
fprintf(stderr, "Failed to load cert chain: %s\n", cert.c_str());
|
2016-11-29 22:04:13 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bssl::UniquePtr<EVP_PKEY> evp_pkey = MakeKeyPairForSelfSignedCert();
|
|
|
|
if (!evp_pkey) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bssl::UniquePtr<X509> cert =
|
|
|
|
MakeSelfSignedCert(evp_pkey.get(), 365 /* valid_days */);
|
|
|
|
if (!cert) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!SSL_CTX_use_PrivateKey(ctx.get(), evp_pkey.get())) {
|
|
|
|
fprintf(stderr, "Failed to set private key.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!SSL_CTX_use_certificate(ctx.get(), cert.get())) {
|
|
|
|
fprintf(stderr, "Failed to set certificate.\n");
|
|
|
|
return false;
|
|
|
|
}
|
2014-12-11 00:09:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (args_map.count("-cipher") != 0 &&
|
2017-02-18 06:08:23 +00:00
|
|
|
!SSL_CTX_set_strict_cipher_list(ctx.get(), args_map["-cipher"].c_str())) {
|
2014-12-11 00:09:52 +00:00
|
|
|
fprintf(stderr, "Failed setting cipher list\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-04-14 10:59:34 +01:00
|
|
|
if (args_map.count("-curves") != 0 &&
|
|
|
|
!SSL_CTX_set1_curves_list(ctx.get(), args_map["-curves"].c_str())) {
|
|
|
|
fprintf(stderr, "Failed setting curves list\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-02-09 23:30:52 +00:00
|
|
|
uint16_t max_version = TLS1_3_VERSION;
|
|
|
|
if (args_map.count("-max-version") != 0 &&
|
|
|
|
!VersionFromString(&max_version, args_map["-max-version"])) {
|
|
|
|
fprintf(stderr, "Unknown protocol version: '%s'\n",
|
|
|
|
args_map["-max-version"].c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SSL_CTX_set_max_proto_version(ctx.get(), max_version)) {
|
|
|
|
return false;
|
2016-07-16 13:51:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (args_map.count("-min-version") != 0) {
|
|
|
|
uint16_t version;
|
|
|
|
if (!VersionFromString(&version, args_map["-min-version"])) {
|
|
|
|
fprintf(stderr, "Unknown protocol version: '%s'\n",
|
|
|
|
args_map["-min-version"].c_str());
|
|
|
|
return false;
|
|
|
|
}
|
2016-10-20 20:13:26 +01:00
|
|
|
if (!SSL_CTX_set_min_proto_version(ctx.get(), version)) {
|
2016-09-20 00:57:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-07-16 13:51:58 +01:00
|
|
|
}
|
|
|
|
|
2015-08-12 11:47:11 +01:00
|
|
|
if (args_map.count("-ocsp-response") != 0 &&
|
2016-10-20 20:13:26 +01:00
|
|
|
!LoadOCSPResponse(ctx.get(), args_map["-ocsp-response"].c_str())) {
|
2015-08-12 11:47:11 +01:00
|
|
|
fprintf(stderr, "Failed to load OCSP response: %s\n", args_map["-ocsp-response"].c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-01-11 16:34:52 +00:00
|
|
|
if (args_map.count("-early-data") != 0) {
|
|
|
|
SSL_CTX_set_early_data_enabled(ctx.get(), 1);
|
|
|
|
}
|
|
|
|
|
2017-06-13 17:45:25 +01:00
|
|
|
// Enabling any TLS 1.3 variant on the server enables all of them.
|
|
|
|
if (args_map.count("-tls13-variant") != 0) {
|
|
|
|
SSL_CTX_set_tls13_variant(ctx.get(), tls13_experiment);
|
|
|
|
}
|
|
|
|
|
2017-08-18 20:23:44 +01:00
|
|
|
if (args_map.count("-debug") != 0) {
|
|
|
|
SSL_CTX_set_info_callback(ctx.get(), InfoCallback);
|
|
|
|
}
|
|
|
|
|
2017-06-27 22:29:27 +01:00
|
|
|
Listener listener;
|
|
|
|
if (!listener.Init(args_map["-accept"])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-12-07 15:31:16 +00:00
|
|
|
bool result = true;
|
|
|
|
do {
|
|
|
|
int sock = -1;
|
2017-06-27 22:29:27 +01:00
|
|
|
if (!listener.Accept(&sock)) {
|
2016-12-07 15:31:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-12-11 00:09:52 +00:00
|
|
|
|
2016-12-07 15:31:16 +00:00
|
|
|
BIO *bio = BIO_new_socket(sock, BIO_CLOSE);
|
|
|
|
bssl::UniquePtr<SSL> ssl(SSL_new(ctx.get()));
|
|
|
|
SSL_set_bio(ssl.get(), bio, bio);
|
2014-12-11 00:09:52 +00:00
|
|
|
|
2016-12-07 15:31:16 +00:00
|
|
|
int ret = SSL_accept(ssl.get());
|
|
|
|
if (ret != 1) {
|
|
|
|
int ssl_err = SSL_get_error(ssl.get(), ret);
|
|
|
|
fprintf(stderr, "Error while connecting: %d\n", ssl_err);
|
|
|
|
ERR_print_errors_cb(PrintErrorCallback, stderr);
|
2017-04-15 00:27:48 +01:00
|
|
|
result = false;
|
|
|
|
continue;
|
2016-12-07 15:31:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "Connected.\n");
|
|
|
|
PrintConnectionInfo(ssl.get());
|
2014-12-11 00:09:52 +00:00
|
|
|
|
2016-12-07 15:31:16 +00:00
|
|
|
result = TransferData(ssl.get(), sock);
|
2017-04-15 00:27:48 +01:00
|
|
|
} while (args_map.count("-loop") != 0);
|
2014-12-11 00:09:52 +00:00
|
|
|
|
2016-12-07 15:31:16 +00:00
|
|
|
return result;
|
2014-12-11 00:09:52 +00:00
|
|
|
}
|