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
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/component_updater/configurator_impl.h"
#include <algorithm>
#include <string>
#include <vector>
#include "base/containers/flat_map.h"
#include "base/enterprise_util.h"
#include "base/feature_list.h"
#include "base/functional/callback.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/time/time.h"
#include "base/version.h"
#include "build/build_config.h"
#include "components/component_updater/component_updater_switches.h"
#include "components/component_updater/component_updater_url_constants.h"
#include "components/update_client/command_line_config_policy.h"
#include "components/update_client/protocol_handler.h"
#include "components/update_client/utils.h"
#include "components/version_info/version_info.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "url/gurl.h"
#if BUILDFLAG(IS_WIN)
#include "base/win/win_util.h"
#endif
namespace component_updater {
ConfiguratorImpl::ConfiguratorImpl(
const update_client::CommandLineConfigPolicy& config_policy,
bool require_encryption)
: background_downloads_enabled_(config_policy.BackgroundDownloadsEnabled()),
deltas_enabled_(config_policy.DeltaUpdatesEnabled()),
fast_update_(config_policy.FastUpdate()),
pings_enabled_(config_policy.PingsEnabled()),
require_encryption_(require_encryption),
url_source_override_(config_policy.UrlSourceOverride()),
initial_delay_(config_policy.InitialDelay()) {
if (config_policy.TestRequest()) {
extra_info_["testrequest"] = "1";
extra_info_["testsource"] = "dev";
}
}
ConfiguratorImpl::~ConfiguratorImpl() = default;
base::TimeDelta ConfiguratorImpl::InitialDelay() const {
if (!initial_delay_.is_zero())
return initial_delay_;
return fast_update_ ? base::Seconds(10) : base::Minutes(1);
}
base::TimeDelta ConfiguratorImpl::NextCheckDelay() const {
return base::Hours(5);
}
base::TimeDelta ConfiguratorImpl::OnDemandDelay() const {
return fast_update_ ? base::Seconds(2) : base::Minutes(30);
}
base::TimeDelta ConfiguratorImpl::UpdateDelay() const {
return fast_update_ ? base::Seconds(10) : base::Minutes(15);
}
std::vector<GURL> ConfiguratorImpl::UpdateUrl() const {
if (url_source_override_.is_valid())
return {GURL(url_source_override_)};
std::vector<GURL> urls{GURL(kUpdaterJSONDefaultUrl),
GURL(kUpdaterJSONFallbackUrl)};
if (require_encryption_)
update_client::RemoveUnsecureUrls(&urls);
return urls;
}
std::vector<GURL> ConfiguratorImpl::PingUrl() const {
return pings_enabled_ ? UpdateUrl() : std::vector<GURL>();
}
const base::Version& ConfiguratorImpl::GetBrowserVersion() const {
return version_info::GetVersion();
}
std::string ConfiguratorImpl::GetOSLongName() const {
return std::string(version_info::GetOSType());
}
base::flat_map<std::string, std::string> ConfiguratorImpl::ExtraRequestParams()
const {
return extra_info_;
}
std::string ConfiguratorImpl::GetDownloadPreference() const {
return std::string();
}
bool ConfiguratorImpl::EnabledDeltas() const {
return deltas_enabled_;
}
bool ConfiguratorImpl::EnabledComponentUpdates() const {
return true;
}
bool ConfiguratorImpl::EnabledBackgroundDownloader() const {
return background_downloads_enabled_;
}
bool ConfiguratorImpl::EnabledCupSigning() const {
return true;
}
// The default implementation for most embedders returns an empty string.
// Desktop embedders, such as the Windows component updater can provide a
// meaningful implementation for this function.
std::string ConfiguratorImpl::GetAppGuid() const {
return {};
}
std::unique_ptr<update_client::ProtocolHandlerFactory>
ConfiguratorImpl::GetProtocolHandlerFactory() const {
return std::make_unique<update_client::ProtocolHandlerFactoryJSON>();
}
// Returns a "do nothing" callback which returns an empty updater state.
// This is the correct default for all the embedders except the component
// updater for Chrome on macOS and Windows, which includes a recovery
// component.
update_client::UpdaterStateProvider ConfiguratorImpl::GetUpdaterStateProvider()
const {
return base::BindRepeating([](bool /*is_machine*/) {
return base::flat_map<std::string, std::string>();
});
}
absl::optional<bool> ConfiguratorImpl::IsMachineExternallyManaged() const {
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
// TODO(crbug.com/1320776): For legacy compatibility, this uses
// IsEnterpriseDevice() which effectively equates to a domain join check.
// Consider whether this should use IsManagedDevice() instead.
return base::IsEnterpriseDevice();
#else
return absl::nullopt;
#endif
}
} // namespace component_updater
|