| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ssl/cert_report_helper.h" | 5 #include "chrome/browser/ssl/cert_report_helper.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/metrics/field_trial.h" | 10 #include "base/metrics/field_trial.h" |
| 11 #include "base/rand_util.h" | 11 #include "base/rand_util.h" |
| 12 #include "base/strings/string_number_conversions.h" | 12 #include "base/strings/string_number_conversions.h" |
| 13 #include "base/strings/stringprintf.h" | 13 #include "base/strings/stringprintf.h" |
| 14 #include "base/strings/utf_string_conversions.h" | 14 #include "base/strings/utf_string_conversions.h" |
| 15 #include "build/build_config.h" | 15 #include "build/build_config.h" |
| 16 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
| 17 #include "chrome/browser/ssl/ssl_cert_reporter.h" | 17 #include "chrome/browser/ssl/ssl_cert_reporter.h" |
| 18 #include "chrome/common/pref_names.h" | 18 #include "chrome/common/pref_names.h" |
| 19 #include "chrome/grit/generated_resources.h" | 19 #include "chrome/grit/generated_resources.h" |
| 20 #include "components/network_time/network_time_tracker.h" |
| 20 #include "components/prefs/pref_service.h" | 21 #include "components/prefs/pref_service.h" |
| 21 #include "components/safe_browsing_db/safe_browsing_prefs.h" | 22 #include "components/safe_browsing_db/safe_browsing_prefs.h" |
| 22 #include "components/security_interstitials/core/controller_client.h" | 23 #include "components/security_interstitials/core/controller_client.h" |
| 23 #include "components/security_interstitials/core/metrics_helper.h" | 24 #include "components/security_interstitials/core/metrics_helper.h" |
| 24 #include "components/variations/variations_associated_data.h" | 25 #include "components/variations/variations_associated_data.h" |
| 25 #include "content/public/browser/browser_context.h" | 26 #include "content/public/browser/browser_context.h" |
| 26 #include "content/public/browser/web_contents.h" | 27 #include "content/public/browser/web_contents.h" |
| 27 #include "ui/base/l10n/l10n_util.h" | 28 #include "ui/base/l10n/l10n_util.h" |
| 28 | 29 |
| 29 namespace { | 30 namespace { |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 108 |
| 108 std::string serialized_report; | 109 std::string serialized_report; |
| 109 certificate_reporting::ErrorReport report(request_url_.host(), ssl_info_); | 110 certificate_reporting::ErrorReport report(request_url_.host(), ssl_info_); |
| 110 | 111 |
| 111 report.SetInterstitialInfo( | 112 report.SetInterstitialInfo( |
| 112 interstitial_reason_, user_proceeded, | 113 interstitial_reason_, user_proceeded, |
| 113 overridable_ | 114 overridable_ |
| 114 ? certificate_reporting::ErrorReport::INTERSTITIAL_OVERRIDABLE | 115 ? certificate_reporting::ErrorReport::INTERSTITIAL_OVERRIDABLE |
| 115 : certificate_reporting::ErrorReport::INTERSTITIAL_NOT_OVERRIDABLE); | 116 : certificate_reporting::ErrorReport::INTERSTITIAL_NOT_OVERRIDABLE); |
| 116 | 117 |
| 118 // Include information about experimental features relevant to |
| 119 // certificate validation. (At present, this is just network time |
| 120 // querying.) |
| 121 report.AddFeature(network_time::kNetworkTimeServiceQuerying); |
| 122 |
| 117 if (!report.Serialize(&serialized_report)) { | 123 if (!report.Serialize(&serialized_report)) { |
| 118 LOG(ERROR) << "Failed to serialize certificate report."; | 124 LOG(ERROR) << "Failed to serialize certificate report."; |
| 119 return; | 125 return; |
| 120 } | 126 } |
| 121 | 127 |
| 122 ssl_cert_reporter_->ReportInvalidCertificateChain(serialized_report); | 128 ssl_cert_reporter_->ReportInvalidCertificateChain(serialized_report); |
| 123 } | 129 } |
| 124 | 130 |
| 125 void CertReportHelper::SetSSLCertReporterForTesting( | 131 void CertReportHelper::SetSSLCertReporterForTesting( |
| 126 std::unique_ptr<SSLCertReporter> ssl_cert_reporter) { | 132 std::unique_ptr<SSLCertReporter> ssl_cert_reporter) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 151 if (sendingThreshold >= 0.0 && sendingThreshold <= 1.0) | 157 if (sendingThreshold >= 0.0 && sendingThreshold <= 1.0) |
| 152 return base::RandDouble() <= sendingThreshold; | 158 return base::RandDouble() <= sendingThreshold; |
| 153 } | 159 } |
| 154 } | 160 } |
| 155 return false; | 161 return false; |
| 156 } | 162 } |
| 157 | 163 |
| 158 bool CertReportHelper::IsPrefEnabled(const char* pref) { | 164 bool CertReportHelper::IsPrefEnabled(const char* pref) { |
| 159 return GetProfile(web_contents_)->GetPrefs()->GetBoolean(pref); | 165 return GetProfile(web_contents_)->GetPrefs()->GetBoolean(pref); |
| 160 } | 166 } |
| OLD | NEW |