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
|
// Copyright (c) 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/sw_reporter_installer_win.h"
#include <stdint.h>
#include <string>
#include <vector>
#include "base/base_paths.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/logging.h"
#include "base/metrics/field_trial.h"
#include "base/metrics/histogram.h"
#include "base/metrics/sparse_histogram.h"
#include "base/path_service.h"
#include "base/prefs/pref_registry_simple.h"
#include "base/prefs/pref_service.h"
#include "base/process/kill.h"
#include "base/process/launch.h"
#include "base/task_runner_util.h"
#include "base/threading/worker_pool.h"
#include "base/time/time.h"
#include "base/win/registry.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/metrics/chrome_metrics_service_accessor.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/safe_browsing/srt_global_error_win.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/global_error/global_error_service.h"
#include "chrome/browser/ui/global_error/global_error_service_factory.h"
#include "chrome/common/pref_names.h"
#include "components/component_updater/component_updater_paths.h"
#include "components/component_updater/component_updater_service.h"
#include "components/component_updater/component_updater_utils.h"
#include "components/component_updater/default_component_installer.h"
#include "components/component_updater/pref_names.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "content/public/browser/browser_thread.h"
using content::BrowserThread;
namespace component_updater {
namespace {
// These values are used to send UMA information and are replicated in the
// histograms.xml file, so the order MUST NOT CHANGE.
enum SwReporterUmaValue {
SW_REPORTER_EXPLICIT_REQUEST = 0, // Deprecated.
SW_REPORTER_STARTUP_RETRY = 1, // Deprecated.
SW_REPORTER_RETRIED_TOO_MANY_TIMES = 2, // Deprecated.
SW_REPORTER_START_EXECUTION = 3,
SW_REPORTER_FAILED_TO_START = 4,
SW_REPORTER_REGISTRY_EXIT_CODE = 5,
SW_REPORTER_RESET_RETRIES = 6, // Deprecated.
SW_REPORTER_MAX,
};
// The maximum number of times to retry a download on startup.
const int kMaxRetry = 20;
// The number of days to wait before triggering another sw reporter run.
const int kDaysBetweenSwReporterRuns = 7;
// CRX hash. The extension id is: gkmgaooipdjhmangpemjhigmamcehddo. The hash was
// generated in Python with something like this:
// hashlib.sha256().update(open("<file>.crx").read()[16:16+294]).digest().
const uint8_t kSha256Hash[] = {0x6a, 0xc6, 0x0e, 0xe8, 0xf3, 0x97, 0xc0, 0xd6,
0xf4, 0xc9, 0x78, 0x6c, 0x0c, 0x24, 0x73, 0x3e,
0x05, 0xa5, 0x62, 0x4b, 0x2e, 0xc7, 0xb7, 0x1c,
0x5f, 0xea, 0xf0, 0x88, 0xf6, 0x97, 0x9b, 0xc7};
const base::FilePath::CharType kSwReporterExeName[] =
FILE_PATH_LITERAL("software_reporter_tool.exe");
// Where to fetch the reporter exit code in the registry.
const wchar_t kSoftwareRemovalToolRegistryKey[] =
L"Software\\Google\\Software Removal Tool";
const wchar_t kCleanerSuffixRegistryKey[] = L"Cleaner";
const wchar_t kExitCodeRegistryValueName[] = L"ExitCode";
const wchar_t kVersionRegistryValueName[] = L"Version";
const wchar_t kStartTimeRegistryValueName[] = L"StartTime";
const wchar_t kEndTimeRegistryValueName[] = L"EndTime";
// Field trial strings.
const char kSRTPromptTrialName[] = "SRTPromptFieldTrial";
const char kSRTPromptOnGroup[] = "On";
// Exit codes that identify that a cleanup is needed.
const int kCleanupNeeded = 0;
const int kPostRebootCleanupNeeded = 4;
void ReportUmaStep(SwReporterUmaValue value) {
UMA_HISTOGRAM_ENUMERATION("SoftwareReporter.Step", value, SW_REPORTER_MAX);
}
void ReportVersionWithUma(const base::Version& version) {
DCHECK(!version.components().empty());
// The minor version is the 2nd last component of the version,
// or just the first component if there is only 1.
uint32_t minor_version = 0;
if (version.components().size() > 1)
minor_version = version.components()[version.components().size() - 2];
else
minor_version = version.components()[0];
UMA_HISTOGRAM_SPARSE_SLOWLY("SoftwareReporter.MinorVersion", minor_version);
// The major version for X.Y.Z is X*256^3+Y*256+Z. If there are additional
// components, only the first three count, and if there are less than 3, the
// missing values are just replaced by zero. So 1 is equivalent 1.0.0.
DCHECK(version.components()[0] < 0x100);
uint32_t major_version = 0x1000000 * version.components()[0];
if (version.components().size() >= 2) {
DCHECK(version.components()[1] < 0x10000);
major_version += 0x100 * version.components()[1];
}
if (version.components().size() >= 3) {
DCHECK(version.components()[2] < 0x100);
major_version += version.components()[2];
}
UMA_HISTOGRAM_SPARSE_SLOWLY("SoftwareReporter.MajorVersion", major_version);
}
// This function is called on the UI thread to report the SwReporter exit code
// and then clear it from the registry as well as clear the execution state
// from the local state. This could be called from an interruptible worker
// thread so should be resilient to unexpected shutdown. |version| is provided
// so the kSwReporterPromptVersion prefs can be set.
void ReportAndClearExitCode(int exit_code, const std::string& version) {
UMA_HISTOGRAM_SPARSE_SLOWLY("SoftwareReporter.ExitCode", exit_code);
if (g_browser_process && g_browser_process->local_state()) {
g_browser_process->local_state()->SetInteger(prefs::kSwReporterLastExitCode,
exit_code);
}
if ((exit_code == kPostRebootCleanupNeeded || exit_code == kCleanupNeeded) &&
base::FieldTrialList::FindFullName(kSRTPromptTrialName) ==
kSRTPromptOnGroup) {
// Find the last active browser, which may be NULL, in which case we won't
// show the prompt this time and will wait until the next run of the
// reporter. We can't use other ways of finding a browser because we don't
// have a profile.
chrome::HostDesktopType desktop_type = chrome::GetActiveDesktop();
Browser* browser = chrome::FindLastActiveWithHostDesktopType(desktop_type);
if (browser) {
Profile* profile = browser->profile();
// Don't show the prompt again if it's been shown before for this profile.
DCHECK(profile);
const std::string prompt_version =
profile->GetPrefs()->GetString(prefs::kSwReporterPromptVersion);
if (prompt_version.empty()) {
profile->GetPrefs()->SetString(prefs::kSwReporterPromptVersion,
version);
profile->GetPrefs()->SetInteger(prefs::kSwReporterPromptReason,
exit_code);
// Now that we have a profile, make sure we have a tabbed browser since
// we need to anchor the bubble to the toolbar's wrench menu. Create one
// if none exist already.
if (browser->type() != Browser::TYPE_TABBED) {
browser = chrome::FindTabbedBrowser(profile, false, desktop_type);
if (!browser)
browser = new Browser(Browser::CreateParams(profile, desktop_type));
}
GlobalErrorService* global_error_service =
GlobalErrorServiceFactory::GetForProfile(profile);
SRTGlobalError* global_error = new SRTGlobalError(global_error_service);
// |global_error_service| takes ownership of |global_error| and keeps it
// alive until RemoveGlobalError() is called, and even then, the object
// is not destroyed, the caller of RemoveGlobalError is responsible to
// destroy it, and in the case of the SRTGlobalError, it deletes itself
// but only after the bubble has been interacted with.
global_error_service->AddGlobalError(global_error);
// Do not try to show bubble if another GlobalError is already showing
// one. The bubble will be shown once the others have been dismissed.
const GlobalErrorService::GlobalErrorList& global_errors(
global_error_service->errors());
GlobalErrorService::GlobalErrorList::const_iterator it;
for (it = global_errors.begin(); it != global_errors.end(); ++it) {
if ((*it)->GetBubbleView())
break;
}
if (it == global_errors.end())
global_error->ShowBubbleView(browser);
}
}
}
base::win::RegKey srt_key(
HKEY_CURRENT_USER, kSoftwareRemovalToolRegistryKey, KEY_WRITE);
srt_key.DeleteValue(kExitCodeRegistryValueName);
}
// This function is called from a worker thread to launch the SwReporter and
// wait for termination to collect its exit code. This task could be interrupted
// by a shutdown at anytime, so it shouldn't depend on anything external that
// could be shutdown beforehand.
void LaunchAndWaitForExit(const base::FilePath& exe_path,
const std::string& version) {
const base::CommandLine reporter_command_line(exe_path);
base::Process scan_reporter_process =
base::LaunchProcess(reporter_command_line, base::LaunchOptions());
if (!scan_reporter_process.IsValid()) {
ReportUmaStep(SW_REPORTER_FAILED_TO_START);
return;
}
ReportUmaStep(SW_REPORTER_START_EXECUTION);
int exit_code = -1;
bool success = scan_reporter_process.WaitForExit(&exit_code);
DCHECK(success);
// It's OK if this doesn't complete, the work will continue on next startup.
BrowserThread::PostTask(
BrowserThread::UI,
FROM_HERE,
base::Bind(&ReportAndClearExitCode, exit_code, version));
}
class SwReporterInstallerTraits : public ComponentInstallerTraits {
public:
explicit SwReporterInstallerTraits(PrefService* prefs) : prefs_(prefs) {}
virtual ~SwReporterInstallerTraits() {}
virtual bool VerifyInstallation(const base::DictionaryValue& manifest,
const base::FilePath& dir) const {
return base::PathExists(dir.Append(kSwReporterExeName));
}
virtual bool CanAutoUpdate() const { return true; }
virtual bool OnCustomInstall(const base::DictionaryValue& manifest,
const base::FilePath& install_dir) {
return true;
}
virtual void ComponentReady(const base::Version& version,
const base::FilePath& install_dir,
scoped_ptr<base::DictionaryValue> manifest) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
ReportVersionWithUma(version);
wcsncpy_s(version_dir_,
_MAX_PATH,
install_dir.value().c_str(),
install_dir.value().size());
// A previous run may have results in the registry, so check and report
// them if present.
std::string version_string(version.GetString());
base::win::RegKey srt_key(
HKEY_CURRENT_USER, kSoftwareRemovalToolRegistryKey, KEY_READ);
DWORD exit_code;
if (srt_key.Valid() &&
srt_key.ReadValueDW(kExitCodeRegistryValueName, &exit_code) ==
ERROR_SUCCESS) {
ReportUmaStep(SW_REPORTER_REGISTRY_EXIT_CODE);
ReportAndClearExitCode(exit_code, version_string);
}
// If we can't access local state, we can't see when we last ran, so
// just exit without running.
if (!g_browser_process || !g_browser_process->local_state())
return;
// Run the reporter if it hasn't been triggered in the
// kDaysBetweenSwReporterRuns days.
const base::Time last_time_triggered = base::Time::FromInternalValue(
g_browser_process->local_state()->GetInt64(
prefs::kSwReporterLastTimeTriggered));
if ((base::Time::Now() - last_time_triggered).InDays() >=
kDaysBetweenSwReporterRuns) {
g_browser_process->local_state()->SetInt64(
prefs::kSwReporterLastTimeTriggered,
base::Time::Now().ToInternalValue());
base::WorkerPool::PostTask(
FROM_HERE,
base::Bind(&LaunchAndWaitForExit,
install_dir.Append(kSwReporterExeName),
version_string),
true);
}
}
virtual base::FilePath GetBaseDirectory() const { return install_dir(); }
virtual void GetHash(std::vector<uint8_t>* hash) const { GetPkHash(hash); }
virtual std::string GetName() const { return "Software Reporter Tool"; }
static base::FilePath install_dir() {
// The base directory on windows looks like:
// <profile>\AppData\Local\Google\Chrome\User Data\SwReporter\.
base::FilePath result;
PathService::Get(DIR_SW_REPORTER, &result);
return result;
}
static std::string ID() {
CrxComponent component;
component.version = Version("0.0.0.0");
GetPkHash(&component.pk_hash);
return component_updater::GetCrxComponentID(component);
}
static base::FilePath VersionPath() { return base::FilePath(version_dir_); }
private:
static void GetPkHash(std::vector<uint8_t>* hash) {
DCHECK(hash);
hash->assign(kSha256Hash, kSha256Hash + sizeof(kSha256Hash));
}
PrefService* prefs_;
static wchar_t version_dir_[_MAX_PATH];
};
wchar_t SwReporterInstallerTraits::version_dir_[] = {};
} // namespace
void RegisterSwReporterComponent(ComponentUpdateService* cus,
PrefService* prefs) {
// The Sw reporter doesn't need to run if the user isn't reporting metrics and
// isn't in the SRTPrompt field trial "On" group.
if (!ChromeMetricsServiceAccessor::IsMetricsReportingEnabled() &&
base::FieldTrialList::FindFullName(kSRTPromptTrialName) !=
kSRTPromptOnGroup) {
return;
}
// Check if we have information from Cleaner and record UMA statistics.
base::string16 cleaner_key_name(kSoftwareRemovalToolRegistryKey);
cleaner_key_name.append(1, L'\\').append(kCleanerSuffixRegistryKey);
base::win::RegKey cleaner_key(
HKEY_CURRENT_USER, cleaner_key_name.c_str(), KEY_ALL_ACCESS);
// Cleaner is assumed to have run if we have a start time.
if (cleaner_key.Valid() &&
cleaner_key.HasValue(kStartTimeRegistryValueName)) {
// Get version number.
if (cleaner_key.HasValue(kVersionRegistryValueName)) {
DWORD version;
cleaner_key.ReadValueDW(kVersionRegistryValueName, &version);
UMA_HISTOGRAM_SPARSE_SLOWLY("SoftwareReporter.Cleaner.Version", version);
cleaner_key.DeleteValue(kVersionRegistryValueName);
}
// Get start & end time. If we don't have an end time, we can assume the
// cleaner has crashed.
bool completed = cleaner_key.HasValue(kEndTimeRegistryValueName);
UMA_HISTOGRAM_BOOLEAN("SoftwareReporter.Cleaner.HasCompleted", completed);
if (completed) {
int64 start_time_value;
cleaner_key.ReadInt64(kStartTimeRegistryValueName, &start_time_value);
int64 end_time_value;
cleaner_key.ReadInt64(kEndTimeRegistryValueName, &end_time_value);
cleaner_key.DeleteValue(kEndTimeRegistryValueName);
base::TimeDelta run_time(base::Time::FromInternalValue(end_time_value) -
base::Time::FromInternalValue(start_time_value));
UMA_HISTOGRAM_LONG_TIMES("SoftwareReporter.Cleaner.RunningTime",
run_time);
}
// Get exit code.
if (cleaner_key.HasValue(kExitCodeRegistryValueName)) {
DWORD exit_code;
cleaner_key.ReadValueDW(kExitCodeRegistryValueName, &exit_code);
UMA_HISTOGRAM_SPARSE_SLOWLY("SoftwareReporter.Cleaner.ExitCode",
exit_code);
cleaner_key.DeleteValue(kExitCodeRegistryValueName);
}
cleaner_key.DeleteValue(kStartTimeRegistryValueName);
}
// Install the component.
scoped_ptr<ComponentInstallerTraits> traits(
new SwReporterInstallerTraits(prefs));
// |cus| will take ownership of |installer| during installer->Register(cus).
DefaultComponentInstaller* installer =
new DefaultComponentInstaller(traits.Pass());
installer->Register(cus);
}
void RegisterPrefsForSwReporter(PrefRegistrySimple* registry) {
registry->RegisterInt64Pref(prefs::kSwReporterLastTimeTriggered, 0);
registry->RegisterIntegerPref(prefs::kSwReporterLastExitCode, -1);
}
void RegisterProfilePrefsForSwReporter(
user_prefs::PrefRegistrySyncable* registry) {
registry->RegisterIntegerPref(
prefs::kSwReporterPromptReason,
-1,
user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
registry->RegisterStringPref(
prefs::kSwReporterPromptVersion,
"",
user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
}
} // namespace component_updater
|