Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5457)

Unified Diff: chrome/browser/component_updater/sth_set_component_installer.cc

Issue 1853753003: Certificate Transparency: New component for obtaining fresh STHs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/component_updater/sth_set_component_installer.cc
diff --git a/chrome/browser/component_updater/sth_set_component_installer.cc b/chrome/browser/component_updater/sth_set_component_installer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c35f5f6a6b925385b10304c14dfa76b2bf7f3d53
--- /dev/null
+++ b/chrome/browser/component_updater/sth_set_component_installer.cc
@@ -0,0 +1,201 @@
+// Copyright 2016 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/component_updater/sth_set_component_installer.h"
+
+#include <string>
+#include <utility>
+#include <vector>
+
+#include "base/bind.h"
+#include "base/files/file_enumerator.h"
+#include "base/files/file_path.h"
+#include "base/files/file_util.h"
+#include "base/logging.h"
+#include "base/macros.h"
+#include "base/path_service.h"
+#include "base/strings/string_number_conversions.h"
+#include "base/values.h"
+#include "base/version.h"
+#include "components/component_updater/component_updater_paths.h"
+#include "components/safe_json/safe_json_parser.h"
+#include "content/public/browser/browser_thread.h"
+#include "crypto/sha2.h"
+#include "net/cert/ct_known_logs_static.h"
+#include "net/cert/ct_log_response_parser.h"
+#include "net/cert/signed_tree_head.h"
+
+using component_updater::ComponentUpdateService;
+
+namespace {
+const base::FilePath::CharType kSTHsDirName[] = FILE_PATH_LITERAL("sths");
+} // namespace
+
+namespace component_updater {
+
+// The SHA256 of the SubjectPublicKeyInfo used to sign the extension.
+// The extension id is: aplidfpohcjpojgnkjpkibbkcghkogef
waffles 2016/04/01 17:01:55 We will use ojjgnpkioondelmggbekfhllhdaimnho
Eran Messeri 2016/04/04 13:10:02 Done.
+const uint8_t kPublicKeySHA256[32] = {
+ 0x0f, 0xb8, 0x35, 0xfe, 0x72, 0x9f, 0xe9, 0x6d, 0xa9, 0xfa, 0x81,
+ 0x1a, 0x26, 0x7a, 0xe6, 0x45, 0x22, 0x50, 0xc4, 0xd4, 0x01, 0xcc,
+ 0x33, 0x90, 0x1c, 0xe9, 0x44, 0x37, 0xc4, 0xa0, 0x2e, 0x02};
waffles 2016/04/01 17:01:55 We will use e996dfa8eed34bc6614a57bb7308cd7e519bcc
Eran Messeri 2016/04/04 13:10:02 Done, thanks.
+
+const char kSTHSetFetcherManifestName[] = "Signed Tree Heads";
+
+STHSetComponentInstallerTraits::STHSetComponentInstallerTraits(
+ scoped_ptr<net::ct::STHObserver> sth_observer)
+ : sth_observer_(std::move(sth_observer)) {
+ VLOG(1) << "XXX: STHSetComponentInstallerTraits::c'tor";
waffles 2016/04/01 17:01:55 These logging statements should be cleaned up prio
Eran Messeri 2016/04/04 13:10:02 Done - removed debugging statements, I did leave s
+}
+
+STHSetComponentInstallerTraits::~STHSetComponentInstallerTraits() {
+ VLOG(1) << "XXX: STHSetComponentInstallerTraits::d'tor";
+}
+
+bool STHSetComponentInstallerTraits::CanAutoUpdate() const {
+ return true;
+}
+
+bool STHSetComponentInstallerTraits::OnCustomInstall(
+ const base::DictionaryValue& manifest,
+ const base::FilePath& install_dir) {
+ VLOG(1) << "Entering STHSetComponentInstallerTraits::OnCustomInstall.";
+
+ return true; // Nothing custom here.
+}
+
+base::FilePath STHSetComponentInstallerTraits::GetInstalledPath(
+ const base::FilePath& base) {
+ return base.Append(FILE_PATH_LITERAL("_platform_specific"))
+ .Append(FILE_PATH_LITERAL("all"))
+ .Append(kSTHsDirName);
+}
+
+void STHSetComponentInstallerTraits::ComponentReady(
+ const base::Version& version,
+ const base::FilePath& install_dir,
+ scoped_ptr<base::DictionaryValue> manifest) {
+ VLOG(1) << "Component ready, version " << version.GetString() << " in "
+ << install_dir.value();
+
+ if (!content::BrowserThread::PostBlockingPoolTask(
+ FROM_HERE,
+ base::Bind(&STHSetComponentInstallerTraits::LoadSTHsFromDisk,
+ base::Unretained(this), GetInstalledPath(install_dir),
+ version))) {
+ NOTREACHED();
waffles 2016/04/01 17:01:55 Not sure about this.
Eran Messeri 2016/04/04 13:10:02 That's a pattern used in other components - will b
+ }
+}
+
+// Called during startup and installation before ComponentReady().
+bool STHSetComponentInstallerTraits::VerifyInstallation(
+ const base::DictionaryValue& manifest,
+ const base::FilePath& install_dir) const {
+ return base::PathExists(GetInstalledPath(install_dir));
+}
+
+base::FilePath STHSetComponentInstallerTraits::GetBaseDirectory() const {
+ base::FilePath result;
+ PathService::Get(DIR_CERT_TRANS_TREE_STATES, &result);
+ return result;
+}
+
+void STHSetComponentInstallerTraits::GetHash(std::vector<uint8_t>* hash) const {
+ hash->assign(kPublicKeySHA256,
+ kPublicKeySHA256 + arraysize(kPublicKeySHA256));
+}
+
+std::string STHSetComponentInstallerTraits::GetName() const {
+ return kSTHSetFetcherManifestName;
+}
+
+void STHSetComponentInstallerTraits::LoadSTHsFromDisk(
+ const base::FilePath& sths_path,
+ const base::Version& version) {
+ if (sths_path.empty())
+ return;
+
+ base::FileEnumerator sth_file_enumerator(sths_path, false,
+ base::FileEnumerator::FILES,
+ FILE_PATH_LITERAL("*.sth"));
+ base::FilePath sth_file_path;
+
+ while (!(sth_file_path = sth_file_enumerator.Next()).empty()) {
+ VLOG(1) << "Reading STH from file: " << sth_file_path.value();
+
+ std::string log_id_hex =
+ sth_file_path.BaseName().RemoveExtension().MaybeAsASCII();
+ if (log_id_hex.empty()) {
+ DVLOG(1) << "Error extracting log_id from: "
+ << sth_file_path.BaseName().LossyDisplayName();
+ continue;
+ }
+
+ std::vector<uint8_t> decoding_output;
+ if (!base::HexStringToBytes(log_id_hex, &decoding_output)) {
+ DVLOG(1) << "Failed to decode Log ID: " << log_id_hex;
+ continue;
+ }
+
+ std::string log_id;
+ log_id.assign(reinterpret_cast<const char*>(&decoding_output[0]),
+ decoding_output.size());
+
+ std::string json_sth;
+ if (!base::ReadFileToString(sth_file_path, &json_sth)) {
+ VLOG(1) << "Failed reading from " << sth_file_path.value();
+ continue;
+ }
+
+ VLOG(1) << "STH: Successfully read: " << json_sth;
+ safe_json::SafeJsonParser::Parse(
waffles 2016/04/01 17:01:55 Hm, I wonder if it is a good idea to do this kind
Eran Messeri 2016/04/03 05:24:10 Good point - do you have any metrics on how many c
+ json_sth,
+ base::Bind(&STHSetComponentInstallerTraits::OnJsonParseSuccess,
+ base::Unretained(this), log_id),
+ base::Bind(&STHSetComponentInstallerTraits::OnJsonParseError,
+ base::Unretained(this), log_id));
+ }
+}
+
+void STHSetComponentInstallerTraits::OnJsonParseSuccess(
+ std::string log_id,
+ scoped_ptr<base::Value> parsed_json) {
+ net::ct::SignedTreeHead signed_tree_head;
+ VLOG(0) << "STH parsing success for log: "
+ << base::HexEncode(log_id.data(), log_id.length());
+ if (!net::ct::FillSignedTreeHead(*(parsed_json.get()), &signed_tree_head)) {
+ LOG(WARNING) << "Failed to fill in signed tree head.";
+ return;
+ }
+
+ // The log id is not a part of the response, fill in manually.
+ signed_tree_head.log_id = log_id;
+ content::BrowserThread::PostTask(
+ content::BrowserThread::IO, FROM_HERE,
+ base::Bind(&net::ct::STHObserver::NewSTHObserved,
+ base::Unretained(sth_observer_.get()), signed_tree_head));
+}
+
+void STHSetComponentInstallerTraits::OnJsonParseError(
+ std::string log_id,
+ const std::string& error) {
+ VLOG(0) << "STH loading failed: " << error
+ << " for log: " << base::HexEncode(log_id.data(), log_id.length());
+}
+
+void RegisterSTHSetComponent(
+ ComponentUpdateService* cus,
+ const base::FilePath& user_data_dir,
+ scoped_ptr<net::ct::STHObserver> sth_observer) {
+ VLOG(1) << "Registering STH Set fetcher component.";
+
+ scoped_ptr<ComponentInstallerTraits> traits(
+ new STHSetComponentInstallerTraits(std::move(sth_observer)));
+ // |cus| will take ownership of |installer| during installer->Register(cus).
+ DefaultComponentInstaller* installer =
+ new DefaultComponentInstaller(std::move(traits));
+ installer->Register(cus, base::Closure());
+}
+
+} // namespace component_updater

Powered by Google App Engine
This is Rietveld 408576698