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

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: Fixing compilation errors on ChromeOS Created 4 years, 8 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..e6ffffabcd8d443a0adcd925fcae1af0583aa04f
--- /dev/null
+++ b/chrome/browser/component_updater/sth_set_component_installer.cc
@@ -0,0 +1,194 @@
+// 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>
Ryan Sleevi 2016/04/06 18:32:51 Is in header
Eran Messeri 2016/04/07 11:38:03 Done.
+#include <utility>
+#include <vector>
Ryan Sleevi 2016/04/06 18:32:51 Is in header
Eran Messeri 2016/04/07 11:38:03 Done.
+
+#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"
Ryan Sleevi 2016/04/06 18:32:51 Is in header / unnecessary?
Eran Messeri 2016/04/07 11:38:03 Done.
+#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: ojjgnpkioondelmggbekfhllhdaimnho
+const uint8_t kPublicKeySHA256[32] = {
+ 0xe9, 0x96, 0xdf, 0xa8, 0xee, 0xd3, 0x4b, 0xc6, 0x61, 0x4a, 0x57,
+ 0xbb, 0x73, 0x08, 0xcd, 0x7e, 0x51, 0x9b, 0xcc, 0x69, 0x08, 0x41,
+ 0xe1, 0x96, 0x9f, 0x7c, 0xb1, 0x73, 0xef, 0x16, 0x80, 0x0a};
+
+const char kSTHSetFetcherManifestName[] = "Signed Tree Heads";
+
+STHSetComponentInstallerTraits::STHSetComponentInstallerTraits(
+ scoped_ptr<net::ct::STHObserver> sth_observer)
+ : sth_observer_(std::move(sth_observer)) {}
+
+STHSetComponentInstallerTraits::~STHSetComponentInstallerTraits() {}
+
+bool STHSetComponentInstallerTraits::CanAutoUpdate() const {
+ return true;
+}
+
+// Public data is delivered via this component, no need for encryption.
+bool STHSetComponentInstallerTraits::RequiresNetworkEncryption() const {
+ return false;
+}
+
+bool STHSetComponentInstallerTraits::OnCustomInstall(
+ const base::DictionaryValue& manifest,
+ const base::FilePath& install_dir) {
+ 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) {
+ if (!content::BrowserThread::PostBlockingPoolTask(
+ FROM_HERE,
+ base::Bind(&STHSetComponentInstallerTraits::LoadSTHsFromDisk,
+ base::Unretained(this), GetInstalledPath(install_dir),
+ version))) {
+ NOTREACHED();
+ }
+}
+
+// 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);
Ryan Sleevi 2016/04/06 18:32:50 Is it safe to ignore the return value here? Is tha
Eran Messeri 2016/04/07 11:38:03 I believe it's safe - it's done in all other class
+ return result;
+}
+
+void STHSetComponentInstallerTraits::GetHash(std::vector<uint8_t>* hash) const {
+ hash->assign(std::begin(kPublicKeySHA256), std::end(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"));
Ryan Sleevi 2016/04/06 18:32:50 DESIGN/Curious: Is there a reason to store these a
Eran Messeri 2016/04/07 11:38:03 This was done mainly for simplicity of the impleme
+ base::FilePath sth_file_path;
+
+ while (!(sth_file_path = sth_file_enumerator.Next()).empty()) {
+ VLOG(1) << "Reading STH from file: " << sth_file_path.value();
Ryan Sleevi 2016/04/06 18:32:51 You asked me to review this as if it was done, but
Eran Messeri 2016/04/07 11:38:03 I've made a mental note to search for those before
+
+ const 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;
+ }
+
+ const std::string log_id(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(
+ 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