diff options
author | Hannes Rantzsch <[email protected]> | 2022-03-01 15:40:49 +0100 |
---|---|---|
committer | René Meusel <[email protected]> | 2022-04-04 17:50:41 +0200 |
commit | fd9d1c3d8891460df6da125258f8e7d7f35d8d6b (patch) | |
tree | b2f81e96eff91bfe9930f5c652efddf04982d0cc /src/lib/tls/msg_certificate_12.cpp | |
parent | b0409695bc9362b159399ea40cafbe18902da812 (diff) |
prepare TLS 1.2 for addition of TLS 1.3
Co-authored-by: René Meusel <[email protected]>
Co-authored-by: Marek Kocik <[email protected]>
Co-authored-by: Grzegorz Dulewicz <[email protected]>
Co-authored-by: Pawel Bazelewski <[email protected]>
Co-authored-by: Pawel Jarosz <[email protected]>
Diffstat (limited to 'src/lib/tls/msg_certificate_12.cpp')
-rw-r--r-- | src/lib/tls/msg_certificate_12.cpp | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/src/lib/tls/msg_certificate_12.cpp b/src/lib/tls/msg_certificate_12.cpp new file mode 100644 index 000000000..f70bbac7f --- /dev/null +++ b/src/lib/tls/msg_certificate_12.cpp @@ -0,0 +1,105 @@ +/* +* Certificate Message +* (C) 2004-2006,2012,2020 Jack Lloyd +* +* Botan is released under the Simplified BSD License (see license.txt) +*/ + +#include <botan/tls_messages.h> +#include <botan/tls_extensions.h> +#include <botan/tls_exceptn.h> +#include <botan/tls_alert.h> +#include <botan/internal/tls_reader.h> +#include <botan/internal/tls_handshake_io.h> +#include <botan/internal/tls_handshake_hash.h> +#include <botan/internal/loadstor.h> +#include <botan/data_src.h> + +namespace Botan::TLS { + +/** +* Create a new Certificate message +*/ +Certificate_12::Certificate_12(Handshake_IO& io, + Handshake_Hash& hash, + const std::vector<X509_Certificate>& cert_list) : + m_certs(cert_list) + { + hash.update(io.send(*this)); + } + +/** +* Deserialize a Certificate message +*/ +Certificate_12::Certificate_12(const std::vector<uint8_t>& buf, const Policy& policy) + { + if(buf.size() < 3) + throw Decoding_Error("Certificate: Message malformed"); + + const size_t total_size = make_uint32(0, buf[0], buf[1], buf[2]); + + if(total_size != buf.size() - 3) + throw Decoding_Error("Certificate: Message malformed"); + + const size_t max_size = policy.maximum_certificate_chain_size(); + if(max_size > 0 && total_size > max_size) + throw Decoding_Error("Certificate chain exceeds policy specified maximum size"); + + const uint8_t* certs = buf.data() + 3; + + while(size_t remaining_bytes = buf.data() + buf.size() - certs) + { + if(remaining_bytes < 3) + throw Decoding_Error("Certificate: Message malformed"); + + const size_t cert_size = make_uint32(0, certs[0], certs[1], certs[2]); + + if(remaining_bytes < (3 + cert_size)) + throw Decoding_Error("Certificate: Message malformed"); + + DataSource_Memory cert_buf(&certs[3], cert_size); + m_certs.push_back(X509_Certificate(cert_buf)); + + certs += cert_size + 3; + } + + /* + * TLS 1.0 through 1.2 all seem to require that the certificate be + * precisely a v3 certificate. In fact the strict wording would seem + * to require that every certificate in the chain be v3. But often + * the intermediates are outside of the control of the server. + * But, require that the leaf certificate be v3 + */ + if(!m_certs.empty() && m_certs[0].x509_version() != 3) + { + throw TLS_Exception(Alert::BAD_CERTIFICATE, + "The leaf certificate must be v3"); + } + } + +/** +* Serialize a Certificate message +*/ +std::vector<uint8_t> Certificate_12::serialize() const + { + std::vector<uint8_t> buf(3); + + for(const auto& cert : m_certs) + { + const auto raw_cert = cert.BER_encode(); + const size_t cert_size = raw_cert.size(); + for(size_t j = 0; j != 3; ++j) + { + buf.push_back(get_byte_var(j+1, static_cast<uint32_t>(cert_size))); + } + buf += raw_cert; + } + + const size_t buf_size = buf.size() - 3; + for(size_t i = 0; i != 3; ++i) + buf[i] = get_byte_var(i+1, static_cast<uint32_t>(buf_size)); + + return buf; + } + +} |