Chromium Code Reviews| Index: chrome/browser/net/packed_ct_ev_whitelist.cc |
| diff --git a/chrome/browser/net/packed_ct_ev_whitelist.cc b/chrome/browser/net/packed_ct_ev_whitelist.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..81e3beaadb6978f24d7a5c4eea82d01fd0553a22 |
| --- /dev/null |
| +++ b/chrome/browser/net/packed_ct_ev_whitelist.cc |
| @@ -0,0 +1,124 @@ |
| +// 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 "chrome/browser/net/packed_ct_ev_whitelist.h" |
| + |
| +#include <string.h> |
| + |
| +#include <algorithm> |
| + |
| +#include "base/big_endian.h" |
| +#include "base/files/file_util.h" |
| +#include "base/lazy_instance.h" |
| +#include "base/logging.h" |
| +#include "chrome/browser/net/bit_stream_reader.h" |
| +#include "content/public/browser/browser_thread.h" |
| +#include "net/ssl/ssl_config_service.h" |
| + |
| +namespace { |
| +const uint8_t kCertHashLengthBits = 64; // 8 bytes |
| +const uint64_t kGolombMParameterBits = 47; // 2^47 |
| + |
| +void SetNewEVWhitelistInSSLConfigService( |
| + const scoped_refptr<net::ct::EVCertsWhitelist>& new_whitelist) { |
| + net::SSLConfigService::SetEVCertsWhitelist(new_whitelist); |
| +} |
| + |
| +} // namespace |
| + |
| +void SetEVWhitelistFromFile(const base::FilePath& compressed_whitelist_file) { |
| + VLOG(1) << "Setting EV whitelist from file: " |
| + << compressed_whitelist_file.value(); |
| + std::string compressed_list; |
| + if (!base::ReadFileToString(compressed_whitelist_file, &compressed_list)) { |
| + VLOG(1) << "Failed reading from " << compressed_whitelist_file.value(); |
| + return; |
| + } |
| + |
| + scoped_refptr<net::ct::EVCertsWhitelist> new_whitelist( |
| + new PackedEVCertsWhitelist(compressed_list)); |
| + if (!new_whitelist->IsValid()) { |
| + VLOG(1) << "Failed uncompressing EV certs whitelist."; |
| + return; |
| + } |
| + |
| + base::Callback<void(void)> assign_cb = |
| + base::Bind(SetNewEVWhitelistInSSLConfigService, new_whitelist); |
| + content::BrowserThread::PostTask( |
| + content::BrowserThread::IO, FROM_HERE, assign_cb); |
| +} |
| + |
| +bool PackedEVCertsWhitelist::UncompressEVWhitelist( |
| + const std::string& compressed_whitelist, |
| + std::vector<std::string>* uncompressed_list) { |
| + internal::BitStreamReader reader(base::StringPiece( |
| + compressed_whitelist.data(), compressed_whitelist.size())); |
| + std::vector<std::string> result; |
| + |
| + VLOG(1) << "Uncompressing EV whitelist of size " |
| + << compressed_whitelist.size(); |
| + uint64_t curr_hash(0); |
| + if (!reader.ReadBits(kCertHashLengthBits, &curr_hash)) { |
| + VLOG(1) << "Failed reading first hash."; |
| + return false; |
| + } |
| + char hash_bytes[8]; |
| + base::WriteBigEndian(hash_bytes, curr_hash); |
| + result.push_back(std::string(hash_bytes, 8)); |
| + // M is the tunable parameter used by the Golomb coding. |
| + static const uint64_t M = static_cast<uint64_t>(1) << kGolombMParameterBits; |
| + |
| + while (reader.BitsLeft() > kGolombMParameterBits) { |
| + uint64_t read_prefix = 0; |
| + if (!reader.ReadUnaryEncoding(&read_prefix)) { |
| + VLOG(1) << "Failed reading unary-encoded prefix."; |
| + return false; |
| + } |
| + if (read_prefix > (UINT64_MAX / M)) { |
| + VLOG(1) << "Received value that would cause overflow: " << read_prefix; |
| + return false; |
| + } |
| + |
| + uint64_t r = 0; |
| + if (!reader.ReadBits(kGolombMParameterBits, &r)) { |
| + VLOG(1) << "Failed reading " << kGolombMParameterBits << " bits."; |
| + return false; |
| + } |
| + DCHECK_LT(r, M); |
| + |
| + uint64_t curr_diff = read_prefix * M + r; |
| + curr_hash += curr_diff; |
| + |
| + base::WriteBigEndian(hash_bytes, curr_hash); |
| + result.push_back(std::string(hash_bytes, 8)); |
|
Ryan Sleevi
2014/10/22 19:26:58
This 8 is duplicated on lines 68 and 66. Perhaps t
Eran Messeri
2014/10/22 23:32:03
Done.
|
| + } |
| + |
| + uncompressed_list->swap(result); |
| + return true; |
| +} |
| + |
| +PackedEVCertsWhitelist::PackedEVCertsWhitelist( |
| + const std::string& compressed_whitelist) |
| + : is_whitelist_valid_(false) { |
| + if (!UncompressEVWhitelist(compressed_whitelist, &whitelist_)) { |
| + whitelist_.clear(); |
| + return; |
| + } |
| + |
| + is_whitelist_valid_ = true; |
| +} |
| + |
| +PackedEVCertsWhitelist::~PackedEVCertsWhitelist() { |
| +} |
| + |
| +bool PackedEVCertsWhitelist::ContainsCertificateHash( |
| + const std::string& certificate_hash) const { |
| + DCHECK(!whitelist_.empty()); |
| + return std::binary_search( |
| + whitelist_.begin(), whitelist_.end(), certificate_hash); |
| +} |
| + |
| +bool PackedEVCertsWhitelist::IsValid() const { |
| + return is_whitelist_valid_; |
| +} |