Chromium Code Reviews| Index: chrome/installer/setup/setup_main.cc |
| diff --git a/chrome/installer/setup/setup_main.cc b/chrome/installer/setup/setup_main.cc |
| index 29cdf06f0c723e32b61f32c47e91c349d2c39730..c98c07dc052a0779b76b1c0f3f752b7e41706b40 100644 |
| --- a/chrome/installer/setup/setup_main.cc |
| +++ b/chrome/installer/setup/setup_main.cc |
| @@ -80,9 +80,6 @@ using installer::Product; |
| using installer::ProductState; |
| using installer::Products; |
| -const wchar_t kGoogleUpdatePipeName[] = L"\\\\.\\pipe\\GoogleCrashServices\\"; |
| -const wchar_t kSystemPrincipalSid[] = L"S-1-5-18"; |
| - |
| const MINIDUMP_TYPE kLargerDumpType = static_cast<MINIDUMP_TYPE>( |
| MiniDumpWithProcessThreadData | // Get PEB and TEB. |
| MiniDumpWithUnloadedModules | // Get unloaded modules when available. |
| @@ -90,6 +87,89 @@ const MINIDUMP_TYPE kLargerDumpType = static_cast<MINIDUMP_TYPE>( |
| namespace { |
| +const wchar_t kGoogleUpdatePipeName[] = L"\\\\.\\pipe\\GoogleCrashServices\\"; |
| +const wchar_t kSystemPrincipalSid[] = L"S-1-5-18"; |
| +const wchar_t kDisplayVersion[] = L"DisplayVersion"; |
| +const wchar_t kMsiInstallRegistryPrefix[] = |
| + L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Installer\\UserData\\" |
| + L"S-1-5-18\\Products\\"; |
| +const wchar_t kMsiInstallRegistryPostfix[] = L"\\InstallProperties"; |
| +const wchar_t kMsiUninstallRegistryPrefix[] = |
| + L"SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\"; |
|
grt (UTC plus 2)
2015/09/11 20:07:01
apologies for missing this earlier: the KEY_WOW64_
bcwhite
2015/09/12 03:49:23
Done.
|
| +const wchar_t kMsiUninstallRegistryPostfix[] = L""; |
| +const wchar_t kMsiDisplayVersionOverwriteDelay[] = L"10"; // seconds as string |
| + |
| +// Overwrite an existing DisplayVersion as written by the MSI installer |
| +// with the real version number of Chrome. |
| +LONG OverwriteDisplayVersion(const base::string16& path, |
| + const base::string16& value) { |
| + base::win::RegKey key; |
| + LONG result = 0; |
| + base::string16 existing; |
| + if ((result = key.Open(HKEY_LOCAL_MACHINE, path.c_str(), |
| + KEY_QUERY_VALUE | KEY_SET_VALUE | KEY_WOW64_64KEY)) |
| + != ERROR_SUCCESS) { |
| + LOG(ERROR) << "Failed to set DisplayVersion: " << path << " not found"; |
| + return result; |
| + } |
| + if ((result = key.ReadValue(kDisplayVersion, &existing)) != ERROR_SUCCESS) { |
| + LOG(ERROR) << "Failed to set DisplayVersion: " << kDisplayVersion |
| + << " not found under " << path; |
| + return result; |
| + } |
| + if ((result = key.WriteValue(kDisplayVersion, value.c_str())) |
| + != ERROR_SUCCESS) { |
| + LOG(ERROR) << "Failed to set DisplayVersion: " << kDisplayVersion |
| + << " could not be written under " << path; |
| + return result; |
| + } |
| + VLOG(1) << "Set DisplayVersion at " << path << " to " << value |
| + << " from " << existing; |
| + return ERROR_SUCCESS; |
| +} |
| + |
| +LONG OverwriteDisplayVersions(const base::string16& product, |
| + const base::string16& value) { |
| + // The version is held in two places. Frist change it in the MSI Installer |
| + // registry entry. It is held under a "squashed guid" key. |
| + base::string16 reg_path = base::StringPrintf( |
| + L"%s%s%s", kMsiInstallRegistryPrefix, installer::GuidToSquid(product), |
|
grt (UTC plus 2)
2015/09/11 20:07:01
what i had in mind was a format string of:
L"S
bcwhite
2015/09/12 03:49:23
Done.
|
| + kMsiInstallRegistryPostfix); |
| + LONG result1 = OverwriteDisplayVersion(reg_path, value); |
| + |
| + // The display version also exists under the Unininstall registry key with |
| + // the original guid. |
| + reg_path = base::StringPrintf( |
| + L"%s{%s}%s", kMsiUninstallRegistryPrefix, product, |
|
grt (UTC plus 2)
2015/09/11 20:07:01
L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Un
bcwhite
2015/09/12 03:49:23
Done.
|
| + kMsiUninstallRegistryPostfix); |
| + LONG result2 = OverwriteDisplayVersion(reg_path, value); |
| + |
| + return result1 != ERROR_SUCCESS ? result1 : result2; |
| +} |
| + |
| +void DelayedOverwriteDisplayVersions(const base::FilePath& setup_exe, |
| + const base::string16& id, |
| + const Version& version) { |
| + // This process has to be able to exit so we launch ourselves with |
| + // instructions on what to do and then return. |
| + base::CommandLine command_line(setup_exe); |
| + command_line.AppendSwitchNative( |
| + installer::switches::kSetDisplayVersionProduct, id); |
| + command_line.AppendSwitchASCII(installer::switches::kSetDisplayVersionValue, |
| + version.GetString()); |
| + command_line.AppendSwitchNative(installer::switches::kDelay, |
| + kMsiDisplayVersionOverwriteDelay); |
| + |
| + base::LaunchOptions launch_options; |
| + launch_options.force_breakaway_from_job_ = true; |
| + base::Process writer = base::LaunchProcess(command_line, launch_options); |
| + if (!writer.IsValid()) { |
| + PLOG(ERROR) << "Failed to set DisplayVersion: " |
| + << "could not launch subprocess to make desired changes."; |
| + LOG(ERROR) << command_line.GetCommandLineString(); |
|
grt (UTC plus 2)
2015/09/11 20:07:01
nit: merge this into the previous log message.
bcwhite
2015/09/12 03:49:23
Done.
|
| + } |
| +} |
| + |
| // Returns NULL if no compressed archive is available for processing, otherwise |
| // returns a patch helper configured to uncompress and patch. |
| scoped_ptr<installer::ArchivePatchHelper> CreateChromeArchiveHelper( |
| @@ -920,6 +1000,18 @@ bool HandleNonInstallCmdLineOptions(const InstallationState& original_state, |
| const base::CommandLine& cmd_line, |
| InstallerState* installer_state, |
| int* exit_code) { |
| + // This option is independent of all others so doesn't belong in the if/else |
| + // block below. |
| + if (cmd_line.HasSwitch(installer::switches::kDelay)) { |
| + const std::string delay_seconds_string( |
| + cmd_line.GetSwitchValueASCII(installer::switches::kDelay)); |
| + int delay_seconds; |
| + if (base::StringToInt(delay_seconds_string, &delay_seconds) && |
| + delay_seconds > 0) { |
| + base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(delay_seconds)); |
| + } |
| + } |
| + |
| // TODO(gab): Add a local |status| variable which each block below sets; |
| // only determine the |exit_code| from |status| at the end (this will allow |
| // this method to validate that |
| @@ -1163,6 +1255,15 @@ bool HandleNonInstallCmdLineOptions(const InstallationState& original_state, |
| bool updates_enabled = GoogleUpdateSettings::ReenableAutoupdates(); |
| *exit_code = updates_enabled ? installer::REENABLE_UPDATES_SUCCEEDED : |
| installer::REENABLE_UPDATES_FAILED; |
| + } else if (cmd_line.HasSwitch( |
| + installer::switches::kSetDisplayVersionProduct)) { |
| + const base::string16 registry_product( |
| + cmd_line.GetSwitchValueNative( |
| + installer::switches::kSetDisplayVersionProduct)); |
| + const base::string16 registry_value( |
| + cmd_line.GetSwitchValueNative( |
| + installer::switches::kSetDisplayVersionValue)); |
| + *exit_code = OverwriteDisplayVersions(registry_product, registry_value); |
| } else { |
| handled = false; |
| } |
| @@ -1553,13 +1654,24 @@ InstallStatus InstallProductsHelper(const InstallationState& original_state, |
| } |
| } |
| - // If installation completed successfully, return the path to the directory |
| - // containing the newly installed setup.exe and uncompressed archive if the |
| - // caller requested it. |
| - if (installer_directory && |
| - InstallUtil::GetInstallReturnCode(install_status) == 0) { |
| - *installer_directory = |
| - installer_state.GetInstallerDirectory(*installer_version); |
| + // If the installation completed successfully... |
| + if (InstallUtil::GetInstallReturnCode(install_status) == 0) { |
| + // Update the DisplayVersion created by an MSI-based install. |
| + std::string install_id; |
| + if (prefs.GetString(installer::master_preferences::kMsiProductId, |
| + &install_id)) { |
| + base::FilePath new_setup = |
| + installer_state.GetInstallerDirectory(*installer_version) |
| + .Append(kSetupExe); |
| + DelayedOverwriteDisplayVersions( |
| + new_setup, base::ASCIIToUTF16(install_id), *installer_version); |
| + } |
| + // Return the path to the directory containing the newly installed |
| + // setup.exe and uncompressed archive if the caller requested it. |
| + if (installer_directory) { |
| + *installer_directory = |
| + installer_state.GetInstallerDirectory(*installer_version); |
| + } |
| } |
| // temp_path's dtor will take care of deleting or scheduling itself for |