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
|
// Copyright 2011 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/proxy_config/pref_proxy_config_tracker_impl.h"
#include <stddef.h>
#include <memory>
#include <utility>
#include "base/functional/bind.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/observer_list.h"
#include "base/task/single_thread_task_runner.h"
#include "base/values.h"
#include "build/buildflag.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
#include "components/proxy_config/proxy_config_dictionary.h"
#include "components/proxy_config/proxy_config_pref_names.h"
#include "net/base/proxy_server.h"
#include "net/net_buildflags.h"
#include "url/gurl.h"
namespace {
constexpr net::NetworkTrafficAnnotationTag
kSettingsProxyConfigTrafficAnnotation =
net::DefineNetworkTrafficAnnotation("proxy_config_settings", R"(
semantics {
sender: "Proxy Config"
description:
"Creates a proxy based on configuration received from settings."
trigger:
"On start up, or on any change of proxy settings."
data:
"Proxy configurations."
destination: OTHER
destination_other:
"The proxy server specified in the configuration."
}
policy {
cookies_allowed: NO
setting:
"Users can choose the proxy configurations in settings under "
"'Advanced/Network/Change proxy settings...'."
policy_exception_justification:
"Using 'ProxySettings' policy can set Chrome to use specific "
"proxy settings."
})");
} // namespace
//============================= ProxyConfigServiceImpl =======================
ProxyConfigServiceImpl::ProxyConfigServiceImpl(
std::unique_ptr<net::ProxyConfigService> base_service,
ProxyPrefs::ConfigState initial_config_state,
const net::ProxyConfigWithAnnotation& initial_config)
: base_service_(std::move(base_service)),
pref_config_state_(initial_config_state),
pref_config_(initial_config),
registered_observer_(false) {
// ProxyConfigServiceImpl is created on the UI thread, but used on the network
// thread.
thread_checker_.DetachFromThread();
}
ProxyConfigServiceImpl::~ProxyConfigServiceImpl() {
if (registered_observer_ && base_service_.get()) {
base_service_->RemoveObserver(this);
}
}
void ProxyConfigServiceImpl::AddObserver(
net::ProxyConfigService::Observer* observer) {
RegisterObserver();
observers_.AddObserver(observer);
}
void ProxyConfigServiceImpl::RemoveObserver(
net::ProxyConfigService::Observer* observer) {
observers_.RemoveObserver(observer);
}
net::ProxyConfigService::ConfigAvailability
ProxyConfigServiceImpl::GetLatestProxyConfig(
net::ProxyConfigWithAnnotation* config) {
RegisterObserver();
// Ask the base service if available.
net::ProxyConfigWithAnnotation system_config;
ConfigAvailability system_availability =
net::ProxyConfigService::CONFIG_UNSET;
if (base_service_) {
system_availability = base_service_->GetLatestProxyConfig(&system_config);
}
ProxyPrefs::ConfigState config_state;
return PrefProxyConfigTrackerImpl::GetEffectiveProxyConfig(
pref_config_state_, pref_config_, system_availability, system_config,
false, &config_state, config);
}
void ProxyConfigServiceImpl::OnLazyPoll() {
if (base_service_) {
base_service_->OnLazyPoll();
}
}
bool ProxyConfigServiceImpl::UsesPolling() {
return base_service_ && base_service_->UsesPolling();
}
void ProxyConfigServiceImpl::UpdateProxyConfig(
ProxyPrefs::ConfigState config_state,
const net::ProxyConfigWithAnnotation& config) {
DCHECK(thread_checker_.CalledOnValidThread());
pref_config_state_ = config_state;
pref_config_ = config;
if (observers_.empty()) {
return;
}
// Evaluate the proxy configuration. If GetLatestProxyConfig returns
// CONFIG_PENDING, we are using the system proxy service, but it doesn't have
// a valid configuration yet. Once it is ready, OnProxyConfigChanged() will be
// called and broadcast the proxy configuration.
// Note: If a switch between a preference proxy configuration and the system
// proxy configuration occurs an unnecessary notification might get send if
// the two configurations agree. This case should be rare however, so we don't
// handle that case specially.
net::ProxyConfigWithAnnotation new_config;
ConfigAvailability availability = GetLatestProxyConfig(&new_config);
if (availability != CONFIG_PENDING) {
for (net::ProxyConfigService::Observer& observer : observers_) {
observer.OnProxyConfigChanged(new_config, availability);
}
}
}
void ProxyConfigServiceImpl::OnProxyConfigChanged(
const net::ProxyConfigWithAnnotation& config,
ConfigAvailability availability) {
DCHECK(thread_checker_.CalledOnValidThread());
// Check whether there is a proxy configuration defined by preferences. In
// this case that proxy configuration takes precedence and the change event
// from the delegate proxy config service can be disregarded.
if (!PrefProxyConfigTrackerImpl::PrefPrecedes(pref_config_state_)) {
net::ProxyConfigWithAnnotation actual_config;
availability = GetLatestProxyConfig(&actual_config);
for (net::ProxyConfigService::Observer& observer : observers_) {
observer.OnProxyConfigChanged(actual_config, availability);
}
}
}
void ProxyConfigServiceImpl::RegisterObserver() {
DCHECK(thread_checker_.CalledOnValidThread());
if (!registered_observer_ && base_service_.get()) {
base_service_->AddObserver(this);
registered_observer_ = true;
}
}
//========================= PrefProxyConfigTrackerImpl =========================
PrefProxyConfigTrackerImpl::PrefProxyConfigTrackerImpl(
PrefService* pref_service,
scoped_refptr<base::SingleThreadTaskRunner>
proxy_config_service_task_runner)
: pref_service_(pref_service),
proxy_config_service_impl_(nullptr),
proxy_config_service_task_runner_(proxy_config_service_task_runner) {
pref_config_state_ = ReadPrefConfig(pref_service_, &pref_config_);
active_config_state_ = pref_config_state_;
active_config_ = pref_config_;
proxy_prefs_.Init(pref_service);
proxy_prefs_.Add(
proxy_config::prefs::kProxy,
base::BindRepeating(&PrefProxyConfigTrackerImpl::OnProxyPrefChanged,
base::Unretained(this)));
}
PrefProxyConfigTrackerImpl::~PrefProxyConfigTrackerImpl() {
DCHECK(pref_service_ == nullptr);
}
std::unique_ptr<net::ProxyConfigService>
PrefProxyConfigTrackerImpl::CreateTrackingProxyConfigService(
std::unique_ptr<net::ProxyConfigService> base_service) {
DCHECK(!proxy_config_service_impl_);
proxy_config_service_impl_ = new ProxyConfigServiceImpl(
std::move(base_service), active_config_state_, active_config_);
VLOG(1) << this << ": set chrome proxy config service to "
<< proxy_config_service_impl_;
return std::unique_ptr<net::ProxyConfigService>(proxy_config_service_impl_);
}
void PrefProxyConfigTrackerImpl::DetachFromPrefService() {
DCHECK(thread_checker_.CalledOnValidThread());
// Stop notifications.
proxy_prefs_.RemoveAll();
pref_service_ = nullptr;
proxy_config_service_impl_ = nullptr;
}
// static
bool PrefProxyConfigTrackerImpl::PrefPrecedes(
ProxyPrefs::ConfigState config_state) {
return config_state == ProxyPrefs::CONFIG_POLICY ||
config_state == ProxyPrefs::CONFIG_EXTENSION ||
config_state == ProxyPrefs::CONFIG_OTHER_PRECEDE;
}
// static
net::ProxyConfigService::ConfigAvailability
PrefProxyConfigTrackerImpl::GetEffectiveProxyConfig(
ProxyPrefs::ConfigState pref_state,
const net::ProxyConfigWithAnnotation& pref_config,
net::ProxyConfigService::ConfigAvailability system_availability,
const net::ProxyConfigWithAnnotation& system_config,
bool ignore_fallback_config,
ProxyPrefs::ConfigState* effective_config_state,
net::ProxyConfigWithAnnotation* effective_config) {
*effective_config_state = pref_state;
if (PrefPrecedes(pref_state)) {
*effective_config = pref_config;
return net::ProxyConfigService::CONFIG_VALID;
}
if (system_availability == net::ProxyConfigService::CONFIG_UNSET) {
// If there's no system proxy config, fall back to prefs or default.
if (pref_state == ProxyPrefs::CONFIG_FALLBACK && !ignore_fallback_config) {
*effective_config = pref_config;
} else {
*effective_config = net::ProxyConfigWithAnnotation::CreateDirect();
}
return net::ProxyConfigService::CONFIG_VALID;
}
*effective_config_state = ProxyPrefs::CONFIG_SYSTEM;
*effective_config = system_config;
return system_availability;
}
// static
void PrefProxyConfigTrackerImpl::RegisterPrefs(PrefRegistrySimple* registry) {
registry->RegisterDictionaryPref(proxy_config::prefs::kProxy,
ProxyConfigDictionary::CreateSystem());
}
// static
void PrefProxyConfigTrackerImpl::RegisterProfilePrefs(
PrefRegistrySimple* registry) {
registry->RegisterDictionaryPref(proxy_config::prefs::kProxy,
ProxyConfigDictionary::CreateSystem());
registry->RegisterBooleanPref(proxy_config::prefs::kUseSharedProxies, false);
}
// static
ProxyPrefs::ConfigState PrefProxyConfigTrackerImpl::ReadPrefConfig(
const PrefService* pref_service,
net::ProxyConfigWithAnnotation* config) {
// Clear the configuration and source.
*config = net::ProxyConfigWithAnnotation();
const PrefService::Preference* pref =
pref_service->FindPreference(proxy_config::prefs::kProxy);
DCHECK(pref);
const base::Value::Dict& dict =
pref_service->GetDict(proxy_config::prefs::kProxy);
ProxyConfigDictionary proxy_dict(dict.Clone());
if (!PrefConfigToNetConfig(proxy_dict, config)) {
return ProxyPrefs::CONFIG_UNSET;
}
if (pref->IsUserModifiable() && !pref->HasUserSetting()) {
return ProxyPrefs::CONFIG_FALLBACK;
}
if (pref->IsManaged()) {
return ProxyPrefs::CONFIG_POLICY;
}
if (pref->IsExtensionControlled()) {
return ProxyPrefs::CONFIG_EXTENSION;
}
return ProxyPrefs::CONFIG_OTHER_PRECEDE;
}
ProxyPrefs::ConfigState PrefProxyConfigTrackerImpl::GetProxyConfig(
net::ProxyConfigWithAnnotation* config) {
DCHECK(thread_checker_.CalledOnValidThread());
if (pref_config_state_ != ProxyPrefs::CONFIG_UNSET) {
*config = pref_config_;
}
return pref_config_state_;
}
void PrefProxyConfigTrackerImpl::OnProxyConfigChanged(
ProxyPrefs::ConfigState config_state,
const net::ProxyConfigWithAnnotation& config) {
// If the configuration hasn't changed, do nothing.
if (active_config_state_ == config_state &&
(active_config_state_ == ProxyPrefs::CONFIG_UNSET ||
active_config_.value().Equals(config.value()))) {
return;
}
active_config_state_ = config_state;
if (active_config_state_ != ProxyPrefs::CONFIG_UNSET) {
active_config_ = config;
}
if (!proxy_config_service_impl_) {
return;
}
// If the ProxyConfigService lives on the current thread, just synchronously
// tell it about the new configuration.
// TODO(mmenke): When/if iOS is migrated to using the NetworkService, get rid
// of |proxy_config_service_task_runner_|. Can also merge
// ProxyConfigServiceImpl into the tracker, and make the class talk over the
// Mojo pipe directly, at that point.
if (!proxy_config_service_task_runner_) {
proxy_config_service_impl_->UpdateProxyConfig(config_state, config);
return;
}
proxy_config_service_task_runner_->PostTask(
FROM_HERE, base::BindOnce(&ProxyConfigServiceImpl::UpdateProxyConfig,
base::Unretained(proxy_config_service_impl_),
config_state, config));
}
bool PrefProxyConfigTrackerImpl::PrefConfigToNetConfig(
const ProxyConfigDictionary& proxy_dict,
net::ProxyConfigWithAnnotation* config) {
ProxyPrefs::ProxyMode mode;
if (!proxy_dict.GetMode(&mode)) {
// Fall back to system settings if the mode preference is invalid.
return false;
}
net::ProxyConfig proxy_config = config->value();
switch (mode) {
case ProxyPrefs::MODE_SYSTEM:
// Use system settings.
return false;
case ProxyPrefs::MODE_DIRECT:
// Ignore all the other proxy config preferences if the use of a proxy
// has been explicitly disabled.
return true;
case ProxyPrefs::MODE_AUTO_DETECT:
proxy_config.set_auto_detect(true);
*config = net::ProxyConfigWithAnnotation(
proxy_config, kSettingsProxyConfigTrafficAnnotation);
return true;
case ProxyPrefs::MODE_PAC_SCRIPT: {
std::string proxy_pac;
if (!proxy_dict.GetPacUrl(&proxy_pac)) {
LOG(ERROR) << "Proxy settings request PAC script but do not specify "
<< "its URL. Falling back to direct connection.";
return true;
}
GURL proxy_pac_url(proxy_pac);
if (!proxy_pac_url.is_valid()) {
LOG(ERROR) << "Invalid proxy PAC url: " << proxy_pac;
return true;
}
proxy_config.set_pac_url(proxy_pac_url);
bool pac_mandatory = false;
proxy_dict.GetPacMandatory(&pac_mandatory);
proxy_config.set_pac_mandatory(pac_mandatory);
*config = net::ProxyConfigWithAnnotation(
proxy_config, kSettingsProxyConfigTrafficAnnotation);
return true;
}
case ProxyPrefs::MODE_FIXED_SERVERS: {
std::string proxy_server;
if (!proxy_dict.GetProxyServer(&proxy_server)) {
LOG(ERROR) << "Proxy settings request fixed proxy servers but do not "
<< "specify their URLs. Falling back to direct connection.";
return true;
}
bool allow_bracketed_proxy_chains = false;
bool allow_quic_proxy_support = false;
#if BUILDFLAG(ENABLE_BRACKETED_PROXY_URIS)
allow_bracketed_proxy_chains = true;
#endif // BUILDFLAG(ENABLE_BRACKETED_PROXY_URIS)
#if BUILDFLAG(ENABLE_QUIC_PROXY_SUPPORT)
allow_quic_proxy_support = true;
#endif // BUILDFLAG(ENABLE_QUIC_PROXY_SUPPORT)
proxy_config.proxy_rules().ParseFromString(
proxy_server, allow_bracketed_proxy_chains, allow_quic_proxy_support);
std::string proxy_bypass;
if (proxy_dict.GetBypassList(&proxy_bypass)) {
proxy_config.proxy_rules().bypass_rules.ParseFromString(proxy_bypass);
}
*config = net::ProxyConfigWithAnnotation(
proxy_config, kSettingsProxyConfigTrafficAnnotation);
return true;
}
case ProxyPrefs::kModeCount: {
// Fall through to NOTREACHED().
}
}
NOTREACHED() << "Unknown proxy mode, falling back to system settings.";
}
void PrefProxyConfigTrackerImpl::OnProxyPrefChanged() {
DCHECK(thread_checker_.CalledOnValidThread());
net::ProxyConfigWithAnnotation new_config;
ProxyPrefs::ConfigState config_state =
ReadPrefConfig(pref_service_, &new_config);
if (pref_config_state_ != config_state ||
(pref_config_state_ != ProxyPrefs::CONFIG_UNSET &&
!pref_config_.value().Equals(new_config.value()))) {
pref_config_state_ = config_state;
if (pref_config_state_ != ProxyPrefs::CONFIG_UNSET) {
pref_config_ = new_config;
}
OnProxyConfigChanged(config_state, new_config);
}
}
|