| // 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/installer/setup/install.h" |
| |
| #include <windows.h> |
| #include <shlobj.h> |
| #include <time.h> |
| |
| #include <memory> |
| #include <string> |
| |
| #include "base/command_line.h" |
| #include "base/files/file_path.h" |
| #include "base/files/file_util.h" |
| #include "base/logging.h" |
| #include "base/numerics/safe_conversions.h" |
| #include "base/process/launch.h" |
| #include "base/strings/string_util.h" |
| #include "base/strings/stringprintf.h" |
| #include "base/strings/utf_string_conversions.h" |
| #include "base/win/shortcut.h" |
| #include "chrome/install_static/install_details.h" |
| #include "chrome/installer/setup/install_worker.h" |
| #include "chrome/installer/setup/installer_crash_reporting.h" |
| #include "chrome/installer/setup/installer_state.h" |
| #include "chrome/installer/setup/setup_constants.h" |
| #include "chrome/installer/setup/setup_util.h" |
| #include "chrome/installer/setup/update_active_setup_version_work_item.h" |
| #include "chrome/installer/util/beacons.h" |
| #include "chrome/installer/util/browser_distribution.h" |
| #include "chrome/installer/util/create_reg_key_work_item.h" |
| #include "chrome/installer/util/delete_after_reboot_helper.h" |
| #include "chrome/installer/util/delete_old_versions.h" |
| #include "chrome/installer/util/install_util.h" |
| #include "chrome/installer/util/installation_state.h" |
| #include "chrome/installer/util/master_preferences.h" |
| #include "chrome/installer/util/master_preferences_constants.h" |
| #include "chrome/installer/util/util_constants.h" |
| #include "chrome/installer/util/work_item.h" |
| #include "chrome/installer/util/work_item_list.h" |
| |
| namespace { |
| |
| void LogShortcutOperation(ShellUtil::ShortcutLocation location, |
| BrowserDistribution* dist, |
| const ShellUtil::ShortcutProperties& properties, |
| ShellUtil::ShortcutOperation operation, |
| bool failed) { |
| // ShellUtil::SHELL_SHORTCUT_UPDATE_EXISTING should not be used at install and |
| // thus this method does not handle logging a message for it. |
| DCHECK(operation != ShellUtil::SHELL_SHORTCUT_UPDATE_EXISTING); |
| std::string message; |
| if (failed) |
| message.append("Failed: "); |
| message.append( |
| (operation == ShellUtil::SHELL_SHORTCUT_CREATE_ALWAYS || |
| operation == ShellUtil::SHELL_SHORTCUT_CREATE_IF_NO_SYSTEM_LEVEL) ? |
| "Creating " : "Overwriting "); |
| if (failed && operation == ShellUtil::SHELL_SHORTCUT_REPLACE_EXISTING) |
| message.append("(maybe the shortcut doesn't exist?) "); |
| message.append((properties.level == ShellUtil::CURRENT_USER) ? "per-user " : |
| "all-users "); |
| switch (location) { |
| case ShellUtil::SHORTCUT_LOCATION_DESKTOP: |
| message.append("Desktop "); |
| break; |
| case ShellUtil::SHORTCUT_LOCATION_QUICK_LAUNCH: |
| message.append("Quick Launch "); |
| break; |
| case ShellUtil::SHORTCUT_LOCATION_START_MENU_ROOT: |
| message.append("Start menu "); |
| break; |
| case ShellUtil::SHORTCUT_LOCATION_START_MENU_CHROME_DIR_DEPRECATED: |
| message.append("Start menu/" + |
| base::UTF16ToUTF8(dist->GetStartMenuShortcutSubfolder( |
| BrowserDistribution::SUBFOLDER_CHROME)) + |
| " "); |
| break; |
| case ShellUtil::SHORTCUT_LOCATION_START_MENU_CHROME_APPS_DIR: |
| message.append("Start menu/" + |
| base::UTF16ToUTF8(dist->GetStartMenuShortcutSubfolder( |
| BrowserDistribution::SUBFOLDER_APPS)) + |
| " "); |
| break; |
| default: |
| NOTREACHED(); |
| } |
| |
| message.push_back('"'); |
| if (properties.has_shortcut_name()) |
| message.append(base::UTF16ToUTF8(properties.shortcut_name)); |
| else |
| message.append(base::UTF16ToUTF8(dist->GetDisplayName())); |
| message.push_back('"'); |
| |
| message.append(" shortcut to "); |
| message.append(base::UTF16ToUTF8(properties.target.value())); |
| if (properties.has_arguments()) |
| message.append(base::UTF16ToUTF8(properties.arguments)); |
| |
| if (properties.pin_to_taskbar && base::win::CanPinShortcutToTaskbar()) |
| message.append(" and pinning to the taskbar"); |
| |
| message.push_back('.'); |
| |
| if (failed) |
| LOG(WARNING) << message; |
| else |
| VLOG(1) << message; |
| } |
| |
| void ExecuteAndLogShortcutOperation( |
| ShellUtil::ShortcutLocation location, |
| BrowserDistribution* dist, |
| const ShellUtil::ShortcutProperties& properties, |
| ShellUtil::ShortcutOperation operation) { |
| LogShortcutOperation(location, dist, properties, operation, false); |
| if (!ShellUtil::CreateOrUpdateShortcut(location, dist, properties, |
| operation)) { |
| LogShortcutOperation(location, dist, properties, operation, true); |
| } |
| } |
| |
| void AddChromeToMediaPlayerList() { |
| base::string16 reg_path(installer::kMediaPlayerRegPath); |
| // registry paths can also be appended like file system path |
| reg_path.push_back(base::FilePath::kSeparators[0]); |
| reg_path.append(installer::kChromeExe); |
| VLOG(1) << "Adding Chrome to Media player list at " << reg_path; |
| std::unique_ptr<WorkItem> work_item(WorkItem::CreateCreateRegKeyWorkItem( |
| HKEY_LOCAL_MACHINE, reg_path, WorkItem::kWow64Default)); |
| |
| // if the operation fails we log the error but still continue |
| if (!work_item.get()->Do()) |
| LOG(ERROR) << "Could not add Chrome to media player inclusion list."; |
| } |
| |
| // Copy master_preferences file provided to installer, in the same folder |
| // as chrome.exe so Chrome first run can find it. This function will be called |
| // only on the first install of Chrome. |
| void CopyPreferenceFileForFirstRun( |
| const installer::InstallerState& installer_state, |
| const base::FilePath& prefs_source_path) { |
| base::FilePath prefs_dest_path(installer_state.target_path().AppendASCII( |
| installer::kDefaultMasterPrefs)); |
| if (!base::CopyFile(prefs_source_path, prefs_dest_path)) { |
| VLOG(1) << "Failed to copy master preferences from:" |
| << prefs_source_path.value() << " gle: " << ::GetLastError(); |
| } |
| } |
| |
| // This function installs a new version of Chrome to the specified location. |
| // |
| // setup_path: Path to the executable (setup.exe) as it will be copied |
| // to Chrome install folder after install is complete |
| // archive_path: Path to the archive (chrome.7z) as it will be copied |
| // to Chrome install folder after install is complete |
| // src_path: the path that contains a complete and unpacked Chrome package |
| // to be installed. |
| // temp_path: the path of working directory used during installation. This path |
| // does not need to exist. |
| // new_version: new Chrome version that needs to be installed |
| // current_version: returns the current active version (if any) |
| // |
| // This function makes best effort to do installation in a transactional |
| // manner. If failed it tries to rollback all changes on the file system |
| // and registry. For example, if package exists before calling the |
| // function, it rolls back all new file and directory changes under |
| // package. If package does not exist before calling the function |
| // (typical new install), the function creates package during install |
| // and removes the whole directory during rollback. |
| installer::InstallStatus InstallNewVersion( |
| const installer::InstallationState& original_state, |
| const installer::InstallerState& installer_state, |
| const base::FilePath& setup_path, |
| const base::FilePath& archive_path, |
| const base::FilePath& src_path, |
| const base::FilePath& temp_path, |
| const base::Version& new_version, |
| std::unique_ptr<base::Version>* current_version, |
| bool is_downgrade_allowed) { |
| DCHECK(current_version); |
| |
| installer_state.SetStage(installer::BUILDING); |
| |
| current_version->reset(installer_state.GetCurrentVersion(original_state)); |
| installer::SetCurrentVersionCrashKey(current_version->get()); |
| |
| std::unique_ptr<WorkItemList> install_list(WorkItem::CreateWorkItemList()); |
| |
| AddInstallWorkItems(original_state, |
| installer_state, |
| setup_path, |
| archive_path, |
| src_path, |
| temp_path, |
| current_version->get(), |
| new_version, |
| install_list.get()); |
| |
| base::FilePath new_chrome_exe( |
| installer_state.target_path().Append(installer::kChromeNewExe)); |
| |
| installer_state.SetStage(installer::EXECUTING); |
| |
| if (!install_list->Do()) { |
| installer_state.SetStage(installer::ROLLINGBACK); |
| installer::InstallStatus result = |
| base::PathExists(new_chrome_exe) && current_version->get() && |
| new_version == *current_version->get() ? |
| installer::SAME_VERSION_REPAIR_FAILED : |
| installer::INSTALL_FAILED; |
| LOG(ERROR) << "Install failed, rolling back... result: " << result; |
| install_list->Rollback(); |
| LOG(ERROR) << "Rollback complete. "; |
| return result; |
| } |
| |
| if (!current_version->get()) { |
| VLOG(1) << "First install of version " << new_version; |
| return installer::FIRST_INSTALL_SUCCESS; |
| } |
| |
| if (new_version == **current_version) { |
| VLOG(1) << "Install repaired of version " << new_version; |
| return installer::INSTALL_REPAIRED; |
| } |
| |
| bool new_chrome_exe_exists = base::PathExists(new_chrome_exe); |
| if (new_version > **current_version) { |
| if (new_chrome_exe_exists) { |
| VLOG(1) << "Version updated to " << new_version |
| << " while running " << **current_version; |
| return installer::IN_USE_UPDATED; |
| } |
| VLOG(1) << "Version updated to " << new_version; |
| return installer::NEW_VERSION_UPDATED; |
| } |
| |
| if (is_downgrade_allowed) { |
| if (new_chrome_exe_exists) { |
| VLOG(1) << "Version downgrades to " << new_version << " while running " |
| << **current_version; |
| return installer::IN_USE_DOWNGRADE; |
| } |
| VLOG(1) << "Version downgrades to " << new_version; |
| return installer::OLD_VERSION_DOWNGRADE; |
| } |
| |
| LOG(ERROR) << "Not sure how we got here while updating" |
| << ", new version: " << new_version |
| << ", old version: " << **current_version; |
| |
| return installer::INSTALL_FAILED; |
| } |
| |
| } // namespace |
| |
| namespace installer { |
| |
| void EscapeXmlAttributeValueInSingleQuotes(base::string16* att_value) { |
| base::ReplaceChars(*att_value, base::ASCIIToUTF16("&"), |
| base::ASCIIToUTF16("&"), att_value); |
| base::ReplaceChars(*att_value, base::ASCIIToUTF16("'"), |
| base::ASCIIToUTF16("'"), att_value); |
| base::ReplaceChars(*att_value, base::ASCIIToUTF16("<"), |
| base::ASCIIToUTF16("<"), att_value); |
| } |
| |
| bool CreateVisualElementsManifest(const base::FilePath& src_path, |
| const base::Version& version) { |
| // Construct the relative path to the versioned VisualElements directory. |
| base::string16 elements_dir(base::ASCIIToUTF16(version.GetString())); |
| elements_dir.push_back(base::FilePath::kSeparators[0]); |
| elements_dir.append(installer::kVisualElements); |
| |
| // Some distributions of Chromium may not include visual elements. Only |
| // proceed if this distribution does. |
| if (!base::PathExists(src_path.Append(elements_dir))) { |
| VLOG(1) << "No visual elements found, not writing " |
| << installer::kVisualElementsManifest << " to " << src_path.value(); |
| return true; |
| } else { |
| // A printf-style format string for generating the visual elements |
| // manifest. Required arguments, in order, are: |
| // - Localized display name for the product. |
| // - Relative path to the VisualElements directory, three times. |
| static const char kManifestTemplate[] = |
| "<Application " |
| "xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>\r\n" |
| " <VisualElements\r\n" |
| " ShowNameOnSquare150x150Logo='on'\r\n" |
| " Square150x150Logo='%ls\\Logo%ls.png'\r\n" |
| " Square70x70Logo='%ls\\SmallLogo%ls.png'\r\n" |
| " Square44x44Logo='%ls\\SmallLogo%ls.png'\r\n" |
| " ForegroundText='light'\r\n" |
| " BackgroundColor='#212121'/>\r\n" |
| "</Application>\r\n"; |
| |
| const base::string16 manifest_template( |
| base::ASCIIToUTF16(kManifestTemplate)); |
| |
| BrowserDistribution* dist = BrowserDistribution::GetDistribution(); |
| // TODO(grt): http://crbug.com/75152 Write a reference to a localized |
| // resource for |display_name|. |
| base::string16 display_name(dist->GetDisplayName()); |
| EscapeXmlAttributeValueInSingleQuotes(&display_name); |
| |
| // Fill the manifest with the desired values. |
| const base::char16* logo_suffix = |
| install_static::InstallDetails::Get().logo_suffix(); |
| base::string16 manifest16(base::StringPrintf( |
| manifest_template.c_str(), elements_dir.c_str(), logo_suffix, |
| elements_dir.c_str(), logo_suffix, elements_dir.c_str(), logo_suffix)); |
| |
| // Write the manifest to |src_path|. |
| const std::string manifest(base::UTF16ToUTF8(manifest16)); |
| int size = base::checked_cast<int>(manifest.size()); |
| if (base::WriteFile( |
| src_path.Append(installer::kVisualElementsManifest), |
| manifest.c_str(), size) == size) { |
| VLOG(1) << "Successfully wrote " << installer::kVisualElementsManifest |
| << " to " << src_path.value(); |
| return true; |
| } else { |
| PLOG(ERROR) << "Error writing " << installer::kVisualElementsManifest |
| << " to " << src_path.value(); |
| return false; |
| } |
| } |
| } |
| |
| void CreateOrUpdateShortcuts( |
| const base::FilePath& target, |
| const installer::Product& product, |
| const MasterPreferences& prefs, |
| InstallShortcutLevel install_level, |
| InstallShortcutOperation install_operation) { |
| bool do_not_create_any_shortcuts = false; |
| prefs.GetBool(master_preferences::kDoNotCreateAnyShortcuts, |
| &do_not_create_any_shortcuts); |
| if (do_not_create_any_shortcuts) |
| return; |
| |
| // Extract shortcut preferences from |prefs|. |
| bool do_not_create_desktop_shortcut = false; |
| bool do_not_create_quick_launch_shortcut = false; |
| bool do_not_create_taskbar_shortcut = false; |
| prefs.GetBool(master_preferences::kDoNotCreateDesktopShortcut, |
| &do_not_create_desktop_shortcut); |
| prefs.GetBool(master_preferences::kDoNotCreateQuickLaunchShortcut, |
| &do_not_create_quick_launch_shortcut); |
| prefs.GetBool(master_preferences::kDoNotCreateTaskbarShortcut, |
| &do_not_create_taskbar_shortcut); |
| |
| BrowserDistribution* dist = product.distribution(); |
| |
| // The default operation on update is to overwrite shortcuts with the |
| // currently desired properties, but do so only for shortcuts that still |
| // exist. |
| ShellUtil::ShortcutOperation shortcut_operation; |
| switch (install_operation) { |
| case INSTALL_SHORTCUT_CREATE_ALL: |
| shortcut_operation = ShellUtil::SHELL_SHORTCUT_CREATE_ALWAYS; |
| break; |
| case INSTALL_SHORTCUT_CREATE_EACH_IF_NO_SYSTEM_LEVEL: |
| shortcut_operation = ShellUtil::SHELL_SHORTCUT_CREATE_IF_NO_SYSTEM_LEVEL; |
| break; |
| default: |
| DCHECK(install_operation == INSTALL_SHORTCUT_REPLACE_EXISTING); |
| shortcut_operation = ShellUtil::SHELL_SHORTCUT_REPLACE_EXISTING; |
| break; |
| } |
| |
| // Shortcuts are always installed per-user unless specified. |
| ShellUtil::ShellChange shortcut_level = (install_level == ALL_USERS ? |
| ShellUtil::SYSTEM_LEVEL : ShellUtil::CURRENT_USER); |
| |
| // |base_properties|: The basic properties to set on every shortcut installed |
| // (to be refined on a per-shortcut basis). |
| ShellUtil::ShortcutProperties base_properties(shortcut_level); |
| product.AddDefaultShortcutProperties(target, &base_properties); |
| |
| if (!do_not_create_desktop_shortcut || |
| shortcut_operation == ShellUtil::SHELL_SHORTCUT_REPLACE_EXISTING) { |
| ExecuteAndLogShortcutOperation( |
| ShellUtil::SHORTCUT_LOCATION_DESKTOP, dist, base_properties, |
| shortcut_operation); |
| } |
| |
| if (!do_not_create_quick_launch_shortcut || |
| shortcut_operation == ShellUtil::SHELL_SHORTCUT_REPLACE_EXISTING) { |
| // There is no such thing as an all-users Quick Launch shortcut, always |
| // install the per-user shortcut. |
| ShellUtil::ShortcutProperties quick_launch_properties(base_properties); |
| quick_launch_properties.level = ShellUtil::CURRENT_USER; |
| ExecuteAndLogShortcutOperation( |
| ShellUtil::SHORTCUT_LOCATION_QUICK_LAUNCH, dist, |
| quick_launch_properties, shortcut_operation); |
| } |
| |
| ShellUtil::ShortcutProperties start_menu_properties(base_properties); |
| if (shortcut_operation == ShellUtil::SHELL_SHORTCUT_CREATE_ALWAYS || |
| shortcut_operation == |
| ShellUtil::SHELL_SHORTCUT_CREATE_IF_NO_SYSTEM_LEVEL) { |
| start_menu_properties.set_pin_to_taskbar(!do_not_create_taskbar_shortcut); |
| } |
| |
| // The attempt below to update the stortcut will fail if it does not already |
| // exist at the expected location on disk. First check if it exists in the |
| // previous location (under a subdirectory) and, if so, move it to the new |
| // location. |
| base::FilePath old_shortcut_path; |
| ShellUtil::GetShortcutPath( |
| ShellUtil::SHORTCUT_LOCATION_START_MENU_CHROME_DIR_DEPRECATED, dist, |
| shortcut_level, &old_shortcut_path); |
| if (base::PathExists(old_shortcut_path)) { |
| ShellUtil::MoveExistingShortcut( |
| ShellUtil::SHORTCUT_LOCATION_START_MENU_CHROME_DIR_DEPRECATED, |
| ShellUtil::SHORTCUT_LOCATION_START_MENU_ROOT, |
| dist, start_menu_properties); |
| } |
| |
| ExecuteAndLogShortcutOperation( |
| ShellUtil::SHORTCUT_LOCATION_START_MENU_ROOT, dist, |
| start_menu_properties, shortcut_operation); |
| } |
| |
| void RegisterChromeOnMachine(const installer::InstallerState& installer_state, |
| const installer::Product& product, |
| bool make_chrome_default, |
| const base::Version& version) { |
| // Try to add Chrome to Media Player shim inclusion list. We don't do any |
| // error checking here because this operation will fail if user doesn't |
| // have admin rights and we want to ignore the error. |
| AddChromeToMediaPlayerList(); |
| |
| // Register the event log provider for system-level installs only, as it |
| // requires admin privileges. |
| if (installer_state.system_install()) |
| RegisterEventLogProvider(installer_state.target_path(), version); |
| |
| // Make Chrome the default browser if desired when possible. Otherwise, only |
| // register it with Windows. |
| BrowserDistribution* dist = product.distribution(); |
| const base::FilePath chrome_exe( |
| installer_state.target_path().Append(installer::kChromeExe)); |
| VLOG(1) << "Registering Chrome as browser: " << chrome_exe.value(); |
| if (make_chrome_default && ShellUtil::CanMakeChromeDefaultUnattended()) { |
| int level = ShellUtil::CURRENT_USER; |
| if (installer_state.system_install()) |
| level = level | ShellUtil::SYSTEM_LEVEL; |
| ShellUtil::MakeChromeDefault(dist, level, chrome_exe, true); |
| } else { |
| ShellUtil::RegisterChromeBrowser(dist, chrome_exe, base::string16(), false); |
| } |
| } |
| |
| InstallStatus InstallOrUpdateProduct( |
| const installer::InstallationState& original_state, |
| const installer::InstallerState& installer_state, |
| const base::FilePath& setup_path, |
| const base::FilePath& archive_path, |
| const base::FilePath& install_temp_path, |
| const base::FilePath& src_path, |
| const base::FilePath& prefs_path, |
| const MasterPreferences& prefs, |
| const base::Version& new_version) { |
| // TODO(robertshield): Removing the pending on-reboot moves should be done |
| // elsewhere. |
| // Remove any scheduled MOVEFILE_DELAY_UNTIL_REBOOT entries in the target of |
| // this installation. These may have been added during a previous uninstall of |
| // the same version. |
| LOG_IF(ERROR, !RemoveFromMovesPendingReboot(installer_state.target_path())) |
| << "Error accessing pending moves value."; |
| |
| // Create VisualElementManifest.xml in |src_path| (if required) so that it |
| // looks as if it had been extracted from the archive when calling |
| // InstallNewVersion() below. |
| installer_state.SetStage(CREATING_VISUAL_MANIFEST); |
| CreateVisualElementsManifest(src_path, new_version); |
| |
| std::unique_ptr<base::Version> existing_version; |
| InstallStatus result = |
| InstallNewVersion(original_state, installer_state, setup_path, |
| archive_path, src_path, install_temp_path, new_version, |
| &existing_version, IsDowngradeAllowed(prefs)); |
| |
| // TODO(robertshield): Everything below this line should instead be captured |
| // by WorkItems. |
| if (!InstallUtil::GetInstallReturnCode(result)) { |
| installer_state.SetStage(UPDATING_CHANNELS); |
| |
| // Strip evidence of multi-install from the "ap" value. |
| // TODO(grt): Consider doing this earlier, prior to any other work, so that |
| // failed updates benefit from the stripping. |
| installer_state.UpdateChannels(); |
| |
| installer_state.SetStage(COPYING_PREFERENCES_FILE); |
| |
| if (result == FIRST_INSTALL_SUCCESS && !prefs_path.empty()) |
| CopyPreferenceFileForFirstRun(installer_state, prefs_path); |
| |
| installer_state.SetStage(CREATING_SHORTCUTS); |
| |
| // Creates shortcuts for Chrome. |
| const Product& chrome_product = installer_state.product(); |
| const base::FilePath chrome_exe( |
| installer_state.target_path().Append(kChromeExe)); |
| |
| // Install per-user shortcuts on user-level installs and all-users shortcuts |
| // on system-level installs. Note that Active Setup will take care of |
| // installing missing per-user shortcuts on system-level install (i.e., |
| // quick launch, taskbar pin, and possibly deleted all-users shortcuts). |
| InstallShortcutLevel install_level = |
| installer_state.system_install() ? ALL_USERS : CURRENT_USER; |
| |
| InstallShortcutOperation install_operation = |
| INSTALL_SHORTCUT_REPLACE_EXISTING; |
| if (result == installer::FIRST_INSTALL_SUCCESS || |
| result == installer::INSTALL_REPAIRED || |
| !original_state.GetProductState(installer_state.system_install())) { |
| // Always create the shortcuts on a new install, a repair install, and |
| // when the Chrome product is being added to the current install. |
| install_operation = INSTALL_SHORTCUT_CREATE_ALL; |
| } |
| |
| CreateOrUpdateShortcuts(chrome_exe, chrome_product, prefs, install_level, |
| install_operation); |
| |
| // Register Chrome and, if requested, make Chrome the default browser. |
| installer_state.SetStage(REGISTERING_CHROME); |
| |
| bool make_chrome_default = false; |
| prefs.GetBool(master_preferences::kMakeChromeDefault, &make_chrome_default); |
| |
| // If this is not the user's first Chrome install, but they have chosen |
| // Chrome to become their default browser on the download page, we must |
| // force it here because the master_preferences file will not get copied |
| // into the build. |
| bool force_chrome_default_for_user = false; |
| if (result == NEW_VERSION_UPDATED || result == INSTALL_REPAIRED || |
| result == OLD_VERSION_DOWNGRADE || result == IN_USE_DOWNGRADE) { |
| prefs.GetBool(master_preferences::kMakeChromeDefaultForUser, |
| &force_chrome_default_for_user); |
| } |
| |
| RegisterChromeOnMachine( |
| installer_state, chrome_product, |
| make_chrome_default || force_chrome_default_for_user, new_version); |
| |
| if (!installer_state.system_install()) { |
| DCHECK_EQ(chrome_product.distribution(), |
| BrowserDistribution::GetDistribution()); |
| UpdateDefaultBrowserBeaconForPath( |
| installer_state.target_path().Append(installer::kChromeExe)); |
| } |
| |
| // Delete files that belong to old versions of Chrome. If that fails during |
| // a not-in-use update, launch a --delete-old-version process. If this is an |
| // in-use update, a --delete-old-versions process will be launched when |
| // executables are renamed. |
| installer_state.SetStage(REMOVING_OLD_VERSIONS); |
| const bool is_in_use = |
| (result == IN_USE_UPDATED || result == IN_USE_DOWNGRADE); |
| if (!DeleteOldVersions(installer_state.target_path()) && !is_in_use) { |
| const base::FilePath new_version_setup_path = |
| installer_state.GetInstallerDirectory(new_version) |
| .Append(setup_path.BaseName()); |
| LaunchDeleteOldVersionsProcess(new_version_setup_path, installer_state); |
| } |
| } |
| |
| return result; |
| } |
| |
| void LaunchDeleteOldVersionsProcess(const base::FilePath& setup_path, |
| const InstallerState& installer_state) { |
| base::CommandLine command_line(setup_path); |
| InstallUtil::AppendModeSwitch(&command_line); |
| command_line.AppendSwitch(switches::kDeleteOldVersions); |
| |
| if (installer_state.system_install()) |
| command_line.AppendSwitch(switches::kSystemLevel); |
| // Unconditionally enable verbose logging for now to make diagnosing potential |
| // failures possible. |
| command_line.AppendSwitch(switches::kVerboseLogging); |
| |
| base::LaunchOptions launch_options; |
| launch_options.start_hidden = true; |
| // Make sure not to launch from a version directory. Otherwise, it wouldn't be |
| // possible to delete it. |
| launch_options.current_directory = setup_path.DirName(); |
| launch_options.force_breakaway_from_job_ = true; |
| |
| VLOG(1) << "Launching \"" << command_line.GetCommandLineString() |
| << "\" to delete old versions."; |
| base::Process process = base::LaunchProcess(command_line, launch_options); |
| PLOG_IF(ERROR, !process.IsValid()) |
| << "Failed to launch \"" << command_line.GetCommandLineString() << "\""; |
| } |
| |
| void HandleOsUpgradeForBrowser(const installer::InstallerState& installer_state, |
| const installer::Product& chrome, |
| const base::Version& installed_version) { |
| VLOG(1) << "Updating and registering shortcuts for --on-os-upgrade."; |
| |
| // Read master_preferences copied beside chrome.exe at install. |
| const MasterPreferences prefs( |
| installer_state.target_path().AppendASCII(kDefaultMasterPrefs)); |
| |
| // Update shortcuts at this install level (per-user shortcuts on system-level |
| // installs will be updated through Active Setup). |
| const InstallShortcutLevel level = |
| installer_state.system_install() ? ALL_USERS : CURRENT_USER; |
| const base::FilePath chrome_exe( |
| installer_state.target_path().Append(kChromeExe)); |
| CreateOrUpdateShortcuts(chrome_exe, chrome, prefs, level, |
| INSTALL_SHORTCUT_REPLACE_EXISTING); |
| |
| // Adapt Chrome registrations to this new OS. |
| RegisterChromeOnMachine(installer_state, chrome, false, installed_version); |
| |
| // Active Setup registrations are sometimes lost across OS update, make sure |
| // they're back in place. Note: when Active Setup registrations in HKLM are |
| // lost, the per-user values of performed Active Setups in HKCU are also lost, |
| // so it is fine to restart the dynamic components of the Active Setup version |
| // (ref. UpdateActiveSetupVersionWorkItem) from scratch. |
| // TODO(gab): This should really perform all registry only update steps (i.e., |
| // something between InstallOrUpdateProduct and AddActiveSetupWorkItems, but |
| // this takes care of what is most required for now). |
| std::unique_ptr<WorkItemList> work_item_list(WorkItem::CreateWorkItemList()); |
| AddActiveSetupWorkItems(installer_state, installed_version, chrome, |
| work_item_list.get()); |
| if (!work_item_list->Do()) { |
| LOG(WARNING) << "Failed to reinstall Active Setup keys."; |
| work_item_list->Rollback(); |
| } |
| |
| UpdateOsUpgradeBeacon(installer_state.system_install(), |
| BrowserDistribution::GetDistribution()); |
| |
| // Update the per-user default browser beacon. For user-level installs this |
| // can be done directly; whereas it requires triggering Active Setup for each |
| // user's subsequent login on system-level installs. |
| if (!installer_state.system_install()) { |
| UpdateDefaultBrowserBeaconForPath(chrome_exe); |
| } else { |
| UpdateActiveSetupVersionWorkItem active_setup_work_item( |
| InstallUtil::GetActiveSetupPath(chrome.distribution()), |
| UpdateActiveSetupVersionWorkItem:: |
| UPDATE_AND_BUMP_OS_UPGRADES_COMPONENT); |
| if (active_setup_work_item.Do()) |
| VLOG(1) << "Bumped Active Setup Version on-os-upgrade."; |
| else |
| LOG(ERROR) << "Failed to bump Active Setup Version on-os-upgrade."; |
| } |
| } |
| |
| // NOTE: Should the work done here, on Active Setup, change: |
| // kActiveSetupMajorVersion in update_active_setup_version_work_item.cc needs to |
| // be increased for Active Setup to invoke this again for all users of this |
| // install. It may also be invoked again when a system-level chrome install goes |
| // through an OS upgrade. |
| void HandleActiveSetupForBrowser(const base::FilePath& installation_root, |
| const installer::Product& chrome, |
| bool force) { |
| std::unique_ptr<WorkItemList> cleanup_list(WorkItem::CreateWorkItemList()); |
| cleanup_list->set_log_message("Cleanup deprecated per-user registrations"); |
| cleanup_list->set_rollback_enabled(false); |
| cleanup_list->set_best_effort(true); |
| AddCleanupDeprecatedPerUserRegistrationsWorkItems(chrome, cleanup_list.get()); |
| cleanup_list->Do(); |
| |
| // Only create shortcuts on Active Setup if the first run sentinel is not |
| // present for this user (as some shortcuts used to be installed on first |
| // run and this could otherwise re-install shortcuts for users that have |
| // already deleted them in the past). |
| // Decide whether to create the shortcuts or simply replace existing |
| // shortcuts; if the decision is to create them, only shortcuts whose matching |
| // all-users shortcut isn't present on the system will be created. |
| InstallShortcutOperation install_operation = |
| (!force && InstallUtil::IsFirstRunSentinelPresent()) |
| ? INSTALL_SHORTCUT_REPLACE_EXISTING |
| : INSTALL_SHORTCUT_CREATE_EACH_IF_NO_SYSTEM_LEVEL; |
| |
| // Read master_preferences copied beside chrome.exe at install. |
| MasterPreferences prefs(installation_root.AppendASCII(kDefaultMasterPrefs)); |
| base::FilePath chrome_exe(installation_root.Append(kChromeExe)); |
| CreateOrUpdateShortcuts( |
| chrome_exe, chrome, prefs, CURRENT_USER, install_operation); |
| |
| UpdateDefaultBrowserBeaconForPath(chrome_exe); |
| } |
| |
| } // namespace installer |