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
|
// 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/component_updater/cld_component_installer.h"
#include <string>
#include <vector>
#include "base/bind.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/path_service.h"
#include "components/component_updater/component_updater_paths.h"
#include "components/translate/content/browser/browser_cld_data_provider.h"
#include "components/translate/content/browser/browser_cld_data_provider_factory.h"
#include "components/translate/content/common/cld_data_source.h"
#include "content/public/browser/browser_thread.h"
#include "net/ssl/ssl_config_service.h"
using component_updater::ComponentUpdateService;
namespace {
// TODO(andrewhayden): Make the data file path into a gyp/gn define
// If you change this, also update component_cld_data_harness.cc
// and cld_component_installer_unittest.cc accordingly!
const base::FilePath::CharType kCldDataFileName[] =
FILE_PATH_LITERAL("cld2_data.bin");
// Tracks the last value seen in SetLatestCldDataFile.
base::LazyInstance<base::FilePath>::Leaky g_latest_cld_data_file =
LAZY_INSTANCE_INITIALIZER;
} // namespace
namespace component_updater {
// The SHA256 of the SubjectPublicKeyInfo used to sign the extension.
// The extension id is: dpedmmgabcgnikllifiidmijgoiihfgf
const uint8_t kPublicKeySHA256[32] = {
0x3f, 0x43, 0xcc, 0x60, 0x12, 0x6d, 0x8a, 0xbb,
0x85, 0x88, 0x3c, 0x89, 0x6e, 0x88, 0x75, 0x65,
0xb9, 0x46, 0x09, 0xe8, 0xca, 0x92, 0xdd, 0x82,
0x4e, 0x6d, 0x0e, 0xe6, 0x79, 0x8a, 0x87, 0xf5
};
const char kCldManifestName[] = "CLD2 Data";
CldComponentInstallerTraits::CldComponentInstallerTraits() {
}
bool CldComponentInstallerTraits::CanAutoUpdate() const {
return true;
}
bool CldComponentInstallerTraits::OnCustomInstall(
const base::DictionaryValue& manifest,
const base::FilePath& install_dir) {
return true; // Nothing custom here.
}
base::FilePath CldComponentInstallerTraits::GetInstalledPath(
const base::FilePath& base) {
// Currently, all platforms have the file at the same location because there
// is no binary difference in the generated file on any supported platform.
// NB: This may change when 64-bit is officially supported.
return base.Append(FILE_PATH_LITERAL("_platform_specific"))
.Append(FILE_PATH_LITERAL("all"))
.Append(kCldDataFileName);
}
void CldComponentInstallerTraits::ComponentReady(
const base::Version& version,
const base::FilePath& path,
scoped_ptr<base::DictionaryValue> manifest) {
VLOG(1) << "Component ready, version " << version.GetString() << " in "
<< path.value();
SetLatestCldDataFile(GetInstalledPath(path));
}
bool CldComponentInstallerTraits::VerifyInstallation(
const base::DictionaryValue& manifest,
const base::FilePath& install_dir) const {
// We can't really do much to verify the CLD2 data file. In theory we could
// read the headers, but that won't do much other than tell us whether or
// not the headers are valid. So just check if the file exists.
const base::FilePath expected_file = GetInstalledPath(install_dir);
VLOG(1) << "Verifying install: " << expected_file.value();
const bool result = base::PathExists(expected_file);
VLOG(1) << "Verification result: " << (result ? "valid" : "invalid");
return result;
}
base::FilePath CldComponentInstallerTraits::GetBaseDirectory() const {
base::FilePath result;
PathService::Get(DIR_COMPONENT_CLD2, &result);
return result;
}
void CldComponentInstallerTraits::GetHash(std::vector<uint8_t>* hash) const {
hash->assign(kPublicKeySHA256,
kPublicKeySHA256 + arraysize(kPublicKeySHA256));
}
std::string CldComponentInstallerTraits::GetName() const {
return kCldManifestName;
}
// static
void RegisterCldComponent(ComponentUpdateService* cus) {
if (!translate::CldDataSource::IsUsingComponentDataSource()) {
// The configured CLD data source isn't the "Component" data source, so
// there is nothing to do.
return;
}
// This log line is to help with determining which kind of provider has been
// configured. See also: chrome://translate-internals
VLOG(1) << "Registering CLD component with the component update service";
scoped_ptr<ComponentInstallerTraits> traits(
new CldComponentInstallerTraits());
// |cus| will take ownership of |installer| during installer->Register(cus).
DefaultComponentInstaller* installer =
new DefaultComponentInstaller(traits.Pass());
installer->Register(cus, base::Closure());
}
void CldComponentInstallerTraits::SetLatestCldDataFile(
const base::FilePath& path) {
VLOG(1) << "Setting CLD data file location: " << path.value();
g_latest_cld_data_file.Get() = path;
translate::CldDataSource::Get()->SetCldDataFilePath(path);
}
base::FilePath CldComponentInstallerTraits::GetLatestCldDataFile() {
return g_latest_cld_data_file.Get();
}
} // namespace component_updater
|