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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
|
/*
* Copyright 2018 The WebRTC Project Authors. All rights reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "rtc_base/openssl_utility.h"
#include <openssl/err.h>
#include <openssl/x509.h>
#include <openssl/x509v3.h>
#include <cstddef>
#include <cstdint>
#include "absl/strings/string_view.h"
#include "rtc_base/logging.h"
#include "rtc_base/numerics/safe_conversions.h"
#include "rtc_base/openssl.h"
#include "rtc_base/ssl_identity.h"
#ifdef OPENSSL_IS_BORINGSSL
#include <openssl/pool.h>
#endif
#ifndef WEBRTC_EXCLUDE_BUILT_IN_SSL_ROOT_CERTS
#include "rtc_base/ssl_roots.h"
#endif // WEBRTC_EXCLUDE_BUILT_IN_SSL_ROOT_CERTS
namespace webrtc {
namespace openssl {
// Holds various helper methods.
namespace {
// TODO(crbug.com/webrtc/11710): When OS certificate verification is available,
// and we don't need VerifyPeerCertMatchesHost, don't compile this in order to
// avoid a dependency on OpenSSL X509 objects (see crbug.com/webrtc/11410).
void LogCertificates([[maybe_unused]] SSL* ssl,
[[maybe_unused]] X509* certificate) {
// Logging certificates is extremely verbose. So it is disabled by default.
#ifdef LOG_CERTIFICATES
BIO* mem = BIO_new(BIO_s_mem());
if (mem == nullptr) {
RTC_DLOG(LS_ERROR) << "BIO_new() failed to allocate memory.";
return;
}
RTC_DLOG(LS_INFO) << "Certificate from server:";
X509_print_ex(mem, certificate, XN_FLAG_SEP_CPLUS_SPC, X509_FLAG_NO_HEADER);
BIO_write(mem, "\0", 1);
char* buffer = nullptr;
BIO_get_mem_data(mem, &buffer);
if (buffer != nullptr) {
RTC_DLOG(LS_INFO) << buffer;
} else {
RTC_DLOG(LS_ERROR) << "BIO_get_mem_data() failed to get buffer.";
}
BIO_free(mem);
const char* cipher_name = SSL_CIPHER_get_name(SSL_get_current_cipher(ssl));
if (cipher_name != nullptr) {
RTC_DLOG(LS_INFO) << "Cipher: " << cipher_name;
} else {
RTC_DLOG(LS_ERROR) << "SSL_CIPHER_DESCRIPTION() failed to get cipher_name.";
}
#endif
}
} // namespace
#ifdef OPENSSL_IS_BORINGSSL
bool ParseCertificate(CRYPTO_BUFFER* cert_buffer,
CBS* signature_algorithm_oid,
int64_t* expiration_time) {
CBS cbs;
CRYPTO_BUFFER_init_CBS(cert_buffer, &cbs);
// Certificate ::= SEQUENCE {
CBS certificate;
if (!CBS_get_asn1(&cbs, &certificate, CBS_ASN1_SEQUENCE)) {
return false;
}
// tbsCertificate TBSCertificate,
CBS tbs_certificate;
if (!CBS_get_asn1(&certificate, &tbs_certificate, CBS_ASN1_SEQUENCE)) {
return false;
}
// signatureAlgorithm AlgorithmIdentifier,
CBS signature_algorithm;
if (!CBS_get_asn1(&certificate, &signature_algorithm, CBS_ASN1_SEQUENCE)) {
return false;
}
if (!CBS_get_asn1(&signature_algorithm, signature_algorithm_oid,
CBS_ASN1_OBJECT)) {
return false;
}
// signatureValue BIT STRING }
if (!CBS_get_asn1(&certificate, nullptr, CBS_ASN1_BITSTRING)) {
return false;
}
if (CBS_len(&certificate)) {
return false;
}
// Now parse the inner TBSCertificate.
// version [0] EXPLICIT Version DEFAULT v1,
if (!CBS_get_optional_asn1(
&tbs_certificate, nullptr, nullptr,
CBS_ASN1_CONSTRUCTED | CBS_ASN1_CONTEXT_SPECIFIC)) {
return false;
}
// serialNumber CertificateSerialNumber,
if (!CBS_get_asn1(&tbs_certificate, nullptr, CBS_ASN1_INTEGER)) {
return false;
}
// signature AlgorithmIdentifier
if (!CBS_get_asn1(&tbs_certificate, nullptr, CBS_ASN1_SEQUENCE)) {
return false;
}
// issuer Name,
if (!CBS_get_asn1(&tbs_certificate, nullptr, CBS_ASN1_SEQUENCE)) {
return false;
}
// validity Validity,
CBS validity;
if (!CBS_get_asn1(&tbs_certificate, &validity, CBS_ASN1_SEQUENCE)) {
return false;
}
// Skip over notBefore.
if (!CBS_get_any_asn1_element(&validity, nullptr, nullptr, nullptr)) {
return false;
}
// Parse notAfter.
CBS not_after;
unsigned not_after_tag;
if (!CBS_get_any_asn1(&validity, ¬_after, ¬_after_tag)) {
return false;
}
bool long_format;
if (not_after_tag == CBS_ASN1_UTCTIME) {
long_format = false;
} else if (not_after_tag == CBS_ASN1_GENERALIZEDTIME) {
long_format = true;
} else {
return false;
}
if (expiration_time) {
*expiration_time =
ASN1TimeToSec(CBS_data(¬_after), CBS_len(¬_after), long_format);
}
// subject Name,
if (!CBS_get_asn1_element(&tbs_certificate, nullptr, CBS_ASN1_SEQUENCE)) {
return false;
}
// subjectPublicKeyInfo SubjectPublicKeyInfo,
if (!CBS_get_asn1(&tbs_certificate, nullptr, CBS_ASN1_SEQUENCE)) {
return false;
}
// issuerUniqueID [1] IMPLICIT UniqueIdentifier OPTIONAL
if (!CBS_get_optional_asn1(&tbs_certificate, nullptr, nullptr,
0x01 | CBS_ASN1_CONTEXT_SPECIFIC)) {
return false;
}
// subjectUniqueID [2] IMPLICIT UniqueIdentifier OPTIONAL
if (!CBS_get_optional_asn1(&tbs_certificate, nullptr, nullptr,
0x02 | CBS_ASN1_CONTEXT_SPECIFIC)) {
return false;
}
// extensions [3] EXPLICIT Extensions OPTIONAL
if (!CBS_get_optional_asn1(
&tbs_certificate, nullptr, nullptr,
0x03 | CBS_ASN1_CONSTRUCTED | CBS_ASN1_CONTEXT_SPECIFIC)) {
return false;
}
if (CBS_len(&tbs_certificate)) {
return false;
}
return true;
}
#endif // OPENSSL_IS_BORINGSSL
bool VerifyPeerCertMatchesHost(SSL* ssl, absl::string_view host) {
if (host.empty()) {
RTC_DLOG(LS_ERROR) << "Hostname is empty. Cannot verify peer certificate.";
return false;
}
if (ssl == nullptr) {
RTC_DLOG(LS_ERROR) << "SSL is nullptr. Cannot verify peer certificate.";
return false;
}
#ifdef OPENSSL_IS_BORINGSSL
// We can't grab a X509 object directly, as the SSL context may have been
// initialized with TLS_with_buffers_method.
const STACK_OF(CRYPTO_BUFFER)* chain = SSL_get0_peer_certificates(ssl);
if (chain == nullptr || sk_CRYPTO_BUFFER_num(chain) == 0) {
RTC_LOG(LS_ERROR)
<< "SSL_get0_peer_certificates failed. This should never happen.";
return false;
}
CRYPTO_BUFFER* leaf = sk_CRYPTO_BUFFER_value(chain, 0);
bssl::UniquePtr<X509> x509(X509_parse_from_buffer(leaf));
if (!x509) {
RTC_LOG(LS_ERROR) << "Failed to parse certificate to X509 object.";
return false;
}
LogCertificates(ssl, x509.get());
return X509_check_host(x509.get(), host.data(), host.size(), 0, nullptr) == 1;
#else // OPENSSL_IS_BORINGSSL
X509* certificate = SSL_get_peer_certificate(ssl);
if (certificate == nullptr) {
RTC_LOG(LS_ERROR)
<< "SSL_get_peer_certificate failed. This should never happen.";
return false;
}
LogCertificates(ssl, certificate);
bool is_valid_cert_name =
X509_check_host(certificate, host.data(), host.size(), 0, nullptr) == 1;
X509_free(certificate);
return is_valid_cert_name;
#endif // !defined(OPENSSL_IS_BORINGSSL)
}
void LogSSLErrors(absl::string_view prefix) {
char error_buf[200];
unsigned long err; // NOLINT
while ((err = ERR_get_error()) != 0) {
ERR_error_string_n(err, error_buf, sizeof(error_buf));
RTC_LOG(LS_ERROR) << prefix << ": " << error_buf << "\n";
}
}
#ifndef WEBRTC_EXCLUDE_BUILT_IN_SSL_ROOT_CERTS
bool LoadBuiltinSSLRootCertificates(SSL_CTX* ctx) {
int count_of_added_certs = 0;
for (size_t i = 0; i < std::size(kSSLCertCertificateList); i++) {
const unsigned char* cert_buffer = kSSLCertCertificateList[i];
size_t cert_buffer_len = kSSLCertCertificateSizeList[i];
X509* cert = d2i_X509(nullptr, &cert_buffer,
checked_cast<long>(cert_buffer_len)); // NOLINT
if (cert) {
int return_value = X509_STORE_add_cert(SSL_CTX_get_cert_store(ctx), cert);
if (return_value == 0) {
RTC_LOG(LS_WARNING) << "Unable to add certificate.";
} else {
count_of_added_certs++;
}
X509_free(cert);
}
}
return count_of_added_certs > 0;
}
#endif // WEBRTC_EXCLUDE_BUILT_IN_SSL_ROOT_CERTS
#ifdef OPENSSL_IS_BORINGSSL
CRYPTO_BUFFER_POOL* GetBufferPool() {
static CRYPTO_BUFFER_POOL* instance = CRYPTO_BUFFER_POOL_new();
return instance;
}
#endif
} // namespace openssl
} // namespace webrtc
|