blob: 15828f70f129841253e2cf89bc4efe2aa6de1f2b [file] [log] [blame]
// 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.
#ifndef NET_DNS_HOST_RESOLVER_MANAGER_H_
#define NET_DNS_HOST_RESOLVER_MANAGER_H_
#include <stddef.h>
#include <stdint.h>
#include <map>
#include <memory>
#include <set>
#include <string>
#include <vector>
#include "base/callback.h"
#include "base/callback_helpers.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "net/base/completion_once_callback.h"
#include "net/base/network_change_notifier.h"
#include "net/base/prioritized_dispatcher.h"
#include "net/dns/dns_config.h"
#include "net/dns/dns_config_overrides.h"
#include "net/dns/host_cache.h"
#include "net/dns/host_resolver.h"
#include "net/dns/host_resolver_proc.h"
#include "net/dns/public/dns_query_type.h"
#include "url/gurl.h"
namespace base {
class TickClock;
} // namespace base
namespace net {
class AddressList;
class DnsClient;
class HostPortPair;
class IPAddress;
class MDnsClient;
class MDnsSocketFactory;
class NetLog;
class NetLogWithSource;
class URLRequestContext;
// Scheduler and controller of host resolution requests. Because of the global
// nature of host resolutions, this class is generally expected to be singleton
// within the browser and only be interacted with through per-context
// ContextHostResolver objects (which are themselves generally interacted with
// though the HostResolver interface).
//
// For each hostname that is requested, HostResolver creates a
// HostResolverManager::Job. When this job gets dispatched it creates a task
// (ProcTask for the system resolver or DnsTask for the async resolver) which
// resolves the hostname. If requests for that same host are made during the
// job's lifetime, they are attached to the existing job rather than creating a
// new one. This avoids doing parallel resolves for the same host.
//
// The way these classes fit together is illustrated by:
//
//
// +----------- HostResolverManager ----------+
// | | |
// Job Job Job
// (for host1, fam1) (for host2, fam2) (for hostx, famx)
// / | | / | | / | |
// Request ... Request Request ... Request Request ... Request
// (port1) (port2) (port3) (port4) (port5) (portX)
//
// When a HostResolverManager::Job finishes, the callbacks of each waiting
// request are run on the origin thread.
//
// Thread safety: This class is not threadsafe, and must only be called
// from one thread!
//
// The HostResolverManager enforces limits on the maximum number of concurrent
// threads using PrioritizedDispatcher::Limits.
//
// Jobs are ordered in the queue based on their priority and order of arrival.
class NET_EXPORT HostResolverManager
: public NetworkChangeNotifier::IPAddressObserver,
public NetworkChangeNotifier::ConnectionTypeObserver,
public NetworkChangeNotifier::DNSObserver {
public:
using MdnsListener = HostResolver::MdnsListener;
using ResolveHostRequest = HostResolver::ResolveHostRequest;
using ResolveHostParameters = HostResolver::ResolveHostParameters;
using DnsClientFactory =
base::RepeatingCallback<std::unique_ptr<DnsClient>(NetLog*)>;
class CancellableRequest : public ResolveHostRequest {
public:
// If running asynchronously, silently cancels the request as if destroyed.
// Callbacks will never be invoked. Noop if request is already complete or
// never started.
virtual void Cancel() = 0;
};
// Creates a HostResolver as specified by |options|. Blocking tasks are run in
// ThreadPool.
//
// If Options.enable_caching is true, a cache is created using
// HostCache::CreateDefaultCache(). Otherwise no cache is used.
//
// Options.GetDispatcherLimits() determines the maximum number of jobs that
// the resolver will run at once. This upper-bounds the total number of
// outstanding DNS transactions (not counting retransmissions and retries).
//
// |net_log| must remain valid for the life of the HostResolverManager.
//
// |dns_client_factory_for_testing| may be used to inject a factory to be used
// for ManagerOptions::dns_client_enabled and SetDnsClientEnabled(). If not
// set, standard DnsClient::CreateClient() will be used.
HostResolverManager(
const HostResolver::ManagerOptions& options,
NetLog* net_log,
DnsClientFactory dns_client_factory_for_testing = base::NullCallback());
// If any completion callbacks are pending when the resolver is destroyed,
// the host resolutions are cancelled, and the completion callbacks will not
// be called.
~HostResolverManager() override;
// If |host_cache| is non-null, its HostCache::Invalidator must have already
// been added (via AddHostCacheInvalidator()).
std::unique_ptr<CancellableRequest> CreateRequest(
const HostPortPair& host,
const NetLogWithSource& net_log,
const base::Optional<ResolveHostParameters>& optional_parameters,
URLRequestContext* request_context,
HostCache* host_cache);
std::unique_ptr<MdnsListener> CreateMdnsListener(const HostPortPair& host,
DnsQueryType query_type);
// Enables or disables the built-in asynchronous DnsClient. If enabled, by
// default (when no |ResolveHostParameters::source| is specified), the
// DnsClient will be used for resolves and, in case of failure, resolution
// will fallback to the system resolver (HostResolverProc from
// ProcTaskParams). If the DnsClient is not pre-configured with a valid
// DnsConfig, a new config is fetched from NetworkChangeNotifier.
//
// Setting to |true| has no effect if |ENABLE_BUILT_IN_DNS| not defined.
virtual void SetDnsClientEnabled(bool enabled);
std::unique_ptr<base::Value> GetDnsConfigAsValue() const;
// Sets overriding configuration that will replace or add to configuration
// read from the system for DnsClient resolution.
void SetDnsConfigOverrides(const DnsConfigOverrides& overrides);
// Support for invalidating HostCaches on changes to network or DNS
// configuration. HostCaches should register/deregister invalidators here
// rather than attempting to listen for relevant network change signals
// themselves because HostResolverManager needs to coordinate invalidations
// with in-progress resolves and because some invalidations are triggered by
// changes to manager properties/configuration rather than pure network
// changes.
//
// Note: Invalidation handling must not call back into HostResolverManager as
// the invalidation is expected to be handled atomically with other clearing
// and aborting actions.
void AddHostCacheInvalidator(HostCache::Invalidator* invalidator);
void RemoveHostCacheInvalidator(const HostCache::Invalidator* invalidator);
// Returns the currently configured DNS over HTTPS servers. Returns nullptr if
// DNS over HTTPS is not enabled.
const std::vector<DnsConfig::DnsOverHttpsServerConfig>*
GetDnsOverHttpsServersForTesting() const;
void set_proc_params_for_test(const ProcTaskParams& proc_params) {
proc_params_ = proc_params;
}
void InvalidateCachesForTesting() { InvalidateCaches(); }
void SetTickClockForTesting(const base::TickClock* tick_clock);
// Configures maximum number of Jobs in the queue. Exposed for testing.
// Only allowed when the queue is empty.
void SetMaxQueuedJobsForTesting(size_t value);
void SetMdnsSocketFactoryForTesting(
std::unique_ptr<MDnsSocketFactory> socket_factory);
void SetMdnsClientForTesting(std::unique_ptr<MDnsClient> client);
void SetBaseDnsConfigForTesting(const DnsConfig& base_config);
// Similar to SetDnsClientEnabled(true) except allows setting |dns_client|
// as the instance to be used.
void SetDnsClientForTesting(std::unique_ptr<DnsClient> dns_client);
// Allows the tests to catch slots leaking out of the dispatcher. One
// HostResolverManager::Job could occupy multiple PrioritizedDispatcher job
// slots.
size_t num_running_dispatcher_jobs_for_tests() const {
return dispatcher_->num_running_jobs();
}
size_t num_jobs_for_testing() const { return jobs_.size(); }
bool check_ipv6_on_wifi_for_testing() const { return check_ipv6_on_wifi_; }
protected:
// Callback from HaveOnlyLoopbackAddresses probe.
void SetHaveOnlyLoopbackAddresses(bool result);
// Sets the task runner used for HostResolverProc tasks.
void SetTaskRunnerForTesting(scoped_refptr<base::TaskRunner> task_runner);
private:
friend class HostResolverManagerTest;
FRIEND_TEST_ALL_PREFIXES(HostResolverManagerDnsTest, ModeForHistogram);
class Job;
struct JobKey;
class ProcTask;
class LoopbackProbeJob;
class DnsTask;
class RequestImpl;
using JobMap = std::map<JobKey, std::unique_ptr<Job>>;
// Current resolver mode, useful for breaking down histograms.
enum ModeForHistogram {
// Using the system (i.e. O/S's) resolver.
MODE_FOR_HISTOGRAM_SYSTEM,
// Using the system resolver, which is in turn using private DNS.
MODE_FOR_HISTOGRAM_SYSTEM_PRIVATE_DNS,
// Using the system resolver, which is using DNS servers which offer
// DNS-over-HTTPS service.
MODE_FOR_HISTOGRAM_SYSTEM_SUPPORTS_DOH,
// Using Chromium DNS resolver.
MODE_FOR_HISTOGRAM_ASYNC_DNS,
// Using Chromium DNS resolver which is using DNS servers which offer
// DNS-over-HTTPS service.
MODE_FOR_HISTOGRAM_ASYNC_DNS_PRIVATE_SUPPORTS_DOH,
};
// Number of consecutive failures of DnsTask (with successful fallback to
// ProcTask) before the DnsClient is disabled until the next DNS change.
static const unsigned kMaximumDnsFailures;
// Attempts host resolution for |request|. Generally only expected to be
// called from RequestImpl::Start().
int Resolve(RequestImpl* request);
// Attempts host resolution using fast local sources: IP literal resolution,
// cache lookup, HOSTS lookup (if enabled), and localhost. Returns results
// with error() OK if successful, ERR_NAME_NOT_RESOLVED if input is invalid,
// or ERR_DNS_CACHE_MISS if the host could not be resolved using local
// sources.
//
// On ERR_DNS_CACHE_MISS and OK, effective request parameters are written to
// |out_effective_query_type| and |out_effective_host_resolver_flags|.
//
// If results are returned from the host cache, |out_stale_info| will be
// filled in with information on how stale or fresh the result is. Otherwise,
// |out_stale_info| will be set to |base::nullopt|.
//
// If |cache_usage == ResolveHostParameters::CacheUsage::STALE_ALLOWED|, then
// stale cache entries can be returned.
HostCache::Entry ResolveLocally(
const std::string& hostname,
DnsQueryType requested_address_family,
HostResolverSource source,
HostResolverFlags flags,
ResolveHostParameters::CacheUsage cache_usage,
const NetLogWithSource& request_net_log,
HostCache* cache,
DnsQueryType* out_effective_query_type,
HostResolverFlags* out_effective_host_resolver_flags,
base::Optional<HostCache::EntryStaleness>* out_stale_info);
// Attempts to create and start a Job to asynchronously attempt to resolve
// |request|. On success, returns ERR_IO_PENDING and attaches the Job to
// |request|. On error, marks |request| completed and returns the error.
int CreateAndStartJob(DnsQueryType effective_query_type,
HostResolverFlags effective_host_resolver_flags,
RequestImpl* request);
// Tries to resolve |key| and its possible IP address representation,
// |ip_address|. Returns a results entry iff the input can be resolved.
base::Optional<HostCache::Entry> ResolveAsIP(DnsQueryType query_type,
bool resolve_canonname,
const IPAddress* ip_address);
// Returns the result iff a positive match is found for |key| in the cache.
// |out_stale_info| must be non-null, and will be filled in with details of
// the entry's staleness if an entry is returned, otherwise it will be set to
// |base::nullopt|.
//
// If |allow_stale| is true, then stale cache entries can be returned.
base::Optional<HostCache::Entry> ServeFromCache(
HostCache* cache,
const HostCache::Key& key,
bool allow_stale,
base::Optional<HostCache::EntryStaleness>* out_stale_info);
// Iff we have a DnsClient with a valid DnsConfig, and |key| can be resolved
// from the HOSTS file, return the results.
base::Optional<HostCache::Entry> ServeFromHosts(
base::StringPiece hostname,
DnsQueryType query_type,
bool default_family_due_to_no_ipv6);
// Iff |key| is for a localhost name (RFC 6761) and address DNS query type,
// returns a results entry with the loopback IP.
base::Optional<HostCache::Entry> ServeLocalhost(
base::StringPiece hostname,
DnsQueryType query_type,
bool default_family_due_to_no_ipv6);
// Determines "effective" request parameters using manager properties and IPv6
// reachability.
void GetEffectiveParametersForRequest(DnsQueryType dns_query_type,
HostResolverFlags flags,
const IPAddress* ip_address,
const NetLogWithSource& net_log,
DnsQueryType* out_effective_type,
HostResolverFlags* out_effective_flags);
// Probes IPv6 support and returns true if IPv6 support is enabled.
// Results are cached, i.e. when called repeatedly this method returns result
// from the first probe for some time before probing again.
bool IsIPv6Reachable(const NetLogWithSource& net_log);
// Attempts to connect a UDP socket to |dest|:53. Virtual for testing.
virtual bool IsGloballyReachable(const IPAddress& dest,
const NetLogWithSource& net_log);
// Asynchronously checks if only loopback IPs are available.
virtual void RunLoopbackProbeJob();
// Records the result in cache if cache is present.
void CacheResult(HostCache* cache,
const HostCache::Key& key,
const HostCache::Entry& entry,
base::TimeDelta ttl);
// Record time from Request creation until a valid DNS response.
void RecordTotalTime(bool speculative,
bool from_cache,
base::TimeDelta duration) const;
// Removes |job_it| from |jobs_| and return.
std::unique_ptr<Job> RemoveJob(JobMap::iterator job_it);
// Aborts all in progress jobs with ERR_NETWORK_CHANGED and notifies their
// requests. Might start new jobs.
void AbortAllInProgressJobs();
void SetDnsClient(std::unique_ptr<DnsClient> dns_client);
// Aborts all in progress DnsTasks. In-progress jobs will fall back to
// ProcTasks if able and otherwise abort with |error|. Might start new jobs,
// if any jobs were taking up two dispatcher slots.
//
// If |fallback_only|, tasks will only abort if they can fallback to ProcTask.
void AbortDnsTasks(int error, bool fallback_only);
// Attempts to serve each Job in |jobs_| from the HOSTS file if we have
// a DnsClient with a valid DnsConfig.
void TryServingAllJobsFromHosts();
// NetworkChangeNotifier::IPAddressObserver:
void OnIPAddressChanged() override;
// NetworkChangeNotifier::ConnectionTypeObserver:
void OnConnectionTypeChanged(
NetworkChangeNotifier::ConnectionType type) override;
// NetworkChangeNotifier::DNSObserver:
void OnDNSChanged() override;
void OnInitialDNSConfigRead() override;
// Returns DNS configuration including applying overrides. |log_to_net_log|
// indicates whether the config should be logged to the netlog.
DnsConfig GetBaseDnsConfig(bool log_to_net_log);
void UpdateDNSConfig(bool config_changed);
// True if have a DnsClient with a valid DnsConfig.
bool HaveDnsConfig() const;
// Called on successful DnsTask resolve.
void OnDnsTaskResolve();
// Called on successful resolve after falling back to ProcTask after a failed
// DnsTask resolve.
void OnFallbackResolve(int dns_task_error);
int GetOrCreateMdnsClient(MDnsClient** out_client);
// Update |mode_for_histogram_|. Called when DNS config changes. |dns_config|
// is the current DNS config and is only used if !HaveDnsConfig().
void UpdateModeForHistogram(const DnsConfig& dns_config);
void InvalidateCaches();
// Used for multicast DNS tasks. Created on first use using
// GetOrCreateMndsClient().
std::unique_ptr<MDnsSocketFactory> mdns_socket_factory_;
std::unique_ptr<MDnsClient> mdns_client_;
// Map from HostCache::Key to a Job.
JobMap jobs_;
// Starts Jobs according to their priority and the configured limits.
std::unique_ptr<PrioritizedDispatcher> dispatcher_;
// Limit on the maximum number of jobs queued in |dispatcher_|.
size_t max_queued_jobs_;
// Parameters for ProcTask.
ProcTaskParams proc_params_;
NetLog* net_log_;
// If set, used for construction of DnsClients for SetDnsClientEnabled().
const DnsClientFactory dns_client_factory_for_testing_;
// If present, used by DnsTask and ServeFromHosts to resolve requests.
std::unique_ptr<DnsClient> dns_client_;
// True if received valid config from |dns_config_service_|. Temporary, used
// to measure performance of DnsConfigService: http://crbug.com/125599
bool received_dns_config_;
// If set, used instead of getting DNS configuration from
// NetworkChangeNotifier. Changes sent from NetworkChangeNotifier will also be
// ignored and not cancel any pending requests.
base::Optional<DnsConfig> test_base_config_;
// Overrides or adds to DNS configuration read from the system for DnsClient
// resolution.
DnsConfigOverrides dns_config_overrides_;
// Number of consecutive failures of DnsTask, counted when fallback succeeds.
unsigned num_dns_failures_;
// False if IPv6 should not be attempted and assumed unreachable when on a
// WiFi connection. See https://crbug.com/696569 for further context.
bool check_ipv6_on_wifi_;
// True if DnsConfigService detected that system configuration depends on
// local IPv6 connectivity. Disables probing.
bool use_local_ipv6_;
base::TimeTicks last_ipv6_probe_time_;
bool last_ipv6_probe_result_;
// Any resolver flags that should be added to a request by default.
HostResolverFlags additional_resolver_flags_;
// |true| if requests that would otherwise be handled via DnsTask should
// instead use ProcTask when able. Used in cases where there have been
// multiple failures in DnsTask that succeeded in ProcTask, leading to the
// conclusion that the resolver has a bad DNS configuration.
bool use_proctask_by_default_;
// Allow fallback to ProcTask if DnsTask fails.
bool allow_fallback_to_proctask_;
// Task runner used for DNS lookups using the system resolver. Normally a
// ThreadPool task runner, but can be overridden for tests.
scoped_refptr<base::TaskRunner> proc_task_runner_;
// Current resolver mode, useful for breaking down histogram data.
ModeForHistogram mode_for_histogram_;
// Shared tick clock, overridden for testing.
const base::TickClock* tick_clock_;
// For HostCache invalidation notifications.
base::ObserverList<HostCache::Invalidator,
true /* check_empty */,
false /* allow_reentrancy */>
host_cache_invalidators_;
bool invalidation_in_progress_;
THREAD_CHECKER(thread_checker_);
base::WeakPtrFactory<HostResolverManager> weak_ptr_factory_;
base::WeakPtrFactory<HostResolverManager> probe_weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(HostResolverManager);
};
// Resolves a local hostname (such as "localhost" or "localhost6") into
// IP endpoints (with port 0). Returns true if |host| is a local
// hostname and false otherwise. Special IPv6 names (e.g. "localhost6")
// will resolve to an IPv6 address only, whereas other names will
// resolve to both IPv4 and IPv6.
// This function is only exposed so it can be unit-tested.
// TODO(tfarina): It would be better to change the tests so this function
// gets exercised indirectly through HostResolverManager.
NET_EXPORT_PRIVATE bool ResolveLocalHostname(base::StringPiece host,
AddressList* address_list);
} // namespace net
#endif // NET_DNS_HOST_RESOLVER_MANAGER_H_