Chromium Code Reviews| Index: chrome/browser/net/dns_probe_service.cc |
| diff --git a/chrome/browser/net/dns_probe_service.cc b/chrome/browser/net/dns_probe_service.cc |
| index 156313f796c4e1f560b8b4235bc30737c66c71aa..b99a7adecdd8c3e84d6a4191216664ab786e4cc7 100644 |
| --- a/chrome/browser/net/dns_probe_service.cc |
| +++ b/chrome/browser/net/dns_probe_service.cc |
| @@ -7,8 +7,6 @@ |
| #include "base/metrics/field_trial.h" |
| #include "base/metrics/histogram.h" |
| #include "base/strings/string_number_conversions.h" |
| -#include "chrome/browser/net/dns_probe_job.h" |
| -#include "chrome/common/net/net_error_info.h" |
| #include "net/base/ip_endpoint.h" |
| #include "net/base/net_util.h" |
| #include "net/dns/dns_client.h" |
| @@ -17,7 +15,7 @@ |
| using base::FieldTrialList; |
| using base::StringToInt; |
| -using chrome_common_net::DnsProbeResult; |
| +using chrome_common_net::DnsProbeStatus; |
| using net::DnsClient; |
| using net::DnsConfig; |
| using net::IPAddressNumber; |
| @@ -25,8 +23,6 @@ using net::IPEndPoint; |
| using net::ParseIPLiteralToNumber; |
| using net::NetworkChangeNotifier; |
| -namespace chrome_browser_net { |
| - |
| namespace { |
| // How long the DnsProbeService will cache the probe result for. |
| @@ -36,8 +32,8 @@ const int kMaxResultAgeMs = 5000; |
| // The public DNS servers used by the DnsProbeService to verify internet |
| // connectivity. |
| -const char kPublicDnsPrimary[] = "8.8.8.8"; |
| -const char kPublicDnsSecondary[] = "8.8.4.4"; |
| +const char kGooglePublicDns1[] = "8.8.8.8"; |
| +const char kGooglePublicDns2[] = "8.8.4.4"; |
| IPEndPoint MakeDnsEndPoint(const std::string& dns_ip_literal) { |
| IPAddressNumber dns_ip_number; |
| @@ -46,50 +42,26 @@ IPEndPoint MakeDnsEndPoint(const std::string& dns_ip_literal) { |
| return IPEndPoint(dns_ip_number, net::dns_protocol::kDefaultPort); |
| } |
| -const int kAttemptsUseDefault = -1; |
| - |
| -const char kAttemptsFieldTrialName[] = "DnsProbe-Attempts"; |
| - |
| -int GetAttemptsFromFieldTrial() { |
| - std::string group = FieldTrialList::FindFullName(kAttemptsFieldTrialName); |
| - if (group == "" || group == "default") |
| - return kAttemptsUseDefault; |
| - |
| - int attempts; |
| - if (!StringToInt(group, &attempts)) |
| - return kAttemptsUseDefault; |
| - |
| - return attempts; |
| -} |
| - |
| -bool IsLocalhost(const IPAddressNumber& ip) { |
| - return (ip.size() == net::kIPv4AddressSize) |
| - && (ip[0] == 127) && (ip[1] == 0) && (ip[2] == 0) && (ip[3] == 1); |
| -} |
| - |
| -// The maximum number of nameservers counted in histograms. |
| -const int kNameserverCountMax = 10; |
| - |
| } // namespace |
| +namespace chrome_browser_net { |
| + |
| DnsProbeService::DnsProbeService() |
| - : system_result_(DnsProbeJob::SERVERS_UNKNOWN), |
| - public_result_(DnsProbeJob::SERVERS_UNKNOWN), |
| - state_(STATE_NO_RESULTS), |
| - result_(chrome_common_net::DNS_PROBE_UNKNOWN), |
| - dns_attempts_(GetAttemptsFromFieldTrial()) { |
| - NetworkChangeNotifier::AddIPAddressObserver(this); |
| + : state_(STATE_NO_RESULTS) { |
| + NetworkChangeNotifier::AddDNSObserver(this); |
| + SetSystemClientToCurrentConfig(); |
| + SetPublicClientToGooglePublicDns(); |
| } |
| DnsProbeService::~DnsProbeService() { |
| - NetworkChangeNotifier::RemoveIPAddressObserver(this); |
| + NetworkChangeNotifier::RemoveDNSObserver(this); |
| } |
| -void DnsProbeService::ProbeDns(const DnsProbeService::CallbackType& callback) { |
| - callbacks_.push_back(callback); |
| +void DnsProbeService::ProbeDns(const DnsProbeService::ProbeCallback& callback) { |
| + pending_callbacks_.push_back(callback); |
| if (state_ == STATE_RESULTS_CACHED && ResultsExpired()) |
| - ExpireResults(); |
| + ExpireResult(); |
| switch (state_) { |
| case STATE_NO_RESULTS: |
| @@ -104,241 +76,212 @@ void DnsProbeService::ProbeDns(const DnsProbeService::CallbackType& callback) { |
| } |
| } |
| -scoped_ptr<DnsProbeJob> DnsProbeService::CreateSystemProbeJob( |
| - const DnsProbeJob::CallbackType& job_callback) { |
| - DnsConfig system_config; |
| - GetSystemDnsConfig(&system_config); |
| - return CreateProbeJob(system_config, job_callback); |
| +void DnsProbeService::OnDNSChanged() { |
| + ExpireResult(); |
| + SetSystemClientToCurrentConfig(); |
| } |
| -scoped_ptr<DnsProbeJob> DnsProbeService::CreatePublicProbeJob( |
| - const DnsProbeJob::CallbackType& job_callback) { |
| - DnsConfig public_config; |
| - GetPublicDnsConfig(&public_config); |
| - return CreateProbeJob(public_config, job_callback); |
| +void DnsProbeService::SetSystemClientForTesting( |
| + scoped_ptr<DnsClient> system_client) { |
| + SetSystemClient(system_client.Pass()); |
| } |
| -void DnsProbeService::OnIPAddressChanged() { |
| - if (state_ == STATE_RESULTS_CACHED) |
| - ExpireResults(); |
| +void DnsProbeService::SetPublicClientForTesting( |
| + scoped_ptr<DnsClient> public_client) { |
| + SetPublicClient(public_client.Pass()); |
| } |
| -void DnsProbeService::ExpireResults() { |
| - DCHECK_EQ(STATE_RESULTS_CACHED, state_); |
| - |
| - state_ = STATE_NO_RESULTS; |
| - result_ = chrome_common_net::DNS_PROBE_UNKNOWN; |
| +void DnsProbeService::ExpireResultForTesting() { |
| + ExpireResult(); |
| } |
| -void DnsProbeService::StartProbes() { |
| - DCHECK_NE(STATE_PROBE_RUNNING, state_); |
| - DCHECK(!system_job_.get()); |
| - DCHECK(!public_job_.get()); |
| - |
| - DnsProbeJob::CallbackType job_callback = |
| - base::Bind(&DnsProbeService::OnProbeJobComplete, |
| - base::Unretained(this)); |
| - |
| - // TODO(ttuttle): Do we want to keep explicit flags for "job done"? |
| - // Or maybe DnsProbeJob should have a "finished" flag? |
| - system_result_ = DnsProbeJob::SERVERS_UNKNOWN; |
| - public_result_ = DnsProbeJob::SERVERS_UNKNOWN; |
| - |
| - system_job_ = CreateSystemProbeJob(job_callback); |
| - public_job_ = CreatePublicProbeJob(job_callback); |
| - |
| - // If we can't create one or both jobs, fail the probe immediately. |
| - if (!system_job_.get() || !public_job_.get()) { |
| - system_job_.reset(); |
| - public_job_.reset(); |
| - state_ = STATE_RESULTS_CACHED; |
| - // TODO(ttuttle): Should this be BAD_CONFIG? Currently I think it only |
| - // happens when the system DnsConfig has no servers. |
| - result_ = chrome_common_net::DNS_PROBE_UNKNOWN; |
| - CallCallbacks(); |
| - return; |
| - } |
| +void DnsProbeService::SetSystemClientToCurrentConfig() { |
| + DnsConfig system_config; |
| + NetworkChangeNotifier::GetDnsConfig(&system_config); |
| + system_config.search.clear(); |
| + system_config.attempts = 1; |
| + system_config.randomize_ports = false; |
| - state_ = STATE_PROBE_RUNNING; |
| - probe_start_time_ = base::Time::Now(); |
| + scoped_ptr<DnsClient> system_client(DnsClient::CreateClient(NULL)); |
| + system_client->SetConfig(system_config); |
| + |
| + SetSystemClient(system_client.Pass()); |
| } |
| -void DnsProbeService::OnProbesComplete() { |
| - DCHECK_EQ(STATE_PROBE_RUNNING, state_); |
| +void DnsProbeService::SetPublicClientToGooglePublicDns() { |
| + DnsConfig public_config; |
| + public_config.nameservers.push_back(MakeDnsEndPoint(kGooglePublicDns1)); |
| + public_config.nameservers.push_back(MakeDnsEndPoint(kGooglePublicDns1)); |
| + public_config.attempts = 1; |
| + public_config.randomize_ports = false; |
| - state_ = STATE_RESULTS_CACHED; |
| - result_ = EvaluateResults(); |
| + scoped_ptr<DnsClient> public_client(DnsClient::CreateClient(NULL)); |
| + public_client->SetConfig(public_config); |
| - HistogramProbes(); |
| + SetPublicClient(public_client.Pass()); |
| +} |
| - CallCallbacks(); |
| +void DnsProbeService::SetSystemClient(scoped_ptr<DnsClient> system_client) { |
| + system_runner_.SetClient(system_client.Pass()); |
|
szym
2013/06/13 20:50:48
I don't think these wrapper functions help much. M
Deprecated (see juliatuttle)
2013/06/18 19:36:37
Done.
|
| } |
| -void DnsProbeService::HistogramProbes() const { |
| - const DnsProbeResult kMaxResult = chrome_common_net::DNS_PROBE_MAX; |
| +void DnsProbeService::SetPublicClient(scoped_ptr<DnsClient> public_client) { |
| + public_runner_.SetClient(public_client.Pass()); |
| +} |
| - DCHECK_EQ(STATE_RESULTS_CACHED, state_); |
| - DCHECK_NE(kMaxResult, result_); |
| +void DnsProbeService::StartProbes() { |
| + DCHECK_EQ(STATE_NO_RESULTS, state_); |
| - base::TimeDelta elapsed = base::Time::Now() - probe_start_time_; |
| + state_ = STATE_PROBE_RUNNING; |
| + probe_start_time_ = base::Time::Now(); |
| - UMA_HISTOGRAM_ENUMERATION("DnsProbe.Probe.Result", result_, kMaxResult); |
| - UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Probe.Elapsed", elapsed); |
| + DCHECK(!system_runner_.IsRunning()); |
| + DCHECK(!public_runner_.IsRunning()); |
| - if (NetworkChangeNotifier::IsOffline()) { |
| - UMA_HISTOGRAM_ENUMERATION("DnsProbe.Probe.NcnOffline.Result", |
| - result_, kMaxResult); |
| - UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Probe.NcnOffline.Elapsed", elapsed); |
| - } else { |
| - UMA_HISTOGRAM_ENUMERATION("DnsProbe.Probe.NcnOnline.Result", |
| - result_, kMaxResult); |
| - UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Probe.NcnOnline.Elapsed", elapsed); |
| - } |
| + // Probes can call us back synchronously (e.g. if the connect call fails |
| + // becasue we have no working network interfaces). |
| + const base::Callback<void(ProbeType, DnsProbeRunner::Result)> callback = |
| + base::Bind(&DnsProbeService::OnProbeComplete, base::Unretained(this)); |
| + system_runner_.RunProbe(base::Bind(callback, SYSTEM)); |
| + public_runner_.RunProbe(base::Bind(callback, PUBLIC)); |
| - switch (result_) { |
| - case chrome_common_net::DNS_PROBE_UNKNOWN: |
| - UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Probe.ResultUnknown.Elapsed", |
| - elapsed); |
| - break; |
| - case chrome_common_net::DNS_PROBE_NO_INTERNET: |
| - UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Probe.ResultNoInternet.Elapsed", |
| - elapsed); |
| - break; |
| - case chrome_common_net::DNS_PROBE_BAD_CONFIG: |
| - UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Probe.ResultBadConfig.Elapsed", |
| - elapsed); |
| + DCHECK(system_runner_.IsRunning()); |
|
szym
2013/06/13 20:50:48
I think this DCHECK will fail if the probe runner
Deprecated (see juliatuttle)
2013/06/18 19:36:37
The probe runner can't, anymore. (There was alrea
|
| + DCHECK(public_runner_.IsRunning()); |
| +} |
| + |
| +void DnsProbeService::OnProbeComplete( |
| + ProbeType type, |
| + DnsProbeRunner::Result result) { |
| + DCHECK_EQ(STATE_PROBE_RUNNING, state_); |
| - // Histogram some extra data to see why BAD_CONFIG is happening. |
| - UMA_HISTOGRAM_ENUMERATION( |
| - "DnsProbe.Probe.ResultBadConfig.SystemJobResult", |
| - system_result_, |
| - DnsProbeJob::MAX_RESULT); |
| - UMA_HISTOGRAM_CUSTOM_COUNTS( |
| - "DnsProbe.Probe.ResultBadConfig.SystemNameserverCount", |
| - system_nameserver_count_, |
| - 0, kNameserverCountMax, kNameserverCountMax + 1); |
| - UMA_HISTOGRAM_BOOLEAN( |
| - "DnsProbe.Probe.ResultBadConfig.SystemIsLocalhost", |
| - system_is_localhost_); |
| + switch (type) { |
| + case SYSTEM: |
| + DCHECK(!system_runner_.IsRunning()); |
| + system_result_ = result; |
|
szym
2013/06/13 20:50:48
You could simplify this if you put the last result
Deprecated (see juliatuttle)
2013/06/18 19:36:37
Done.
|
| break; |
| - case chrome_common_net::DNS_PROBE_NXDOMAIN: |
| - UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Probe.ResultNxdomain.Elapsed", |
| - elapsed); |
| + case PUBLIC: |
| + DCHECK(!public_runner_.IsRunning()); |
| + public_result_ = result; |
| break; |
| - case chrome_common_net::DNS_PROBE_MAX: |
| + default: |
| NOTREACHED(); |
| - break; |
| + return; |
| } |
| + |
| + if (system_runner_.IsRunning() || public_runner_.IsRunning()) |
| + return; |
| + |
| + state_ = STATE_RESULTS_CACHED; |
| + cached_result_ = EvaluateResults(); |
| + |
| + HistogramProbes(); |
| + |
| + CallCallbacks(); |
| } |
| -DnsProbeResult DnsProbeService::EvaluateResults() const { |
| - DCHECK_NE(DnsProbeJob::SERVERS_UNKNOWN, system_result_); |
| - DCHECK_NE(DnsProbeJob::SERVERS_UNKNOWN, public_result_); |
| +DnsProbeStatus DnsProbeService::EvaluateResults() const { |
| + DCHECK_NE(DnsProbeRunner::UNKNOWN, system_result_); |
| + DCHECK_NE(DnsProbeRunner::UNKNOWN, public_result_); |
| // If the system DNS is working, assume the domain doesn't exist. |
| - if (system_result_ == DnsProbeJob::SERVERS_CORRECT) |
| - return chrome_common_net::DNS_PROBE_NXDOMAIN; |
| + if (system_result_ == DnsProbeRunner::CORRECT) |
| + return chrome_common_net::DNS_PROBE_FINISHED_NXDOMAIN; |
| // If the system DNS is not working but another public server is, assume the |
| // DNS config is bad (or perhaps the DNS servers are down or broken). |
| - if (public_result_ == DnsProbeJob::SERVERS_CORRECT) |
| - return chrome_common_net::DNS_PROBE_BAD_CONFIG; |
| + if (public_result_ == DnsProbeRunner::CORRECT) |
| + return chrome_common_net::DNS_PROBE_FINISHED_BAD_CONFIG; |
| // If the system DNS is not working and another public server is unreachable, |
| // assume the internet connection is down (note that system DNS may be a |
| // router on the LAN, so it may be reachable but returning errors.) |
| - if (public_result_ == DnsProbeJob::SERVERS_UNREACHABLE) |
| - return chrome_common_net::DNS_PROBE_NO_INTERNET; |
| + if (public_result_ == DnsProbeRunner::UNREACHABLE) |
| + return chrome_common_net::DNS_PROBE_FINISHED_NO_INTERNET; |
| // Otherwise: the system DNS is not working and another public server is |
| // responding but with errors or incorrect results. This is an awkward case; |
| // an invasive captive portal or a restrictive firewall may be intercepting |
| // or rewriting DNS traffic, or the public server may itself be failing or |
| // down. |
| - return chrome_common_net::DNS_PROBE_UNKNOWN; |
| + return chrome_common_net::DNS_PROBE_FINISHED_UNKNOWN; |
| } |
| -void DnsProbeService::CallCallbacks() { |
| - DCHECK_EQ(STATE_RESULTS_CACHED, state_); |
| - DCHECK(!callbacks_.empty()); |
| - |
| - std::vector<CallbackType> callbacks = callbacks_; |
| - callbacks_.clear(); |
| - |
| - for (std::vector<CallbackType>::const_iterator i = callbacks.begin(); |
| - i != callbacks.end(); ++i) { |
| - i->Run(result_); |
| - } |
| -} |
| +// TODO(ttuttle): Make sure we're not changing result histogram mappings going |
| +// from DnsProbeJob to DnsProbeRunner. |
| +void DnsProbeService::HistogramProbes() const { |
| + const DnsProbeStatus kMaxStatus = chrome_common_net::DNS_PROBE_MAX; |
| -scoped_ptr<DnsProbeJob> DnsProbeService::CreateProbeJob( |
| - const DnsConfig& dns_config, |
| - const DnsProbeJob::CallbackType& job_callback) { |
| - if (!dns_config.IsValid()) |
| - return scoped_ptr<DnsProbeJob>(); |
| + DCHECK_EQ(STATE_RESULTS_CACHED, state_); |
| + DCHECK(chrome_common_net::DnsProbeStatusIsFinished(cached_result_)); |
| - scoped_ptr<DnsClient> dns_client(DnsClient::CreateClient(NULL)); |
| - dns_client->SetConfig(dns_config); |
| - return DnsProbeJob::CreateJob(dns_client.Pass(), job_callback, NULL); |
| -} |
| + base::TimeDelta elapsed = base::Time::Now() - probe_start_time_; |
| -void DnsProbeService::OnProbeJobComplete(DnsProbeJob* job, |
| - DnsProbeJob::Result result) { |
| - DCHECK_EQ(STATE_PROBE_RUNNING, state_); |
| + UMA_HISTOGRAM_ENUMERATION("DnsProbe.Status", cached_result_, kMaxStatus); |
| + UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Elapsed", elapsed); |
| - if (job == system_job_.get()) { |
| - system_result_ = result; |
| - system_job_.reset(); |
| - } else if (job == public_job_.get()) { |
| - public_result_ = result; |
| - public_job_.reset(); |
| + if (NetworkChangeNotifier::IsOffline()) { |
| + UMA_HISTOGRAM_ENUMERATION("DnsProbe.Status_NcnOffline", |
| + cached_result_, kMaxStatus); |
| + UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Elapsed_NcnOffline", elapsed); |
| } else { |
| - NOTREACHED(); |
| - return; |
| + UMA_HISTOGRAM_ENUMERATION("DnsProbe.Status_NcnOnline", |
| + cached_result_, kMaxStatus); |
| + UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Elapsed_NcnOnline", elapsed); |
| } |
| - if (system_result_ != DnsProbeJob::SERVERS_UNKNOWN && |
| - public_result_ != DnsProbeJob::SERVERS_UNKNOWN) { |
| - OnProbesComplete(); |
| + switch (cached_result_) { |
| + case chrome_common_net::DNS_PROBE_FINISHED_UNKNOWN: |
| + UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Elapsed_Unknown", |
| + elapsed); |
| + break; |
| + case chrome_common_net::DNS_PROBE_FINISHED_NO_INTERNET: |
| + UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Elapsed_NoInternet", |
| + elapsed); |
| + break; |
| + case chrome_common_net::DNS_PROBE_FINISHED_BAD_CONFIG: |
| + UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Elapsed_BadConfig", |
| + elapsed); |
| + break; |
| + case chrome_common_net::DNS_PROBE_FINISHED_NXDOMAIN: |
| + UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.Elapsed_Nxdomain", |
| + elapsed); |
| + break; |
| + |
| + // These aren't actually results. |
| + case chrome_common_net::DNS_PROBE_POSSIBLE: |
| + case chrome_common_net::DNS_PROBE_NOT_RUN: |
| + case chrome_common_net::DNS_PROBE_STARTED: |
| + case chrome_common_net::DNS_PROBE_MAX: |
| + NOTREACHED(); |
| + break; |
| } |
| } |
| -void DnsProbeService::GetSystemDnsConfig(DnsConfig* config) { |
| - NetworkChangeNotifier::GetDnsConfig(config); |
| - |
| - // DNS probes don't need or want the suffix search list populated |
| - config->search.clear(); |
| - |
| - if (dns_attempts_ != kAttemptsUseDefault) |
| - config->attempts = dns_attempts_; |
| +void DnsProbeService::CallCallbacks() { |
| + DCHECK_EQ(STATE_RESULTS_CACHED, state_); |
| + DCHECK(chrome_common_net::DnsProbeStatusIsFinished(cached_result_)); |
| + DCHECK(!pending_callbacks_.empty()); |
| - // Take notes in case the config turns out to be bad, so we can histogram |
| - // some useful data. |
| - system_nameserver_count_ = config->nameservers.size(); |
| - system_is_localhost_ = (system_nameserver_count_ == 1) |
| - && IsLocalhost(config->nameservers[0].address()); |
| + std::vector<ProbeCallback> callbacks = pending_callbacks_; |
| + pending_callbacks_.clear(); |
| - // Disable port randomization. |
| - config->randomize_ports = false; |
| + for (std::vector<ProbeCallback>::const_iterator i = callbacks.begin(); |
| + i != callbacks.end(); ++i) { |
| + i->Run(cached_result_); |
| + } |
| } |
| -void DnsProbeService::GetPublicDnsConfig(DnsConfig* config) { |
| - *config = DnsConfig(); |
| - |
| - config->nameservers.push_back(MakeDnsEndPoint(kPublicDnsPrimary)); |
| - config->nameservers.push_back(MakeDnsEndPoint(kPublicDnsSecondary)); |
| - |
| - if (dns_attempts_ != kAttemptsUseDefault) |
| - config->attempts = dns_attempts_; |
| - |
| - // Disable port randomization. |
| - config->randomize_ports = false; |
| +void DnsProbeService::ExpireResult() { |
| + if (state_ == STATE_RESULTS_CACHED) { |
| + state_ = STATE_NO_RESULTS; |
| + cached_result_ = chrome_common_net::DNS_PROBE_MAX; |
| + } |
| } |
| -bool DnsProbeService::ResultsExpired() { |
| +bool DnsProbeService::ResultsExpired() const { |
| const base::TimeDelta kMaxResultAge = |
| base::TimeDelta::FromMilliseconds(kMaxResultAgeMs); |
| return base::Time::Now() - probe_start_time_ > kMaxResultAge; |
| } |
| -} // namespace chrome_browser_net |
| +} // namespace chrome_browser_net |