10#include <botan/internal/tls_record.h>
13#include <botan/tls_ciphersuite.h>
14#include <botan/tls_exceptn.h>
15#include <botan/internal/fmt.h>
16#include <botan/internal/loadstor.h>
17#include <botan/internal/tls_seq_numbers.h>
18#include <botan/internal/tls_session_key.h>
20#if defined(BOTAN_HAS_TLS_CBC)
21 #include <botan/internal/tls_cbc.h>
24#if defined(BOTAN_HAS_TLS_NULL)
25 #include <botan/internal/tls_null.h>
35 bool uses_encrypt_then_mac) {
42 m_nonce = keys.
nonce(side);
48#if defined(BOTAN_HAS_TLS_CBC)
54 m_aead = std::make_unique<TLS_CBC_HMAC_AEAD_Encryption>(std::move(cipher),
59 uses_encrypt_then_mac);
61 m_aead = std::make_unique<TLS_CBC_HMAC_AEAD_Decryption>(std::move(cipher),
66 uses_encrypt_then_mac);
71 throw Internal_Error(
"Negotiated disabled TLS CBC+HMAC ciphersuite");
74#if defined(BOTAN_HAS_TLS_NULL)
78 m_aead = std::make_unique<TLS_NULL_HMAC_AEAD_Encryption>(std::move(mac), suite.
mac_keylen());
80 m_aead = std::make_unique<TLS_NULL_HMAC_AEAD_Decryption>(std::move(mac), suite.
mac_keylen());
90 m_aead->set_key(aead_key);
94 switch(m_nonce_format) {
96 return std::vector<uint8_t>{};
99 if(!m_nonce.empty()) {
100 std::vector<uint8_t> nonce;
105 rng.
randomize(nonce.data(), nonce.size());
109 std::vector<uint8_t> nonce(12);
111 xor_buf(nonce, m_nonce.data(), m_nonce.size());
116 std::vector<uint8_t> nonce(12);
117 copy_mem(&nonce[0], m_nonce.data(), 4);
127 switch(m_nonce_format) {
129 return std::vector<uint8_t>{};
133 std::vector<uint8_t> nonce;
144 std::vector<uint8_t> nonce(12);
146 xor_buf(nonce, m_nonce.data(), m_nonce.size());
152 throw Decoding_Error(
"Invalid AEAD packet too short to be valid");
154 std::vector<uint8_t> nonce(12);
155 copy_mem(&nonce[0], m_nonce.data(), 4);
167 uint16_t msg_length) {
168 std::vector<uint8_t> ad(13);
171 ad[8] =
static_cast<uint8_t
>(msg_type);
183 const uint16_t len16 =
static_cast<uint16_t
>(len_field);
191 Protocol_Version version,
192 uint64_t record_sequence) {
195 output.push_back(
static_cast<uint8_t
>(record_type));
196 output.push_back(version.major_version());
197 output.push_back(version.minor_version());
199 if(version.is_datagram_protocol()) {
200 for(
size_t i = 0; i != 8; ++i) {
211 uint64_t record_sequence,
212 const uint8_t* message,
213 size_t message_len) {
215 throw Internal_Error(
"Writing an unencrypted TLS application data record");
217 write_record_header(output, record_type, version, record_sequence);
218 append_u16_len(output, message_len);
219 output.insert(output.end(), message, message + message_len);
225 uint64_t record_sequence,
226 const uint8_t* message,
230 write_record_header(output, record_type, version, record_sequence);
233 std::vector<uint8_t> aad = cs.
format_ad(record_sequence, record_type, version,
static_cast<uint16_t
>(message_len));
241 const std::vector<uint8_t> nonce = cs.
aead_nonce(record_sequence, rng);
243 append_u16_len(output, rec_size);
253 const size_t header_size = output.size();
254 output += std::make_pair(message, message_len);
257 aead.
finish(output, header_size);
264size_t fill_buffer_to(
265 secure_vector<uint8_t>& readbuf,
const uint8_t*& input,
size_t& input_size,
size_t& input_consumed,
size_t desired) {
266 if(readbuf.size() >= desired) {
270 const size_t taken = std::min(input_size, desired - readbuf.size());
272 readbuf.insert(readbuf.end(), input, input + taken);
273 input_consumed += taken;
277 return (desired - readbuf.size());
281 uint8_t record_contents[],
283 uint64_t record_sequence,
287 AEAD_Mode& aead = cs.aead();
289 const std::vector<uint8_t> nonce = cs.aead_nonce(record_contents, record_len, record_sequence);
290 const uint8_t* msg = &record_contents[cs.nonce_bytes_from_record()];
291 const size_t msg_length = record_len - cs.nonce_bytes_from_record();
300 if(msg_length < aead.minimum_final_size()) {
301 throw TLS_Exception(Alert::BadRecordMac,
"AEAD packet is shorter than the tag");
304 const size_t ptext_size = aead.output_length(msg_length);
306 aead.set_associated_data(
307 cs.format_ad(record_sequence, record_type, record_version,
static_cast<uint16_t
>(ptext_size)));
311 output.assign(msg, msg + msg_length);
312 aead.finish(output, 0);
316 const uint8_t input[],
324 if(
size_t needed = fill_buffer_to(readbuf, input, input_len, consumed,
TLS_HEADER_SIZE)) {
343 const bool bad_record_type = readbuf[0] < 20 || readbuf[0] > 23;
344 const bool bad_record_version = readbuf[1] != 3 || readbuf[2] >= 4;
346 if(bad_record_type || bad_record_version) {
348 const std::string first5 = std::string(
reinterpret_cast<const char*
>(readbuf.data()), 5);
350 if(first5 ==
"GET /" || first5 ==
"PUT /" || first5 ==
"POST " || first5 ==
"HEAD ") {
351 throw TLS_Exception(Alert::ProtocolVersion,
"Client sent plaintext HTTP request instead of TLS handshake");
354 if(first5 ==
"CONNE") {
356 "Client sent plaintext HTTP proxy CONNECT request instead of TLS handshake");
359 if(bad_record_type) {
363 throw TLS_Exception(Alert::UnexpectedMessage,
"TLS record type had unexpected value");
365 throw TLS_Exception(Alert::ProtocolVersion,
"TLS record version had unexpected value");
370 if(version.is_datagram_protocol()) {
371 throw TLS_Exception(Alert::ProtocolVersion,
"Expected TLS but got a record with DTLS version");
377 throw TLS_Exception(Alert::RecordOverflow,
"Received a record that exceeds maximum size");
380 if(record_size == 0) {
381 throw TLS_Exception(Alert::DecodeError,
"Received a completely empty record");
384 if(
size_t needed = fill_buffer_to(readbuf, input, input_len, consumed,
TLS_HEADER_SIZE + record_size)) {
394 uint64_t sequence = 0;
395 if(sequence_numbers !=
nullptr) {
396 sequence = sequence_numbers->next_read_sequence();
397 epoch = sequence_numbers->current_read_epoch();
411 auto cs = get_cipherstate(epoch);
415 decrypt_record(recbuf, &readbuf[
TLS_HEADER_SIZE], record_size, sequence, version, type, *cs);
417 if(sequence_numbers !=
nullptr) {
418 sequence_numbers->read_accept(sequence);
426 const uint8_t input[],
432 bool allow_epoch0_restart) {
435 if(fill_buffer_to(readbuf, input, input_len, consumed,
DTLS_HEADER_SIZE) != 0) {
445 if(version.is_datagram_protocol() ==
false) {
458 if(fill_buffer_to(readbuf, input, input_len, consumed,
DTLS_HEADER_SIZE + record_size) != 0) {
469 const uint16_t epoch = (sequence >> 48);
471 const bool already_seen = sequence_numbers !=
nullptr && sequence_numbers->already_seen(sequence);
473 if(already_seen && !(epoch == 0 && allow_epoch0_restart)) {
482 if(sequence_numbers !=
nullptr) {
483 sequence_numbers->read_accept(sequence);
490 auto cs = get_cipherstate(epoch);
494 decrypt_record(recbuf, &readbuf[
DTLS_HEADER_SIZE], record_size, sequence, version, type, *cs);
495 }
catch(std::exception&) {
500 if(sequence_numbers !=
nullptr) {
501 sequence_numbers->read_accept(sequence);
512 const uint8_t input[],
518 bool allow_epoch0_restart) {
520 return read_dtls_record(
521 readbuf, input, input_len, consumed, recbuf, sequence_numbers, get_cipherstate, allow_epoch0_restart);
523 return read_tls_record(readbuf, input, input_len, consumed, recbuf, sequence_numbers, get_cipherstate);
#define BOTAN_ASSERT_NOMSG(expr)
#define BOTAN_ASSERT_EQUAL(expr1, expr2, assertion_made)
#define BOTAN_ASSERT(expr, assertion_made)
void set_associated_data(std::span< const uint8_t > ad)
static std::unique_ptr< AEAD_Mode > create_or_throw(std::string_view algo, Cipher_Dir direction, std::string_view provider="")
static std::unique_ptr< BlockCipher > create_or_throw(std::string_view algo_spec, std::string_view provider="")
void start(std::span< const uint8_t > nonce)
void finish(secure_vector< uint8_t > &final_block, size_t offset=0)
virtual size_t output_length(size_t input_length) const =0
static std::unique_ptr< MessageAuthenticationCode > create_or_throw(std::string_view algo_spec, std::string_view provider="")
void randomize(std::span< uint8_t > output)
size_t nonce_bytes_from_record(Protocol_Version version) const
Nonce_Format nonce_format() const
size_t mac_keylen() const
size_t cipher_keylen() const
size_t nonce_bytes_from_handshake() const
std::string mac_algo() const
std::string cipher_algo() const
size_t nonce_bytes_from_record() const
Nonce_Format nonce_format() const
size_t nonce_bytes_from_handshake() const
Connection_Cipher_State(Protocol_Version version, Connection_Side which_side, bool is_our_side, const Ciphersuite &suite, const Session_Keys &keys, bool uses_encrypt_then_mac)
std::vector< uint8_t > aead_nonce(uint64_t seq, RandomNumberGenerator &rng)
std::vector< uint8_t > format_ad(uint64_t seq, Record_Type type, Protocol_Version version, uint16_t ptext_length)
uint8_t major_version() const
uint8_t minor_version() const
const std::vector< uint8_t > & nonce(Connection_Side side) const
const secure_vector< uint8_t > & aead_key(Connection_Side side) const
Record_Header read_record(bool is_datagram, secure_vector< uint8_t > &readbuf, const uint8_t input[], size_t input_len, size_t &consumed, secure_vector< uint8_t > &recbuf, Connection_Sequence_Numbers *sequence_numbers, const get_cipherstate_fn &get_cipherstate, bool allow_epoch0_restart)
void write_unencrypted_record(secure_vector< uint8_t > &output, Record_Type record_type, Protocol_Version version, uint64_t record_sequence, const uint8_t *message, size_t message_len)
std::function< std::shared_ptr< Connection_Cipher_State >(uint16_t)> get_cipherstate_fn
void write_record(secure_vector< uint8_t > &output, Record_Type record_type, Protocol_Version version, uint64_t record_sequence, const uint8_t *message, size_t message_len, Connection_Cipher_State &cs, RandomNumberGenerator &rng)
constexpr uint8_t get_byte(T input)
constexpr void copy_mem(T *out, const T *in, size_t n)
std::string fmt(std::string_view format, const T &... args)
constexpr void xor_buf(ranges::contiguous_output_range< uint8_t > auto &&out, ranges::contiguous_range< uint8_t > auto &&in)
std::vector< T, secure_allocator< T > > secure_vector
constexpr uint8_t get_byte_var(size_t byte_num, T input)
constexpr auto store_be(ParamTs &&... params)
constexpr auto load_be(ParamTs &&... params)
constexpr uint16_t make_uint16(uint8_t i0, uint8_t i1)