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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
|
// Copyright (c) 2012 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/pnacl/pnacl_component_installer.h"
#include "base/base_paths.h"
#include "base/bind.h"
#include "base/command_line.h"
#include "base/compiler_specific.h"
#include "base/file_util.h"
#include "base/files/file_enumerator.h"
#include "base/files/file_path.h"
#include "base/json/json_file_value_serializer.h"
#include "base/logging.h"
#include "base/path_service.h"
#include "base/strings/string_util.h"
#include "base/values.h"
#include "base/version.h"
#include "base/win/windows_version.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/component_updater/component_updater_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/omaha_query_params/omaha_query_params.h"
#include "content/public/browser/browser_thread.h"
using chrome::OmahaQueryParams;
using content::BrowserThread;
namespace {
// If PNaCl isn't installed yet, but a user is running chrome with
// --enable-pnacl, this is the amount of time to wait before starting
// a background install.
const int kInitialDelaySeconds = 10;
// Name of the Pnacl component specified in the manifest.
const char kPnaclManifestName[] = "PNaCl Translator";
// Sanitize characters from Pnacl Arch value so that they can be used
// in path names. This should only be characters in the set: [a-z0-9_].
// Keep in sync with chrome/browser/nacl_host/nacl_file_host.
std::string SanitizeForPath(const std::string& input) {
std::string result;
ReplaceChars(input, "-", "_", &result);
return result;
}
// Set the component's hash to the multi-CRX PNaCl package.
void SetPnaclHash(CrxComponent* component) {
static const uint8 sha256_hash[32] =
{ // This corresponds to AppID: hnimpnehoodheedghdeeijklkeaacbdc
0x7d, 0x8c, 0xfd, 0x47, 0xee, 0x37, 0x44, 0x36, 0x73, 0x44,
0x89, 0xab, 0xa4, 0x00, 0x21, 0x32, 0x4a, 0x06, 0x06, 0xf1, 0x51,
0x3c, 0x51, 0xba, 0x31, 0x2f, 0xbc, 0xb3, 0x99, 0x07, 0xdc, 0x9c};
component->pk_hash.assign(sha256_hash,
&sha256_hash[arraysize(sha256_hash)]);
}
// If we don't have Pnacl installed, this is the version we claim.
const char kNullVersion[] = "0.0.0.0";
// PNaCl is packaged as a multi-CRX. This returns the platform-specific
// subdirectory that is part of that multi-CRX.
base::FilePath GetPlatformDir(const base::FilePath& base_path) {
std::string arch = SanitizeForPath(OmahaQueryParams::getNaclArch());
return base_path.AppendASCII("_platform_specific").AppendASCII(arch);
}
// Tell the rest of the world where to find the platform-specific PNaCl files.
void OverrideDirPnaclComponent(const base::FilePath& base_path) {
PathService::Override(chrome::DIR_PNACL_COMPONENT,
GetPlatformDir(base_path));
}
bool GetLatestPnaclDirectory(PnaclComponentInstaller* pci,
base::FilePath* latest_dir,
Version* latest_version,
std::vector<base::FilePath>* older_dirs) {
// Enumerate all versions starting from the base directory.
base::FilePath base_dir = pci->GetPnaclBaseDirectory();
bool found = false;
base::FileEnumerator
file_enumerator(base_dir, false, base::FileEnumerator::DIRECTORIES);
for (base::FilePath path = file_enumerator.Next(); !path.value().empty();
path = file_enumerator.Next()) {
Version version(path.BaseName().MaybeAsASCII());
if (!version.IsValid())
continue;
if (found) {
if (version.CompareTo(*latest_version) > 0) {
older_dirs->push_back(*latest_dir);
*latest_dir = path;
*latest_version = version;
} else {
older_dirs->push_back(path);
}
} else {
*latest_version = version;
*latest_dir = path;
found = true;
}
}
return found;
}
// Read a manifest file in.
base::DictionaryValue* ReadJSONManifest(
const base::FilePath& manifest_path) {
JSONFileValueSerializer serializer(manifest_path);
std::string error;
scoped_ptr<base::Value> root(serializer.Deserialize(NULL, &error));
if (!root.get())
return NULL;
if (!root->IsType(base::Value::TYPE_DICTIONARY))
return NULL;
return static_cast<base::DictionaryValue*>(root.release());
}
// Read the PNaCl specific manifest.
base::DictionaryValue* ReadPnaclManifest(const base::FilePath& unpack_path) {
base::FilePath manifest_path = GetPlatformDir(unpack_path).AppendASCII(
"pnacl_public_pnacl_json");
if (!file_util::PathExists(manifest_path))
return NULL;
return ReadJSONManifest(manifest_path);
}
// Read the component's manifest.json.
base::DictionaryValue* ReadComponentManifest(
const base::FilePath& unpack_path) {
base::FilePath manifest_path = unpack_path.Append(
FILE_PATH_LITERAL("manifest.json"));
if (!file_util::PathExists(manifest_path))
return NULL;
return ReadJSONManifest(manifest_path);
}
} // namespace
// Check that the component's manifest is for PNaCl, and check the
// PNaCl manifest indicates this is the correct arch-specific package.
bool CheckPnaclComponentManifest(const base::DictionaryValue& manifest,
const base::DictionaryValue& pnacl_manifest,
Version* version_out) {
// Make sure we have the right |manifest| file.
std::string name;
if (!manifest.GetStringASCII("name", &name)) {
LOG(WARNING) << "'name' field is missing from manifest!";
return false;
}
// For the webstore, we've given different names to each of the
// architecture specific packages (and test/QA vs not test/QA)
// so only part of it is the same.
if (name.find(kPnaclManifestName) == std::string::npos) {
LOG(WARNING) << "'name' field in manifest is invalid ("
<< name << ") -- missing ("
<< kPnaclManifestName << ")";
return false;
}
std::string proposed_version;
if (!manifest.GetStringASCII("version", &proposed_version)) {
LOG(WARNING) << "'version' field is missing from manifest!";
return false;
}
Version version(proposed_version.c_str());
if (!version.IsValid()) {
LOG(WARNING) << "'version' field in manifest is invalid "
<< version.GetString();
return false;
}
// Now check the |pnacl_manifest|.
std::string arch;
if (!pnacl_manifest.GetStringASCII("pnacl-arch", &arch)) {
LOG(WARNING) << "'pnacl-arch' field is missing from pnacl-manifest!";
return false;
}
if (arch.compare(OmahaQueryParams::getNaclArch()) != 0) {
LOG(WARNING) << "'pnacl-arch' field in manifest is invalid ("
<< arch << " vs " << OmahaQueryParams::getNaclArch() << ")";
return false;
}
*version_out = version;
return true;
}
PnaclComponentInstaller::PnaclComponentInstaller()
: per_user_(false),
cus_(NULL) {
#if defined(OS_CHROMEOS)
per_user_ = true;
#endif
}
PnaclComponentInstaller::~PnaclComponentInstaller() {
}
void PnaclComponentInstaller::OnUpdateError(int error) {
NOTREACHED() << "Pnacl update error: " << error;
}
// Pnacl components have the version encoded in the path itself:
// <profile>\AppData\Local\Google\Chrome\User Data\pnacl\0.1.2.3\.
// and the base directory will be:
// <profile>\AppData\Local\Google\Chrome\User Data\pnacl\.
base::FilePath PnaclComponentInstaller::GetPnaclBaseDirectory() {
// For ChromeOS, temporarily make this user-dependent (for integrity) until
// we find a better solution.
// This is not ideal because of the following:
// (a) We end up with per-user copies instead of a single copy
// (b) The profile can change as users log in to different accounts
// so we need to watch for user-login-events (see pnacl_profile_observer.h).
if (per_user_) {
DCHECK(!current_profile_path_.empty());
base::FilePath path = current_profile_path_.Append(
FILE_PATH_LITERAL("pnacl"));
return path;
} else {
base::FilePath result;
CHECK(PathService::Get(chrome::DIR_PNACL_BASE, &result));
return result;
}
}
void PnaclComponentInstaller::OnProfileChange() {
// On chromeos, we want to find the --login-profile=<foo> dir.
// Even though the path does vary between users, the content
// changes when logging out and logging in.
ProfileManager* pm = g_browser_process->profile_manager();
current_profile_path_ = pm->user_data_dir().Append(
pm->GetInitialProfileDir());
}
bool PnaclComponentInstaller::Install(const base::DictionaryValue& manifest,
const base::FilePath& unpack_path) {
scoped_ptr<base::DictionaryValue> pnacl_manifest(
ReadPnaclManifest(unpack_path));
if (pnacl_manifest == NULL) {
LOG(WARNING) << "Failed to read pnacl manifest.";
return false;
}
Version version;
if (!CheckPnaclComponentManifest(manifest, *pnacl_manifest, &version)) {
LOG(WARNING) << "CheckPnaclComponentManifest failed, not installing.";
return false;
}
// Don't install if the current version is actually newer.
if (current_version().CompareTo(version) > 0)
return false;
// Passed the basic tests. Time to install it.
base::FilePath path = GetPnaclBaseDirectory().AppendASCII(
version.GetString());
if (file_util::PathExists(path)) {
LOG(WARNING) << "Target path already exists, not installing.";
return false;
}
if (!file_util::Move(unpack_path, path)) {
LOG(WARNING) << "Move failed, not installing.";
return false;
}
// Installation is done. Now tell the rest of chrome (just the path service
// for now). TODO(jvoung): we need notifications if someone surfed to a
// Pnacl webpage and Pnacl was just installed at this time. They should
// then be able to reload the page and retry (or something).
// See: http://code.google.com/p/chromium/issues/detail?id=107438
set_current_version(version);
OverrideDirPnaclComponent(path);
return true;
}
namespace {
void DoCheckForUpdate(ComponentUpdateService* cus,
const CrxComponent& pnacl) {
if (cus->CheckForUpdateSoon(pnacl) != ComponentUpdateService::kOk) {
LOG(WARNING) << "Pnacl check for update failed.";
}
}
// Finally, do the registration with the right version number.
void FinishPnaclUpdateRegistration(const Version& current_version,
PnaclComponentInstaller* pci) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
CrxComponent pnacl_component;
pnacl_component.version = current_version;
pnacl_component.name = "pnacl";
pnacl_component.installer = pci;
pci->set_current_version(current_version);
SetPnaclHash(&pnacl_component);
ComponentUpdateService::Status status =
pci->cus()->RegisterComponent(pnacl_component);
if (status != ComponentUpdateService::kOk
&& status != ComponentUpdateService::kReplaced) {
NOTREACHED() << "Pnacl component registration failed.";
}
// If PNaCl is not yet installed but it is requested by --enable-pnacl,
// we want it to be available "soon", so kick off an update check
// earlier than usual.
Version null_version(kNullVersion);
if (pci->current_version().Equals(null_version)) {
BrowserThread::PostDelayedTask(
BrowserThread::UI, FROM_HERE,
base::Bind(DoCheckForUpdate, pci->cus(), pnacl_component),
base::TimeDelta::FromSeconds(kInitialDelaySeconds));
}
}
// Check if there is an existing version on disk first to know when
// a hosted version is actually newer.
void StartPnaclUpdateRegistration(PnaclComponentInstaller* pci) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
base::FilePath path = pci->GetPnaclBaseDirectory();
if (!file_util::PathExists(path)) {
if (!file_util::CreateDirectory(path)) {
NOTREACHED() << "Could not create base Pnacl directory.";
return;
}
}
Version version(kNullVersion);
std::vector<base::FilePath> older_dirs;
if (GetLatestPnaclDirectory(pci, &path, &version, &older_dirs)) {
scoped_ptr<base::DictionaryValue> manifest(
ReadComponentManifest(path));
scoped_ptr<base::DictionaryValue> pnacl_manifest(
ReadPnaclManifest(path));
Version manifest_version;
// Check that the component manifest and PNaCl manifest files
// are legit, and that the indicated version matches the one
// encoded within the path name.
if (manifest == NULL || pnacl_manifest == NULL
|| !CheckPnaclComponentManifest(*manifest,
*pnacl_manifest,
&manifest_version)
|| !version.Equals(manifest_version)) {
version = Version(kNullVersion);
} else {
OverrideDirPnaclComponent(path);
}
}
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
base::Bind(&FinishPnaclUpdateRegistration, version, pci));
// Remove older versions of PNaCl.
for (std::vector<base::FilePath>::iterator iter = older_dirs.begin();
iter != older_dirs.end(); ++iter) {
file_util::Delete(*iter, true);
}
}
void GetProfileInformation(PnaclComponentInstaller* pci) {
// Bail if not logged in yet.
if (!g_browser_process->profile_manager()->IsLoggedIn()) {
return;
}
pci->OnProfileChange();
BrowserThread::PostTask(
BrowserThread::FILE, FROM_HERE,
base::Bind(&StartPnaclUpdateRegistration, pci));
}
} // namespace
void PnaclComponentInstaller::RegisterPnaclComponent(
ComponentUpdateService* cus,
const CommandLine& command_line) {
// Only register when given the right flag. This is important since
// we do an early component updater check above (in DoCheckForUpdate).
if (command_line.HasSwitch(switches::kEnablePnacl)) {
cus_ = cus;
// If per_user, create a profile observer to watch for logins.
// Only do so after cus_ is set to something non-null.
if (per_user_ && !profile_observer_) {
profile_observer_.reset(new PnaclProfileObserver(this));
}
if (per_user_) {
// Figure out profile information, before proceeding to look for files.
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
base::Bind(&GetProfileInformation, this));
} else {
BrowserThread::PostTask(
BrowserThread::FILE, FROM_HERE,
base::Bind(&StartPnaclUpdateRegistration, this));
}
}
}
void PnaclComponentInstaller::ReRegisterPnacl() {
// No need to check the commandline flags again here.
// We could only have gotten here after RegisterPnaclComponent
// found --enable-pnacl, since that is where we create the profile_observer_,
// which in turn calls ReRegisterPnacl.
DCHECK(per_user_);
// Figure out profile information, before proceeding to look for files.
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
base::Bind(&GetProfileInformation, this));
}
|