1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/*
* ngtcp2
*
* Copyright (c) 2020 ngtcp2 contributors
*
* 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 "tls_client_session_openssl.h"
#include <cassert>
#include <iostream>
#include <openssl/err.h>
#include "tls_client_context_openssl.h"
#include "client_base.h"
#include "template.h"
#include "util.h"
TLSClientSession::TLSClientSession() {}
TLSClientSession::~TLSClientSession() {}
extern Config config;
int TLSClientSession::init(bool &early_data_enabled,
const TLSClientContext &tls_ctx,
const char *remote_addr, ClientBase *client,
uint32_t quic_version, AppProtocol app_proto) {
early_data_enabled = false;
auto ssl_ctx = tls_ctx.get_native_handle();
ssl_ = SSL_new(ssl_ctx);
if (!ssl_) {
std::cerr << "SSL_new: " << ERR_error_string(ERR_get_error(), nullptr)
<< std::endl;
return -1;
}
SSL_set_app_data(ssl_, client->conn_ref());
SSL_set_connect_state(ssl_);
SSL_set_quic_use_legacy_codepoint(ssl_,
(quic_version & 0xff000000) == 0xff000000);
switch (app_proto) {
case AppProtocol::H3:
SSL_set_alpn_protos(ssl_, H3_ALPN, str_size(H3_ALPN));
break;
case AppProtocol::HQ:
SSL_set_alpn_protos(ssl_, HQ_ALPN, str_size(HQ_ALPN));
break;
}
if (!config.sni.empty()) {
SSL_set_tlsext_host_name(ssl_, config.sni.data());
} else if (util::numeric_host(remote_addr)) {
// If remote host is numeric address, just send "localhost" as SNI
// for now.
SSL_set_tlsext_host_name(ssl_, "localhost");
} else {
SSL_set_tlsext_host_name(ssl_, remote_addr);
}
if (config.session_file) {
auto f = BIO_new_file(config.session_file, "r");
if (f == nullptr) {
std::cerr << "Could not read TLS session file " << config.session_file
<< std::endl;
} else {
auto session = PEM_read_bio_SSL_SESSION(f, nullptr, 0, nullptr);
BIO_free(f);
if (session == nullptr) {
std::cerr << "Could not read TLS session file " << config.session_file
<< std::endl;
} else {
if (!SSL_set_session(ssl_, session)) {
std::cerr << "Could not set session" << std::endl;
} else if (!config.disable_early_data &&
SSL_SESSION_get_max_early_data(session)) {
early_data_enabled = true;
SSL_set_quic_early_data_enabled(ssl_, 1);
}
SSL_SESSION_free(session);
}
}
}
return 0;
}
bool TLSClientSession::get_early_data_accepted() const {
// SSL_get_early_data_status works after handshake completes.
return SSL_get_early_data_status(ssl_) == SSL_EARLY_DATA_ACCEPTED;
}
|