// Copyright 2013 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 "net/quic/chromium/crypto/proof_source_chromium.h" #include "base/strings/string_number_conversions.h" #include "crypto/openssl_util.h" #include "net/quic/core/crypto/crypto_protocol.h" #include "third_party/boringssl/src/include/openssl/digest.h" #include "third_party/boringssl/src/include/openssl/evp.h" #include "third_party/boringssl/src/include/openssl/rsa.h" using std::string; namespace net { ProofSourceChromium::ProofSourceChromium() {} ProofSourceChromium::~ProofSourceChromium() {} bool ProofSourceChromium::Initialize(const base::FilePath& cert_path, const base::FilePath& key_path, const base::FilePath& sct_path) { crypto::EnsureOpenSSLInit(); std::string cert_data; if (!base::ReadFileToString(cert_path, &cert_data)) { DLOG(FATAL) << "Unable to read certificates."; return false; } CertificateList certs_in_file = X509Certificate::CreateCertificateListFromBytes( cert_data.data(), cert_data.size(), X509Certificate::FORMAT_AUTO); if (certs_in_file.empty()) { DLOG(FATAL) << "No certificates."; return false; } std::vector certs; for (const scoped_refptr& cert : certs_in_file) { std::string der_encoded_cert; if (!X509Certificate::GetDEREncoded(cert->os_cert_handle(), &der_encoded_cert)) { return false; } certs.push_back(der_encoded_cert); } chain_ = new ProofSource::Chain(certs); std::string key_data; if (!base::ReadFileToString(key_path, &key_data)) { DLOG(FATAL) << "Unable to read key."; return false; } const uint8_t* p = reinterpret_cast(key_data.data()); std::vector input(p, p + key_data.size()); private_key_ = crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input); if (!private_key_) { DLOG(FATAL) << "Unable to create private key."; return false; } // Loading of the signed certificate timestamp is optional. if (sct_path.empty()) return true; if (!base::ReadFileToString(sct_path, &signed_certificate_timestamp_)) { DLOG(FATAL) << "Unable to read signed certificate timestamp."; return false; } return true; } bool ProofSourceChromium::GetProofInner( const QuicSocketAddress& server_addr, const string& hostname, const string& server_config, QuicTransportVersion quic_version, QuicStringPiece chlo_hash, const QuicTagVector& /* connection_options */, QuicReferenceCountedPointer* out_chain, QuicCryptoProof* proof) { DCHECK(proof != nullptr); DCHECK(private_key_.get()) << " this: " << this; crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE); bssl::ScopedEVP_MD_CTX sign_context; EVP_PKEY_CTX* pkey_ctx; uint32_t len_tmp = chlo_hash.length(); if (!EVP_DigestSignInit(sign_context.get(), &pkey_ctx, EVP_sha256(), nullptr, private_key_->key()) || !EVP_PKEY_CTX_set_rsa_padding(pkey_ctx, RSA_PKCS1_PSS_PADDING) || !EVP_PKEY_CTX_set_rsa_pss_saltlen(pkey_ctx, -1) || !EVP_DigestSignUpdate( sign_context.get(), reinterpret_cast(kProofSignatureLabel), sizeof(kProofSignatureLabel)) || !EVP_DigestSignUpdate(sign_context.get(), reinterpret_cast(&len_tmp), sizeof(len_tmp)) || !EVP_DigestSignUpdate(sign_context.get(), reinterpret_cast(chlo_hash.data()), len_tmp) || !EVP_DigestSignUpdate( sign_context.get(), reinterpret_cast(server_config.data()), server_config.size())) { return false; } // Determine the maximum length of the signature. size_t len = 0; if (!EVP_DigestSignFinal(sign_context.get(), nullptr, &len)) { return false; } std::vector signature(len); // Sign it. if (!EVP_DigestSignFinal(sign_context.get(), signature.data(), &len)) { return false; } signature.resize(len); proof->signature.assign(reinterpret_cast(signature.data()), signature.size()); *out_chain = chain_; VLOG(1) << "signature: " << base::HexEncode(proof->signature.data(), proof->signature.size()); proof->leaf_cert_scts = signed_certificate_timestamp_; return true; } void ProofSourceChromium::GetProof(const QuicSocketAddress& server_addr, const std::string& hostname, const std::string& server_config, QuicTransportVersion quic_version, QuicStringPiece chlo_hash, const QuicTagVector& connection_options, std::unique_ptr callback) { // As a transitional implementation, just call the synchronous version of // GetProof, then invoke the callback with the results and destroy it. QuicReferenceCountedPointer chain; string signature; string leaf_cert_sct; QuicCryptoProof out_proof; const bool ok = GetProofInner(server_addr, hostname, server_config, quic_version, chlo_hash, connection_options, &chain, &out_proof); callback->Run(ok, chain, out_proof, nullptr /* details */); } QuicReferenceCountedPointer ProofSourceChromium::GetCertChain(const QuicSocketAddress& server_address, const std::string& hostname) { return chain_; } void ProofSourceChromium::ComputeTlsSignature( const QuicSocketAddress& server_address, const std::string& hostname, uint16_t signature_algorithm, QuicStringPiece in, std::unique_ptr callback) { crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE); bssl::ScopedEVP_MD_CTX sign_context; EVP_PKEY_CTX* pkey_ctx; size_t siglen; string sig; if (!EVP_DigestSignInit(sign_context.get(), &pkey_ctx, EVP_sha256(), nullptr, private_key_->key()) || !EVP_PKEY_CTX_set_rsa_padding(pkey_ctx, RSA_PKCS1_PSS_PADDING) || !EVP_PKEY_CTX_set_rsa_pss_saltlen(pkey_ctx, -1) || !EVP_DigestSignUpdate(sign_context.get(), reinterpret_cast(in.data()), in.size()) || !EVP_DigestSignFinal(sign_context.get(), nullptr, &siglen)) { callback->Run(false, sig); return; } sig.resize(siglen); if (!EVP_DigestSignFinal( sign_context.get(), reinterpret_cast(const_cast(sig.data())), &siglen)) { callback->Run(false, sig); return; } sig.resize(siglen); callback->Run(true, sig); } } // namespace net