blob: c1c34389f667653e081bfaa8800517a3ca5ba64b [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/cast_certificate/cast_cert_validator.h"
#include <stddef.h>
#include <stdint.h>
#include <algorithm>
#include <memory>
#include <utility>
#include "base/memory/ptr_util.h"
#include "base/memory/singleton.h"
#include "net/cert/internal/cert_issuer_source_static.h"
#include "components/cast_certificate/cast_crl.h"
#include "net/cert/internal/certificate_policies.h"
#include "net/cert/internal/extended_key_usage.h"
#include "net/cert/internal/parse_certificate.h"
#include "net/cert/internal/parse_name.h"
#include "net/cert/internal/parsed_certificate.h"
#include "net/cert/internal/path_builder.h"
#include "net/cert/internal/signature_algorithm.h"
#include "net/cert/internal/signature_policy.h"
#include "net/cert/internal/trust_store_in_memory.h"
#include "net/cert/internal/verify_signed_data.h"
#include "net/der/encode_values.h"
#include "net/der/input.h"
namespace cast_certificate {
namespace {
// -------------------------------------------------------------------------
// Cast trust anchors.
// -------------------------------------------------------------------------
// There are two trusted roots for Cast certificate chains:
//
// (1) CN=Cast Root CA (kCastRootCaDer)
// (2) CN=Eureka Root CA (kEurekaRootCaDer)
//
// These constants are defined by the files included next:
#include "components/cast_certificate/cast_root_ca_cert_der-inc.h"
#include "components/cast_certificate/eureka_root_ca_der-inc.h"
// Singleton for the Cast trust store.
class CastTrustStore {
public:
static CastTrustStore* GetInstance() {
return base::Singleton<CastTrustStore,
base::LeakySingletonTraits<CastTrustStore>>::get();
}
static net::TrustStore& Get() { return GetInstance()->store_; }
private:
friend struct base::DefaultSingletonTraits<CastTrustStore>;
CastTrustStore() {
AddAnchor(kCastRootCaDer);
AddAnchor(kEurekaRootCaDer);
}
// Adds a trust anchor given a DER-encoded certificate from static
// storage.
template <size_t N>
void AddAnchor(const uint8_t (&data)[N]) {
scoped_refptr<net::ParsedCertificate> cert =
net::ParsedCertificate::CreateFromCertificateData(
data, N, net::ParsedCertificate::DataSource::EXTERNAL_REFERENCE,
{});
CHECK(cert);
// Enforce pathlen constraints and policies defined on the root certificate.
scoped_refptr<net::TrustAnchor> anchor =
net::TrustAnchor::CreateFromCertificateWithConstraints(std::move(cert));
store_.AddTrustAnchor(std::move(anchor));
}
net::TrustStoreInMemory store_;
DISALLOW_COPY_AND_ASSIGN(CastTrustStore);
};
using ExtensionsMap = std::map<net::der::Input, net::ParsedExtension>;
// Helper that looks up an extension by OID given a map of extensions.
bool GetExtensionValue(const ExtensionsMap& extensions,
const net::der::Input& oid,
net::der::Input* value) {
auto it = extensions.find(oid);
if (it == extensions.end())
return false;
*value = it->second.value;
return true;
}
// Returns the OID for the Audio-Only Cast policy
// (1.3.6.1.4.1.11129.2.5.2) in DER form.
net::der::Input AudioOnlyPolicyOid() {
static const uint8_t kAudioOnlyPolicy[] = {0x2B, 0x06, 0x01, 0x04, 0x01,
0xD6, 0x79, 0x02, 0x05, 0x02};
return net::der::Input(kAudioOnlyPolicy);
}
// Cast certificates rely on RSASSA-PKCS#1 v1.5 with SHA-1 for signatures.
//
// The following signature policy specifies which signature algorithms (and key
// sizes) are acceptable. It is used when verifying a chain of certificates, as
// well as when verifying digital signature using the target certificate's
// SPKI.
//
// This particular policy allows for:
// * ECDSA, RSA-SSA, and RSA-PSS
// * Supported EC curves: P-256, P-384, P-521.
// * Hashes: All SHA hashes including SHA-1 (despite being known weak).
// * RSA keys must have a modulus at least 2048-bits long.
std::unique_ptr<net::SignaturePolicy> CreateCastSignaturePolicy() {
return base::MakeUnique<net::SimpleSignaturePolicy>(2048);
}
class CertVerificationContextImpl : public CertVerificationContext {
public:
// Save a copy of the passed in public key (DER) and common name (text).
CertVerificationContextImpl(const net::der::Input& spki,
const base::StringPiece& common_name)
: spki_(spki.AsString()), common_name_(common_name.as_string()) {}
bool VerifySignatureOverData(const base::StringPiece& signature,
const base::StringPiece& data) const override {
// This code assumes the signature algorithm was RSASSA PKCS#1 v1.5 with
// SHA-1.
// TODO(eroman): Is it possible to use other hash algorithms?
auto signature_algorithm =
net::SignatureAlgorithm::CreateRsaPkcs1(net::DigestAlgorithm::Sha1);
// Use the same policy as was used for verifying signatures in
// certificates. This will ensure for instance that the key used is at
// least 2048-bits long.
auto signature_policy = CreateCastSignaturePolicy();
return net::VerifySignedData(
*signature_algorithm, net::der::Input(data),
net::der::BitString(net::der::Input(signature), 0),
net::der::Input(&spki_), signature_policy.get());
}
std::string GetCommonName() const override { return common_name_; }
private:
std::string spki_;
std::string common_name_;
};
// Helper that extracts the Common Name from a certificate's subject field. On
// success |common_name| contains the text for the attribute (unescaped, so
// will depend on the encoding used, but for Cast device certs it should
// be ASCII).
bool GetCommonNameFromSubject(const net::der::Input& subject_tlv,
std::string* common_name) {
net::RDNSequence rdn_sequence;
if (!net::ParseName(subject_tlv, &rdn_sequence))
return false;
for (const net::RelativeDistinguishedName& rdn : rdn_sequence) {
for (const auto& atv : rdn) {
if (atv.type == net::TypeCommonNameOid()) {
return atv.ValueAsStringUnsafe(common_name);
}
}
}
return false;
}
// Returns true if the extended key usage list |ekus| contains client auth.
bool HasClientAuth(const std::vector<net::der::Input>& ekus) {
for (const auto& oid : ekus) {
if (oid == net::ClientAuth())
return true;
}
return false;
}
// Checks properties on the target certificate.
//
// * The Key Usage must include Digital Signature
// * The Extended Key Usage must include TLS Client Auth
// * May have the policy 1.3.6.1.4.1.11129.2.5.2 to indicate it
// is an audio-only device.
WARN_UNUSED_RESULT bool CheckTargetCertificate(
const net::ParsedCertificate* cert,
std::unique_ptr<CertVerificationContext>* context,
CastDeviceCertPolicy* policy) {
// Get the Key Usage extension.
if (!cert->has_key_usage())
return false;
// Ensure Key Usage contains digitalSignature.
if (!cert->key_usage().AssertsBit(net::KEY_USAGE_BIT_DIGITAL_SIGNATURE))
return false;
// Get the Extended Key Usage extension.
net::der::Input extension_value;
if (!GetExtensionValue(cert->unparsed_extensions(), net::ExtKeyUsageOid(),
&extension_value)) {
return false;
}
std::vector<net::der::Input> ekus;
if (!net::ParseEKUExtension(extension_value, &ekus))
return false;
// Ensure Extended Key Usage contains client auth.
if (!HasClientAuth(ekus))
return false;
// Check for an optional audio-only policy extension.
*policy = CastDeviceCertPolicy::NONE;
if (GetExtensionValue(cert->unparsed_extensions(),
net::CertificatePoliciesOid(), &extension_value)) {
std::vector<net::der::Input> policies;
if (!net::ParseCertificatePoliciesExtension(extension_value, &policies))
return false;
// Look for an audio-only policy. Disregard any other policy found.
if (std::find(policies.begin(), policies.end(), AudioOnlyPolicyOid()) !=
policies.end()) {
*policy = CastDeviceCertPolicy::AUDIO_ONLY;
}
}
// Get the Common Name for the certificate.
std::string common_name;
if (!GetCommonNameFromSubject(cert->tbs().subject_tlv, &common_name))
return false;
context->reset(
new CertVerificationContextImpl(cert->tbs().spki_tlv, common_name));
return true;
}
// Returns the parsing options used for Cast certificates.
net::ParseCertificateOptions GetCertParsingOptions() {
net::ParseCertificateOptions options;
// Some cast intermediate certificates contain serial numbers that are
// 21 octets long, and might also not use valid DER encoding for an
// INTEGER (non-minimal encoding).
//
// Allow these sorts of serial numbers.
//
// TODO(eroman): At some point in the future this workaround will no longer be
// necessary. Should revisit this for removal in 2017 if not earlier.
options.allow_invalid_serial_numbers = true;
return options;
}
// Verifies a cast device certficate given a chain of DER-encoded certificates.
bool VerifyDeviceCert(const std::vector<std::string>& certs,
const base::Time& time,
std::unique_ptr<CertVerificationContext>* context,
CastDeviceCertPolicy* policy,
const CastCRL* crl,
CRLPolicy crl_policy,
net::TrustStore* trust_store) {
if (certs.empty())
return false;
// No reference to these ParsedCertificates is kept past the end of this
// function, so using EXTERNAL_REFERENCE here is safe.
scoped_refptr<net::ParsedCertificate> target_cert;
net::CertIssuerSourceStatic intermediate_cert_issuer_source;
for (size_t i = 0; i < certs.size(); ++i) {
scoped_refptr<net::ParsedCertificate> cert(
net::ParsedCertificate::CreateFromCertificateData(
reinterpret_cast<const uint8_t*>(certs[i].data()), certs[i].size(),
net::ParsedCertificate::DataSource::EXTERNAL_REFERENCE,
GetCertParsingOptions()));
if (!cert)
return false;
if (i == 0)
target_cert = std::move(cert);
else
intermediate_cert_issuer_source.AddCert(std::move(cert));
}
// Use a signature policy compatible with Cast's PKI.
auto signature_policy = CreateCastSignaturePolicy();
// Do path building and RFC 5280 compatible certificate verification using the
// two Cast trust anchors and Cast signature policy.
net::der::GeneralizedTime verification_time;
if (!net::der::EncodeTimeAsGeneralizedTime(time, &verification_time))
return false;
net::CertPathBuilder::Result result;
net::CertPathBuilder path_builder(target_cert.get(), trust_store,
signature_policy.get(), verification_time,
&result);
path_builder.AddCertIssuerSource(&intermediate_cert_issuer_source);
net::CompletionStatus rv = path_builder.Run(base::Closure());
DCHECK_EQ(rv, net::CompletionStatus::SYNC);
if (!result.is_success())
return false;
// Check properties of the leaf certificate (key usage, policy), and construct
// a CertVerificationContext that uses its public key.
if (!CheckTargetCertificate(target_cert.get(), context, policy))
return false;
// Check if a CRL is available.
if (!crl) {
if (crl_policy == CRLPolicy::CRL_REQUIRED) {
return false;
}
} else {
if (result.paths.empty() ||
!result.paths[result.best_result_index]->is_success())
return false;
if (!crl->CheckRevocation(result.paths[result.best_result_index]->path,
time)) {
return false;
}
}
return true;
}
} // namespace
bool VerifyDeviceCert(const std::vector<std::string>& certs,
const base::Time& time,
std::unique_ptr<CertVerificationContext>* context,
CastDeviceCertPolicy* policy,
const CastCRL* crl,
CRLPolicy crl_policy) {
return VerifyDeviceCert(certs, time, context, policy, crl, crl_policy,
&CastTrustStore::Get());
}
bool VerifyDeviceCertForTest(const std::vector<std::string>& certs,
const base::Time& time,
std::unique_ptr<CertVerificationContext>* context,
CastDeviceCertPolicy* policy,
const CastCRL* crl,
CRLPolicy crl_policy,
net::TrustStore* trust_store) {
return VerifyDeviceCert(certs, time, context, policy, crl, crl_policy,
trust_store);
}
std::unique_ptr<CertVerificationContext> CertVerificationContextImplForTest(
const base::StringPiece& spki) {
// Use a bogus CommonName, since this is just exposed for testing signature
// verification by unittests.
return base::MakeUnique<CertVerificationContextImpl>(net::der::Input(spki),
"CommonName");
}
} // namespace cast_certificate