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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
|
// 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_path.h"
#include "base/json/json_file_value_serializer.h"
#include "base/logging.h"
#include "base/path_service.h"
#include "base/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;
// One of the Pnacl component files, for checking that expected files exist.
// TODO(jvoung): perhaps replace this with a list of the expected files in the
// manifest.json. Use that to check that everything is unpacked.
// However, that would make startup detection even slower (need to check for
// more than one file!).
const char kPnaclCompilerFileName[] = "llc_nexe";
// Name of the Pnacl component specified in the manifest.
const char kPnaclManifestNamePrefix[] = "PNaCl";
// 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 arch-specific PNaCl package.
void SetPnaclHash(CrxComponent* component) {
#if defined(ARCH_CPU_X86_FAMILY)
// Define both x86_32 and x86_64, and choose below.
static const uint8 x86_sha256_hash[][32] = {
{ // This corresponds to AppID (x86-32): aealhdcgieaiikaifafholmmeooeeioj
0x04, 0x0b, 0x73, 0x26, 0x84, 0x08, 0x8a, 0x08, 0x50, 0x57,
0xeb, 0xcc, 0x4e, 0xe4, 0x48, 0xe9, 0x44, 0x2c, 0xc8, 0xa6, 0xd6,
0x96, 0x11, 0xd4, 0x2a, 0xc5, 0x26, 0x64, 0x34, 0x76, 0x3d, 0x14},
{ // This corresponds to AppID (x86-64): knlfebnofcjjnkpkapbgfphaagefndik
0xad, 0xb5, 0x41, 0xde, 0x52, 0x99, 0xda, 0xfa, 0x0f, 0x16,
0x5f, 0x70, 0x06, 0x45, 0xd3, 0x8a, 0x32, 0x20, 0x84, 0x57, 0x5c,
0x1f, 0xef, 0xb4, 0x42, 0x32, 0xce, 0x4a, 0x3c, 0x2d, 0x7e, 0x3a}
};
#if defined(ARCH_CPU_X86_64)
component->pk_hash.assign(
x86_sha256_hash[1],
&x86_sha256_hash[1][sizeof(x86_sha256_hash[1])]);
#elif defined(OS_WIN)
bool x86_64 = (base::win::OSInfo::GetInstance()->wow64_status() ==
base::win::OSInfo::WOW64_ENABLED);
if (x86_64) {
component->pk_hash.assign(
x86_sha256_hash[1],
&x86_sha256_hash[1][sizeof(x86_sha256_hash[1])]);
} else {
component->pk_hash.assign(
x86_sha256_hash[0],
&x86_sha256_hash[0][sizeof(x86_sha256_hash[0])]);
}
#else
component->pk_hash.assign(
x86_sha256_hash[0],
&x86_sha256_hash[0][sizeof(x86_sha256_hash[0])]);
#endif
#elif defined(ARCH_CPU_ARMEL)
// This corresponds to AppID: jgobdlakdbanalhiagkdgcnofkbebejj
static const uint8 arm_sha256_hash[] = {
0x96, 0xe1, 0x3b, 0x0a, 0x31, 0x0d, 0x0b, 0x78, 0x06, 0xa3,
0x62, 0xde, 0x5a, 0x14, 0x14, 0x99, 0xd4, 0xd9, 0x01, 0x85, 0xc6,
0x9a, 0xd2, 0x51, 0x90, 0xa4, 0xb4, 0x94, 0xbd, 0xb8, 0x8b, 0xe8};
component->pk_hash.assign(arm_sha256_hash,
&arm_sha256_hash[sizeof(arm_sha256_hash)]);
#elif defined(ARCH_CPU_MIPSEL)
// This is a dummy CRX hash for MIPS, so that it will at least compile.
static const uint8 mips32_sha256_hash[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
component->pk_hash.assign(mips32_sha256_hash,
&mips32_sha256_hash[sizeof(mips32_sha256_hash)]);
#else
#error "Add support for your architecture to Pnacl Component Installer."
#endif
}
// If we don't have Pnacl installed, this is the version we claim.
const char kNullVersion[] = "0.0.0.0";
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;
file_util::FileEnumerator
file_enumerator(base_dir, false, file_util::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 the PNaCl specific manifest.
base::DictionaryValue* ReadPnaclManifest(const base::FilePath& unpack_path) {
base::FilePath manifest = unpack_path.Append(
FILE_PATH_LITERAL("pnacl_public_pnacl_json"));
if (!file_util::PathExists(manifest))
return NULL;
JSONFileValueSerializer serializer(manifest);
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());
}
} // namespace
bool CheckPnaclComponentManifest(base::DictionaryValue* manifest,
base::DictionaryValue* pnacl_manifest,
Version* version_out) {
// Make sure we have the right manifest file.
std::string name;
manifest->GetStringASCII("name", &name);
// For the webstore, we've given different names to each of the
// architecture specific packages, so only the prefix is the same.
if (StartsWithASCII(kPnaclManifestNamePrefix, name, false)) {
LOG(WARNING) << "'name' field in manifest is invalid ("
<< name << ") -- missing prefix ("
<< kPnaclManifestNamePrefix << ")";
return false;
}
std::string proposed_version;
manifest->GetStringASCII("version", &proposed_version);
Version version(proposed_version.c_str());
if (!version.IsValid()) {
LOG(WARNING) << "'version' field in manifest is invalid "
<< version.GetString();
return false;
}
std::string arch;
pnacl_manifest->GetStringASCII("pnacl-arch", &arch);
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());
}
namespace {
bool PathContainsPnacl(const base::FilePath& base_path) {
// Check that at least one of the compiler files exists, for the current ISA.
std::string expected_filename("pnacl_public_");
std::string arch = OmahaQueryParams::getNaclArch();
expected_filename = expected_filename + SanitizeForPath(arch) +
"_" + kPnaclCompilerFileName;
return file_util::PathExists(base_path.AppendASCII(expected_filename));
}
} // namespace
bool PnaclComponentInstaller::Install(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.get(),
&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;
if (!PathContainsPnacl(unpack_path)) {
LOG(WARNING) << "PathContainsPnacl check failed, not installing.";
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);
PathService::Override(chrome::DIR_PNACL_COMPONENT, 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)) {
if (!PathContainsPnacl(path)) {
version = Version(kNullVersion);
} else {
PathService::Override(chrome::DIR_PNACL_COMPONENT, 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));
}
|