blob: d5602a4c674cad2848bb9d28cc77b0ad85d5333f [file] [log] [blame]
[email protected]a2730882012-01-21 00:56:271// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]b59ff372009-07-15 22:04:322// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]f2cb3cf2013-03-21 01:40:535#include "net/dns/host_resolver_impl.h"
[email protected]b59ff372009-07-15 22:04:326
[email protected]21526002010-05-16 19:42:467#if defined(OS_WIN)
8#include <Winsock2.h>
9#elif defined(OS_POSIX)
10#include <netdb.h>
11#endif
12
[email protected]68ad3ee2010-01-30 03:45:3913#include <cmath>
[email protected]0f292de02012-02-01 22:28:2014#include <utility>
[email protected]21526002010-05-16 19:42:4615#include <vector>
[email protected]68ad3ee2010-01-30 03:45:3916
17#include "base/basictypes.h"
[email protected]33152acc2011-10-20 23:37:1218#include "base/bind.h"
[email protected]aa22b242011-11-16 18:58:2919#include "base/bind_helpers.h"
[email protected]0f292de02012-02-01 22:28:2020#include "base/callback.h"
[email protected]b59ff372009-07-15 22:04:3221#include "base/compiler_specific.h"
[email protected]58580352010-10-26 04:07:5022#include "base/debug/debugger.h"
23#include "base/debug/stack_trace.h"
[email protected]7ccb7072013-06-10 20:56:2824#include "base/message_loop/message_loop_proxy.h"
[email protected]1e9bbd22010-10-15 16:42:4525#include "base/metrics/field_trial.h"
[email protected]835d7c82010-10-14 04:38:3826#include "base/metrics/histogram.h"
[email protected]7286e3fc2011-07-19 22:13:2427#include "base/stl_util.h"
[email protected]be528af2013-06-11 07:39:4828#include "base/strings/string_util.h"
[email protected]750b2f3c2013-06-07 18:41:0529#include "base/strings/utf_string_conversions.h"
[email protected]ac9ba8fe2010-12-30 18:08:3630#include "base/threading/worker_pool.h"
[email protected]66e96c42013-06-28 15:20:3131#include "base/time/time.h"
[email protected]21526002010-05-16 19:42:4632#include "base/values.h"
[email protected]b3601bc22012-02-21 21:23:2033#include "net/base/address_family.h"
[email protected]b59ff372009-07-15 22:04:3234#include "net/base/address_list.h"
[email protected]46018c9d2011-09-06 03:42:3435#include "net/base/dns_reloader.h"
[email protected]e806cd72013-05-17 02:08:4336#include "net/base/dns_util.h"
[email protected]ee094b82010-08-24 15:55:5137#include "net/base/host_port_pair.h"
[email protected]2bb04442010-08-18 18:01:1538#include "net/base/net_errors.h"
[email protected]ee094b82010-08-24 15:55:5139#include "net/base/net_log.h"
[email protected]0f8f1b432010-03-16 19:06:0340#include "net/base/net_util.h"
[email protected]0adcb2b2012-08-15 21:30:4641#include "net/dns/address_sorter.h"
[email protected]78eac2a2012-03-14 19:09:2742#include "net/dns/dns_client.h"
[email protected]b3601bc22012-02-21 21:23:2043#include "net/dns/dns_config_service.h"
44#include "net/dns/dns_protocol.h"
45#include "net/dns/dns_response.h"
[email protected]b3601bc22012-02-21 21:23:2046#include "net/dns/dns_transaction.h"
[email protected]f2cb3cf2013-03-21 01:40:5347#include "net/dns/host_resolver_proc.h"
[email protected]9db6f702013-04-10 18:10:5148#include "net/socket/client_socket_factory.h"
49#include "net/udp/datagram_client_socket.h"
[email protected]b59ff372009-07-15 22:04:3250
51#if defined(OS_WIN)
52#include "net/base/winsock_init.h"
53#endif
54
55namespace net {
56
[email protected]e95d3aca2010-01-11 22:47:4357namespace {
58
[email protected]6e78dfb2011-07-28 21:34:4759// Limit the size of hostnames that will be resolved to combat issues in
60// some platform's resolvers.
61const size_t kMaxHostLength = 4096;
62
[email protected]a2730882012-01-21 00:56:2763// Default TTL for successful resolutions with ProcTask.
64const unsigned kCacheEntryTTLSeconds = 60;
65
[email protected]b3601bc22012-02-21 21:23:2066// Default TTL for unsuccessful resolutions with ProcTask.
67const unsigned kNegativeCacheEntryTTLSeconds = 0;
68
[email protected]895123222012-10-25 15:21:1769// Minimum TTL for successful resolutions with DnsTask.
70const unsigned kMinimumTTLSeconds = kCacheEntryTTLSeconds;
71
[email protected]24f4bab2010-10-15 01:27:1172// We use a separate histogram name for each platform to facilitate the
73// display of error codes by their symbolic name (since each platform has
74// different mappings).
75const char kOSErrorsForGetAddrinfoHistogramName[] =
76#if defined(OS_WIN)
77 "Net.OSErrorsForGetAddrinfo_Win";
78#elif defined(OS_MACOSX)
79 "Net.OSErrorsForGetAddrinfo_Mac";
80#elif defined(OS_LINUX)
81 "Net.OSErrorsForGetAddrinfo_Linux";
82#else
83 "Net.OSErrorsForGetAddrinfo";
84#endif
85
[email protected]c89b2442011-05-26 14:28:2786// Gets a list of the likely error codes that getaddrinfo() can return
87// (non-exhaustive). These are the error codes that we will track via
88// a histogram.
89std::vector<int> GetAllGetAddrinfoOSErrors() {
90 int os_errors[] = {
91#if defined(OS_POSIX)
[email protected]23f771162011-06-02 18:37:5192#if !defined(OS_FREEBSD)
[email protected]39588992011-07-11 19:54:3793#if !defined(OS_ANDROID)
[email protected]c48aef92011-11-22 23:41:4594 // EAI_ADDRFAMILY has been declared obsolete in Android's and
95 // FreeBSD's netdb.h.
[email protected]c89b2442011-05-26 14:28:2796 EAI_ADDRFAMILY,
[email protected]39588992011-07-11 19:54:3797#endif
[email protected]c48aef92011-11-22 23:41:4598 // EAI_NODATA has been declared obsolete in FreeBSD's netdb.h.
[email protected]23f771162011-06-02 18:37:5199 EAI_NODATA,
100#endif
[email protected]c89b2442011-05-26 14:28:27101 EAI_AGAIN,
102 EAI_BADFLAGS,
103 EAI_FAIL,
104 EAI_FAMILY,
105 EAI_MEMORY,
[email protected]c89b2442011-05-26 14:28:27106 EAI_NONAME,
107 EAI_SERVICE,
108 EAI_SOCKTYPE,
109 EAI_SYSTEM,
110#elif defined(OS_WIN)
111 // See: http://msdn.microsoft.com/en-us/library/ms738520(VS.85).aspx
112 WSA_NOT_ENOUGH_MEMORY,
113 WSAEAFNOSUPPORT,
114 WSAEINVAL,
115 WSAESOCKTNOSUPPORT,
116 WSAHOST_NOT_FOUND,
117 WSANO_DATA,
118 WSANO_RECOVERY,
119 WSANOTINITIALISED,
120 WSATRY_AGAIN,
121 WSATYPE_NOT_FOUND,
122 // The following are not in doc, but might be to appearing in results :-(.
123 WSA_INVALID_HANDLE,
124#endif
125 };
126
127 // Ensure all errors are positive, as histogram only tracks positive values.
128 for (size_t i = 0; i < arraysize(os_errors); ++i) {
129 os_errors[i] = std::abs(os_errors[i]);
130 }
131
132 return base::CustomHistogram::ArrayToCustomRanges(os_errors,
133 arraysize(os_errors));
134}
135
[email protected]1def74c2012-03-22 20:07:00136enum DnsResolveStatus {
137 RESOLVE_STATUS_DNS_SUCCESS = 0,
138 RESOLVE_STATUS_PROC_SUCCESS,
139 RESOLVE_STATUS_FAIL,
[email protected]1d932852012-06-19 19:40:33140 RESOLVE_STATUS_SUSPECT_NETBIOS,
[email protected]1def74c2012-03-22 20:07:00141 RESOLVE_STATUS_MAX
142};
143
144void UmaAsyncDnsResolveStatus(DnsResolveStatus result) {
145 UMA_HISTOGRAM_ENUMERATION("AsyncDNS.ResolveStatus",
146 result,
147 RESOLVE_STATUS_MAX);
148}
149
[email protected]1d932852012-06-19 19:40:33150bool ResemblesNetBIOSName(const std::string& hostname) {
151 return (hostname.size() < 16) && (hostname.find('.') == std::string::npos);
152}
153
154// True if |hostname| ends with either ".local" or ".local.".
155bool ResemblesMulticastDNSName(const std::string& hostname) {
156 DCHECK(!hostname.empty());
157 const char kSuffix[] = ".local.";
158 const size_t kSuffixLen = sizeof(kSuffix) - 1;
159 const size_t kSuffixLenTrimmed = kSuffixLen - 1;
160 if (hostname[hostname.size() - 1] == '.') {
161 return hostname.size() > kSuffixLen &&
162 !hostname.compare(hostname.size() - kSuffixLen, kSuffixLen, kSuffix);
163 }
164 return hostname.size() > kSuffixLenTrimmed &&
165 !hostname.compare(hostname.size() - kSuffixLenTrimmed, kSuffixLenTrimmed,
166 kSuffix, kSuffixLenTrimmed);
167}
168
[email protected]34e61362013-07-24 20:41:56169// Attempts to connect a UDP socket to |dest|:53.
[email protected]2b74a2f2013-07-23 19:37:38170bool IsGloballyReachable(const IPAddressNumber& dest,
171 const BoundNetLog& net_log) {
[email protected]9db6f702013-04-10 18:10:51172 scoped_ptr<DatagramClientSocket> socket(
173 ClientSocketFactory::GetDefaultFactory()->CreateDatagramClientSocket(
174 DatagramSocket::DEFAULT_BIND,
175 RandIntCallback(),
[email protected]2b74a2f2013-07-23 19:37:38176 net_log.net_log(),
177 net_log.source()));
[email protected]34e61362013-07-24 20:41:56178 int rv = socket->Connect(IPEndPoint(dest, 53));
[email protected]e9051722013-04-12 21:58:18179 if (rv != OK)
180 return false;
181 IPEndPoint endpoint;
182 rv = socket->GetLocalAddress(&endpoint);
183 if (rv != OK)
184 return false;
185 DCHECK(endpoint.GetFamily() == ADDRESS_FAMILY_IPV6);
186 const IPAddressNumber& address = endpoint.address();
187 bool is_link_local = (address[0] == 0xFE) && ((address[1] & 0xC0) == 0x80);
188 if (is_link_local)
189 return false;
190 const uint8 kTeredoPrefix[] = { 0x20, 0x01, 0, 0 };
191 bool is_teredo = std::equal(kTeredoPrefix,
192 kTeredoPrefix + arraysize(kTeredoPrefix),
193 address.begin());
194 if (is_teredo)
195 return false;
196 return true;
[email protected]9db6f702013-04-10 18:10:51197}
198
[email protected]51b9a6b2012-06-25 21:50:29199// Provide a common macro to simplify code and readability. We must use a
200// macro as the underlying HISTOGRAM macro creates static variables.
201#define DNS_HISTOGRAM(name, time) UMA_HISTOGRAM_CUSTOM_TIMES(name, time, \
202 base::TimeDelta::FromMilliseconds(1), base::TimeDelta::FromHours(1), 100)
203
204// A macro to simplify code and readability.
205#define DNS_HISTOGRAM_BY_PRIORITY(basename, priority, time) \
206 do { \
207 switch (priority) { \
208 case HIGHEST: DNS_HISTOGRAM(basename "_HIGHEST", time); break; \
209 case MEDIUM: DNS_HISTOGRAM(basename "_MEDIUM", time); break; \
210 case LOW: DNS_HISTOGRAM(basename "_LOW", time); break; \
211 case LOWEST: DNS_HISTOGRAM(basename "_LOWEST", time); break; \
212 case IDLE: DNS_HISTOGRAM(basename "_IDLE", time); break; \
213 default: NOTREACHED(); break; \
214 } \
215 DNS_HISTOGRAM(basename, time); \
216 } while (0)
217
218// Record time from Request creation until a valid DNS response.
219void RecordTotalTime(bool had_dns_config,
220 bool speculative,
221 base::TimeDelta duration) {
222 if (had_dns_config) {
223 if (speculative) {
224 DNS_HISTOGRAM("AsyncDNS.TotalTime_speculative", duration);
225 } else {
226 DNS_HISTOGRAM("AsyncDNS.TotalTime", duration);
227 }
228 } else {
229 if (speculative) {
230 DNS_HISTOGRAM("DNS.TotalTime_speculative", duration);
231 } else {
232 DNS_HISTOGRAM("DNS.TotalTime", duration);
233 }
234 }
235}
236
[email protected]1339a2a22012-10-17 08:39:43237void RecordTTL(base::TimeDelta ttl) {
238 UMA_HISTOGRAM_CUSTOM_TIMES("AsyncDNS.TTL", ttl,
239 base::TimeDelta::FromSeconds(1),
240 base::TimeDelta::FromDays(1), 100);
241}
242
[email protected]16c2bd72013-06-28 01:19:22243bool ConfigureAsyncDnsNoFallbackFieldTrial() {
244 const bool kDefault = false;
245
246 // Configure the AsyncDns field trial as follows:
247 // groups AsyncDnsNoFallbackA and AsyncDnsNoFallbackB: return true,
248 // groups AsyncDnsA and AsyncDnsB: return false,
249 // groups SystemDnsA and SystemDnsB: return false,
250 // otherwise (trial absent): return default.
251 std::string group_name = base::FieldTrialList::FindFullName("AsyncDns");
252 if (!group_name.empty())
253 return StartsWithASCII(group_name, "AsyncDnsNoFallback", false);
254 return kDefault;
255}
256
[email protected]d7b9a2b2012-05-31 22:31:19257//-----------------------------------------------------------------------------
258
[email protected]895123222012-10-25 15:21:17259AddressList EnsurePortOnAddressList(const AddressList& list, uint16 port) {
260 if (list.empty() || list.front().port() == port)
261 return list;
262 return AddressList::CopyWithPort(list, port);
[email protected]7054e78f2012-05-07 21:44:56263}
264
[email protected]ec666ab22013-04-17 20:05:59265// Returns true if |addresses| contains only IPv4 loopback addresses.
266bool IsAllIPv4Loopback(const AddressList& addresses) {
267 for (unsigned i = 0; i < addresses.size(); ++i) {
268 const IPAddressNumber& address = addresses[i].address();
269 switch (addresses[i].GetFamily()) {
270 case ADDRESS_FAMILY_IPV4:
271 if (address[0] != 127)
272 return false;
273 break;
274 case ADDRESS_FAMILY_IPV6:
275 return false;
276 default:
277 NOTREACHED();
278 return false;
279 }
280 }
281 return true;
282}
283
[email protected]cd565142012-06-12 16:21:45284// Creates NetLog parameters when the resolve failed.
285base::Value* NetLogProcTaskFailedCallback(uint32 attempt_number,
286 int net_error,
287 int os_error,
288 NetLog::LogLevel /* log_level */) {
[email protected]ea5ef4c2013-06-13 22:50:27289 base::DictionaryValue* dict = new base::DictionaryValue();
[email protected]cd565142012-06-12 16:21:45290 if (attempt_number)
291 dict->SetInteger("attempt_number", attempt_number);
[email protected]21526002010-05-16 19:42:46292
[email protected]cd565142012-06-12 16:21:45293 dict->SetInteger("net_error", net_error);
[email protected]13024882011-05-18 23:19:16294
[email protected]cd565142012-06-12 16:21:45295 if (os_error) {
296 dict->SetInteger("os_error", os_error);
[email protected]21526002010-05-16 19:42:46297#if defined(OS_POSIX)
[email protected]cd565142012-06-12 16:21:45298 dict->SetString("os_error_string", gai_strerror(os_error));
[email protected]21526002010-05-16 19:42:46299#elif defined(OS_WIN)
[email protected]cd565142012-06-12 16:21:45300 // Map the error code to a human-readable string.
301 LPWSTR error_string = NULL;
302 int size = FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
303 FORMAT_MESSAGE_FROM_SYSTEM,
304 0, // Use the internal message table.
305 os_error,
306 0, // Use default language.
307 (LPWSTR)&error_string,
308 0, // Buffer size.
309 0); // Arguments (unused).
[email protected]ad65a3e2013-12-25 18:18:01310 dict->SetString("os_error_string", base::WideToUTF8(error_string));
[email protected]cd565142012-06-12 16:21:45311 LocalFree(error_string);
[email protected]21526002010-05-16 19:42:46312#endif
[email protected]21526002010-05-16 19:42:46313 }
314
[email protected]cd565142012-06-12 16:21:45315 return dict;
316}
[email protected]a9813302012-04-28 09:29:28317
[email protected]cd565142012-06-12 16:21:45318// Creates NetLog parameters when the DnsTask failed.
319base::Value* NetLogDnsTaskFailedCallback(int net_error,
320 int dns_error,
321 NetLog::LogLevel /* log_level */) {
[email protected]ea5ef4c2013-06-13 22:50:27322 base::DictionaryValue* dict = new base::DictionaryValue();
[email protected]cd565142012-06-12 16:21:45323 dict->SetInteger("net_error", net_error);
324 if (dns_error)
325 dict->SetInteger("dns_error", dns_error);
326 return dict;
[email protected]ee094b82010-08-24 15:55:51327};
328
[email protected]cd565142012-06-12 16:21:45329// Creates NetLog parameters containing the information in a RequestInfo object,
330// along with the associated NetLog::Source.
331base::Value* NetLogRequestInfoCallback(const NetLog::Source& source,
332 const HostResolver::RequestInfo* info,
333 NetLog::LogLevel /* log_level */) {
[email protected]ea5ef4c2013-06-13 22:50:27334 base::DictionaryValue* dict = new base::DictionaryValue();
[email protected]cd565142012-06-12 16:21:45335 source.AddToEventParameters(dict);
[email protected]b3601bc22012-02-21 21:23:20336
[email protected]cd565142012-06-12 16:21:45337 dict->SetString("host", info->host_port_pair().ToString());
338 dict->SetInteger("address_family",
339 static_cast<int>(info->address_family()));
340 dict->SetBoolean("allow_cached_response", info->allow_cached_response());
341 dict->SetBoolean("is_speculative", info->is_speculative());
[email protected]cd565142012-06-12 16:21:45342 return dict;
343}
[email protected]b3601bc22012-02-21 21:23:20344
[email protected]cd565142012-06-12 16:21:45345// Creates NetLog parameters for the creation of a HostResolverImpl::Job.
346base::Value* NetLogJobCreationCallback(const NetLog::Source& source,
347 const std::string* host,
348 NetLog::LogLevel /* log_level */) {
[email protected]ea5ef4c2013-06-13 22:50:27349 base::DictionaryValue* dict = new base::DictionaryValue();
[email protected]cd565142012-06-12 16:21:45350 source.AddToEventParameters(dict);
351 dict->SetString("host", *host);
352 return dict;
353}
[email protected]a9813302012-04-28 09:29:28354
[email protected]cd565142012-06-12 16:21:45355// Creates NetLog parameters for HOST_RESOLVER_IMPL_JOB_ATTACH/DETACH events.
356base::Value* NetLogJobAttachCallback(const NetLog::Source& source,
357 RequestPriority priority,
358 NetLog::LogLevel /* log_level */) {
[email protected]ea5ef4c2013-06-13 22:50:27359 base::DictionaryValue* dict = new base::DictionaryValue();
[email protected]cd565142012-06-12 16:21:45360 source.AddToEventParameters(dict);
[email protected]3b04d1f22013-10-16 00:23:56361 dict->SetString("priority", RequestPriorityToString(priority));
[email protected]cd565142012-06-12 16:21:45362 return dict;
363}
[email protected]b3601bc22012-02-21 21:23:20364
[email protected]cd565142012-06-12 16:21:45365// Creates NetLog parameters for the DNS_CONFIG_CHANGED event.
366base::Value* NetLogDnsConfigCallback(const DnsConfig* config,
367 NetLog::LogLevel /* log_level */) {
368 return config->ToValue();
369}
[email protected]b4481b222012-03-16 17:13:11370
[email protected]0f292de02012-02-01 22:28:20371// The logging routines are defined here because some requests are resolved
372// without a Request object.
373
374// Logs when a request has just been started.
375void LogStartRequest(const BoundNetLog& source_net_log,
376 const BoundNetLog& request_net_log,
377 const HostResolver::RequestInfo& info) {
378 source_net_log.BeginEvent(
379 NetLog::TYPE_HOST_RESOLVER_IMPL,
[email protected]cd565142012-06-12 16:21:45380 request_net_log.source().ToEventParametersCallback());
[email protected]0f292de02012-02-01 22:28:20381
382 request_net_log.BeginEvent(
383 NetLog::TYPE_HOST_RESOLVER_IMPL_REQUEST,
[email protected]cd565142012-06-12 16:21:45384 base::Bind(&NetLogRequestInfoCallback, source_net_log.source(), &info));
[email protected]0f292de02012-02-01 22:28:20385}
386
387// Logs when a request has just completed (before its callback is run).
388void LogFinishRequest(const BoundNetLog& source_net_log,
389 const BoundNetLog& request_net_log,
390 const HostResolver::RequestInfo& info,
[email protected]b3601bc22012-02-21 21:23:20391 int net_error) {
392 request_net_log.EndEventWithNetErrorCode(
393 NetLog::TYPE_HOST_RESOLVER_IMPL_REQUEST, net_error);
[email protected]4da911f2012-06-14 19:45:20394 source_net_log.EndEvent(NetLog::TYPE_HOST_RESOLVER_IMPL);
[email protected]0f292de02012-02-01 22:28:20395}
396
397// Logs when a request has been cancelled.
398void LogCancelRequest(const BoundNetLog& source_net_log,
399 const BoundNetLog& request_net_log,
400 const HostResolverImpl::RequestInfo& info) {
[email protected]4da911f2012-06-14 19:45:20401 request_net_log.AddEvent(NetLog::TYPE_CANCELLED);
402 request_net_log.EndEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_REQUEST);
403 source_net_log.EndEvent(NetLog::TYPE_HOST_RESOLVER_IMPL);
[email protected]0f292de02012-02-01 22:28:20404}
405
[email protected]b59ff372009-07-15 22:04:32406//-----------------------------------------------------------------------------
407
[email protected]0f292de02012-02-01 22:28:20408// Keeps track of the highest priority.
409class PriorityTracker {
410 public:
[email protected]8c98d002012-07-18 19:02:27411 explicit PriorityTracker(RequestPriority initial_priority)
412 : highest_priority_(initial_priority), total_count_(0) {
[email protected]0f292de02012-02-01 22:28:20413 memset(counts_, 0, sizeof(counts_));
414 }
415
416 RequestPriority highest_priority() const {
417 return highest_priority_;
418 }
419
420 size_t total_count() const {
421 return total_count_;
422 }
423
424 void Add(RequestPriority req_priority) {
425 ++total_count_;
426 ++counts_[req_priority];
[email protected]31ae7ab2012-04-24 21:09:05427 if (highest_priority_ < req_priority)
[email protected]0f292de02012-02-01 22:28:20428 highest_priority_ = req_priority;
429 }
430
431 void Remove(RequestPriority req_priority) {
432 DCHECK_GT(total_count_, 0u);
433 DCHECK_GT(counts_[req_priority], 0u);
434 --total_count_;
435 --counts_[req_priority];
436 size_t i;
[email protected]31ae7ab2012-04-24 21:09:05437 for (i = highest_priority_; i > MINIMUM_PRIORITY && !counts_[i]; --i);
[email protected]0f292de02012-02-01 22:28:20438 highest_priority_ = static_cast<RequestPriority>(i);
439
[email protected]31ae7ab2012-04-24 21:09:05440 // In absence of requests, default to MINIMUM_PRIORITY.
441 if (total_count_ == 0)
442 DCHECK_EQ(MINIMUM_PRIORITY, highest_priority_);
[email protected]0f292de02012-02-01 22:28:20443 }
444
445 private:
446 RequestPriority highest_priority_;
447 size_t total_count_;
448 size_t counts_[NUM_PRIORITIES];
449};
450
[email protected]c54a8912012-10-22 22:09:43451} // namespace
[email protected]0f292de02012-02-01 22:28:20452
453//-----------------------------------------------------------------------------
454
[email protected]daae1322013-09-05 18:26:50455const unsigned HostResolverImpl::kMaximumDnsFailures = 16;
456
[email protected]0f292de02012-02-01 22:28:20457// Holds the data for a request that could not be completed synchronously.
458// It is owned by a Job. Canceled Requests are only marked as canceled rather
459// than removed from the Job's |requests_| list.
[email protected]b59ff372009-07-15 22:04:32460class HostResolverImpl::Request {
461 public:
[email protected]ee094b82010-08-24 15:55:51462 Request(const BoundNetLog& source_net_log,
463 const BoundNetLog& request_net_log,
[email protected]54e13772009-08-14 03:01:09464 const RequestInfo& info,
[email protected]5109c1952013-08-20 18:44:10465 RequestPriority priority,
[email protected]aa22b242011-11-16 18:58:29466 const CompletionCallback& callback,
[email protected]b59ff372009-07-15 22:04:32467 AddressList* addresses)
[email protected]ee094b82010-08-24 15:55:51468 : source_net_log_(source_net_log),
469 request_net_log_(request_net_log),
[email protected]54e13772009-08-14 03:01:09470 info_(info),
[email protected]5109c1952013-08-20 18:44:10471 priority_(priority),
[email protected]54e13772009-08-14 03:01:09472 job_(NULL),
473 callback_(callback),
[email protected]51b9a6b2012-06-25 21:50:29474 addresses_(addresses),
[email protected]5109c1952013-08-20 18:44:10475 request_time_(base::TimeTicks::Now()) {}
[email protected]b59ff372009-07-15 22:04:32476
[email protected]0f292de02012-02-01 22:28:20477 // Mark the request as canceled.
478 void MarkAsCanceled() {
[email protected]b59ff372009-07-15 22:04:32479 job_ = NULL;
[email protected]b59ff372009-07-15 22:04:32480 addresses_ = NULL;
[email protected]aa22b242011-11-16 18:58:29481 callback_.Reset();
[email protected]b59ff372009-07-15 22:04:32482 }
483
[email protected]0f292de02012-02-01 22:28:20484 bool was_canceled() const {
[email protected]aa22b242011-11-16 18:58:29485 return callback_.is_null();
[email protected]b59ff372009-07-15 22:04:32486 }
487
488 void set_job(Job* job) {
[email protected]0f292de02012-02-01 22:28:20489 DCHECK(job);
[email protected]b59ff372009-07-15 22:04:32490 // Identify which job the request is waiting on.
491 job_ = job;
492 }
493
[email protected]0f292de02012-02-01 22:28:20494 // Prepare final AddressList and call completion callback.
[email protected]b3601bc22012-02-21 21:23:20495 void OnComplete(int error, const AddressList& addr_list) {
[email protected]51b9a6b2012-06-25 21:50:29496 DCHECK(!was_canceled());
[email protected]895123222012-10-25 15:21:17497 if (error == OK)
498 *addresses_ = EnsurePortOnAddressList(addr_list, info_.port());
[email protected]aa22b242011-11-16 18:58:29499 CompletionCallback callback = callback_;
[email protected]0f292de02012-02-01 22:28:20500 MarkAsCanceled();
[email protected]aa22b242011-11-16 18:58:29501 callback.Run(error);
[email protected]b59ff372009-07-15 22:04:32502 }
503
[email protected]b59ff372009-07-15 22:04:32504 Job* job() const {
505 return job_;
506 }
507
[email protected]0f292de02012-02-01 22:28:20508 // NetLog for the source, passed in HostResolver::Resolve.
[email protected]ee094b82010-08-24 15:55:51509 const BoundNetLog& source_net_log() {
510 return source_net_log_;
511 }
512
[email protected]0f292de02012-02-01 22:28:20513 // NetLog for this request.
[email protected]ee094b82010-08-24 15:55:51514 const BoundNetLog& request_net_log() {
515 return request_net_log_;
[email protected]54e13772009-08-14 03:01:09516 }
517
[email protected]b59ff372009-07-15 22:04:32518 const RequestInfo& info() const {
519 return info_;
520 }
521
[email protected]5109c1952013-08-20 18:44:10522 RequestPriority priority() const { return priority_; }
523
524 base::TimeTicks request_time() const { return request_time_; }
[email protected]51b9a6b2012-06-25 21:50:29525
[email protected]b59ff372009-07-15 22:04:32526 private:
[email protected]ee094b82010-08-24 15:55:51527 BoundNetLog source_net_log_;
528 BoundNetLog request_net_log_;
[email protected]54e13772009-08-14 03:01:09529
[email protected]b59ff372009-07-15 22:04:32530 // The request info that started the request.
[email protected]5109c1952013-08-20 18:44:10531 const RequestInfo info_;
532
533 // TODO(akalin): Support reprioritization.
534 const RequestPriority priority_;
[email protected]b59ff372009-07-15 22:04:32535
[email protected]0f292de02012-02-01 22:28:20536 // The resolve job that this request is dependent on.
[email protected]b59ff372009-07-15 22:04:32537 Job* job_;
538
539 // The user's callback to invoke when the request completes.
[email protected]aa22b242011-11-16 18:58:29540 CompletionCallback callback_;
[email protected]b59ff372009-07-15 22:04:32541
542 // The address list to save result into.
543 AddressList* addresses_;
544
[email protected]51b9a6b2012-06-25 21:50:29545 const base::TimeTicks request_time_;
546
[email protected]b59ff372009-07-15 22:04:32547 DISALLOW_COPY_AND_ASSIGN(Request);
548};
549
[email protected]1e9bbd22010-10-15 16:42:45550//------------------------------------------------------------------------------
551
[email protected]0f292de02012-02-01 22:28:20552// Calls HostResolverProc on the WorkerPool. Performs retries if necessary.
553//
554// Whenever we try to resolve the host, we post a delayed task to check if host
555// resolution (OnLookupComplete) is completed or not. If the original attempt
556// hasn't completed, then we start another attempt for host resolution. We take
557// the results from the first attempt that finishes and ignore the results from
558// all other attempts.
559//
560// TODO(szym): Move to separate source file for testing and mocking.
561//
562class HostResolverImpl::ProcTask
563 : public base::RefCountedThreadSafe<HostResolverImpl::ProcTask> {
[email protected]b59ff372009-07-15 22:04:32564 public:
[email protected]b3601bc22012-02-21 21:23:20565 typedef base::Callback<void(int net_error,
566 const AddressList& addr_list)> Callback;
[email protected]b59ff372009-07-15 22:04:32567
[email protected]0f292de02012-02-01 22:28:20568 ProcTask(const Key& key,
569 const ProcTaskParams& params,
570 const Callback& callback,
571 const BoundNetLog& job_net_log)
572 : key_(key),
573 params_(params),
574 callback_(callback),
575 origin_loop_(base::MessageLoopProxy::current()),
576 attempt_number_(0),
577 completed_attempt_number_(0),
578 completed_attempt_error_(ERR_UNEXPECTED),
579 had_non_speculative_request_(false),
[email protected]b3601bc22012-02-21 21:23:20580 net_log_(job_net_log) {
[email protected]90499482013-06-01 00:39:50581 if (!params_.resolver_proc.get())
[email protected]0f292de02012-02-01 22:28:20582 params_.resolver_proc = HostResolverProc::GetDefault();
583 // If default is unset, use the system proc.
[email protected]90499482013-06-01 00:39:50584 if (!params_.resolver_proc.get())
[email protected]1ee9afa12013-04-16 14:18:06585 params_.resolver_proc = new SystemHostResolverProc();
[email protected]b59ff372009-07-15 22:04:32586 }
587
[email protected]b59ff372009-07-15 22:04:32588 void Start() {
[email protected]3e9d9cc2011-05-03 21:08:15589 DCHECK(origin_loop_->BelongsToCurrentThread());
[email protected]4da911f2012-06-14 19:45:20590 net_log_.BeginEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_PROC_TASK);
[email protected]189163e2011-05-11 01:48:54591 StartLookupAttempt();
592 }
[email protected]252b699b2010-02-05 21:38:06593
[email protected]0f292de02012-02-01 22:28:20594 // Cancels this ProcTask. It will be orphaned. Any outstanding resolve
595 // attempts running on worker threads will continue running. Only once all the
596 // attempts complete will the final reference to this ProcTask be released.
597 void Cancel() {
598 DCHECK(origin_loop_->BelongsToCurrentThread());
599
[email protected]0adcb2b2012-08-15 21:30:46600 if (was_canceled() || was_completed())
[email protected]0f292de02012-02-01 22:28:20601 return;
602
[email protected]0f292de02012-02-01 22:28:20603 callback_.Reset();
[email protected]4da911f2012-06-14 19:45:20604 net_log_.EndEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_PROC_TASK);
[email protected]0f292de02012-02-01 22:28:20605 }
606
607 void set_had_non_speculative_request() {
608 DCHECK(origin_loop_->BelongsToCurrentThread());
609 had_non_speculative_request_ = true;
610 }
611
612 bool was_canceled() const {
613 DCHECK(origin_loop_->BelongsToCurrentThread());
614 return callback_.is_null();
615 }
616
617 bool was_completed() const {
618 DCHECK(origin_loop_->BelongsToCurrentThread());
619 return completed_attempt_number_ > 0;
620 }
621
622 private:
[email protected]a9813302012-04-28 09:29:28623 friend class base::RefCountedThreadSafe<ProcTask>;
624 ~ProcTask() {}
625
[email protected]189163e2011-05-11 01:48:54626 void StartLookupAttempt() {
627 DCHECK(origin_loop_->BelongsToCurrentThread());
628 base::TimeTicks start_time = base::TimeTicks::Now();
629 ++attempt_number_;
630 // Dispatch the lookup attempt to a worker thread.
631 if (!base::WorkerPool::PostTask(
632 FROM_HERE,
[email protected]0f292de02012-02-01 22:28:20633 base::Bind(&ProcTask::DoLookup, this, start_time, attempt_number_),
[email protected]189163e2011-05-11 01:48:54634 true)) {
[email protected]b59ff372009-07-15 22:04:32635 NOTREACHED();
636
637 // Since we could be running within Resolve() right now, we can't just
638 // call OnLookupComplete(). Instead we must wait until Resolve() has
639 // returned (IO_PENDING).
[email protected]3e9d9cc2011-05-03 21:08:15640 origin_loop_->PostTask(
[email protected]189163e2011-05-11 01:48:54641 FROM_HERE,
[email protected]0f292de02012-02-01 22:28:20642 base::Bind(&ProcTask::OnLookupComplete, this, AddressList(),
[email protected]33152acc2011-10-20 23:37:12643 start_time, attempt_number_, ERR_UNEXPECTED, 0));
[email protected]189163e2011-05-11 01:48:54644 return;
[email protected]b59ff372009-07-15 22:04:32645 }
[email protected]13024882011-05-18 23:19:16646
647 net_log_.AddEvent(
648 NetLog::TYPE_HOST_RESOLVER_IMPL_ATTEMPT_STARTED,
[email protected]cd565142012-06-12 16:21:45649 NetLog::IntegerCallback("attempt_number", attempt_number_));
[email protected]13024882011-05-18 23:19:16650
[email protected]0f292de02012-02-01 22:28:20651 // If we don't get the results within a given time, RetryIfNotComplete
652 // will start a new attempt on a different worker thread if none of our
653 // outstanding attempts have completed yet.
654 if (attempt_number_ <= params_.max_retry_attempts) {
[email protected]06ef6d92011-05-19 04:24:58655 origin_loop_->PostDelayedTask(
656 FROM_HERE,
[email protected]0f292de02012-02-01 22:28:20657 base::Bind(&ProcTask::RetryIfNotComplete, this),
[email protected]7e560102012-03-08 20:58:42658 params_.unresponsive_delay);
[email protected]06ef6d92011-05-19 04:24:58659 }
[email protected]b59ff372009-07-15 22:04:32660 }
661
[email protected]6c710ee2010-05-07 07:51:16662 // WARNING: This code runs inside a worker pool. The shutdown code cannot
663 // wait for it to finish, so we must be very careful here about using other
664 // objects (like MessageLoops, Singletons, etc). During shutdown these objects
[email protected]189163e2011-05-11 01:48:54665 // may no longer exist. Multiple DoLookups() could be running in parallel, so
666 // any state inside of |this| must not mutate .
667 void DoLookup(const base::TimeTicks& start_time,
668 const uint32 attempt_number) {
669 AddressList results;
670 int os_error = 0;
[email protected]b59ff372009-07-15 22:04:32671 // Running on the worker thread
[email protected]0f292de02012-02-01 22:28:20672 int error = params_.resolver_proc->Resolve(key_.hostname,
673 key_.address_family,
674 key_.host_resolver_flags,
675 &results,
676 &os_error);
[email protected]b59ff372009-07-15 22:04:32677
[email protected]189163e2011-05-11 01:48:54678 origin_loop_->PostTask(
679 FROM_HERE,
[email protected]0f292de02012-02-01 22:28:20680 base::Bind(&ProcTask::OnLookupComplete, this, results, start_time,
[email protected]33152acc2011-10-20 23:37:12681 attempt_number, error, os_error));
[email protected]189163e2011-05-11 01:48:54682 }
683
[email protected]0f292de02012-02-01 22:28:20684 // Makes next attempt if DoLookup() has not finished (runs on origin thread).
685 void RetryIfNotComplete() {
[email protected]189163e2011-05-11 01:48:54686 DCHECK(origin_loop_->BelongsToCurrentThread());
687
[email protected]0f292de02012-02-01 22:28:20688 if (was_completed() || was_canceled())
[email protected]189163e2011-05-11 01:48:54689 return;
690
[email protected]0f292de02012-02-01 22:28:20691 params_.unresponsive_delay *= params_.retry_factor;
[email protected]189163e2011-05-11 01:48:54692 StartLookupAttempt();
[email protected]b59ff372009-07-15 22:04:32693 }
694
695 // Callback for when DoLookup() completes (runs on origin thread).
[email protected]189163e2011-05-11 01:48:54696 void OnLookupComplete(const AddressList& results,
697 const base::TimeTicks& start_time,
698 const uint32 attempt_number,
699 int error,
700 const int os_error) {
[email protected]3e9d9cc2011-05-03 21:08:15701 DCHECK(origin_loop_->BelongsToCurrentThread());
[email protected]49b70b222013-05-07 21:24:23702 // If results are empty, we should return an error.
703 bool empty_list_on_ok = (error == OK && results.empty());
704 UMA_HISTOGRAM_BOOLEAN("DNS.EmptyAddressListAndNoError", empty_list_on_ok);
705 if (empty_list_on_ok)
706 error = ERR_NAME_NOT_RESOLVED;
[email protected]189163e2011-05-11 01:48:54707
708 bool was_retry_attempt = attempt_number > 1;
709
[email protected]2d3b7762010-10-09 00:35:47710 // Ideally the following code would be part of host_resolver_proc.cc,
[email protected]b3601bc22012-02-21 21:23:20711 // however it isn't safe to call NetworkChangeNotifier from worker threads.
712 // So we do it here on the IO thread instead.
[email protected]189163e2011-05-11 01:48:54713 if (error != OK && NetworkChangeNotifier::IsOffline())
714 error = ERR_INTERNET_DISCONNECTED;
[email protected]2d3b7762010-10-09 00:35:47715
[email protected]b3601bc22012-02-21 21:23:20716 // If this is the first attempt that is finishing later, then record data
717 // for the first attempt. Won't contaminate with retry attempt's data.
[email protected]189163e2011-05-11 01:48:54718 if (!was_retry_attempt)
719 RecordPerformanceHistograms(start_time, error, os_error);
720
721 RecordAttemptHistograms(start_time, attempt_number, error, os_error);
[email protected]f2d8c4212010-02-02 00:56:35722
[email protected]0f292de02012-02-01 22:28:20723 if (was_canceled())
[email protected]b59ff372009-07-15 22:04:32724 return;
725
[email protected]cd565142012-06-12 16:21:45726 NetLog::ParametersCallback net_log_callback;
[email protected]0f292de02012-02-01 22:28:20727 if (error != OK) {
[email protected]cd565142012-06-12 16:21:45728 net_log_callback = base::Bind(&NetLogProcTaskFailedCallback,
729 attempt_number,
730 error,
731 os_error);
[email protected]0f292de02012-02-01 22:28:20732 } else {
[email protected]cd565142012-06-12 16:21:45733 net_log_callback = NetLog::IntegerCallback("attempt_number",
734 attempt_number);
[email protected]0f292de02012-02-01 22:28:20735 }
[email protected]cd565142012-06-12 16:21:45736 net_log_.AddEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_ATTEMPT_FINISHED,
737 net_log_callback);
[email protected]0f292de02012-02-01 22:28:20738
739 if (was_completed())
740 return;
741
742 // Copy the results from the first worker thread that resolves the host.
743 results_ = results;
744 completed_attempt_number_ = attempt_number;
745 completed_attempt_error_ = error;
746
[email protected]e87b8b512011-06-14 22:12:52747 if (was_retry_attempt) {
748 // If retry attempt finishes before 1st attempt, then get stats on how
749 // much time is saved by having spawned an extra attempt.
750 retry_attempt_finished_time_ = base::TimeTicks::Now();
751 }
752
[email protected]189163e2011-05-11 01:48:54753 if (error != OK) {
[email protected]cd565142012-06-12 16:21:45754 net_log_callback = base::Bind(&NetLogProcTaskFailedCallback,
755 0, error, os_error);
[email protected]ee094b82010-08-24 15:55:51756 } else {
[email protected]cd565142012-06-12 16:21:45757 net_log_callback = results_.CreateNetLogCallback();
[email protected]ee094b82010-08-24 15:55:51758 }
[email protected]cd565142012-06-12 16:21:45759 net_log_.EndEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_PROC_TASK,
760 net_log_callback);
[email protected]ee094b82010-08-24 15:55:51761
[email protected]b3601bc22012-02-21 21:23:20762 callback_.Run(error, results_);
[email protected]b59ff372009-07-15 22:04:32763 }
764
[email protected]189163e2011-05-11 01:48:54765 void RecordPerformanceHistograms(const base::TimeTicks& start_time,
766 const int error,
767 const int os_error) const {
[email protected]3e9d9cc2011-05-03 21:08:15768 DCHECK(origin_loop_->BelongsToCurrentThread());
[email protected]1e9bbd22010-10-15 16:42:45769 enum Category { // Used in HISTOGRAM_ENUMERATION.
770 RESOLVE_SUCCESS,
771 RESOLVE_FAIL,
772 RESOLVE_SPECULATIVE_SUCCESS,
773 RESOLVE_SPECULATIVE_FAIL,
774 RESOLVE_MAX, // Bounding value.
775 };
776 int category = RESOLVE_MAX; // Illegal value for later DCHECK only.
777
[email protected]189163e2011-05-11 01:48:54778 base::TimeDelta duration = base::TimeTicks::Now() - start_time;
779 if (error == OK) {
[email protected]1e9bbd22010-10-15 16:42:45780 if (had_non_speculative_request_) {
781 category = RESOLVE_SUCCESS;
782 DNS_HISTOGRAM("DNS.ResolveSuccess", duration);
783 } else {
784 category = RESOLVE_SPECULATIVE_SUCCESS;
785 DNS_HISTOGRAM("DNS.ResolveSpeculativeSuccess", duration);
786 }
[email protected]7e96d792011-06-10 17:08:23787
[email protected]78eac2a2012-03-14 19:09:27788 // Log DNS lookups based on |address_family|. This will help us determine
[email protected]7e96d792011-06-10 17:08:23789 // if IPv4 or IPv4/6 lookups are faster or slower.
790 switch(key_.address_family) {
791 case ADDRESS_FAMILY_IPV4:
792 DNS_HISTOGRAM("DNS.ResolveSuccess_FAMILY_IPV4", duration);
793 break;
794 case ADDRESS_FAMILY_IPV6:
795 DNS_HISTOGRAM("DNS.ResolveSuccess_FAMILY_IPV6", duration);
796 break;
797 case ADDRESS_FAMILY_UNSPECIFIED:
798 DNS_HISTOGRAM("DNS.ResolveSuccess_FAMILY_UNSPEC", duration);
799 break;
800 }
[email protected]1e9bbd22010-10-15 16:42:45801 } else {
802 if (had_non_speculative_request_) {
803 category = RESOLVE_FAIL;
804 DNS_HISTOGRAM("DNS.ResolveFail", duration);
805 } else {
806 category = RESOLVE_SPECULATIVE_FAIL;
807 DNS_HISTOGRAM("DNS.ResolveSpeculativeFail", duration);
808 }
[email protected]78eac2a2012-03-14 19:09:27809 // Log DNS lookups based on |address_family|. This will help us determine
[email protected]7e96d792011-06-10 17:08:23810 // if IPv4 or IPv4/6 lookups are faster or slower.
811 switch(key_.address_family) {
812 case ADDRESS_FAMILY_IPV4:
813 DNS_HISTOGRAM("DNS.ResolveFail_FAMILY_IPV4", duration);
814 break;
815 case ADDRESS_FAMILY_IPV6:
816 DNS_HISTOGRAM("DNS.ResolveFail_FAMILY_IPV6", duration);
817 break;
818 case ADDRESS_FAMILY_UNSPECIFIED:
819 DNS_HISTOGRAM("DNS.ResolveFail_FAMILY_UNSPEC", duration);
820 break;
821 }
[email protected]c833e322010-10-16 23:51:36822 UMA_HISTOGRAM_CUSTOM_ENUMERATION(kOSErrorsForGetAddrinfoHistogramName,
[email protected]189163e2011-05-11 01:48:54823 std::abs(os_error),
[email protected]1e9bbd22010-10-15 16:42:45824 GetAllGetAddrinfoOSErrors());
825 }
[email protected]051b6ab2010-10-18 16:50:46826 DCHECK_LT(category, static_cast<int>(RESOLVE_MAX)); // Be sure it was set.
[email protected]1e9bbd22010-10-15 16:42:45827
828 UMA_HISTOGRAM_ENUMERATION("DNS.ResolveCategory", category, RESOLVE_MAX);
[email protected]1e9bbd22010-10-15 16:42:45829 }
830
[email protected]189163e2011-05-11 01:48:54831 void RecordAttemptHistograms(const base::TimeTicks& start_time,
832 const uint32 attempt_number,
833 const int error,
834 const int os_error) const {
[email protected]0f292de02012-02-01 22:28:20835 DCHECK(origin_loop_->BelongsToCurrentThread());
[email protected]189163e2011-05-11 01:48:54836 bool first_attempt_to_complete =
837 completed_attempt_number_ == attempt_number;
[email protected]e87b8b512011-06-14 22:12:52838 bool is_first_attempt = (attempt_number == 1);
[email protected]1e9bbd22010-10-15 16:42:45839
[email protected]189163e2011-05-11 01:48:54840 if (first_attempt_to_complete) {
841 // If this was first attempt to complete, then record the resolution
842 // status of the attempt.
843 if (completed_attempt_error_ == OK) {
844 UMA_HISTOGRAM_ENUMERATION(
845 "DNS.AttemptFirstSuccess", attempt_number, 100);
846 } else {
847 UMA_HISTOGRAM_ENUMERATION(
848 "DNS.AttemptFirstFailure", attempt_number, 100);
849 }
850 }
851
852 if (error == OK)
853 UMA_HISTOGRAM_ENUMERATION("DNS.AttemptSuccess", attempt_number, 100);
854 else
855 UMA_HISTOGRAM_ENUMERATION("DNS.AttemptFailure", attempt_number, 100);
856
[email protected]e87b8b512011-06-14 22:12:52857 // If first attempt didn't finish before retry attempt, then calculate stats
858 // on how much time is saved by having spawned an extra attempt.
[email protected]0f292de02012-02-01 22:28:20859 if (!first_attempt_to_complete && is_first_attempt && !was_canceled()) {
[email protected]e87b8b512011-06-14 22:12:52860 DNS_HISTOGRAM("DNS.AttemptTimeSavedByRetry",
861 base::TimeTicks::Now() - retry_attempt_finished_time_);
862 }
863
[email protected]0f292de02012-02-01 22:28:20864 if (was_canceled() || !first_attempt_to_complete) {
[email protected]189163e2011-05-11 01:48:54865 // Count those attempts which completed after the job was already canceled
866 // OR after the job was already completed by an earlier attempt (so in
867 // effect).
868 UMA_HISTOGRAM_ENUMERATION("DNS.AttemptDiscarded", attempt_number, 100);
869
[email protected]0f292de02012-02-01 22:28:20870 // Record if job is canceled.
871 if (was_canceled())
[email protected]189163e2011-05-11 01:48:54872 UMA_HISTOGRAM_ENUMERATION("DNS.AttemptCancelled", attempt_number, 100);
873 }
874
875 base::TimeDelta duration = base::TimeTicks::Now() - start_time;
876 if (error == OK)
877 DNS_HISTOGRAM("DNS.AttemptSuccessDuration", duration);
878 else
879 DNS_HISTOGRAM("DNS.AttemptFailDuration", duration);
880 }
[email protected]1e9bbd22010-10-15 16:42:45881
[email protected]b59ff372009-07-15 22:04:32882 // Set on the origin thread, read on the worker thread.
[email protected]123ab1e32009-10-21 19:12:57883 Key key_;
[email protected]b59ff372009-07-15 22:04:32884
[email protected]0f292de02012-02-01 22:28:20885 // Holds an owning reference to the HostResolverProc that we are going to use.
[email protected]b59ff372009-07-15 22:04:32886 // This may not be the current resolver procedure by the time we call
887 // ResolveAddrInfo, but that's OK... we'll use it anyways, and the owning
888 // reference ensures that it remains valid until we are done.
[email protected]0f292de02012-02-01 22:28:20889 ProcTaskParams params_;
[email protected]b59ff372009-07-15 22:04:32890
[email protected]0f292de02012-02-01 22:28:20891 // The listener to the results of this ProcTask.
892 Callback callback_;
893
894 // Used to post ourselves onto the origin thread.
895 scoped_refptr<base::MessageLoopProxy> origin_loop_;
[email protected]189163e2011-05-11 01:48:54896
897 // Keeps track of the number of attempts we have made so far to resolve the
898 // host. Whenever we start an attempt to resolve the host, we increase this
899 // number.
900 uint32 attempt_number_;
901
902 // The index of the attempt which finished first (or 0 if the job is still in
903 // progress).
904 uint32 completed_attempt_number_;
905
906 // The result (a net error code) from the first attempt to complete.
907 int completed_attempt_error_;
[email protected]252b699b2010-02-05 21:38:06908
[email protected]e87b8b512011-06-14 22:12:52909 // The time when retry attempt was finished.
910 base::TimeTicks retry_attempt_finished_time_;
911
[email protected]252b699b2010-02-05 21:38:06912 // True if a non-speculative request was ever attached to this job
[email protected]0f292de02012-02-01 22:28:20913 // (regardless of whether or not it was later canceled.
[email protected]252b699b2010-02-05 21:38:06914 // This boolean is used for histogramming the duration of jobs used to
915 // service non-speculative requests.
916 bool had_non_speculative_request_;
917
[email protected]b59ff372009-07-15 22:04:32918 AddressList results_;
919
[email protected]ee094b82010-08-24 15:55:51920 BoundNetLog net_log_;
921
[email protected]0f292de02012-02-01 22:28:20922 DISALLOW_COPY_AND_ASSIGN(ProcTask);
[email protected]b59ff372009-07-15 22:04:32923};
924
925//-----------------------------------------------------------------------------
926
[email protected]12faa4c2012-11-06 04:44:18927// Wraps a call to HaveOnlyLoopbackAddresses to be executed on the WorkerPool as
928// it takes 40-100ms and should not block initialization.
929class HostResolverImpl::LoopbackProbeJob {
930 public:
931 explicit LoopbackProbeJob(const base::WeakPtr<HostResolverImpl>& resolver)
932 : resolver_(resolver),
933 result_(false) {
[email protected]11fbca0b2013-06-02 23:37:21934 DCHECK(resolver.get());
[email protected]12faa4c2012-11-06 04:44:18935 const bool kIsSlow = true;
936 base::WorkerPool::PostTaskAndReply(
937 FROM_HERE,
938 base::Bind(&LoopbackProbeJob::DoProbe, base::Unretained(this)),
939 base::Bind(&LoopbackProbeJob::OnProbeComplete, base::Owned(this)),
940 kIsSlow);
941 }
942
943 virtual ~LoopbackProbeJob() {}
944
945 private:
946 // Runs on worker thread.
947 void DoProbe() {
948 result_ = HaveOnlyLoopbackAddresses();
949 }
950
951 void OnProbeComplete() {
[email protected]11fbca0b2013-06-02 23:37:21952 if (!resolver_.get())
[email protected]12faa4c2012-11-06 04:44:18953 return;
954 resolver_->SetHaveOnlyLoopbackAddresses(result_);
955 }
956
957 // Used/set only on origin thread.
958 base::WeakPtr<HostResolverImpl> resolver_;
959
960 bool result_;
961
962 DISALLOW_COPY_AND_ASSIGN(LoopbackProbeJob);
963};
964
[email protected]0f8f1b432010-03-16 19:06:03965//-----------------------------------------------------------------------------
966
[email protected]b3601bc22012-02-21 21:23:20967// Resolves the hostname using DnsTransaction.
968// TODO(szym): This could be moved to separate source file as well.
[email protected]0adcb2b2012-08-15 21:30:46969class HostResolverImpl::DnsTask : public base::SupportsWeakPtr<DnsTask> {
[email protected]b3601bc22012-02-21 21:23:20970 public:
[email protected]daae1322013-09-05 18:26:50971 class Delegate {
972 public:
973 virtual void OnDnsTaskComplete(base::TimeTicks start_time,
974 int net_error,
975 const AddressList& addr_list,
976 base::TimeDelta ttl) = 0;
977
978 // Called when the first of two jobs succeeds. If the first completed
979 // transaction fails, this is not called. Also not called when the DnsTask
980 // only needs to run one transaction.
981 virtual void OnFirstDnsTransactionComplete() = 0;
982
983 protected:
984 Delegate() {}
985 virtual ~Delegate() {}
986 };
[email protected]b3601bc22012-02-21 21:23:20987
[email protected]0adcb2b2012-08-15 21:30:46988 DnsTask(DnsClient* client,
[email protected]b3601bc22012-02-21 21:23:20989 const Key& key,
[email protected]daae1322013-09-05 18:26:50990 Delegate* delegate,
[email protected]b3601bc22012-02-21 21:23:20991 const BoundNetLog& job_net_log)
[email protected]0adcb2b2012-08-15 21:30:46992 : client_(client),
[email protected]daae1322013-09-05 18:26:50993 key_(key),
994 delegate_(delegate),
995 net_log_(job_net_log),
996 num_completed_transactions_(0),
997 task_start_time_(base::TimeTicks::Now()) {
[email protected]0adcb2b2012-08-15 21:30:46998 DCHECK(client);
[email protected]daae1322013-09-05 18:26:50999 DCHECK(delegate_);
[email protected]1affed62013-08-21 03:24:501000 }
1001
[email protected]daae1322013-09-05 18:26:501002 bool needs_two_transactions() const {
1003 return key_.address_family == ADDRESS_FAMILY_UNSPECIFIED;
1004 }
1005
1006 bool needs_another_transaction() const {
1007 return needs_two_transactions() && !transaction_aaaa_;
1008 }
1009
1010 void StartFirstTransaction() {
1011 DCHECK_EQ(0u, num_completed_transactions_);
[email protected]70c04ab2013-08-22 16:05:121012 net_log_.BeginEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_DNS_TASK);
[email protected]daae1322013-09-05 18:26:501013 if (key_.address_family == ADDRESS_FAMILY_IPV6) {
1014 StartAAAA();
1015 } else {
1016 StartA();
1017 }
1018 }
1019
1020 void StartSecondTransaction() {
1021 DCHECK(needs_two_transactions());
1022 StartAAAA();
[email protected]70c04ab2013-08-22 16:05:121023 }
1024
1025 private:
[email protected]daae1322013-09-05 18:26:501026 void StartA() {
1027 DCHECK(!transaction_a_);
1028 DCHECK_NE(ADDRESS_FAMILY_IPV6, key_.address_family);
1029 transaction_a_ = CreateTransaction(ADDRESS_FAMILY_IPV4);
1030 transaction_a_->Start();
1031 }
1032
1033 void StartAAAA() {
1034 DCHECK(!transaction_aaaa_);
1035 DCHECK_NE(ADDRESS_FAMILY_IPV4, key_.address_family);
1036 transaction_aaaa_ = CreateTransaction(ADDRESS_FAMILY_IPV6);
1037 transaction_aaaa_->Start();
1038 }
1039
1040 scoped_ptr<DnsTransaction> CreateTransaction(AddressFamily family) {
1041 DCHECK_NE(ADDRESS_FAMILY_UNSPECIFIED, family);
1042 return client_->GetTransactionFactory()->CreateTransaction(
1043 key_.hostname,
1044 family == ADDRESS_FAMILY_IPV6 ? dns_protocol::kTypeAAAA :
1045 dns_protocol::kTypeA,
1046 base::Bind(&DnsTask::OnTransactionComplete, base::Unretained(this),
1047 base::TimeTicks::Now()),
1048 net_log_);
1049 }
1050
1051 void OnTransactionComplete(const base::TimeTicks& start_time,
[email protected]1def74c2012-03-22 20:07:001052 DnsTransaction* transaction,
[email protected]b3601bc22012-02-21 21:23:201053 int net_error,
1054 const DnsResponse* response) {
[email protected]add76532012-03-30 14:47:471055 DCHECK(transaction);
[email protected]02cd6982013-01-10 20:12:511056 base::TimeDelta duration = base::TimeTicks::Now() - start_time;
[email protected]0adcb2b2012-08-15 21:30:461057 if (net_error != OK) {
[email protected]02cd6982013-01-10 20:12:511058 DNS_HISTOGRAM("AsyncDNS.TransactionFailure", duration);
[email protected]0adcb2b2012-08-15 21:30:461059 OnFailure(net_error, DnsResponse::DNS_PARSE_OK);
1060 return;
[email protected]6c411902012-08-14 22:36:361061 }
[email protected]0adcb2b2012-08-15 21:30:461062
[email protected]02cd6982013-01-10 20:12:511063 DNS_HISTOGRAM("AsyncDNS.TransactionSuccess", duration);
1064 switch (transaction->GetType()) {
1065 case dns_protocol::kTypeA:
1066 DNS_HISTOGRAM("AsyncDNS.TransactionSuccess_A", duration);
1067 break;
1068 case dns_protocol::kTypeAAAA:
1069 DNS_HISTOGRAM("AsyncDNS.TransactionSuccess_AAAA", duration);
1070 break;
1071 }
[email protected]daae1322013-09-05 18:26:501072
[email protected]0adcb2b2012-08-15 21:30:461073 AddressList addr_list;
1074 base::TimeDelta ttl;
1075 DnsResponse::Result result = response->ParseToAddressList(&addr_list, &ttl);
1076 UMA_HISTOGRAM_ENUMERATION("AsyncDNS.ParseToAddressList",
1077 result,
1078 DnsResponse::DNS_PARSE_RESULT_MAX);
1079 if (result != DnsResponse::DNS_PARSE_OK) {
1080 // Fail even if the other query succeeds.
1081 OnFailure(ERR_DNS_MALFORMED_RESPONSE, result);
1082 return;
1083 }
1084
[email protected]daae1322013-09-05 18:26:501085 ++num_completed_transactions_;
1086 if (num_completed_transactions_ == 1) {
1087 ttl_ = ttl;
[email protected]0adcb2b2012-08-15 21:30:461088 } else {
[email protected]daae1322013-09-05 18:26:501089 ttl_ = std::min(ttl_, ttl);
[email protected]0adcb2b2012-08-15 21:30:461090 }
1091
[email protected]daae1322013-09-05 18:26:501092 if (transaction->GetType() == dns_protocol::kTypeA) {
1093 DCHECK_EQ(transaction_a_.get(), transaction);
1094 // Place IPv4 addresses after IPv6.
1095 addr_list_.insert(addr_list_.end(), addr_list.begin(), addr_list.end());
1096 } else {
1097 DCHECK_EQ(transaction_aaaa_.get(), transaction);
1098 // Place IPv6 addresses before IPv4.
1099 addr_list_.insert(addr_list_.begin(), addr_list.begin(), addr_list.end());
1100 }
1101
1102 if (needs_two_transactions() && num_completed_transactions_ == 1) {
1103 // No need to repeat the suffix search.
1104 key_.hostname = transaction->GetHostname();
1105 delegate_->OnFirstDnsTransactionComplete();
1106 return;
1107 }
1108
1109 if (addr_list_.empty()) {
[email protected]70c04ab2013-08-22 16:05:121110 // TODO(szym): Don't fallback to ProcTask in this case.
1111 OnFailure(ERR_NAME_NOT_RESOLVED, DnsResponse::DNS_PARSE_OK);
[email protected]0adcb2b2012-08-15 21:30:461112 return;
1113 }
1114
[email protected]daae1322013-09-05 18:26:501115 // If there are multiple addresses, and at least one is IPv6, need to sort
1116 // them. Note that IPv6 addresses are always put before IPv4 ones, so it's
1117 // sufficient to just check the family of the first address.
1118 if (addr_list_.size() > 1 &&
1119 addr_list_[0].GetFamily() == ADDRESS_FAMILY_IPV6) {
1120 // Sort addresses if needed. Sort could complete synchronously.
[email protected]0adcb2b2012-08-15 21:30:461121 client_->GetAddressSorter()->Sort(
[email protected]daae1322013-09-05 18:26:501122 addr_list_,
[email protected]4589a3a2012-09-20 20:57:071123 base::Bind(&DnsTask::OnSortComplete,
1124 AsWeakPtr(),
[email protected]daae1322013-09-05 18:26:501125 base::TimeTicks::Now()));
[email protected]0adcb2b2012-08-15 21:30:461126 } else {
[email protected]daae1322013-09-05 18:26:501127 OnSuccess(addr_list_);
[email protected]0adcb2b2012-08-15 21:30:461128 }
1129 }
1130
1131 void OnSortComplete(base::TimeTicks start_time,
[email protected]0adcb2b2012-08-15 21:30:461132 bool success,
1133 const AddressList& addr_list) {
1134 if (!success) {
1135 DNS_HISTOGRAM("AsyncDNS.SortFailure",
1136 base::TimeTicks::Now() - start_time);
1137 OnFailure(ERR_DNS_SORT_ERROR, DnsResponse::DNS_PARSE_OK);
1138 return;
1139 }
1140
1141 DNS_HISTOGRAM("AsyncDNS.SortSuccess",
1142 base::TimeTicks::Now() - start_time);
1143
1144 // AddressSorter prunes unusable destinations.
1145 if (addr_list.empty()) {
1146 LOG(WARNING) << "Address list empty after RFC3484 sort";
1147 OnFailure(ERR_NAME_NOT_RESOLVED, DnsResponse::DNS_PARSE_OK);
1148 return;
1149 }
1150
[email protected]daae1322013-09-05 18:26:501151 OnSuccess(addr_list);
[email protected]0adcb2b2012-08-15 21:30:461152 }
1153
1154 void OnFailure(int net_error, DnsResponse::Result result) {
1155 DCHECK_NE(OK, net_error);
[email protected]cd565142012-06-12 16:21:451156 net_log_.EndEvent(
1157 NetLog::TYPE_HOST_RESOLVER_IMPL_DNS_TASK,
1158 base::Bind(&NetLogDnsTaskFailedCallback, net_error, result));
[email protected]daae1322013-09-05 18:26:501159 delegate_->OnDnsTaskComplete(task_start_time_, net_error, AddressList(),
1160 base::TimeDelta());
[email protected]b3601bc22012-02-21 21:23:201161 }
1162
[email protected]daae1322013-09-05 18:26:501163 void OnSuccess(const AddressList& addr_list) {
[email protected]0adcb2b2012-08-15 21:30:461164 net_log_.EndEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_DNS_TASK,
1165 addr_list.CreateNetLogCallback());
[email protected]daae1322013-09-05 18:26:501166 delegate_->OnDnsTaskComplete(task_start_time_, OK, addr_list, ttl_);
[email protected]0adcb2b2012-08-15 21:30:461167 }
1168
1169 DnsClient* client_;
[email protected]daae1322013-09-05 18:26:501170 Key key_;
1171
[email protected]b3601bc22012-02-21 21:23:201172 // The listener to the results of this DnsTask.
[email protected]daae1322013-09-05 18:26:501173 Delegate* delegate_;
[email protected]b3601bc22012-02-21 21:23:201174 const BoundNetLog net_log_;
1175
[email protected]daae1322013-09-05 18:26:501176 scoped_ptr<DnsTransaction> transaction_a_;
1177 scoped_ptr<DnsTransaction> transaction_aaaa_;
[email protected]0adcb2b2012-08-15 21:30:461178
[email protected]daae1322013-09-05 18:26:501179 unsigned num_completed_transactions_;
1180
1181 // These are updated as each transaction completes.
1182 base::TimeDelta ttl_;
1183 // IPv6 addresses must appear first in the list.
1184 AddressList addr_list_;
1185
1186 base::TimeTicks task_start_time_;
[email protected]0adcb2b2012-08-15 21:30:461187
1188 DISALLOW_COPY_AND_ASSIGN(DnsTask);
[email protected]b3601bc22012-02-21 21:23:201189};
1190
1191//-----------------------------------------------------------------------------
1192
[email protected]0f292de02012-02-01 22:28:201193// Aggregates all Requests for the same Key. Dispatched via PriorityDispatch.
[email protected]daae1322013-09-05 18:26:501194class HostResolverImpl::Job : public PrioritizedDispatcher::Job,
1195 public HostResolverImpl::DnsTask::Delegate {
[email protected]68ad3ee2010-01-30 03:45:391196 public:
[email protected]0f292de02012-02-01 22:28:201197 // Creates new job for |key| where |request_net_log| is bound to the
[email protected]16ee26d2012-03-08 03:34:351198 // request that spawned it.
[email protected]12faa4c2012-11-06 04:44:181199 Job(const base::WeakPtr<HostResolverImpl>& resolver,
[email protected]0f292de02012-02-01 22:28:201200 const Key& key,
[email protected]8c98d002012-07-18 19:02:271201 RequestPriority priority,
[email protected]16ee26d2012-03-08 03:34:351202 const BoundNetLog& request_net_log)
[email protected]12faa4c2012-11-06 04:44:181203 : resolver_(resolver),
[email protected]0f292de02012-02-01 22:28:201204 key_(key),
[email protected]8c98d002012-07-18 19:02:271205 priority_tracker_(priority),
[email protected]0f292de02012-02-01 22:28:201206 had_non_speculative_request_(false),
[email protected]51b9a6b2012-06-25 21:50:291207 had_dns_config_(false),
[email protected]daae1322013-09-05 18:26:501208 num_occupied_job_slots_(0),
[email protected]1d932852012-06-19 19:40:331209 dns_task_error_(OK),
[email protected]51b9a6b2012-06-25 21:50:291210 creation_time_(base::TimeTicks::Now()),
1211 priority_change_time_(creation_time_),
[email protected]0f292de02012-02-01 22:28:201212 net_log_(BoundNetLog::Make(request_net_log.net_log(),
[email protected]b3601bc22012-02-21 21:23:201213 NetLog::SOURCE_HOST_RESOLVER_IMPL_JOB)) {
[email protected]4da911f2012-06-14 19:45:201214 request_net_log.AddEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_CREATE_JOB);
[email protected]0f292de02012-02-01 22:28:201215
1216 net_log_.BeginEvent(
1217 NetLog::TYPE_HOST_RESOLVER_IMPL_JOB,
[email protected]cd565142012-06-12 16:21:451218 base::Bind(&NetLogJobCreationCallback,
1219 request_net_log.source(),
1220 &key_.hostname));
[email protected]68ad3ee2010-01-30 03:45:391221 }
1222
[email protected]0f292de02012-02-01 22:28:201223 virtual ~Job() {
[email protected]b3601bc22012-02-21 21:23:201224 if (is_running()) {
1225 // |resolver_| was destroyed with this Job still in flight.
1226 // Clean-up, record in the log, but don't run any callbacks.
1227 if (is_proc_running()) {
[email protected]0f292de02012-02-01 22:28:201228 proc_task_->Cancel();
1229 proc_task_ = NULL;
[email protected]0f292de02012-02-01 22:28:201230 }
[email protected]16ee26d2012-03-08 03:34:351231 // Clean up now for nice NetLog.
[email protected]daae1322013-09-05 18:26:501232 KillDnsTask();
[email protected]b3601bc22012-02-21 21:23:201233 net_log_.EndEventWithNetErrorCode(NetLog::TYPE_HOST_RESOLVER_IMPL_JOB,
1234 ERR_ABORTED);
1235 } else if (is_queued()) {
[email protected]57a48d32012-03-03 00:04:551236 // |resolver_| was destroyed without running this Job.
[email protected]16ee26d2012-03-08 03:34:351237 // TODO(szym): is there any benefit in having this distinction?
[email protected]4da911f2012-06-14 19:45:201238 net_log_.AddEvent(NetLog::TYPE_CANCELLED);
1239 net_log_.EndEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_JOB);
[email protected]68ad3ee2010-01-30 03:45:391240 }
[email protected]b3601bc22012-02-21 21:23:201241 // else CompleteRequests logged EndEvent.
[email protected]68ad3ee2010-01-30 03:45:391242
[email protected]b3601bc22012-02-21 21:23:201243 // Log any remaining Requests as cancelled.
1244 for (RequestsList::const_iterator it = requests_.begin();
1245 it != requests_.end(); ++it) {
1246 Request* req = *it;
1247 if (req->was_canceled())
1248 continue;
1249 DCHECK_EQ(this, req->job());
1250 LogCancelRequest(req->source_net_log(), req->request_net_log(),
1251 req->info());
1252 }
[email protected]68ad3ee2010-01-30 03:45:391253 }
1254
[email protected]daae1322013-09-05 18:26:501255 // Add this job to the dispatcher. If "at_head" is true, adds at the front
1256 // of the queue.
1257 void Schedule(bool at_head) {
1258 DCHECK(!is_queued());
1259 PrioritizedDispatcher::Handle handle;
1260 if (!at_head) {
[email protected]106ccd2c2014-06-17 09:21:001261 handle = resolver_->dispatcher_->Add(this, priority());
[email protected]daae1322013-09-05 18:26:501262 } else {
[email protected]106ccd2c2014-06-17 09:21:001263 handle = resolver_->dispatcher_->AddAtHead(this, priority());
[email protected]daae1322013-09-05 18:26:501264 }
1265 // The dispatcher could have started |this| in the above call to Add, which
1266 // could have called Schedule again. In that case |handle| will be null,
1267 // but |handle_| may have been set by the other nested call to Schedule.
1268 if (!handle.is_null()) {
1269 DCHECK(handle_.is_null());
1270 handle_ = handle;
1271 }
[email protected]16ee26d2012-03-08 03:34:351272 }
1273
[email protected]b3601bc22012-02-21 21:23:201274 void AddRequest(scoped_ptr<Request> req) {
[email protected]0f292de02012-02-01 22:28:201275 DCHECK_EQ(key_.hostname, req->info().hostname());
1276
1277 req->set_job(this);
[email protected]5109c1952013-08-20 18:44:101278 priority_tracker_.Add(req->priority());
[email protected]0f292de02012-02-01 22:28:201279
1280 req->request_net_log().AddEvent(
1281 NetLog::TYPE_HOST_RESOLVER_IMPL_JOB_ATTACH,
[email protected]cd565142012-06-12 16:21:451282 net_log_.source().ToEventParametersCallback());
[email protected]0f292de02012-02-01 22:28:201283
1284 net_log_.AddEvent(
1285 NetLog::TYPE_HOST_RESOLVER_IMPL_JOB_REQUEST_ATTACH,
[email protected]cd565142012-06-12 16:21:451286 base::Bind(&NetLogJobAttachCallback,
1287 req->request_net_log().source(),
1288 priority()));
[email protected]0f292de02012-02-01 22:28:201289
1290 // TODO(szym): Check if this is still needed.
1291 if (!req->info().is_speculative()) {
1292 had_non_speculative_request_ = true;
[email protected]90499482013-06-01 00:39:501293 if (proc_task_.get())
[email protected]0f292de02012-02-01 22:28:201294 proc_task_->set_had_non_speculative_request();
[email protected]68ad3ee2010-01-30 03:45:391295 }
[email protected]b3601bc22012-02-21 21:23:201296
1297 requests_.push_back(req.release());
1298
[email protected]51b9a6b2012-06-25 21:50:291299 UpdatePriority();
[email protected]68ad3ee2010-01-30 03:45:391300 }
1301
[email protected]16ee26d2012-03-08 03:34:351302 // Marks |req| as cancelled. If it was the last active Request, also finishes
[email protected]0adcb2b2012-08-15 21:30:461303 // this Job, marking it as cancelled, and deletes it.
[email protected]0f292de02012-02-01 22:28:201304 void CancelRequest(Request* req) {
1305 DCHECK_EQ(key_.hostname, req->info().hostname());
1306 DCHECK(!req->was_canceled());
[email protected]16ee26d2012-03-08 03:34:351307
[email protected]0f292de02012-02-01 22:28:201308 // Don't remove it from |requests_| just mark it canceled.
1309 req->MarkAsCanceled();
1310 LogCancelRequest(req->source_net_log(), req->request_net_log(),
1311 req->info());
[email protected]16ee26d2012-03-08 03:34:351312
[email protected]5109c1952013-08-20 18:44:101313 priority_tracker_.Remove(req->priority());
1314 net_log_.AddEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_JOB_REQUEST_DETACH,
1315 base::Bind(&NetLogJobAttachCallback,
1316 req->request_net_log().source(),
1317 priority()));
[email protected]b3601bc22012-02-21 21:23:201318
[email protected]16ee26d2012-03-08 03:34:351319 if (num_active_requests() > 0) {
[email protected]51b9a6b2012-06-25 21:50:291320 UpdatePriority();
[email protected]16ee26d2012-03-08 03:34:351321 } else {
1322 // If we were called from a Request's callback within CompleteRequests,
1323 // that Request could not have been cancelled, so num_active_requests()
1324 // could not be 0. Therefore, we are not in CompleteRequests().
[email protected]1339a2a22012-10-17 08:39:431325 CompleteRequestsWithError(OK /* cancelled */);
[email protected]b3601bc22012-02-21 21:23:201326 }
[email protected]68ad3ee2010-01-30 03:45:391327 }
1328
[email protected]7af985a2012-12-14 22:40:421329 // Called from AbortAllInProgressJobs. Completes all requests and destroys
1330 // the job. This currently assumes the abort is due to a network change.
[email protected]0f292de02012-02-01 22:28:201331 void Abort() {
[email protected]0f292de02012-02-01 22:28:201332 DCHECK(is_running());
[email protected]7af985a2012-12-14 22:40:421333 CompleteRequestsWithError(ERR_NETWORK_CHANGED);
[email protected]b3601bc22012-02-21 21:23:201334 }
1335
[email protected]f0f602bd2012-11-15 18:01:021336 // If DnsTask present, abort it and fall back to ProcTask.
1337 void AbortDnsTask() {
1338 if (dns_task_) {
[email protected]daae1322013-09-05 18:26:501339 KillDnsTask();
[email protected]f0f602bd2012-11-15 18:01:021340 dns_task_error_ = OK;
1341 StartProcTask();
1342 }
1343 }
1344
[email protected]16ee26d2012-03-08 03:34:351345 // Called by HostResolverImpl when this job is evicted due to queue overflow.
1346 // Completes all requests and destroys the job.
1347 void OnEvicted() {
1348 DCHECK(!is_running());
1349 DCHECK(is_queued());
1350 handle_.Reset();
1351
[email protected]4da911f2012-06-14 19:45:201352 net_log_.AddEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_JOB_EVICTED);
[email protected]16ee26d2012-03-08 03:34:351353
1354 // This signals to CompleteRequests that this job never ran.
[email protected]1339a2a22012-10-17 08:39:431355 CompleteRequestsWithError(ERR_HOST_RESOLVER_QUEUE_TOO_LARGE);
[email protected]16ee26d2012-03-08 03:34:351356 }
1357
[email protected]78eac2a2012-03-14 19:09:271358 // Attempts to serve the job from HOSTS. Returns true if succeeded and
1359 // this Job was destroyed.
1360 bool ServeFromHosts() {
1361 DCHECK_GT(num_active_requests(), 0u);
1362 AddressList addr_list;
1363 if (resolver_->ServeFromHosts(key(),
[email protected]3cb676a12012-06-30 15:46:031364 requests_.front()->info(),
[email protected]78eac2a2012-03-14 19:09:271365 &addr_list)) {
1366 // This will destroy the Job.
[email protected]895123222012-10-25 15:21:171367 CompleteRequests(
1368 HostCache::Entry(OK, MakeAddressListForRequest(addr_list)),
1369 base::TimeDelta());
[email protected]78eac2a2012-03-14 19:09:271370 return true;
1371 }
1372 return false;
1373 }
1374
[email protected]b4481b222012-03-16 17:13:111375 const Key key() const {
1376 return key_;
1377 }
1378
1379 bool is_queued() const {
1380 return !handle_.is_null();
1381 }
1382
1383 bool is_running() const {
1384 return is_dns_running() || is_proc_running();
1385 }
1386
[email protected]16ee26d2012-03-08 03:34:351387 private:
[email protected]daae1322013-09-05 18:26:501388 void KillDnsTask() {
1389 if (dns_task_) {
1390 ReduceToOneJobSlot();
1391 dns_task_.reset();
1392 }
1393 }
1394
1395 // Reduce the number of job slots occupied and queued in the dispatcher
1396 // to one. If the second Job slot is queued in the dispatcher, cancels the
1397 // queued job. Otherwise, the second Job has been started by the
1398 // PrioritizedDispatcher, so signals it is complete.
1399 void ReduceToOneJobSlot() {
1400 DCHECK_GE(num_occupied_job_slots_, 1u);
1401 if (is_queued()) {
[email protected]106ccd2c2014-06-17 09:21:001402 resolver_->dispatcher_->Cancel(handle_);
[email protected]daae1322013-09-05 18:26:501403 handle_.Reset();
1404 } else if (num_occupied_job_slots_ > 1) {
[email protected]106ccd2c2014-06-17 09:21:001405 resolver_->dispatcher_->OnJobFinished();
[email protected]daae1322013-09-05 18:26:501406 --num_occupied_job_slots_;
1407 }
1408 DCHECK_EQ(1u, num_occupied_job_slots_);
1409 }
1410
[email protected]51b9a6b2012-06-25 21:50:291411 void UpdatePriority() {
1412 if (is_queued()) {
1413 if (priority() != static_cast<RequestPriority>(handle_.priority()))
1414 priority_change_time_ = base::TimeTicks::Now();
[email protected]106ccd2c2014-06-17 09:21:001415 handle_ = resolver_->dispatcher_->ChangePriority(handle_, priority());
[email protected]51b9a6b2012-06-25 21:50:291416 }
1417 }
1418
[email protected]895123222012-10-25 15:21:171419 AddressList MakeAddressListForRequest(const AddressList& list) const {
1420 if (requests_.empty())
1421 return list;
1422 return AddressList::CopyWithPort(list, requests_.front()->info().port());
1423 }
1424
[email protected]16ee26d2012-03-08 03:34:351425 // PriorityDispatch::Job:
[email protected]0f292de02012-02-01 22:28:201426 virtual void Start() OVERRIDE {
[email protected]daae1322013-09-05 18:26:501427 DCHECK_LE(num_occupied_job_slots_, 1u);
1428
[email protected]70c04ab2013-08-22 16:05:121429 handle_.Reset();
[email protected]daae1322013-09-05 18:26:501430 ++num_occupied_job_slots_;
1431
1432 if (num_occupied_job_slots_ == 2) {
1433 StartSecondDnsTransaction();
1434 return;
1435 }
1436
1437 DCHECK(!is_running());
[email protected]0f292de02012-02-01 22:28:201438
[email protected]4da911f2012-06-14 19:45:201439 net_log_.AddEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_JOB_STARTED);
[email protected]0f292de02012-02-01 22:28:201440
[email protected]51b9a6b2012-06-25 21:50:291441 had_dns_config_ = resolver_->HaveDnsConfig();
1442
1443 base::TimeTicks now = base::TimeTicks::Now();
1444 base::TimeDelta queue_time = now - creation_time_;
1445 base::TimeDelta queue_time_after_change = now - priority_change_time_;
1446
1447 if (had_dns_config_) {
1448 DNS_HISTOGRAM_BY_PRIORITY("AsyncDNS.JobQueueTime", priority(),
1449 queue_time);
1450 DNS_HISTOGRAM_BY_PRIORITY("AsyncDNS.JobQueueTimeAfterChange", priority(),
1451 queue_time_after_change);
1452 } else {
1453 DNS_HISTOGRAM_BY_PRIORITY("DNS.JobQueueTime", priority(), queue_time);
1454 DNS_HISTOGRAM_BY_PRIORITY("DNS.JobQueueTimeAfterChange", priority(),
1455 queue_time_after_change);
1456 }
1457
[email protected]443714fad2013-09-19 04:52:011458 bool system_only =
1459 (key_.host_resolver_flags & HOST_RESOLVER_SYSTEM_ONLY) != 0;
1460
[email protected]1d932852012-06-19 19:40:331461 // Caution: Job::Start must not complete synchronously.
[email protected]443714fad2013-09-19 04:52:011462 if (!system_only && had_dns_config_ &&
1463 !ResemblesMulticastDNSName(key_.hostname)) {
[email protected]b3601bc22012-02-21 21:23:201464 StartDnsTask();
1465 } else {
1466 StartProcTask();
1467 }
1468 }
1469
[email protected]b3601bc22012-02-21 21:23:201470 // TODO(szym): Since DnsTransaction does not consume threads, we can increase
1471 // the limits on |dispatcher_|. But in order to keep the number of WorkerPool
1472 // threads low, we will need to use an "inner" PrioritizedDispatcher with
1473 // tighter limits.
1474 void StartProcTask() {
[email protected]16ee26d2012-03-08 03:34:351475 DCHECK(!is_dns_running());
[email protected]0f292de02012-02-01 22:28:201476 proc_task_ = new ProcTask(
1477 key_,
1478 resolver_->proc_params_,
[email protected]e3bd4822012-10-23 18:01:371479 base::Bind(&Job::OnProcTaskComplete, base::Unretained(this),
1480 base::TimeTicks::Now()),
[email protected]0f292de02012-02-01 22:28:201481 net_log_);
1482
1483 if (had_non_speculative_request_)
1484 proc_task_->set_had_non_speculative_request();
1485 // Start() could be called from within Resolve(), hence it must NOT directly
1486 // call OnProcTaskComplete, for example, on synchronous failure.
1487 proc_task_->Start();
[email protected]68ad3ee2010-01-30 03:45:391488 }
1489
[email protected]0f292de02012-02-01 22:28:201490 // Called by ProcTask when it completes.
[email protected]e3bd4822012-10-23 18:01:371491 void OnProcTaskComplete(base::TimeTicks start_time,
1492 int net_error,
1493 const AddressList& addr_list) {
[email protected]b3601bc22012-02-21 21:23:201494 DCHECK(is_proc_running());
[email protected]68ad3ee2010-01-30 03:45:391495
[email protected]62e86ba2013-01-29 18:59:161496 if (!resolver_->resolved_known_ipv6_hostname_ &&
1497 net_error == OK &&
1498 key_.address_family == ADDRESS_FAMILY_UNSPECIFIED) {
1499 if (key_.hostname == "www.google.com") {
1500 resolver_->resolved_known_ipv6_hostname_ = true;
1501 bool got_ipv6_address = false;
1502 for (size_t i = 0; i < addr_list.size(); ++i) {
[email protected]5134c22a2013-08-06 18:09:021503 if (addr_list[i].GetFamily() == ADDRESS_FAMILY_IPV6) {
[email protected]62e86ba2013-01-29 18:59:161504 got_ipv6_address = true;
[email protected]5134c22a2013-08-06 18:09:021505 break;
1506 }
[email protected]62e86ba2013-01-29 18:59:161507 }
1508 UMA_HISTOGRAM_BOOLEAN("Net.UnspecResolvedIPv6", got_ipv6_address);
1509 }
1510 }
1511
[email protected]1d932852012-06-19 19:40:331512 if (dns_task_error_ != OK) {
[email protected]e3bd4822012-10-23 18:01:371513 base::TimeDelta duration = base::TimeTicks::Now() - start_time;
[email protected]1def74c2012-03-22 20:07:001514 if (net_error == OK) {
[email protected]e3bd4822012-10-23 18:01:371515 DNS_HISTOGRAM("AsyncDNS.FallbackSuccess", duration);
[email protected]1d932852012-06-19 19:40:331516 if ((dns_task_error_ == ERR_NAME_NOT_RESOLVED) &&
1517 ResemblesNetBIOSName(key_.hostname)) {
1518 UmaAsyncDnsResolveStatus(RESOLVE_STATUS_SUSPECT_NETBIOS);
1519 } else {
1520 UmaAsyncDnsResolveStatus(RESOLVE_STATUS_PROC_SUCCESS);
1521 }
1522 UMA_HISTOGRAM_CUSTOM_ENUMERATION("AsyncDNS.ResolveError",
1523 std::abs(dns_task_error_),
1524 GetAllErrorCodesForUma());
[email protected]1ffdda82012-12-12 23:04:221525 resolver_->OnDnsTaskResolve(dns_task_error_);
[email protected]1def74c2012-03-22 20:07:001526 } else {
[email protected]e3bd4822012-10-23 18:01:371527 DNS_HISTOGRAM("AsyncDNS.FallbackFail", duration);
[email protected]1def74c2012-03-22 20:07:001528 UmaAsyncDnsResolveStatus(RESOLVE_STATUS_FAIL);
1529 }
1530 }
1531
[email protected]1339a2a22012-10-17 08:39:431532 base::TimeDelta ttl =
1533 base::TimeDelta::FromSeconds(kNegativeCacheEntryTTLSeconds);
[email protected]b3601bc22012-02-21 21:23:201534 if (net_error == OK)
1535 ttl = base::TimeDelta::FromSeconds(kCacheEntryTTLSeconds);
[email protected]68ad3ee2010-01-30 03:45:391536
[email protected]895123222012-10-25 15:21:171537 // Don't store the |ttl| in cache since it's not obtained from the server.
1538 CompleteRequests(
1539 HostCache::Entry(net_error, MakeAddressListForRequest(addr_list)),
1540 ttl);
[email protected]b3601bc22012-02-21 21:23:201541 }
1542
1543 void StartDnsTask() {
[email protected]78eac2a2012-03-14 19:09:271544 DCHECK(resolver_->HaveDnsConfig());
[email protected]daae1322013-09-05 18:26:501545 dns_task_.reset(new DnsTask(resolver_->dns_client_.get(), key_, this,
1546 net_log_));
[email protected]b3601bc22012-02-21 21:23:201547
[email protected]daae1322013-09-05 18:26:501548 dns_task_->StartFirstTransaction();
1549 // Schedule a second transaction, if needed.
1550 if (dns_task_->needs_two_transactions())
1551 Schedule(true);
1552 }
1553
1554 void StartSecondDnsTransaction() {
1555 DCHECK(dns_task_->needs_two_transactions());
1556 dns_task_->StartSecondTransaction();
[email protected]16c2bd72013-06-28 01:19:221557 }
1558
1559 // Called if DnsTask fails. It is posted from StartDnsTask, so Job may be
1560 // deleted before this callback. In this case dns_task is deleted as well,
1561 // so we use it as indicator whether Job is still valid.
1562 void OnDnsTaskFailure(const base::WeakPtr<DnsTask>& dns_task,
1563 base::TimeDelta duration,
1564 int net_error) {
1565 DNS_HISTOGRAM("AsyncDNS.ResolveFail", duration);
1566
1567 if (dns_task == NULL)
1568 return;
1569
1570 dns_task_error_ = net_error;
1571
1572 // TODO(szym): Run ServeFromHosts now if nsswitch.conf says so.
1573 // http://crbug.com/117655
1574
1575 // TODO(szym): Some net errors indicate lack of connectivity. Starting
1576 // ProcTask in that case is a waste of time.
1577 if (resolver_->fallback_to_proctask_) {
[email protected]daae1322013-09-05 18:26:501578 KillDnsTask();
[email protected]16c2bd72013-06-28 01:19:221579 StartProcTask();
1580 } else {
1581 UmaAsyncDnsResolveStatus(RESOLVE_STATUS_FAIL);
1582 CompleteRequestsWithError(net_error);
[email protected]b3601bc22012-02-21 21:23:201583 }
1584 }
1585
[email protected]daae1322013-09-05 18:26:501586
1587 // HostResolverImpl::DnsTask::Delegate implementation:
1588
1589 virtual void OnDnsTaskComplete(base::TimeTicks start_time,
1590 int net_error,
1591 const AddressList& addr_list,
1592 base::TimeDelta ttl) OVERRIDE {
[email protected]b3601bc22012-02-21 21:23:201593 DCHECK(is_dns_running());
[email protected]b3601bc22012-02-21 21:23:201594
[email protected]e3bd4822012-10-23 18:01:371595 base::TimeDelta duration = base::TimeTicks::Now() - start_time;
[email protected]b3601bc22012-02-21 21:23:201596 if (net_error != OK) {
[email protected]16c2bd72013-06-28 01:19:221597 OnDnsTaskFailure(dns_task_->AsWeakPtr(), duration, net_error);
[email protected]b3601bc22012-02-21 21:23:201598 return;
1599 }
[email protected]e3bd4822012-10-23 18:01:371600 DNS_HISTOGRAM("AsyncDNS.ResolveSuccess", duration);
[email protected]02cd6982013-01-10 20:12:511601 // Log DNS lookups based on |address_family|.
1602 switch(key_.address_family) {
1603 case ADDRESS_FAMILY_IPV4:
1604 DNS_HISTOGRAM("AsyncDNS.ResolveSuccess_FAMILY_IPV4", duration);
1605 break;
1606 case ADDRESS_FAMILY_IPV6:
1607 DNS_HISTOGRAM("AsyncDNS.ResolveSuccess_FAMILY_IPV6", duration);
1608 break;
1609 case ADDRESS_FAMILY_UNSPECIFIED:
1610 DNS_HISTOGRAM("AsyncDNS.ResolveSuccess_FAMILY_UNSPEC", duration);
1611 break;
1612 }
[email protected]b3601bc22012-02-21 21:23:201613
[email protected]1def74c2012-03-22 20:07:001614 UmaAsyncDnsResolveStatus(RESOLVE_STATUS_DNS_SUCCESS);
[email protected]1339a2a22012-10-17 08:39:431615 RecordTTL(ttl);
[email protected]0adcb2b2012-08-15 21:30:461616
[email protected]1ffdda82012-12-12 23:04:221617 resolver_->OnDnsTaskResolve(OK);
[email protected]f0f602bd2012-11-15 18:01:021618
[email protected]895123222012-10-25 15:21:171619 base::TimeDelta bounded_ttl =
1620 std::max(ttl, base::TimeDelta::FromSeconds(kMinimumTTLSeconds));
1621
1622 CompleteRequests(
1623 HostCache::Entry(net_error, MakeAddressListForRequest(addr_list), ttl),
1624 bounded_ttl);
[email protected]b3601bc22012-02-21 21:23:201625 }
1626
[email protected]daae1322013-09-05 18:26:501627 virtual void OnFirstDnsTransactionComplete() OVERRIDE {
1628 DCHECK(dns_task_->needs_two_transactions());
1629 DCHECK_EQ(dns_task_->needs_another_transaction(), is_queued());
1630 // No longer need to occupy two dispatcher slots.
1631 ReduceToOneJobSlot();
1632
1633 // We already have a job slot at the dispatcher, so if the second
1634 // transaction hasn't started, reuse it now instead of waiting in the queue
1635 // for the second slot.
1636 if (dns_task_->needs_another_transaction())
1637 dns_task_->StartSecondTransaction();
1638 }
1639
[email protected]16ee26d2012-03-08 03:34:351640 // Performs Job's last rites. Completes all Requests. Deletes this.
[email protected]895123222012-10-25 15:21:171641 void CompleteRequests(const HostCache::Entry& entry,
1642 base::TimeDelta ttl) {
[email protected]11fbca0b2013-06-02 23:37:211643 CHECK(resolver_.get());
[email protected]b3601bc22012-02-21 21:23:201644
[email protected]16ee26d2012-03-08 03:34:351645 // This job must be removed from resolver's |jobs_| now to make room for a
1646 // new job with the same key in case one of the OnComplete callbacks decides
1647 // to spawn one. Consequently, the job deletes itself when CompleteRequests
1648 // is done.
1649 scoped_ptr<Job> self_deleter(this);
1650
1651 resolver_->RemoveJob(this);
1652
[email protected]16ee26d2012-03-08 03:34:351653 if (is_running()) {
[email protected]16ee26d2012-03-08 03:34:351654 if (is_proc_running()) {
[email protected]daae1322013-09-05 18:26:501655 DCHECK(!is_queued());
[email protected]16ee26d2012-03-08 03:34:351656 proc_task_->Cancel();
1657 proc_task_ = NULL;
1658 }
[email protected]daae1322013-09-05 18:26:501659 KillDnsTask();
[email protected]16ee26d2012-03-08 03:34:351660
1661 // Signal dispatcher that a slot has opened.
[email protected]106ccd2c2014-06-17 09:21:001662 resolver_->dispatcher_->OnJobFinished();
[email protected]16ee26d2012-03-08 03:34:351663 } else if (is_queued()) {
[email protected]106ccd2c2014-06-17 09:21:001664 resolver_->dispatcher_->Cancel(handle_);
[email protected]16ee26d2012-03-08 03:34:351665 handle_.Reset();
1666 }
1667
1668 if (num_active_requests() == 0) {
[email protected]4da911f2012-06-14 19:45:201669 net_log_.AddEvent(NetLog::TYPE_CANCELLED);
[email protected]16ee26d2012-03-08 03:34:351670 net_log_.EndEventWithNetErrorCode(NetLog::TYPE_HOST_RESOLVER_IMPL_JOB,
1671 OK);
1672 return;
1673 }
[email protected]b3601bc22012-02-21 21:23:201674
1675 net_log_.EndEventWithNetErrorCode(NetLog::TYPE_HOST_RESOLVER_IMPL_JOB,
[email protected]895123222012-10-25 15:21:171676 entry.error);
[email protected]68ad3ee2010-01-30 03:45:391677
[email protected]78eac2a2012-03-14 19:09:271678 DCHECK(!requests_.empty());
1679
[email protected]895123222012-10-25 15:21:171680 if (entry.error == OK) {
[email protected]d7b9a2b2012-05-31 22:31:191681 // Record this histogram here, when we know the system has a valid DNS
1682 // configuration.
[email protected]539df6c2012-06-19 21:21:291683 UMA_HISTOGRAM_BOOLEAN("AsyncDNS.HaveDnsConfig",
1684 resolver_->received_dns_config_);
[email protected]d7b9a2b2012-05-31 22:31:191685 }
[email protected]16ee26d2012-03-08 03:34:351686
[email protected]7af985a2012-12-14 22:40:421687 bool did_complete = (entry.error != ERR_NETWORK_CHANGED) &&
[email protected]895123222012-10-25 15:21:171688 (entry.error != ERR_HOST_RESOLVER_QUEUE_TOO_LARGE);
1689 if (did_complete)
[email protected]1339a2a22012-10-17 08:39:431690 resolver_->CacheResult(key_, entry, ttl);
[email protected]16ee26d2012-03-08 03:34:351691
[email protected]0f292de02012-02-01 22:28:201692 // Complete all of the requests that were attached to the job.
1693 for (RequestsList::const_iterator it = requests_.begin();
1694 it != requests_.end(); ++it) {
1695 Request* req = *it;
1696
1697 if (req->was_canceled())
1698 continue;
1699
1700 DCHECK_EQ(this, req->job());
1701 // Update the net log and notify registered observers.
1702 LogFinishRequest(req->source_net_log(), req->request_net_log(),
[email protected]895123222012-10-25 15:21:171703 req->info(), entry.error);
[email protected]51b9a6b2012-06-25 21:50:291704 if (did_complete) {
1705 // Record effective total time from creation to completion.
1706 RecordTotalTime(had_dns_config_, req->info().is_speculative(),
1707 base::TimeTicks::Now() - req->request_time());
1708 }
[email protected]895123222012-10-25 15:21:171709 req->OnComplete(entry.error, entry.addrlist);
[email protected]0f292de02012-02-01 22:28:201710
1711 // Check if the resolver was destroyed as a result of running the
1712 // callback. If it was, we could continue, but we choose to bail.
[email protected]11fbca0b2013-06-02 23:37:211713 if (!resolver_.get())
[email protected]0f292de02012-02-01 22:28:201714 return;
1715 }
1716 }
1717
[email protected]1339a2a22012-10-17 08:39:431718 // Convenience wrapper for CompleteRequests in case of failure.
1719 void CompleteRequestsWithError(int net_error) {
[email protected]895123222012-10-25 15:21:171720 CompleteRequests(HostCache::Entry(net_error, AddressList()),
1721 base::TimeDelta());
[email protected]1339a2a22012-10-17 08:39:431722 }
1723
[email protected]b4481b222012-03-16 17:13:111724 RequestPriority priority() const {
1725 return priority_tracker_.highest_priority();
1726 }
1727
1728 // Number of non-canceled requests in |requests_|.
1729 size_t num_active_requests() const {
1730 return priority_tracker_.total_count();
1731 }
1732
1733 bool is_dns_running() const {
1734 return dns_task_.get() != NULL;
1735 }
1736
1737 bool is_proc_running() const {
1738 return proc_task_.get() != NULL;
1739 }
1740
[email protected]0f292de02012-02-01 22:28:201741 base::WeakPtr<HostResolverImpl> resolver_;
1742
1743 Key key_;
1744
1745 // Tracks the highest priority across |requests_|.
1746 PriorityTracker priority_tracker_;
1747
1748 bool had_non_speculative_request_;
1749
[email protected]51b9a6b2012-06-25 21:50:291750 // Distinguishes measurements taken while DnsClient was fully configured.
1751 bool had_dns_config_;
1752
[email protected]daae1322013-09-05 18:26:501753 // Number of slots occupied by this Job in resolver's PrioritizedDispatcher.
1754 unsigned num_occupied_job_slots_;
1755
[email protected]1d932852012-06-19 19:40:331756 // Result of DnsTask.
1757 int dns_task_error_;
[email protected]1def74c2012-03-22 20:07:001758
[email protected]51b9a6b2012-06-25 21:50:291759 const base::TimeTicks creation_time_;
1760 base::TimeTicks priority_change_time_;
1761
[email protected]0f292de02012-02-01 22:28:201762 BoundNetLog net_log_;
1763
[email protected]b3601bc22012-02-21 21:23:201764 // Resolves the host using a HostResolverProc.
[email protected]0f292de02012-02-01 22:28:201765 scoped_refptr<ProcTask> proc_task_;
1766
[email protected]b3601bc22012-02-21 21:23:201767 // Resolves the host using a DnsTransaction.
1768 scoped_ptr<DnsTask> dns_task_;
1769
[email protected]0f292de02012-02-01 22:28:201770 // All Requests waiting for the result of this Job. Some can be canceled.
1771 RequestsList requests_;
1772
[email protected]16ee26d2012-03-08 03:34:351773 // A handle used in |HostResolverImpl::dispatcher_|.
[email protected]0f292de02012-02-01 22:28:201774 PrioritizedDispatcher::Handle handle_;
[email protected]68ad3ee2010-01-30 03:45:391775};
1776
1777//-----------------------------------------------------------------------------
1778
[email protected]0f292de02012-02-01 22:28:201779HostResolverImpl::ProcTaskParams::ProcTaskParams(
[email protected]e95d3aca2010-01-11 22:47:431780 HostResolverProc* resolver_proc,
[email protected]0f292de02012-02-01 22:28:201781 size_t max_retry_attempts)
1782 : resolver_proc(resolver_proc),
1783 max_retry_attempts(max_retry_attempts),
1784 unresponsive_delay(base::TimeDelta::FromMilliseconds(6000)),
1785 retry_factor(2) {
[email protected]106ccd2c2014-06-17 09:21:001786 // Maximum of 4 retry attempts for host resolution.
1787 static const size_t kDefaultMaxRetryAttempts = 4u;
1788 if (max_retry_attempts == HostResolver::kDefaultRetryAttempts)
1789 max_retry_attempts = kDefaultMaxRetryAttempts;
[email protected]0f292de02012-02-01 22:28:201790}
1791
1792HostResolverImpl::ProcTaskParams::~ProcTaskParams() {}
1793
[email protected]106ccd2c2014-06-17 09:21:001794HostResolverImpl::HostResolverImpl(const Options& options, NetLog* net_log)
1795 : max_queued_jobs_(0),
1796 proc_params_(NULL, options.max_retry_attempts),
[email protected]62e86ba2013-01-29 18:59:161797 net_log_(net_log),
[email protected]0c7798452009-10-26 17:59:511798 default_address_family_(ADDRESS_FAMILY_UNSPECIFIED),
[email protected]d7b9a2b2012-05-31 22:31:191799 received_dns_config_(false),
[email protected]f0f602bd2012-11-15 18:01:021800 num_dns_failures_(0),
[email protected]23330db72013-07-18 03:32:111801 probe_ipv6_support_(true),
[email protected]c9fa8f312013-09-17 12:24:521802 use_local_ipv6_(false),
[email protected]62e86ba2013-01-29 18:59:161803 resolved_known_ipv6_hostname_(false),
[email protected]16c2bd72013-06-28 01:19:221804 additional_resolver_flags_(0),
[email protected]0a30cf512014-05-27 20:55:181805 fallback_to_proctask_(true),
1806 weak_ptr_factory_(this),
1807 probe_weak_ptr_factory_(this) {
[email protected]106ccd2c2014-06-17 09:21:001808 if (options.enable_caching)
1809 cache_ = HostCache::CreateDefaultCache();
[email protected]0f292de02012-02-01 22:28:201810
[email protected]106ccd2c2014-06-17 09:21:001811 PrioritizedDispatcher::Limits job_limits = options.GetDispatcherLimits();
1812 dispatcher_.reset(new PrioritizedDispatcher(job_limits));
1813 max_queued_jobs_ = job_limits.total_jobs * 100u;
[email protected]68ad3ee2010-01-30 03:45:391814
[email protected]106ccd2c2014-06-17 09:21:001815 DCHECK_GE(dispatcher_->num_priorities(), static_cast<size_t>(NUM_PRIORITIES));
[email protected]68ad3ee2010-01-30 03:45:391816
[email protected]b59ff372009-07-15 22:04:321817#if defined(OS_WIN)
1818 EnsureWinsockInit();
1819#endif
[email protected]7c466e92013-07-20 01:44:481820#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID)
[email protected]12faa4c2012-11-06 04:44:181821 new LoopbackProbeJob(weak_ptr_factory_.GetWeakPtr());
[email protected]2f3bc65c2010-07-23 17:47:101822#endif
[email protected]232a5812011-03-04 22:42:081823 NetworkChangeNotifier::AddIPAddressObserver(this);
[email protected]bb0e34542012-08-31 19:52:401824 NetworkChangeNotifier::AddDNSObserver(this);
[email protected]d7b9a2b2012-05-31 22:31:191825#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_OPENBSD) && \
1826 !defined(OS_ANDROID)
[email protected]d7b9a2b2012-05-31 22:31:191827 EnsureDnsReloaderInit();
[email protected]46018c9d2011-09-06 03:42:341828#endif
[email protected]2ac22db2012-11-28 19:50:041829
[email protected]2ac22db2012-11-28 19:50:041830 {
1831 DnsConfig dns_config;
1832 NetworkChangeNotifier::GetDnsConfig(&dns_config);
1833 received_dns_config_ = dns_config.IsValid();
[email protected]c9fa8f312013-09-17 12:24:521834 // Conservatively assume local IPv6 is needed when DnsConfig is not valid.
1835 use_local_ipv6_ = !dns_config.IsValid() || dns_config.use_local_ipv6;
[email protected]2ac22db2012-11-28 19:50:041836 }
[email protected]16c2bd72013-06-28 01:19:221837
1838 fallback_to_proctask_ = !ConfigureAsyncDnsNoFallbackFieldTrial();
[email protected]b59ff372009-07-15 22:04:321839}
1840
1841HostResolverImpl::~HostResolverImpl() {
[email protected]daae1322013-09-05 18:26:501842 // Prevent the dispatcher from starting new jobs.
[email protected]106ccd2c2014-06-17 09:21:001843 dispatcher_->SetLimitsToZero();
[email protected]daae1322013-09-05 18:26:501844 // It's now safe for Jobs to call KillDsnTask on destruction, because
1845 // OnJobComplete will not start any new jobs.
[email protected]0f292de02012-02-01 22:28:201846 STLDeleteValues(&jobs_);
[email protected]e95d3aca2010-01-11 22:47:431847
[email protected]232a5812011-03-04 22:42:081848 NetworkChangeNotifier::RemoveIPAddressObserver(this);
[email protected]bb0e34542012-08-31 19:52:401849 NetworkChangeNotifier::RemoveDNSObserver(this);
[email protected]b59ff372009-07-15 22:04:321850}
1851
[email protected]0f292de02012-02-01 22:28:201852void HostResolverImpl::SetMaxQueuedJobs(size_t value) {
[email protected]106ccd2c2014-06-17 09:21:001853 DCHECK_EQ(0u, dispatcher_->num_queued_jobs());
[email protected]0f292de02012-02-01 22:28:201854 DCHECK_GT(value, 0u);
1855 max_queued_jobs_ = value;
[email protected]be1a48b2011-01-20 00:12:131856}
1857
[email protected]684970b2009-08-14 04:54:461858int HostResolverImpl::Resolve(const RequestInfo& info,
[email protected]5109c1952013-08-20 18:44:101859 RequestPriority priority,
[email protected]b59ff372009-07-15 22:04:321860 AddressList* addresses,
[email protected]aa22b242011-11-16 18:58:291861 const CompletionCallback& callback,
[email protected]684970b2009-08-14 04:54:461862 RequestHandle* out_req,
[email protected]ee094b82010-08-24 15:55:511863 const BoundNetLog& source_net_log) {
[email protected]95a214c2011-08-04 21:50:401864 DCHECK(addresses);
[email protected]1ac6af92010-06-03 21:00:141865 DCHECK(CalledOnValidThread());
[email protected]aa22b242011-11-16 18:58:291866 DCHECK_EQ(false, callback.is_null());
[email protected]1ac6af92010-06-03 21:00:141867
[email protected]e806cd72013-05-17 02:08:431868 // Check that the caller supplied a valid hostname to resolve.
1869 std::string labeled_hostname;
1870 if (!DNSDomainFromDot(info.hostname(), &labeled_hostname))
1871 return ERR_NAME_NOT_RESOLVED;
1872
[email protected]ee094b82010-08-24 15:55:511873 // Make a log item for the request.
1874 BoundNetLog request_net_log = BoundNetLog::Make(net_log_,
1875 NetLog::SOURCE_HOST_RESOLVER_IMPL_REQUEST);
1876
[email protected]0f292de02012-02-01 22:28:201877 LogStartRequest(source_net_log, request_net_log, info);
[email protected]b59ff372009-07-15 22:04:321878
[email protected]123ab1e32009-10-21 19:12:571879 // Build a key that identifies the request in the cache and in the
1880 // outstanding jobs map.
[email protected]2b74a2f2013-07-23 19:37:381881 Key key = GetEffectiveKeyForRequest(info, request_net_log);
[email protected]123ab1e32009-10-21 19:12:571882
[email protected]287d7c22011-11-15 17:34:251883 int rv = ResolveHelper(key, info, addresses, request_net_log);
[email protected]95a214c2011-08-04 21:50:401884 if (rv != ERR_DNS_CACHE_MISS) {
[email protected]b3601bc22012-02-21 21:23:201885 LogFinishRequest(source_net_log, request_net_log, info, rv);
[email protected]51b9a6b2012-06-25 21:50:291886 RecordTotalTime(HaveDnsConfig(), info.is_speculative(), base::TimeDelta());
[email protected]95a214c2011-08-04 21:50:401887 return rv;
[email protected]38368712011-03-02 08:09:401888 }
1889
[email protected]0f292de02012-02-01 22:28:201890 // Next we need to attach our request to a "job". This job is responsible for
1891 // calling "getaddrinfo(hostname)" on a worker thread.
1892
1893 JobMap::iterator jobit = jobs_.find(key);
1894 Job* job;
1895 if (jobit == jobs_.end()) {
[email protected]5109c1952013-08-20 18:44:101896 job =
1897 new Job(weak_ptr_factory_.GetWeakPtr(), key, priority, request_net_log);
[email protected]daae1322013-09-05 18:26:501898 job->Schedule(false);
[email protected]0f292de02012-02-01 22:28:201899
1900 // Check for queue overflow.
[email protected]106ccd2c2014-06-17 09:21:001901 if (dispatcher_->num_queued_jobs() > max_queued_jobs_) {
1902 Job* evicted = static_cast<Job*>(dispatcher_->EvictOldestLowest());
[email protected]0f292de02012-02-01 22:28:201903 DCHECK(evicted);
[email protected]16ee26d2012-03-08 03:34:351904 evicted->OnEvicted(); // Deletes |evicted|.
[email protected]0f292de02012-02-01 22:28:201905 if (evicted == job) {
[email protected]0f292de02012-02-01 22:28:201906 rv = ERR_HOST_RESOLVER_QUEUE_TOO_LARGE;
[email protected]b3601bc22012-02-21 21:23:201907 LogFinishRequest(source_net_log, request_net_log, info, rv);
[email protected]0f292de02012-02-01 22:28:201908 return rv;
1909 }
[email protected]0f292de02012-02-01 22:28:201910 }
[email protected]0f292de02012-02-01 22:28:201911 jobs_.insert(jobit, std::make_pair(key, job));
1912 } else {
1913 job = jobit->second;
1914 }
1915
1916 // Can't complete synchronously. Create and attach request.
[email protected]5109c1952013-08-20 18:44:101917 scoped_ptr<Request> req(new Request(
1918 source_net_log, request_net_log, info, priority, callback, addresses));
[email protected]b59ff372009-07-15 22:04:321919 if (out_req)
[email protected]b3601bc22012-02-21 21:23:201920 *out_req = reinterpret_cast<RequestHandle>(req.get());
[email protected]b59ff372009-07-15 22:04:321921
[email protected]b3601bc22012-02-21 21:23:201922 job->AddRequest(req.Pass());
[email protected]0f292de02012-02-01 22:28:201923 // Completion happens during Job::CompleteRequests().
[email protected]b59ff372009-07-15 22:04:321924 return ERR_IO_PENDING;
1925}
1926
[email protected]287d7c22011-11-15 17:34:251927int HostResolverImpl::ResolveHelper(const Key& key,
[email protected]95a214c2011-08-04 21:50:401928 const RequestInfo& info,
1929 AddressList* addresses,
[email protected]20cd5332011-10-12 22:38:001930 const BoundNetLog& request_net_log) {
[email protected]95a214c2011-08-04 21:50:401931 // The result of |getaddrinfo| for empty hosts is inconsistent across systems.
1932 // On Windows it gives the default interface's address, whereas on Linux it
1933 // gives an error. We will make it fail on all platforms for consistency.
1934 if (info.hostname().empty() || info.hostname().size() > kMaxHostLength)
1935 return ERR_NAME_NOT_RESOLVED;
1936
1937 int net_error = ERR_UNEXPECTED;
1938 if (ResolveAsIP(key, info, &net_error, addresses))
1939 return net_error;
[email protected]78eac2a2012-03-14 19:09:271940 if (ServeFromCache(key, info, &net_error, addresses)) {
[email protected]4da911f2012-06-14 19:45:201941 request_net_log.AddEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_CACHE_HIT);
[email protected]78eac2a2012-03-14 19:09:271942 return net_error;
1943 }
1944 // TODO(szym): Do not do this if nsswitch.conf instructs not to.
1945 // http://crbug.com/117655
1946 if (ServeFromHosts(key, info, addresses)) {
[email protected]4da911f2012-06-14 19:45:201947 request_net_log.AddEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_HOSTS_HIT);
[email protected]78eac2a2012-03-14 19:09:271948 return OK;
1949 }
1950 return ERR_DNS_CACHE_MISS;
[email protected]95a214c2011-08-04 21:50:401951}
1952
1953int HostResolverImpl::ResolveFromCache(const RequestInfo& info,
1954 AddressList* addresses,
1955 const BoundNetLog& source_net_log) {
1956 DCHECK(CalledOnValidThread());
1957 DCHECK(addresses);
1958
[email protected]95a214c2011-08-04 21:50:401959 // Make a log item for the request.
1960 BoundNetLog request_net_log = BoundNetLog::Make(net_log_,
1961 NetLog::SOURCE_HOST_RESOLVER_IMPL_REQUEST);
1962
1963 // Update the net log and notify registered observers.
[email protected]0f292de02012-02-01 22:28:201964 LogStartRequest(source_net_log, request_net_log, info);
[email protected]95a214c2011-08-04 21:50:401965
[email protected]2b74a2f2013-07-23 19:37:381966 Key key = GetEffectiveKeyForRequest(info, request_net_log);
[email protected]95a214c2011-08-04 21:50:401967
[email protected]287d7c22011-11-15 17:34:251968 int rv = ResolveHelper(key, info, addresses, request_net_log);
[email protected]b3601bc22012-02-21 21:23:201969 LogFinishRequest(source_net_log, request_net_log, info, rv);
[email protected]95a214c2011-08-04 21:50:401970 return rv;
1971}
1972
[email protected]b59ff372009-07-15 22:04:321973void HostResolverImpl::CancelRequest(RequestHandle req_handle) {
[email protected]1ac6af92010-06-03 21:00:141974 DCHECK(CalledOnValidThread());
[email protected]b59ff372009-07-15 22:04:321975 Request* req = reinterpret_cast<Request*>(req_handle);
1976 DCHECK(req);
[email protected]0f292de02012-02-01 22:28:201977 Job* job = req->job();
1978 DCHECK(job);
[email protected]0f292de02012-02-01 22:28:201979 job->CancelRequest(req);
[email protected]b59ff372009-07-15 22:04:321980}
1981
[email protected]0f8f1b432010-03-16 19:06:031982void HostResolverImpl::SetDefaultAddressFamily(AddressFamily address_family) {
[email protected]1ac6af92010-06-03 21:00:141983 DCHECK(CalledOnValidThread());
[email protected]0f8f1b432010-03-16 19:06:031984 default_address_family_ = address_family;
[email protected]23330db72013-07-18 03:32:111985 probe_ipv6_support_ = false;
[email protected]0f8f1b432010-03-16 19:06:031986}
1987
[email protected]f7d310e2010-10-07 16:25:111988AddressFamily HostResolverImpl::GetDefaultAddressFamily() const {
1989 return default_address_family_;
1990}
1991
[email protected]a8883e452012-11-17 05:58:061992void HostResolverImpl::SetDnsClientEnabled(bool enabled) {
1993 DCHECK(CalledOnValidThread());
1994#if defined(ENABLE_BUILT_IN_DNS)
1995 if (enabled && !dns_client_) {
1996 SetDnsClient(DnsClient::CreateClient(net_log_));
1997 } else if (!enabled && dns_client_) {
1998 SetDnsClient(scoped_ptr<DnsClient>());
1999 }
2000#endif
2001}
2002
[email protected]489d1a82011-10-12 03:09:112003HostCache* HostResolverImpl::GetHostCache() {
2004 return cache_.get();
2005}
[email protected]95a214c2011-08-04 21:50:402006
[email protected]17e92032012-03-29 00:56:242007base::Value* HostResolverImpl::GetDnsConfigAsValue() const {
2008 // Check if async DNS is disabled.
2009 if (!dns_client_.get())
2010 return NULL;
2011
2012 // Check if async DNS is enabled, but we currently have no configuration
2013 // for it.
2014 const DnsConfig* dns_config = dns_client_->GetConfig();
2015 if (dns_config == NULL)
[email protected]ea5ef4c2013-06-13 22:50:272016 return new base::DictionaryValue();
[email protected]17e92032012-03-29 00:56:242017
2018 return dns_config->ToValue();
2019}
2020
[email protected]95a214c2011-08-04 21:50:402021bool HostResolverImpl::ResolveAsIP(const Key& key,
2022 const RequestInfo& info,
2023 int* net_error,
2024 AddressList* addresses) {
2025 DCHECK(addresses);
2026 DCHECK(net_error);
2027 IPAddressNumber ip_number;
2028 if (!ParseIPLiteralToNumber(key.hostname, &ip_number))
2029 return false;
2030
2031 DCHECK_EQ(key.host_resolver_flags &
2032 ~(HOST_RESOLVER_CANONNAME | HOST_RESOLVER_LOOPBACK_ONLY |
2033 HOST_RESOLVER_DEFAULT_FAMILY_SET_DUE_TO_NO_IPV6),
2034 0) << " Unhandled flag";
[email protected]0f292de02012-02-01 22:28:202035 bool ipv6_disabled = (default_address_family_ == ADDRESS_FAMILY_IPV4) &&
[email protected]23330db72013-07-18 03:32:112036 !probe_ipv6_support_;
[email protected]95a214c2011-08-04 21:50:402037 *net_error = OK;
[email protected]0f292de02012-02-01 22:28:202038 if ((ip_number.size() == kIPv6AddressSize) && ipv6_disabled) {
[email protected]95a214c2011-08-04 21:50:402039 *net_error = ERR_NAME_NOT_RESOLVED;
2040 } else {
[email protected]7054e78f2012-05-07 21:44:562041 *addresses = AddressList::CreateFromIPAddress(ip_number, info.port());
2042 if (key.host_resolver_flags & HOST_RESOLVER_CANONNAME)
2043 addresses->SetDefaultCanonicalName();
[email protected]95a214c2011-08-04 21:50:402044 }
2045 return true;
2046}
2047
2048bool HostResolverImpl::ServeFromCache(const Key& key,
2049 const RequestInfo& info,
[email protected]95a214c2011-08-04 21:50:402050 int* net_error,
2051 AddressList* addresses) {
2052 DCHECK(addresses);
2053 DCHECK(net_error);
2054 if (!info.allow_cached_response() || !cache_.get())
2055 return false;
2056
[email protected]407a30ab2012-08-15 17:16:102057 const HostCache::Entry* cache_entry = cache_->Lookup(
2058 key, base::TimeTicks::Now());
[email protected]95a214c2011-08-04 21:50:402059 if (!cache_entry)
2060 return false;
2061
[email protected]95a214c2011-08-04 21:50:402062 *net_error = cache_entry->error;
[email protected]7054e78f2012-05-07 21:44:562063 if (*net_error == OK) {
[email protected]1339a2a22012-10-17 08:39:432064 if (cache_entry->has_ttl())
2065 RecordTTL(cache_entry->ttl);
[email protected]895123222012-10-25 15:21:172066 *addresses = EnsurePortOnAddressList(cache_entry->addrlist, info.port());
[email protected]7054e78f2012-05-07 21:44:562067 }
[email protected]95a214c2011-08-04 21:50:402068 return true;
2069}
2070
[email protected]78eac2a2012-03-14 19:09:272071bool HostResolverImpl::ServeFromHosts(const Key& key,
2072 const RequestInfo& info,
2073 AddressList* addresses) {
2074 DCHECK(addresses);
2075 if (!HaveDnsConfig())
2076 return false;
[email protected]05a79d42013-03-28 07:30:092077 addresses->clear();
2078
[email protected]cb507622012-03-23 16:17:062079 // HOSTS lookups are case-insensitive.
2080 std::string hostname = StringToLowerASCII(key.hostname);
2081
[email protected]05a79d42013-03-28 07:30:092082 const DnsHosts& hosts = dns_client_->GetConfig()->hosts;
2083
[email protected]78eac2a2012-03-14 19:09:272084 // If |address_family| is ADDRESS_FAMILY_UNSPECIFIED other implementations
2085 // (glibc and c-ares) return the first matching line. We have more
2086 // flexibility, but lose implicit ordering.
[email protected]05a79d42013-03-28 07:30:092087 // We prefer IPv6 because "happy eyeballs" will fall back to IPv4 if
2088 // necessary.
2089 if (key.address_family == ADDRESS_FAMILY_IPV6 ||
2090 key.address_family == ADDRESS_FAMILY_UNSPECIFIED) {
2091 DnsHosts::const_iterator it = hosts.find(
2092 DnsHostsKey(hostname, ADDRESS_FAMILY_IPV6));
2093 if (it != hosts.end())
2094 addresses->push_back(IPEndPoint(it->second, info.port()));
[email protected]78eac2a2012-03-14 19:09:272095 }
2096
[email protected]05a79d42013-03-28 07:30:092097 if (key.address_family == ADDRESS_FAMILY_IPV4 ||
2098 key.address_family == ADDRESS_FAMILY_UNSPECIFIED) {
2099 DnsHosts::const_iterator it = hosts.find(
2100 DnsHostsKey(hostname, ADDRESS_FAMILY_IPV4));
2101 if (it != hosts.end())
2102 addresses->push_back(IPEndPoint(it->second, info.port()));
2103 }
2104
[email protected]ec666ab22013-04-17 20:05:592105 // If got only loopback addresses and the family was restricted, resolve
2106 // again, without restrictions. See SystemHostResolverCall for rationale.
2107 if ((key.host_resolver_flags &
2108 HOST_RESOLVER_DEFAULT_FAMILY_SET_DUE_TO_NO_IPV6) &&
2109 IsAllIPv4Loopback(*addresses)) {
2110 Key new_key(key);
2111 new_key.address_family = ADDRESS_FAMILY_UNSPECIFIED;
2112 new_key.host_resolver_flags &=
2113 ~HOST_RESOLVER_DEFAULT_FAMILY_SET_DUE_TO_NO_IPV6;
2114 return ServeFromHosts(new_key, info, addresses);
2115 }
[email protected]05a79d42013-03-28 07:30:092116 return !addresses->empty();
[email protected]78eac2a2012-03-14 19:09:272117}
2118
[email protected]16ee26d2012-03-08 03:34:352119void HostResolverImpl::CacheResult(const Key& key,
[email protected]1339a2a22012-10-17 08:39:432120 const HostCache::Entry& entry,
[email protected]16ee26d2012-03-08 03:34:352121 base::TimeDelta ttl) {
2122 if (cache_.get())
[email protected]1339a2a22012-10-17 08:39:432123 cache_->Set(key, entry, base::TimeTicks::Now(), ttl);
[email protected]ef4c40c2010-09-01 14:42:032124}
2125
[email protected]0f292de02012-02-01 22:28:202126void HostResolverImpl::RemoveJob(Job* job) {
2127 DCHECK(job);
[email protected]16ee26d2012-03-08 03:34:352128 JobMap::iterator it = jobs_.find(job->key());
2129 if (it != jobs_.end() && it->second == job)
2130 jobs_.erase(it);
[email protected]b59ff372009-07-15 22:04:322131}
2132
[email protected]9936a7862012-10-26 04:44:022133void HostResolverImpl::SetHaveOnlyLoopbackAddresses(bool result) {
2134 if (result) {
2135 additional_resolver_flags_ |= HOST_RESOLVER_LOOPBACK_ONLY;
2136 } else {
2137 additional_resolver_flags_ &= ~HOST_RESOLVER_LOOPBACK_ONLY;
2138 }
2139}
2140
[email protected]137af622010-02-05 02:14:352141HostResolverImpl::Key HostResolverImpl::GetEffectiveKeyForRequest(
[email protected]2b74a2f2013-07-23 19:37:382142 const RequestInfo& info, const BoundNetLog& net_log) const {
[email protected]eaf3a3b2010-09-03 20:34:272143 HostResolverFlags effective_flags =
2144 info.host_resolver_flags() | additional_resolver_flags_;
[email protected]137af622010-02-05 02:14:352145 AddressFamily effective_address_family = info.address_family();
[email protected]9db6f702013-04-10 18:10:512146
2147 if (info.address_family() == ADDRESS_FAMILY_UNSPECIFIED) {
[email protected]c9fa8f312013-09-17 12:24:522148 if (probe_ipv6_support_ && !use_local_ipv6_) {
[email protected]ac0b52e2013-04-21 01:26:162149 base::TimeTicks start_time = base::TimeTicks::Now();
2150 // Google DNS address.
2151 const uint8 kIPv6Address[] =
2152 { 0x20, 0x01, 0x48, 0x60, 0x48, 0x60, 0x00, 0x00,
2153 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x88 };
2154 IPAddressNumber address(kIPv6Address,
2155 kIPv6Address + arraysize(kIPv6Address));
[email protected]967d1b52014-01-16 21:43:172156 BoundNetLog probe_net_log = BoundNetLog::Make(
2157 net_log.net_log(), NetLog::SOURCE_IPV6_REACHABILITY_CHECK);
2158 probe_net_log.BeginEvent(NetLog::TYPE_IPV6_REACHABILITY_CHECK,
2159 net_log.source().ToEventParametersCallback());
2160 bool rv6 = IsGloballyReachable(address, probe_net_log);
2161 probe_net_log.EndEvent(NetLog::TYPE_IPV6_REACHABILITY_CHECK);
[email protected]2b74a2f2013-07-23 19:37:382162 if (rv6)
2163 net_log.AddEvent(NetLog::TYPE_HOST_RESOLVER_IMPL_IPV6_SUPPORTED);
[email protected]9db6f702013-04-10 18:10:512164
[email protected]ac0b52e2013-04-21 01:26:162165 UMA_HISTOGRAM_TIMES("Net.IPv6ConnectDuration",
2166 base::TimeTicks::Now() - start_time);
2167 if (rv6) {
2168 UMA_HISTOGRAM_BOOLEAN("Net.IPv6ConnectSuccessMatch",
2169 default_address_family_ == ADDRESS_FAMILY_UNSPECIFIED);
2170 } else {
2171 UMA_HISTOGRAM_BOOLEAN("Net.IPv6ConnectFailureMatch",
2172 default_address_family_ != ADDRESS_FAMILY_UNSPECIFIED);
2173
2174 effective_address_family = ADDRESS_FAMILY_IPV4;
2175 effective_flags |= HOST_RESOLVER_DEFAULT_FAMILY_SET_DUE_TO_NO_IPV6;
2176 }
[email protected]9db6f702013-04-10 18:10:512177 } else {
[email protected]ac0b52e2013-04-21 01:26:162178 effective_address_family = default_address_family_;
[email protected]9db6f702013-04-10 18:10:512179 }
2180 }
2181
[email protected]eaf3a3b2010-09-03 20:34:272182 return Key(info.hostname(), effective_address_family, effective_flags);
[email protected]137af622010-02-05 02:14:352183}
2184
[email protected]35ddc282010-09-21 23:42:062185void HostResolverImpl::AbortAllInProgressJobs() {
[email protected]b3601bc22012-02-21 21:23:202186 // In Abort, a Request callback could spawn new Jobs with matching keys, so
2187 // first collect and remove all running jobs from |jobs_|.
[email protected]c143d892012-04-06 07:56:542188 ScopedVector<Job> jobs_to_abort;
[email protected]0f292de02012-02-01 22:28:202189 for (JobMap::iterator it = jobs_.begin(); it != jobs_.end(); ) {
2190 Job* job = it->second;
[email protected]0f292de02012-02-01 22:28:202191 if (job->is_running()) {
[email protected]b3601bc22012-02-21 21:23:202192 jobs_to_abort.push_back(job);
2193 jobs_.erase(it++);
[email protected]0f292de02012-02-01 22:28:202194 } else {
[email protected]b3601bc22012-02-21 21:23:202195 DCHECK(job->is_queued());
2196 ++it;
[email protected]0f292de02012-02-01 22:28:202197 }
[email protected]ef4c40c2010-09-01 14:42:032198 }
[email protected]b3601bc22012-02-21 21:23:202199
[email protected]daae1322013-09-05 18:26:502200 // Pause the dispatcher so it won't start any new dispatcher jobs while
2201 // aborting the old ones. This is needed so that it won't start the second
2202 // DnsTransaction for a job in |jobs_to_abort| if the DnsConfig just became
2203 // invalid.
[email protected]106ccd2c2014-06-17 09:21:002204 PrioritizedDispatcher::Limits limits = dispatcher_->GetLimits();
2205 dispatcher_->SetLimits(
[email protected]daae1322013-09-05 18:26:502206 PrioritizedDispatcher::Limits(limits.reserved_slots.size(), 0));
[email protected]70c04ab2013-08-22 16:05:122207
[email protected]57a48d32012-03-03 00:04:552208 // Life check to bail once |this| is deleted.
[email protected]4589a3a2012-09-20 20:57:072209 base::WeakPtr<HostResolverImpl> self = weak_ptr_factory_.GetWeakPtr();
[email protected]57a48d32012-03-03 00:04:552210
[email protected]16ee26d2012-03-08 03:34:352211 // Then Abort them.
[email protected]11fbca0b2013-06-02 23:37:212212 for (size_t i = 0; self.get() && i < jobs_to_abort.size(); ++i) {
[email protected]57a48d32012-03-03 00:04:552213 jobs_to_abort[i]->Abort();
[email protected]c143d892012-04-06 07:56:542214 jobs_to_abort[i] = NULL;
[email protected]b3601bc22012-02-21 21:23:202215 }
[email protected]daae1322013-09-05 18:26:502216
2217 if (self)
[email protected]106ccd2c2014-06-17 09:21:002218 dispatcher_->SetLimits(limits);
[email protected]daae1322013-09-05 18:26:502219}
2220
2221void HostResolverImpl::AbortDnsTasks() {
2222 // Pause the dispatcher so it won't start any new dispatcher jobs while
2223 // aborting the old ones. This is needed so that it won't start the second
2224 // DnsTransaction for a job if the DnsConfig just changed.
[email protected]106ccd2c2014-06-17 09:21:002225 PrioritizedDispatcher::Limits limits = dispatcher_->GetLimits();
2226 dispatcher_->SetLimits(
[email protected]daae1322013-09-05 18:26:502227 PrioritizedDispatcher::Limits(limits.reserved_slots.size(), 0));
2228
2229 for (JobMap::iterator it = jobs_.begin(); it != jobs_.end(); ++it)
2230 it->second->AbortDnsTask();
[email protected]106ccd2c2014-06-17 09:21:002231 dispatcher_->SetLimits(limits);
[email protected]ef4c40c2010-09-01 14:42:032232}
2233
[email protected]78eac2a2012-03-14 19:09:272234void HostResolverImpl::TryServingAllJobsFromHosts() {
2235 if (!HaveDnsConfig())
2236 return;
2237
2238 // TODO(szym): Do not do this if nsswitch.conf instructs not to.
2239 // http://crbug.com/117655
2240
2241 // Life check to bail once |this| is deleted.
[email protected]4589a3a2012-09-20 20:57:072242 base::WeakPtr<HostResolverImpl> self = weak_ptr_factory_.GetWeakPtr();
[email protected]78eac2a2012-03-14 19:09:272243
[email protected]11fbca0b2013-06-02 23:37:212244 for (JobMap::iterator it = jobs_.begin(); self.get() && it != jobs_.end();) {
[email protected]78eac2a2012-03-14 19:09:272245 Job* job = it->second;
2246 ++it;
2247 // This could remove |job| from |jobs_|, but iterator will remain valid.
2248 job->ServeFromHosts();
2249 }
2250}
2251
[email protected]be1a48b2011-01-20 00:12:132252void HostResolverImpl::OnIPAddressChanged() {
[email protected]62e86ba2013-01-29 18:59:162253 resolved_known_ipv6_hostname_ = false;
[email protected]12faa4c2012-11-06 04:44:182254 // Abandon all ProbeJobs.
2255 probe_weak_ptr_factory_.InvalidateWeakPtrs();
[email protected]be1a48b2011-01-20 00:12:132256 if (cache_.get())
2257 cache_->clear();
[email protected]7c466e92013-07-20 01:44:482258#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID)
[email protected]12faa4c2012-11-06 04:44:182259 new LoopbackProbeJob(probe_weak_ptr_factory_.GetWeakPtr());
[email protected]be1a48b2011-01-20 00:12:132260#endif
2261 AbortAllInProgressJobs();
2262 // |this| may be deleted inside AbortAllInProgressJobs().
2263}
2264
[email protected]bb0e34542012-08-31 19:52:402265void HostResolverImpl::OnDNSChanged() {
2266 DnsConfig dns_config;
2267 NetworkChangeNotifier::GetDnsConfig(&dns_config);
[email protected]ec666ab22013-04-17 20:05:592268
[email protected]b4481b222012-03-16 17:13:112269 if (net_log_) {
2270 net_log_->AddGlobalEntry(
2271 NetLog::TYPE_DNS_CONFIG_CHANGED,
[email protected]cd565142012-06-12 16:21:452272 base::Bind(&NetLogDnsConfigCallback, &dns_config));
[email protected]b4481b222012-03-16 17:13:112273 }
2274
[email protected]01b3b9d2012-08-13 16:18:142275 // TODO(szym): Remove once http://crbug.com/137914 is resolved.
[email protected]d7b9a2b2012-05-31 22:31:192276 received_dns_config_ = dns_config.IsValid();
[email protected]c9fa8f312013-09-17 12:24:522277 // Conservatively assume local IPv6 is needed when DnsConfig is not valid.
2278 use_local_ipv6_ = !dns_config.IsValid() || dns_config.use_local_ipv6;
[email protected]78eac2a2012-03-14 19:09:272279
[email protected]a8883e452012-11-17 05:58:062280 num_dns_failures_ = 0;
2281
[email protected]01b3b9d2012-08-13 16:18:142282 // We want a new DnsSession in place, before we Abort running Jobs, so that
2283 // the newly started jobs use the new config.
[email protected]f0f602bd2012-11-15 18:01:022284 if (dns_client_.get()) {
[email protected]d7b9a2b2012-05-31 22:31:192285 dns_client_->SetConfig(dns_config);
[email protected]3d164772013-08-21 03:25:192286 if (dns_client_->GetConfig())
[email protected]f0f602bd2012-11-15 18:01:022287 UMA_HISTOGRAM_BOOLEAN("AsyncDNS.DnsClientEnabled", true);
[email protected]f0f602bd2012-11-15 18:01:022288 }
[email protected]01b3b9d2012-08-13 16:18:142289
2290 // If the DNS server has changed, existing cached info could be wrong so we
2291 // have to drop our internal cache :( Note that OS level DNS caches, such
2292 // as NSCD's cache should be dropped automatically by the OS when
2293 // resolv.conf changes so we don't need to do anything to clear that cache.
2294 if (cache_.get())
2295 cache_->clear();
2296
[email protected]f0f602bd2012-11-15 18:01:022297 // Life check to bail once |this| is deleted.
2298 base::WeakPtr<HostResolverImpl> self = weak_ptr_factory_.GetWeakPtr();
2299
[email protected]01b3b9d2012-08-13 16:18:142300 // Existing jobs will have been sent to the original server so they need to
2301 // be aborted.
2302 AbortAllInProgressJobs();
2303
2304 // |this| may be deleted inside AbortAllInProgressJobs().
[email protected]11fbca0b2013-06-02 23:37:212305 if (self.get())
[email protected]01b3b9d2012-08-13 16:18:142306 TryServingAllJobsFromHosts();
[email protected]78eac2a2012-03-14 19:09:272307}
2308
2309bool HostResolverImpl::HaveDnsConfig() const {
[email protected]32b1dbcf2013-01-26 03:48:252310 // Use DnsClient only if it's fully configured and there is no override by
2311 // ScopedDefaultHostResolverProc.
2312 // The alternative is to use NetworkChangeNotifier to override DnsConfig,
2313 // but that would introduce construction order requirements for NCN and SDHRP.
[email protected]90499482013-06-01 00:39:502314 return (dns_client_.get() != NULL) && (dns_client_->GetConfig() != NULL) &&
2315 !(proc_params_.resolver_proc.get() == NULL &&
[email protected]32b1dbcf2013-01-26 03:48:252316 HostResolverProc::GetDefault() != NULL);
[email protected]b3601bc22012-02-21 21:23:202317}
2318
[email protected]1ffdda82012-12-12 23:04:222319void HostResolverImpl::OnDnsTaskResolve(int net_error) {
[email protected]f0f602bd2012-11-15 18:01:022320 DCHECK(dns_client_);
[email protected]1ffdda82012-12-12 23:04:222321 if (net_error == OK) {
[email protected]f0f602bd2012-11-15 18:01:022322 num_dns_failures_ = 0;
2323 return;
2324 }
2325 ++num_dns_failures_;
2326 if (num_dns_failures_ < kMaximumDnsFailures)
2327 return;
[email protected]daae1322013-09-05 18:26:502328
2329 // Disable DnsClient until the next DNS change. Must be done before aborting
2330 // DnsTasks, since doing so may start new jobs.
[email protected]f0f602bd2012-11-15 18:01:022331 dns_client_->SetConfig(DnsConfig());
[email protected]daae1322013-09-05 18:26:502332
2333 // Switch jobs with active DnsTasks over to using ProcTasks.
2334 AbortDnsTasks();
2335
[email protected]f0f602bd2012-11-15 18:01:022336 UMA_HISTOGRAM_BOOLEAN("AsyncDNS.DnsClientEnabled", false);
[email protected]1ffdda82012-12-12 23:04:222337 UMA_HISTOGRAM_CUSTOM_ENUMERATION("AsyncDNS.DnsClientDisabledReason",
2338 std::abs(net_error),
2339 GetAllErrorCodesForUma());
[email protected]f0f602bd2012-11-15 18:01:022340}
2341
[email protected]a8883e452012-11-17 05:58:062342void HostResolverImpl::SetDnsClient(scoped_ptr<DnsClient> dns_client) {
[email protected]daae1322013-09-05 18:26:502343 // DnsClient and config must be updated before aborting DnsTasks, since doing
2344 // so may start new jobs.
[email protected]a8883e452012-11-17 05:58:062345 dns_client_ = dns_client.Pass();
[email protected]daae1322013-09-05 18:26:502346 if (dns_client_ && !dns_client_->GetConfig() &&
2347 num_dns_failures_ < kMaximumDnsFailures) {
2348 DnsConfig dns_config;
2349 NetworkChangeNotifier::GetDnsConfig(&dns_config);
2350 dns_client_->SetConfig(dns_config);
2351 num_dns_failures_ = 0;
2352 if (dns_client_->GetConfig())
2353 UMA_HISTOGRAM_BOOLEAN("AsyncDNS.DnsClientEnabled", true);
[email protected]a8883e452012-11-17 05:58:062354 }
[email protected]daae1322013-09-05 18:26:502355
2356 AbortDnsTasks();
[email protected]a8883e452012-11-17 05:58:062357}
2358
[email protected]b59ff372009-07-15 22:04:322359} // namespace net