910e62b5创建于 1月15日历史提交
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef NET_PROXY_RESOLUTION_CONFIGURED_PROXY_RESOLUTION_SERVICE_H_
#define NET_PROXY_RESOLUTION_CONFIGURED_PROXY_RESOLUTION_SERVICE_H_

#include <stddef.h>

#include <algorithm>
#include <array>
#include <memory>
#include <optional>
#include <set>
#include <string>
#include <vector>

#include "base/functional/callback_forward.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/synchronization/waitable_event.h"
#include "base/threading/thread_checker.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "net/base/completion_once_callback.h"
#include "net/base/load_states.h"
#include "net/base/net_errors.h"
#include "net/base/net_export.h"
#include "net/base/network_change_notifier.h"
#include "net/dns/host_resolver.h"
#include "net/log/net_log_with_source.h"
#include "net/proxy_resolution/proxy_config_service.h"
#include "net/proxy_resolution/proxy_config_with_annotation.h"
#include "net/proxy_resolution/proxy_info.h"
#include "net/proxy_resolution/proxy_resolution_request.h"
#include "net/proxy_resolution/proxy_resolution_service.h"
#include "net/proxy_resolution/proxy_resolver.h"
#include "net/proxy_resolution/resolve_host_request.h"
#include "net/traffic_annotation/network_traffic_annotation.h"
#include "third_party/abseil-cpp/absl/container/flat_hash_map.h"
#include "url/gurl.h"

namespace base {
class TimeDelta;
}  // namespace base

namespace net {

class ConfiguredProxyResolutionRequest;
class DhcpPacFileFetcher;
class NetLog;
class PacFileFetcher;
class ProxyDelegate;
class ProxyResolverFactory;
struct PacFileDataWithSource;

// This class decides which proxy server(s) to use for a particular URL request.
// It uses the given ProxyResolver to evaluate a PAC file, which the
// ConfiguredProxyResolutionService then uses to resolve a proxy.  All proxy
// resolution in this class is based on first getting proxy configurations (ex:
// a PAC URL) from some source and then using these configurations to attempt to
// resolve that proxy.
class NET_EXPORT ConfiguredProxyResolutionService
    : public ProxyResolutionService,
      public NetworkChangeNotifier::IPAddressObserver,
      public NetworkChangeNotifier::DNSObserver,
      public ProxyConfigService::Observer {
 public:
  // This interface defines the set of policies for when to poll the PAC
  // script for changes.
  //
  // The polling policy decides what the next poll delay should be in
  // milliseconds. It also decides how to wait for this delay -- either
  // by starting a timer to do the poll at exactly |next_delay_ms|
  // (MODE_USE_TIMER) or by waiting for the first network request issued after
  // |next_delay_ms| (MODE_START_AFTER_ACTIVITY).
  //
  // The timer method is more precise and guarantees that polling happens when
  // it was requested. However it has the disadvantage of causing spurious CPU
  // and network activity. It is a reasonable choice to use for short poll
  // intervals which only happen a couple times.
  //
  // However for repeated timers this will prevent the browser from going
  // idle. MODE_START_AFTER_ACTIVITY solves this problem by only polling in
  // direct response to network activity. The drawback to
  // MODE_START_AFTER_ACTIVITY is since the poll is initiated only after the
  // request is received, the first couple requests initiated after a long
  // period of inactivity will likely see a stale version of the PAC script
  // until the background polling gets a chance to update things.
  class NET_EXPORT_PRIVATE PacPollPolicy {
   public:
    enum Mode {
      MODE_USE_TIMER,
      MODE_START_AFTER_ACTIVITY,
    };

    virtual ~PacPollPolicy() = default;

    // Decides the next poll delay. |current_delay| is the delay used
    // by the preceding poll, or a negative TimeDelta value if determining
    // the delay for the initial poll. |initial_error| is the network error
    // code that the last PAC fetch (or WPAD initialization) failed with,
    // or OK if it completed successfully. Implementations must set
    // |next_delay| to a non-negative value.
    virtual Mode GetNextDelay(int initial_error,
                              base::TimeDelta current_delay,
                              base::TimeDelta* next_delay) const = 0;
  };

  // |net_log| is a possibly nullptr destination to send log events to. It must
  // remain alive for the lifetime of this ConfiguredProxyResolutionService.
  // |enable_pac_runtime_backoff| optionally enables runtime PAC error backoff
  // (defaults to false; enabled by CreateUsingSystemProxyResolver()).
  // `host_resolver_for_override_rules` needs to be non-null when proxy
  // configurations can contain override rules (e.g. set via an enterprise
  // policy). When defined, it must outlive this service.
  ConfiguredProxyResolutionService(
      std::unique_ptr<ProxyConfigService> config_service,
      std::unique_ptr<ProxyResolverFactory> resolver_factory,
      HostResolver* host_resolver_for_override_rules,
      NetLog* net_log,
      bool quick_check_enabled,
      bool enable_pac_runtime_backoff = false);

  ConfiguredProxyResolutionService(const ConfiguredProxyResolutionService&) =
      delete;
  ConfiguredProxyResolutionService& operator=(
      const ConfiguredProxyResolutionService&) = delete;

  ~ConfiguredProxyResolutionService() override;

  // ProxyResolutionService
  //
  // We use the four possible proxy access types in the following order,
  // doing fallback if one doesn't work.  See "pac_script_decider.h"
  // for the specifics.
  //   1.  override rules
  //   2.  WPAD auto-detection
  //   3.  PAC URL
  //   4.  named proxy
  // `priority` is used for DNS resolution requests issued when evaluating
  // override rules.
  int ResolveProxy(const GURL& url,
                   const std::string& method,
                   const NetworkAnonymizationKey& network_anonymization_key,
                   ProxyInfo* results,
                   CompletionOnceCallback callback,
                   std::unique_ptr<ProxyResolutionRequest>* request,
                   const NetLogWithSource& net_log,
                   RequestPriority priority) override;

  // ProxyResolutionService
  void ReportSuccess(const ProxyInfo& proxy_info) override;

  // Sets the PacFileFetcher and DhcpPacFileFetcher dependencies. This
  // is needed if the ProxyResolver is of type ProxyResolverWithoutFetch.
  void SetPacFileFetchers(
      std::unique_ptr<PacFileFetcher> pac_file_fetcher,
      std::unique_ptr<DhcpPacFileFetcher> dhcp_pac_file_fetcher);
  PacFileFetcher* GetPacFileFetcher() const;

  // ProxyResolutionService
  void SetProxyDelegate(ProxyDelegate* delegate) override;

  // ProxyResolutionService
  void OnShutdown() override;

  // Returns the last configuration fetched from ProxyConfigService.
  const std::optional<ProxyConfigWithAnnotation>& fetched_config() const {
    return fetched_config_;
  }

  // Returns the current configuration being used by ProxyConfigService.
  const std::optional<ProxyConfigWithAnnotation>& config() const {
    return config_;
  }

  // ProxyResolutionService
  const ProxyRetryInfoMap& proxy_retry_info() const override;

  // ProxyResolutionService
  void ClearBadProxiesCache() override;

  // Forces refetching the proxy configuration, and applying it.
  // This re-does everything from fetching the system configuration,
  // to downloading and testing the PAC files.
  void ForceReloadProxyConfig();

  // Returns true if the service is fully ready to handle proxy resolution
  // requests and is not, e.g., currently fetching and resolving a new
  // configuration.
  bool IsReady() const;

  // ProxyResolutionService
  base::Value::Dict GetProxyNetLogValues() override;

  // ProxyResolutionService
  [[nodiscard]] bool CastToConfiguredProxyResolutionService(
      ConfiguredProxyResolutionService** configured_proxy_resolution_service)
      override;

  // Same as CreateProxyResolutionServiceUsingV8ProxyResolver, except it uses
  // system libraries for evaluating the PAC script if available, otherwise
  // skips proxy autoconfig.
  // If `host_resolver_for_override_rules` is non-null, must outlive the
  // returned object. See constructor for more details.
  static std::unique_ptr<ConfiguredProxyResolutionService>
  CreateUsingSystemProxyResolver(
      std::unique_ptr<ProxyConfigService> proxy_config_service,
      HostResolver* host_resolver_for_override_rules,
      NetLog* net_log,
      bool quick_check_enabled);

  // Creates a ConfiguredProxyResolutionService without support for proxy
  // autoconfig.
  // If `host_resolver_for_override_rules` is non-null, must outlive the
  // returned object. See constructor for more details.
  static std::unique_ptr<ConfiguredProxyResolutionService>
  CreateWithoutProxyResolver(
      std::unique_ptr<ProxyConfigService> proxy_config_service,
      HostResolver* host_resolver_for_override_rules,
      NetLog* net_log);

  // Convenience methods that creates a proxy service using the
  // specified fixed settings.
  static std::unique_ptr<ConfiguredProxyResolutionService> CreateFixedForTest(
      const ProxyConfigWithAnnotation& pc);
  static std::unique_ptr<ConfiguredProxyResolutionService> CreateFixedForTest(
      const std::string& proxy,
      const NetworkTrafficAnnotationTag& traffic_annotation);

  // Creates a proxy service that uses a DIRECT connection for all requests.
  static std::unique_ptr<ConfiguredProxyResolutionService> CreateDirect();

  // This method is used by tests to create a ConfiguredProxyResolutionService
  // that returns a hardcoded proxy fallback list (|pac_string|) for every URL.
  //
  // |pac_string| is a list of proxy servers, in the format that a PAC script
  // would return it. For example, "PROXY foobar:99; SOCKS fml:2; DIRECT"
  static std::unique_ptr<ConfiguredProxyResolutionService>
  CreateFixedFromPacResultForTest(
      const std::string& pac_string,
      const NetworkTrafficAnnotationTag& traffic_annotation);

  // Same as CreateFixedFromPacResultForTest(), except the resulting ProxyInfo
  // from resolutions will be tagged as having been auto-detected.
  static std::unique_ptr<ConfiguredProxyResolutionService>
  CreateFixedFromAutoDetectedPacResultForTest(
      const std::string& pac_string,
      const NetworkTrafficAnnotationTag& traffic_annotation);

  // This method is used by tests to create a ConfiguredProxyResolutionService
  // that returns a proxy fallback list (|proxy_chain|) for every URL.
  static std::unique_ptr<ConfiguredProxyResolutionService>
  CreateFixedFromProxyChainsForTest(
      const std::vector<ProxyChain>& proxy_chains,
      const NetworkTrafficAnnotationTag& traffic_annotation);

  // This method should only be used by unit tests.
  void set_stall_proxy_auto_config_delay(base::TimeDelta delay) {
    stall_proxy_auto_config_delay_ = delay;
  }

  // This method should only be used by unit tests. Returns the previously
  // active policy.
  static const PacPollPolicy* set_pac_script_poll_policy(
      const PacPollPolicy* policy);

  // This method should only be used by unit tests. Creates an instance
  // of the default internal PacPollPolicy used by
  // ConfiguredProxyResolutionService.
  static std::unique_ptr<PacPollPolicy> CreateDefaultPacPollPolicy();

  bool quick_check_enabled_for_testing() const { return quick_check_enabled_; }

  // Test-only: enable or disable PAC runtime backoff gating. This is enabled
  // by default only for system resolvers; tests may override it.
  void set_enable_pac_runtime_backoff_for_testing(bool enabled) {
    enable_pac_runtime_backoff_ = enabled;
  }

 private:
  friend class ConfiguredProxyResolutionRequest;
  FRIEND_TEST_ALL_PREFIXES(ProxyResolutionServiceTest,
                           UpdateConfigAfterFailedAutodetect);
  FRIEND_TEST_ALL_PREFIXES(ProxyResolutionServiceTest,
                           UpdateConfigFromPACToDirect);
  class InitProxyResolver;
  class PacFileDeciderPoller;

  typedef std::set<raw_ptr<ConfiguredProxyResolutionRequest, SetExperimental>>
      PendingRequests;

  enum State {
    STATE_NONE,
    STATE_WAITING_FOR_PROXY_CONFIG,
    STATE_WAITING_FOR_INIT_PROXY_RESOLVER,
    STATE_READY,
  };

  struct HostResolutionRequest {
    HostResolutionRequest(
        std::unique_ptr<HostResolver::ResolveHostRequest> request,
        RequestPriority initial_priority);

    HostResolutionRequest(HostResolutionRequest&&);
    HostResolutionRequest& operator=(HostResolutionRequest&&);

    HostResolutionRequest(const HostResolutionRequest&) = delete;
    HostResolutionRequest& operator=(const HostResolutionRequest&) = delete;

    ~HostResolutionRequest();

    // Adds a new `listener` for the current request, with its associated
    // `priority`. If the new priority is higher than the current one, the
    // request's priority will be updated.
    void AddListener(base::WeakPtr<ConfiguredProxyResolutionRequest> listener,
                     RequestPriority priority);

    std::unique_ptr<HostResolver::ResolveHostRequest> request;

    // Make sure to add listeners using the `AddListener` function.
    std::vector<base::WeakPtr<ConfiguredProxyResolutionRequest>> listeners;
    RequestPriority current_priority;
  };

  // We won't always be able to return a good LoadState. For example, the
  // ConfiguredProxyResolutionService can only get this information from the
  // InitProxyResolver, which is not always available.
  bool GetLoadStateIfAvailable(LoadState* load_state) const;

  ProxyResolver* GetProxyResolver() const;

  HostResolver* GetHostResolverForOverrideRules() const;

  // Resets all the variables associated with the current proxy configuration,
  // and rewinds the current state to |STATE_NONE|. Returns the previous value
  // of |current_state_|. If |reset_fetched_config| is true then
  // |fetched_config_| will also be reset, otherwise it will be left as-is.
  // Resetting it means that we will have to re-fetch the configuration from
  // the ProxyConfigService later.
  // If |reset_pac_retry_state| is false, the PAC runtime backoff throttler is
  // left unchanged (used when a forced reload was already scheduled by the
  // throttler itself).
  State ResetProxyConfig(bool reset_fetched_config,
                         bool reset_pac_retry_state = true);

  // Retrieves the current proxy configuration from the ProxyConfigService, and
  // starts initializing for it.
  void ApplyProxyConfigIfAvailable();

  // Callback for when the proxy resolver has been initialized with a
  // PAC script.
  void OnInitProxyResolverComplete(int result);

  // Returns ERR_IO_PENDING if the request cannot be completed synchronously.
  // Otherwise it fills `result` with the proxy information for `url`.
  // `bypass_override_rules` dictates whether proxy override rules should also
  // be evaluated or not. Currently used by ConfiguredProxyResolutionRequest to
  // re-evaluate synchronous rules after having evaluated override rules with
  // none of them applying.
  // Completing synchronously means we don't need to query ProxyResolver.
  // `net_log` will be used if an override rule was applied synchronously.
  int TryToCompleteSynchronously(const GURL& url,
                                 bool bypass_override_rules,
                                 const NetLogWithSource& net_log,
                                 ProxyInfo* result);

  // Cancels all of the requests sent to the ProxyResolver. These will be
  // restarted when calling SetReady().
  void SuspendAllPendingRequests();

  // Advances the current state to |STATE_READY|, and resumes any pending
  // requests which had been stalled waiting for initialization to complete.
  void SetReady();

  // Returns true if |pending_requests_| contains |req|.
  bool ContainsPendingRequest(ConfiguredProxyResolutionRequest* req);

  // Removes |req| from the list of pending requests.
  void RemovePendingRequest(ConfiguredProxyResolutionRequest* req);

  // Called when proxy resolution has completed (either synchronously or
  // asynchronously). Handles logging the result, and cleaning out
  // bad entries from the results list.
  int DidFinishResolvingProxy(
      const GURL& url,
      const NetworkAnonymizationKey& network_anonymization_key,
      const std::string& method,
      ProxyInfo* result,
      int result_code,
      const NetLogWithSource& net_log);

  // Start initialization using |fetched_config_|.
  void InitializeUsingLastFetchedConfig();

  // Start the initialization skipping past the "decision" phase.
  void InitializeUsingDecidedConfig(
      int decider_result,
      const PacFileDataWithSource& script_data,
      const ProxyConfigWithAnnotation& effective_config);

  // Initiates a DNS resolution for `dns_condition` using
  // `network_anonymization_key` and `priority`. It ensures only one request is
  // active per host: if a resolution is pending, `listener` is added to the
  // existing request; otherwise, a new request is created and stored in
  // `host_resolution_requests_`. The `listener` must be a base::WeakPtr as the
  // service does not own the pending requests.
  std::optional<ResolveHostResult> RequestHostResolution(
      const ProxyConfig::ProxyOverrideRule::DnsProbeCondition& dns_condition,
      base::WeakPtr<ConfiguredProxyResolutionRequest> listener,
      const NetworkAnonymizationKey& network_anonymization_key,
      const NetLogWithSource& net_log,
      RequestPriority priority);

  // When called, will look into the `host_resolution_requests_` map
  // and notify all the listeners that a DNS resolution request has
  // completed with `net_error`. The map's entry for `host` will be
  // erased afterwards, as the request is no longer pending, and the
  // results are cached in the HostResolver.
  void OnHostResolved(const url::SchemeHostPort& host,
                      const NetworkAnonymizationKey& network_anonymization_key,
                      int net_error);

  // NetworkChangeNotifier::IPAddressObserver
  // When this is called, we re-fetch PAC scripts and re-run WPAD.
  void OnIPAddressChanged(
      NetworkChangeNotifier::IPAddressChangeType change_type) override;

  // NetworkChangeNotifier::DNSObserver
  // We respond as above.
  void OnDNSChanged() override;

  // ProxyConfigService::Observer
  void OnProxyConfigChanged(
      const ProxyConfigWithAnnotation& config,
      ProxyConfigService::ConfigAvailability availability) override;

  // When using a PAC script there isn't a user-configurable
  // ProxyHostMatchingRules to check, as the one from manual settings doesn't
  // apply. However we still check for matches against the implicit bypass
  // rules, to prevent PAC scripts from being able to proxy localhost.
  bool ApplyPacBypassRules(const GURL& url, ProxyInfo* results);

  std::unique_ptr<ProxyConfigService> config_service_;
  std::unique_ptr<ProxyResolverFactory> resolver_factory_;

  // Initialized when the effective configuration has an automatic setting (i.e.
  // uses a PAC script). Will then be used by applicable proxy resolution
  // requests.
  std::unique_ptr<ProxyResolver> resolver_;

  // Not owned, must outlive the service when override rules can be configured.
  const raw_ptr<HostResolver> host_resolver_for_override_rules_;

  // We store the proxy configuration that was last fetched from the
  // ProxyConfigService, as well as the resulting "effective" configuration.
  // The effective configuration is what we condense the original fetched
  // settings to after testing the various automatic settings (auto-detect
  // and custom PAC url).
  //
  // These are "optional" as their value remains unset while being calculated.
  std::optional<ProxyConfigWithAnnotation> fetched_config_;
  std::optional<ProxyConfigWithAnnotation> config_;

  // Map of the known bad proxies and the information about the retry time.
  ProxyRetryInfoMap proxy_retry_info_;

  // Set of pending/inprogress requests.
  PendingRequests pending_requests_;

  // The fetcher to use when downloading PAC scripts for the ProxyResolver.
  // This dependency can be nullptr if our ProxyResolver has no need for
  // external PAC script fetching.
  std::unique_ptr<PacFileFetcher> pac_file_fetcher_;

  // The fetcher to use when attempting to download the most appropriate PAC
  // script configured in DHCP, if any. Can be nullptr if the ProxyResolver has
  // no need for DHCP PAC script fetching.
  std::unique_ptr<DhcpPacFileFetcher> dhcp_pac_file_fetcher_;

  // Helper to download the PAC script (wpad + custom) and apply fallback rules.
  //
  // Note that the declaration is important here: |pac_file_fetcher_| and
  // |proxy_resolver_| must outlive |init_proxy_resolver_|.
  std::unique_ptr<InitProxyResolver> init_proxy_resolver_;

  // Helper to poll the PAC script for changes.
  std::unique_ptr<PacFileDeciderPoller> script_poller_;

  State current_state_ = STATE_NONE;

  // Map holding all pending DNS resolution requests started while evaluating
  // proxy override rules' DNS conditions. Those requests are keyed by the host
  // being resolved, as well as the NetworkAnonymizationKey used in the request
  // which required this host resolution.
  absl::flat_hash_map<std::pair<url::SchemeHostPort, NetworkAnonymizationKey>,
                      HostResolutionRequest>
      host_resolution_requests_;

  // Either OK or an ERR_* value indicating that a permanent error (e.g.
  // failed to fetch the PAC script) prevents proxy resolution.
  int permanent_error_ = OK;

  // This is the log where any events generated by |init_proxy_resolver_| are
  // sent to.
  raw_ptr<NetLog> net_log_;

  // The earliest time at which we should run any proxy auto-config. (Used to
  // stall re-configuration following an IP address change).
  base::TimeTicks stall_proxy_autoconfig_until_;

  // The amount of time to stall requests following IP address changes.
  base::TimeDelta stall_proxy_auto_config_delay_;

  // Whether child PacFileDeciders should use QuickCheck
  bool quick_check_enabled_;

  THREAD_CHECKER(thread_checker_);

  raw_ptr<ProxyDelegate> proxy_delegate_ = nullptr;

  // --- PAC runtime failure backoff handling ---
  // We throttle repeated PAC evaluations after runtime/parse errors to avoid
  // repeatedly invoking the resolver (e.g., WinHTTP) and re-fetching the PAC
  // script aggressively. This backoff is separate from the fetch poller
  // (PacFileDeciderPoller), which already schedules retries for initial fetch
  // failures.
  class PacRetryThrottler {
   public:
    PacRetryThrottler() = default;

    // Returns whether a retry is currently scheduled.
    bool IsScheduled() const { return retry_schedule_timer_.IsRunning(); }

    bool IsInBackoffWindow() const {
      return !next_retry_time_.is_null() &&
             base::TimeTicks::Now() < next_retry_time_;
    }

    bool HasFailedDuringCurrentLoad() const {
      return has_failed_during_current_load_;
    }

    // Clears throttling and cancels any scheduled retry.
    void ResetRetryState() {
      retry_attempt_count_ = 0;
      has_failed_during_current_load_ = false;
      retry_schedule_timer_.Stop();
      next_retry_time_ = base::TimeTicks();
    }

    // Records a runtime PAC failure and schedules a delayed reload if one
    // isn't already scheduled for the current resolver load cycle.
    void OnRuntimeFailure(
        base::WeakPtr<ConfiguredProxyResolutionService> service);
    // Timer fires: allow new failures to schedule another retry and request a
    // config reload via the owning service.
    void OnRetryScheduleTimerFired();

   private:
    // Backoff cadence matches documented fetch failure policy; see docs:
    // https://chromium.googlesource.com/chromium/src/+/HEAD/net/docs/proxy.md
    // 8s -> 32s -> 2m -> 4h (then stay at 4h).
    base::TimeDelta CalculateRetryDelay() const {
      static constexpr std::array<base::TimeDelta, 4> kRetryIntervals{
          base::Seconds(8), base::Seconds(32), base::Minutes(2),
          base::Hours(4)};
      size_t idx = std::min(static_cast<size_t>(retry_attempt_count_),
                            kRetryIntervals.size() - 1);
      return kRetryIntervals[idx];
    }

    void IncrementRetryCount() { ++retry_attempt_count_; }

    void MaybeScheduleScriptReloadWithDelay(
        base::WeakPtr<ConfiguredProxyResolutionService> service);

    int retry_attempt_count_ = 0;                  // Backoff steps applied.
    bool has_failed_during_current_load_ = false;  // Prevent double-scheduling.
    base::OneShotTimer retry_schedule_timer_;      // Schedules ForceReload.
    base::TimeTicks next_retry_time_;
  };

  // Schedule throttled reload after a PAC runtime/parse error.
  void HandlePacScriptLoadError();
  // Reset throttler after a successful PAC evaluation.
  void ResetPacRetryThrottler();
  bool ShouldResetPacRetryStateForNextReset();
  void OnRetryScheduleTimerFired();

  PacRetryThrottler pac_retry_throttler_;

  // When true, the next ResetProxyConfig invocation triggered as part of a
  // throttled ForceReload should preserve the PAC retry state. Automatically
  // cleared once consumed.
  bool preserve_pac_retry_state_for_next_reset_ = false;

  // Enable runtime PAC backoff gating (used for system PAC evaluators, e.g.,
  // WinHTTP). Disabled by default and set true by
  // CreateUsingSystemProxyResolver.
  bool enable_pac_runtime_backoff_ = false;

  // Set during destruction to annotate the synchronous teardown path:
  // the destructor aborts pending requests, which synchronously invoke
  // QueryComplete(ERR_ABORTED), followed by QueryDidComplete and
  // DidFinishResolvingProxy.
  // When this is true and no current config is set, ERR_ABORTED is mapped to
  // ERR_MANDATORY_PROXY_CONFIGURATION_FAILED to avoid interpreting teardown
  // as a successful DIRECT fallback.
  bool in_destruction_ = false;

  // WeakPtrFactory must be the last member. Used by SetReady() to detect
  // deletion by synchronous callbacks.
  base::WeakPtrFactory<ConfiguredProxyResolutionService> weak_ptr_factory_{
      this};
};

}  // namespace net

#endif  // NET_PROXY_RESOLUTION_CONFIGURED_PROXY_RESOLUTION_SERVICE_H_