9#include <botan/internal/tls_client_impl_13.h>
11#include <botan/credentials_manager.h>
12#include <botan/tls_messages.h>
13#include <botan/types.h>
14#include <botan/internal/stl_util.h>
15#include <botan/internal/tls_channel_impl_13.h>
16#include <botan/internal/tls_cipher_state.h>
24 const std::shared_ptr<Credentials_Manager>& creds,
25 const std::shared_ptr<const Policy>&
policy,
26 const std::shared_ptr<RandomNumberGenerator>&
rng,
28 const std::vector<std::string>& next_protocols) :
30 m_info(std::move(info)),
31 m_should_send_ccs(false) {
32#if defined(BOTAN_HAS_TLS_12)
33 if(
policy->allow_tls12()) {
34 expect_downgrade(m_info, next_protocols);
38 if(
auto session = find_session_for_resumption()) {
39 if(!session->session.version().is_pre_tls_13()) {
40 m_resumed_session = std::move(session);
68 if(
policy->tls_13_middlebox_compatibility_mode()) {
69 m_should_send_ccs =
true;
87 m_handshake_state.
received(std::move(message)));
93 std::visit([&](
auto msg) { handle(msg); }, m_handshake_state.received(std::move(message)));
101 if(!m_handshake_state.has_client_hello() || m_handshake_state.has_server_finished()) {
102 throw TLS_Exception(Alert::UnexpectedMessage,
"Received an unexpected dummy Change Cipher Spec");
115 return m_handshake_state.handshake_finished();
118std::optional<Session_with_Handle> Client_Impl_13::find_session_for_resumption() {
135 if(sessions.empty()) {
142 auto& session_to_resume = sessions.front();
144 return std::move(session_to_resume);
147void Client_Impl_13::handle(
const Server_Hello_12& server_hello_msg) {
149 throw TLS_Exception(Alert::UnexpectedMessage,
"Version downgrade received after Hello Retry");
157 throw TLS_Exception(Alert::ProtocolVersion,
"Received an unexpected legacy Server Hello");
170 if(server_hello_msg.random_signals_downgrade().has_value()) {
171 throw TLS_Exception(Alert::IllegalParameter,
"Downgrade attack detected");
180 if(server_hello_msg.extensions().has<Supported_Versions>()) {
181 throw TLS_Exception(Alert::IllegalParameter,
"Unexpected extension received");
188 const auto& client_hello_exts = m_handshake_state.client_hello().extensions();
190 if(!client_hello_exts.get<Supported_Versions>()->supports(server_hello_msg.selected_version())) {
191 throw TLS_Exception(Alert::ProtocolVersion,
"Protocol version was not offered");
194 if(
policy().tls_13_middlebox_compatibility_mode() &&
195 m_handshake_state.client_hello().session_id() == server_hello_msg.session_id()) {
200 throw TLS_Exception(Alert::IllegalParameter,
"Unexpected session ID during downgrade");
207 m_transitions.set_expected_next({});
216 if(ch.session_id() != sh.session_id()) {
217 throw TLS_Exception(Alert::IllegalParameter,
"echoed session id did not match");
223 if(!ch.offered_suite(sh.ciphersuite())) {
224 throw TLS_Exception(Alert::IllegalParameter,
"Server replied with ciphersuite we didn't send");
235 throw TLS_Exception(Alert::IllegalParameter,
"Protocol version was not offered");
244 const auto& ch = m_handshake_state.client_hello();
246 validate_server_hello_ish(ch, sh);
253 if(sh.extensions().contains_other_than(ch.extensions().extension_types())) {
254 throw TLS_Exception(Alert::UnsupportedExtension,
"Unsupported extension found in Server Hello");
257 if(m_handshake_state.has_hello_retry_request()) {
258 const auto& hrr = m_handshake_state.hello_retry_request();
264 if(hrr.ciphersuite() != sh.ciphersuite()) {
265 throw TLS_Exception(Alert::IllegalParameter,
"server changed its chosen ciphersuite");
272 if(hrr.selected_version() != sh.selected_version()) {
273 throw TLS_Exception(Alert::IllegalParameter,
"server changed its chosen protocol version");
284 if(!cipher->usable_in_version(Protocol_Version::TLS_V13)) {
285 throw TLS_Exception(Alert::IllegalParameter,
286 "Server replied using a ciphersuite not allowed in version it offered");
299 if(!sh.extensions().has<Key_Share>()) {
300 throw TLS_Exception(Alert::IllegalParameter,
"Server Hello did not contain a key share extension");
303 auto* my_keyshare = ch.extensions().get<Key_Share>();
304 auto shared_secret = my_keyshare->decapsulate(*sh.extensions().get<Key_Share>(),
policy(),
callbacks(),
rng());
308 if(sh.extensions().has<
PSK>()) {
310 ch.extensions().get<
PSK>()->take_selected_psk_info(*sh.extensions().get<
PSK>(), cipher.value());
315 if(m_psk_identity.has_value() && m_resumed_session.has_value()) {
316 m_resumed_session.reset();
326 m_resumed_session.reset();
341 auto& ch = m_handshake_state.client_hello();
343 validate_server_hello_ish(ch, hrr);
349 auto allowed_exts = ch.extensions().extension_types();
351 if(hrr.extensions().contains_other_than(allowed_exts)) {
352 throw TLS_Exception(Alert::UnsupportedExtension,
"Unsupported extension found in Hello Retry Request");
374 const auto& exts = encrypted_extensions_msg.extensions();
381 const auto& requested_exts = m_handshake_state.client_hello().extensions().extension_types();
382 if(exts.contains_other_than(requested_exts)) {
383 throw TLS_Exception(Alert::UnsupportedExtension,
384 "Encrypted Extensions contained an extension that was not offered");
390 if(exts.has<Record_Size_Limit>() && m_handshake_state.client_hello().extensions().has<Record_Size_Limit>()) {
398 auto*
const outgoing_limit = exts.get<Record_Size_Limit>();
399 auto*
const incoming_limit = m_handshake_state.client_hello().extensions().get<Record_Size_Limit>();
403 if(exts.has<Server_Certificate_Type>() &&
404 m_handshake_state.client_hello().extensions().has<Server_Certificate_Type>()) {
405 const auto* server_cert_type = exts.get<Server_Certificate_Type>();
406 const auto* our_server_cert_types = m_handshake_state.client_hello().extensions().get<Server_Certificate_Type>();
407 our_server_cert_types->validate_selection(*server_cert_type);
421 if(m_handshake_state.server_hello().extensions().has<
PSK>()) {
436 throw TLS_Exception(Alert::DecodeError,
"Certificate_Request context must be empty in the main handshake");
444void Client_Impl_13::handle(
const Certificate_13& certificate_msg) {
448 if(!certificate_msg.request_context().empty()) {
449 throw TLS_Exception(Alert::DecodeError,
"Received a server certificate message with non-empty request context");
455 certificate_msg.validate_extensions(m_handshake_state.client_hello().extensions().extension_types(),
callbacks());
460 m_handshake_state.client_hello().extensions().has<Certificate_Status_Request>());
474 const auto offered = m_handshake_state.client_hello().signature_schemes();
475 if(!
value_exists(offered, certificate_verify_msg.signature_scheme())) {
476 throw TLS_Exception(Alert::IllegalParameter,
477 "We did not offer the usage of " + certificate_verify_msg.signature_scheme().to_string() +
478 " as a signature scheme");
481 bool sig_valid = certificate_verify_msg.verify(
485 throw TLS_Exception(Alert::DecryptError,
"Server certificate verification failed");
493 const auto& cert_request = m_handshake_state.certificate_request();
495 const auto cert_type = [&] {
496 const auto& exts = m_handshake_state.encrypted_extensions().extensions();
497 const auto& chexts = m_handshake_state.client_hello().extensions();
498 if(exts.has<Client_Certificate_Type>() && chexts.has<Client_Certificate_Type>()) {
499 const auto* client_cert_type = exts.get<Client_Certificate_Type>();
500 chexts.get<Client_Certificate_Type>()->validate_selection(*client_cert_type);
509 return client_cert_type->selected_certificate_type();
523 flight.add(m_handshake_state.sending(
532 if(!m_handshake_state.client_certificate().empty()) {
533 flight.add(m_handshake_state.sending(Certificate_Verify_13(m_handshake_state.client_certificate(),
534 cert_request.signature_schemes(),
545void Client_Impl_13::handle(
const Finished_13& finished_msg) {
551 throw TLS_Exception(Alert::DecryptError,
"Finished message didn't verify");
561 m_resumed_session.has_value(),
574 if(m_handshake_state.has_certificate_request()) {
575 send_client_authentication(flight);
591 m_transitions.set_expected_next({});
597 callbacks().tls_examine_extensions(
600 Session session(m_cipher_state->psk(new_session_ticket.nonce()),
601 new_session_ticket.early_data_byte_limit(),
602 new_session_ticket.ticket_age_add(),
603 new_session_ticket.lifetime_hint(),
604 m_handshake_state.server_hello().selected_version(),
605 m_handshake_state.server_hello().ciphersuite(),
608 peer_raw_public_key(),
610 callbacks().tls_current_timestamp());
612 if(callbacks().tls_should_persist_resumption_information(session)) {
613 session_manager().store(session,
Session_Handle(new_session_ticket.handle()));
618 if(m_handshake_state.has_server_certificate_msg() &&
619 m_handshake_state.server_certificate().has_certificate_chain()) {
620 return m_handshake_state.server_certificate().cert_chain();
623 if(m_resumed_session.has_value()) {
624 return m_resumed_session->session.peer_certs();
631 if(m_handshake_state.has_server_certificate_msg() && m_handshake_state.server_certificate().is_raw_public_key()) {
632 return m_handshake_state.server_certificate().public_key();
635 if(m_resumed_session.has_value()) {
636 return m_resumed_session->session.peer_raw_public_key();
643 return m_psk_identity;
647 return std::exchange(m_should_send_ccs,
false);
650void Client_Impl_13::maybe_log_secret(std::string_view label, std::span<const uint8_t> secret)
const {
651 if(
policy().allow_ssl_key_log_file()) {
658 const auto& eee = m_handshake_state.encrypted_extensions().extensions();
#define BOTAN_ASSERT_NOMSG(expr)
#define BOTAN_STATE_CHECK(expr)
virtual void tls_session_activated()
virtual void tls_examine_extensions(const Extensions &extn, Connection_Side which_side, Handshake_Type which_message)
virtual void tls_session_established(const Session_Summary &session)
virtual void tls_ssl_key_log_data(std::string_view label, std::span< const uint8_t > client_random, std::span< const uint8_t > secret) const
virtual void tls_inspect_handshake_msg(const Handshake_Message &message)
const Policy & policy() const
AggregatedHandshakeMessages aggregate_handshake_messages()
Credentials_Manager & credentials_manager()
RandomNumberGenerator & rng()
std::vector< uint8_t > send_handshake_message(const std::variant< MsgTs... > &message)
virtual bool prepend_ccs()
Transcript_Hash_State m_transcript_hash
Channel_Impl_13(const std::shared_ptr< Callbacks > &callbacks, const std::shared_ptr< Session_Manager > &session_manager, const std::shared_ptr< Credentials_Manager > &credentials_manager, const std::shared_ptr< RandomNumberGenerator > &rng, const std::shared_ptr< const Policy > &policy, bool is_server)
virtual void process_dummy_change_cipher_spec()=0
Session_Manager & session_manager()
std::unique_ptr< Cipher_State > m_cipher_state
const Connection_Side m_side
Callbacks & callbacks() const
void set_selected_certificate_type(Certificate_Type cert_type)
void set_record_size_limits(uint16_t outgoing_limit, uint16_t incoming_limit)
void request_downgrade_for_resumption(Session_with_Handle session)
void preserve_client_hello(std::span< const uint8_t > msg)
bool expects_downgrade() const
static std::unique_ptr< Cipher_State > init_with_server_hello(Connection_Side side, secure_vector< uint8_t > &&shared_secret, const Ciphersuite &cipher, const Transcript_Hash &transcript_hash, const Secret_Logger &channel)
static std::optional< Ciphersuite > by_id(uint16_t suite)
const std::vector< uint8_t > & random() const
Client_Impl_13(const std::shared_ptr< Callbacks > &callbacks, const std::shared_ptr< Session_Manager > &session_manager, const std::shared_ptr< Credentials_Manager > &creds, const std::shared_ptr< const Policy > &policy, const std::shared_ptr< RandomNumberGenerator > &rng, Server_Information server_info=Server_Information(), const std::vector< std::string > &next_protocols={})
std::optional< std::string > external_psk_identity() const override
std::string application_protocol() const override
std::shared_ptr< const Public_Key > peer_raw_public_key() const override
bool is_handshake_complete() const override
std::vector< X509_Certificate > peer_cert_chain() const override
decltype(auto) received(Handshake_Message_13 message)
void confirm_transition_to(Handshake_Type msg_type)
bool has_hello_retry_request() const
Client_Hello_13 & client_hello()
Helper class to embody a session handle in all protocol versions.
virtual std::vector< Session_with_Handle > find(const Server_Information &info, Callbacks &callbacks, const Policy &policy)
Find all sessions that match a given server info.
bool supports(Protocol_Version version) const
static Transcript_Hash_State recreate_after_hello_retry_request(std::string_view algo_spec, const Transcript_Hash_State &prev_transcript_hash_state)
std::variant< New_Session_Ticket_13, Key_Update > Post_Handshake_Message_13
std::variant< Client_Hello_13, Client_Hello_12, Server_Hello_13, Server_Hello_12, Hello_Retry_Request, Encrypted_Extensions, Certificate_13, Certificate_Request_13, Certificate_Verify_13, Finished_13 > Handshake_Message_13
bool value_exists(const std::vector< T > &vec, const V &val)