1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/component_updater/installer_policies/safety_tips_component_installer.h"
#include <memory>
#include <utility>
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/logging.h"
#include "base/memory/ref_counted.h"
#include "base/task/thread_pool.h"
#include "base/values.h"
#include "components/lookalikes/core/safety_tips.pb.h"
#include "components/lookalikes/core/safety_tips_config.h"
using component_updater::ComponentUpdateService;
namespace {
const base::FilePath::CharType kSafetyTipsConfigBinaryPbFileName[] =
FILE_PATH_LITERAL("safety_tips.pb");
// The SHA256 of the SubjectPublicKeyInfo used to sign the extension.
// The extension id is: jflookgnkcckhobaglndicnbbgbonegd
const uint8_t kSafetyTipsPublicKeySHA256[32] = {
0x95, 0xbe, 0xea, 0x6d, 0xa2, 0x2a, 0x7e, 0x10, 0x6b, 0xd3, 0x82,
0xd1, 0x16, 0x1e, 0xd4, 0x63, 0x21, 0xfe, 0x79, 0x5d, 0x02, 0x30,
0xc2, 0xcf, 0x4a, 0x9c, 0x8a, 0x39, 0xcc, 0x4a, 0x00, 0xce};
std::unique_ptr<reputation::SafetyTipsConfig> LoadSafetyTipsProtoFromDisk(
const base::FilePath& pb_path) {
std::string binary_pb;
if (!base::ReadFileToString(pb_path, &binary_pb)) {
// The file won't exist on new installations, so this is not always an
// error.
DVLOG(1) << "Failed reading from " << pb_path.value();
return nullptr;
}
auto proto = std::make_unique<reputation::SafetyTipsConfig>();
if (!proto->ParseFromString(binary_pb)) {
DVLOG(1) << "Failed parsing proto " << pb_path.value();
return nullptr;
}
return proto;
}
} // namespace
namespace component_updater {
SafetyTipsComponentInstallerPolicy::SafetyTipsComponentInstallerPolicy() =
default;
SafetyTipsComponentInstallerPolicy::~SafetyTipsComponentInstallerPolicy() =
default;
bool SafetyTipsComponentInstallerPolicy::
SupportsGroupPolicyEnabledComponentUpdates() const {
return true;
}
bool SafetyTipsComponentInstallerPolicy::RequiresNetworkEncryption() const {
return false;
}
update_client::CrxInstaller::Result
SafetyTipsComponentInstallerPolicy::OnCustomInstall(
const base::Value::Dict& /* manifest */,
const base::FilePath& /* install_dir */) {
return update_client::CrxInstaller::Result(0); // Nothing custom here.
}
void SafetyTipsComponentInstallerPolicy::OnCustomUninstall() {}
base::FilePath SafetyTipsComponentInstallerPolicy::GetInstalledPath(
const base::FilePath& base) {
return base.Append(kSafetyTipsConfigBinaryPbFileName);
}
void SafetyTipsComponentInstallerPolicy::ComponentReady(
const base::Version& version,
const base::FilePath& install_dir,
base::Value::Dict /* manifest */) {
DVLOG(1) << "Component ready, version " << version.GetString() << " in "
<< install_dir.value();
const base::FilePath pb_path = GetInstalledPath(install_dir);
if (pb_path.empty()) {
return;
}
// The default proto will always be a placeholder since the updated versions
// are not checked in to the repo. Simply load whatever the component updater
// gave us without checking the default proto from the resource bundle.
base::ThreadPool::PostTaskAndReplyWithResult(
FROM_HERE, {base::MayBlock(), base::TaskPriority::BEST_EFFORT},
base::BindOnce(&LoadSafetyTipsProtoFromDisk, pb_path),
base::BindOnce(&lookalikes::SetSafetyTipsRemoteConfigProto));
}
// Called during startup and installation before ComponentReady().
bool SafetyTipsComponentInstallerPolicy::VerifyInstallation(
const base::Value::Dict& /* manifest */,
const base::FilePath& install_dir) const {
// No need to actually validate the proto here, since we'll do the checking
// in PopulateFromDynamicUpdate().
return base::PathExists(GetInstalledPath(install_dir));
}
base::FilePath SafetyTipsComponentInstallerPolicy::GetRelativeInstallDir()
const {
return base::FilePath(FILE_PATH_LITERAL("SafetyTips"));
}
void SafetyTipsComponentInstallerPolicy::GetHash(
std::vector<uint8_t>* hash) const {
hash->assign(std::begin(kSafetyTipsPublicKeySHA256),
std::end(kSafetyTipsPublicKeySHA256));
}
std::string SafetyTipsComponentInstallerPolicy::GetName() const {
return "Safety Tips";
}
update_client::InstallerAttributes
SafetyTipsComponentInstallerPolicy::GetInstallerAttributes() const {
return update_client::InstallerAttributes();
}
void RegisterSafetyTipsComponent(ComponentUpdateService* cus) {
DVLOG(1) << "Registering Safety Tips component.";
auto installer = base::MakeRefCounted<ComponentInstaller>(
std::make_unique<SafetyTipsComponentInstallerPolicy>());
installer->Register(cus, base::OnceClosure());
}
} // namespace component_updater
|