blob: dbf5c85f48cf4e251806b4304fe4ad93d21519ba [file] [log] [blame]
[email protected]03ef4b2a2012-03-06 15:04:201// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]4237dd52012-06-05 00:00:325#include "chrome/browser/ui/website_settings/website_settings.h"
[email protected]03ef4b2a2012-03-06 15:04:206
7#include <string>
8#include <vector>
9
[email protected]eb2140c2013-07-29 12:37:3410#include "base/command_line.h"
[email protected]15b092542012-05-16 13:08:1411#include "base/i18n/time_formatting.h"
[email protected]71cd5ef2014-08-13 21:22:0412#include "base/metrics/field_trial.h"
[email protected]3ea1b182013-02-08 22:38:4113#include "base/metrics/histogram.h"
14#include "base/strings/string_number_conversions.h"
jialiul02aad2d2015-04-01 18:56:0315#include "base/strings/stringprintf.h"
[email protected]774cc3c2013-06-07 20:26:4516#include "base/strings/utf_string_conversions.h"
[email protected]0b9fdd72012-04-04 10:00:3317#include "base/values.h"
jialiul02aad2d2015-04-01 18:56:0318#include "chrome/browser/browser_process.h"
[email protected]6b8a3c742014-07-25 00:25:3519#include "chrome/browser/browsing_data/browsing_data_channel_id_helper.h"
[email protected]b0cb5e82012-07-19 19:22:4720#include "chrome/browser/browsing_data/browsing_data_cookie_helper.h"
21#include "chrome/browser/browsing_data/browsing_data_database_helper.h"
22#include "chrome/browser/browsing_data/browsing_data_file_system_helper.h"
23#include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h"
24#include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h"
peconn5100d432015-09-16 12:03:0825#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
[email protected]77a91c72012-08-13 16:19:3426#include "chrome/browser/history/history_service_factory.h"
palmerf2cba0d2015-08-27 23:15:0627#include "chrome/browser/infobars/infobar_service.h"
[email protected]03ef4b2a2012-03-06 15:04:2028#include "chrome/browser/profiles/profile.h"
[email protected]71cd5ef2014-08-13 21:22:0429#include "chrome/browser/ssl/chrome_ssl_host_state_delegate.h"
30#include "chrome/browser/ssl/chrome_ssl_host_state_delegate_factory.h"
[email protected]4237dd52012-06-05 00:00:3231#include "chrome/browser/ui/website_settings/website_settings_ui.h"
[email protected]71cd5ef2014-08-13 21:22:0432#include "chrome/common/chrome_switches.h"
palmer153af982015-09-15 02:04:1933#include "chrome/common/pref_names.h"
jsbellddb849e2015-08-27 00:12:5634#include "chrome/common/url_constants.h"
thestig884a1602014-08-27 01:29:3935#include "chrome/grit/chromium_strings.h"
36#include "chrome/grit/generated_resources.h"
mukai8eaec822014-10-25 17:53:1637#include "components/content_settings/core/browser/content_settings_utils.h"
38#include "components/content_settings/core/browser/host_content_settings_map.h"
vabr48565592014-10-08 15:06:0239#include "components/content_settings/core/browser/local_shared_objects_counter.h"
palmer0da10b32015-02-11 00:42:1940#include "components/content_settings/core/common/content_settings.h"
vasiliif62dbf92014-09-05 10:23:1341#include "components/content_settings/core/common/content_settings_pattern.h"
jialiul02aad2d2015-04-01 18:56:0342#include "components/rappor/rappor_utils.h"
felt2493b4452015-09-17 20:33:5943#include "components/ssl_errors/error_info.h"
palmer153af982015-09-15 02:04:1944#include "components/url_formatter/elide_url.h"
[email protected]0b9fdd72012-04-04 10:00:3345#include "content/public/browser/browser_thread.h"
[email protected]b59c6cf02012-03-12 20:51:4246#include "content/public/browser/cert_store.h"
[email protected]e22d64f2012-09-10 09:03:2347#include "content/public/browser/user_metrics.h"
[email protected]eb2140c2013-07-29 12:37:3448#include "content/public/common/content_switches.h"
[email protected]03ef4b2a2012-03-06 15:04:2049#include "content/public/common/url_constants.h"
[email protected]6e7845ae2013-03-29 21:48:1150#include "net/cert/cert_status_flags.h"
51#include "net/cert/x509_certificate.h"
[email protected]536fd0b2013-03-14 17:41:5752#include "net/ssl/ssl_cipher_suite_names.h"
53#include "net/ssl/ssl_connection_status_flags.h"
[email protected]03ef4b2a2012-03-06 15:04:2054#include "ui/base/l10n/l10n_util.h"
[email protected]03ef4b2a2012-03-06 15:04:2055
[email protected]24a9f1c92013-11-13 12:33:3756#if defined(OS_CHROMEOS)
57#include "chrome/browser/chromeos/policy/policy_cert_service.h"
58#include "chrome/browser/chromeos/policy/policy_cert_service_factory.h"
59#endif
60
estade3feb83f2015-09-01 23:00:4961#if !defined(OS_ANDROID)
62#include "chrome/browser/ui/website_settings/website_settings_infobar_delegate.h"
63#endif
64
[email protected]ab6df3b12013-12-24 23:32:2665using base::ASCIIToUTF16;
66using base::UTF8ToUTF16;
[email protected]f729d7a2013-12-26 07:07:5667using base::UTF16ToUTF8;
[email protected]0b9fdd72012-04-04 10:00:3368using content::BrowserThread;
69
70namespace {
71
jww1ed8ea72014-09-02 20:43:2572// Events for UMA. Do not reorder or change!
73enum SSLCertificateDecisionsDidRevoke {
74 USER_CERT_DECISIONS_NOT_REVOKED = 0,
75 USER_CERT_DECISIONS_REVOKED,
76 END_OF_SSL_CERTIFICATE_DECISIONS_DID_REVOKE_ENUM
77};
78
palmer0da10b32015-02-11 00:42:1979// The list of content settings types to display on the Website Settings UI. THE
80// ORDER OF THESE ITEMS IS IMPORTANT. To propose changing it, email
81// [email protected].
[email protected]0b9fdd72012-04-04 10:00:3382ContentSettingsType kPermissionType[] = {
sashab2b2a314f2015-01-17 06:42:2183 CONTENT_SETTINGS_TYPE_GEOLOCATION,
sashab2b2a314f2015-01-17 06:42:2184 CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA,
85 CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC,
palmer0da10b32015-02-11 00:42:1986 CONTENT_SETTINGS_TYPE_NOTIFICATIONS,
87 CONTENT_SETTINGS_TYPE_IMAGES,
88 CONTENT_SETTINGS_TYPE_JAVASCRIPT,
89 CONTENT_SETTINGS_TYPE_POPUPS,
90 CONTENT_SETTINGS_TYPE_FULLSCREEN,
sashab2b2a314f2015-01-17 06:42:2191 CONTENT_SETTINGS_TYPE_AUTOMATIC_DOWNLOADS,
palmer0da10b32015-02-11 00:42:1992 CONTENT_SETTINGS_TYPE_PLUGINS,
93 CONTENT_SETTINGS_TYPE_MOUSELOCK,
sashab2b2a314f2015-01-17 06:42:2194 CONTENT_SETTINGS_TYPE_MIDI_SYSEX,
benwellsa68ed4b2014-11-13 03:25:3695#if defined(OS_ANDROID)
sashab2b2a314f2015-01-17 06:42:2196 CONTENT_SETTINGS_TYPE_PUSH_MESSAGING,
benwellsa68ed4b2014-11-13 03:25:3697#endif
[email protected]0b9fdd72012-04-04 10:00:3398};
99
estark134a9822015-10-29 04:35:18100// Returns true if any of the given statuses match |status|.
101bool CertificateTransparencyStatusMatchAny(
estarka3121f6b2015-09-18 21:15:59102 const std::vector<net::ct::SCTVerifyStatus>& sct_verify_statuses,
[email protected]94c74b42013-12-02 15:19:49103 net::ct::SCTVerifyStatus status) {
estarka3121f6b2015-09-18 21:15:59104 for (const auto& verify_status : sct_verify_statuses) {
105 if (verify_status == status)
[email protected]94c74b42013-12-02 15:19:49106 return true;
107 }
[email protected]94c74b42013-12-02 15:19:49108 return false;
109}
110
111int GetSiteIdentityDetailsMessageByCTInfo(
estarka3121f6b2015-09-18 21:15:59112 const std::vector<net::ct::SCTVerifyStatus>& sct_verify_statuses,
[email protected]94c74b42013-12-02 15:19:49113 bool is_ev) {
114 // No SCTs - no CT information.
estarka3121f6b2015-09-18 21:15:59115 if (sct_verify_statuses.empty())
[email protected]94c74b42013-12-02 15:19:49116 return (is_ev ? IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_EV_NO_CT
117 : IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_NO_CT);
118
estark134a9822015-10-29 04:35:18119 // Any valid SCT.
120 if (CertificateTransparencyStatusMatchAny(sct_verify_statuses,
121 net::ct::SCT_STATUS_OK))
[email protected]94c74b42013-12-02 15:19:49122 return (is_ev ? IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_EV_CT_VERIFIED
123 : IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_CT_VERIFIED);
124
estark134a9822015-10-29 04:35:18125 // Any invalid SCT.
126 if (CertificateTransparencyStatusMatchAny(sct_verify_statuses,
127 net::ct::SCT_STATUS_INVALID))
[email protected]94c74b42013-12-02 15:19:49128 return (is_ev ? IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_EV_CT_INVALID
129 : IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_CT_INVALID);
130
estark134a9822015-10-29 04:35:18131 // All SCTs are from unknown logs.
[email protected]94c74b42013-12-02 15:19:49132 return (is_ev ? IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_EV_CT_UNVERIFIED
133 : IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_CT_UNVERIFIED);
134}
135
136// This function will return SITE_IDENTITY_STATUS_CERT or
estark134a9822015-10-29 04:35:18137// SITE_IDENTITY_STATUS_EV_CERT depending on |is_ev| unless all SCTs
138// failed verification, in which case it will return
[email protected]94c74b42013-12-02 15:19:49139// SITE_IDENTITY_STATUS_ERROR.
140WebsiteSettings::SiteIdentityStatus GetSiteIdentityStatusByCTInfo(
estarka3121f6b2015-09-18 21:15:59141 const std::vector<net::ct::SCTVerifyStatus>& sct_verify_statuses,
[email protected]94c74b42013-12-02 15:19:49142 bool is_ev) {
estark134a9822015-10-29 04:35:18143 if (sct_verify_statuses.empty() ||
144 CertificateTransparencyStatusMatchAny(sct_verify_statuses,
145 net::ct::SCT_STATUS_OK))
146 return is_ev ? WebsiteSettings::SITE_IDENTITY_STATUS_EV_CERT
147 : WebsiteSettings::SITE_IDENTITY_STATUS_CERT;
[email protected]94c74b42013-12-02 15:19:49148
estark134a9822015-10-29 04:35:18149 return WebsiteSettings::SITE_IDENTITY_STATUS_CT_ERROR;
[email protected]94c74b42013-12-02 15:19:49150}
151
palmer153af982015-09-15 02:04:19152base::string16 GetSimpleSiteName(const GURL& url, Profile* profile) {
153 std::string languages;
154 if (profile)
155 languages = profile->GetPrefs()->GetString(prefs::kAcceptLanguages);
156 return url_formatter::FormatUrlForSecurityDisplayOmitScheme(url, languages);
157}
158
[email protected]0b9fdd72012-04-04 10:00:33159} // namespace
160
161WebsiteSettings::WebsiteSettings(
162 WebsiteSettingsUI* ui,
163 Profile* profile,
[email protected]df818272012-04-20 13:10:50164 TabSpecificContentSettings* tab_specific_content_settings,
palmerf2cba0d2015-08-27 23:15:06165 content::WebContents* web_contents,
[email protected]0b9fdd72012-04-04 10:00:33166 const GURL& url,
estarka3121f6b2015-09-18 21:15:59167 const SecurityStateModel::SecurityInfo& security_info,
[email protected]0b9fdd72012-04-04 10:00:33168 content::CertStore* cert_store)
[email protected]df818272012-04-20 13:10:50169 : TabSpecificContentSettings::SiteDataObserver(
170 tab_specific_content_settings),
171 ui_(ui),
palmerf2cba0d2015-08-27 23:15:06172 web_contents_(web_contents),
[email protected]66f157312012-08-01 13:50:26173 show_info_bar_(false),
[email protected]0b9fdd72012-04-04 10:00:33174 site_url_(url),
175 site_identity_status_(SITE_IDENTITY_STATUS_UNKNOWN),
[email protected]f61c1ce2012-05-09 13:55:11176 cert_id_(0),
[email protected]03ef4b2a2012-03-06 15:04:20177 site_connection_status_(SITE_CONNECTION_STATUS_UNKNOWN),
[email protected]0b9fdd72012-04-04 10:00:33178 cert_store_(cert_store),
peconn5100d432015-09-16 12:03:08179 content_settings_(HostContentSettingsMapFactory::GetForProfile(profile)),
[email protected]71cd5ef2014-08-13 21:22:04180 chrome_ssl_host_state_delegate_(
jww1ed8ea72014-09-02 20:43:25181 ChromeSSLHostStateDelegateFactory::GetForProfile(profile)),
palmer153af982015-09-15 02:04:19182 did_revoke_user_ssl_decisions_(false),
183 profile_(profile) {
estarka3121f6b2015-09-18 21:15:59184 Init(url, security_info);
[email protected]0b9fdd72012-04-04 10:00:33185
186 PresentSitePermissions();
[email protected]df818272012-04-20 13:10:50187 PresentSiteData();
[email protected]24c8818c2012-04-25 09:57:41188 PresentSiteIdentity();
[email protected]e22d64f2012-09-10 09:03:23189
190 // Every time the Website Settings UI is opened a |WebsiteSettings| object is
191 // created. So this counts how ofter the Website Settings UI is opened.
lgarron04a93502014-11-04 22:25:04192 RecordWebsiteSettingsAction(WEBSITE_SETTINGS_OPENED);
[email protected]03ef4b2a2012-03-06 15:04:20193}
194
[email protected]0b9fdd72012-04-04 10:00:33195WebsiteSettings::~WebsiteSettings() {
[email protected]03ef4b2a2012-03-06 15:04:20196}
197
lgarron04a93502014-11-04 22:25:04198void WebsiteSettings::RecordWebsiteSettingsAction(
199 WebsiteSettingsAction action) {
200 UMA_HISTOGRAM_ENUMERATION("WebsiteSettings.Action",
201 action,
202 WEBSITE_SETTINGS_COUNT);
203
204 // Use a separate histogram to record actions if they are done on a page with
205 // an HTTPS URL. Note that this *disregards* security status.
palmeree0e5af2015-06-05 03:10:40206 //
207
208 // TODO(palmer): Consider adding a new histogram for
209 // GURL::SchemeIsCryptographic. (We don't want to replace this call with a
210 // call to that function because we don't want to change the meanings of
211 // existing metrics.) This would inform the decision to mark non-secure
212 // origins as Dubious or Non-Secure; the overall bug for that is
213 // crbug.com/454579.
lgarron04a93502014-11-04 22:25:04214 if (site_url_.SchemeIs(url::kHttpsScheme)) {
215 UMA_HISTOGRAM_ENUMERATION("WebsiteSettings.Action.HttpsUrl",
216 action,
217 WEBSITE_SETTINGS_COUNT);
218 }
219}
220
raymes9d48b07b2015-10-19 04:32:35221// Get corresponding Rappor Metric. TODO(raymes): This should use the same
222// code that's in permission_context_uma_util.cc. Figure out how to do that.
223// crbug.com/544745.
jialiul02aad2d2015-04-01 18:56:03224const std::string GetRapporMetric(ContentSettingsType permission) {
225 std::string permission_str;
raymes9d48b07b2015-10-19 04:32:35226
227 if (permission == CONTENT_SETTINGS_TYPE_GEOLOCATION) {
228 permission_str = "Geolocation";
229 } else if (permission == CONTENT_SETTINGS_TYPE_NOTIFICATIONS) {
230 permission_str = "Notifications";
231 } else if (permission == CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC) {
232 permission_str = "Mic";
233 } else if (permission == CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA) {
234 permission_str = "Camera";
jialiul02aad2d2015-04-01 18:56:03235 }
236
237 return base::StringPrintf("ContentSettings.PermissionActions_%s.Revoked.Url",
238 permission_str.c_str());
239}
lgarron04a93502014-11-04 22:25:04240
[email protected]df818272012-04-20 13:10:50241void WebsiteSettings::OnSitePermissionChanged(ContentSettingsType type,
242 ContentSetting setting) {
[email protected]e22d64f2012-09-10 09:03:23243 // Count how often a permission for a specific content type is changed using
244 // the Website Settings UI.
raymes4a13d432015-09-08 00:44:07245 size_t num_values;
246 int histogram_value = ContentSettingTypeToHistogramValue(type, &num_values);
sashab9debecd2014-12-18 04:15:56247 UMA_HISTOGRAM_ENUMERATION("WebsiteSettings.OriginInfo.PermissionChanged",
raymes4a13d432015-09-08 00:44:07248 histogram_value, num_values);
sashab9debecd2014-12-18 04:15:56249
250 if (setting == ContentSetting::CONTENT_SETTING_ALLOW) {
251 UMA_HISTOGRAM_ENUMERATION(
252 "WebsiteSettings.OriginInfo.PermissionChanged.Allowed", histogram_value,
raymes4a13d432015-09-08 00:44:07253 num_values);
sashab9debecd2014-12-18 04:15:56254 } else if (setting == ContentSetting::CONTENT_SETTING_BLOCK) {
255 UMA_HISTOGRAM_ENUMERATION(
256 "WebsiteSettings.OriginInfo.PermissionChanged.Blocked", histogram_value,
raymes4a13d432015-09-08 00:44:07257 num_values);
jialiul02aad2d2015-04-01 18:56:03258 // Trigger Rappor sampling if it is a permission revoke action.
259 const std::string& rappor_metric = GetRapporMetric(type);
260 if (!rappor_metric.empty()) {
261 rappor::SampleDomainAndRegistryFromGURL(
262 g_browser_process->rappor_service(), rappor_metric, this->site_url_);
263 }
sashab9debecd2014-12-18 04:15:56264 }
[email protected]e22d64f2012-09-10 09:03:23265
lgarron04a93502014-11-04 22:25:04266 // This is technically redundant given the histogram above, but putting the
267 // total count of permission changes in another histogram makes it easier to
268 // compare it against other kinds of actions in WebsiteSettings[PopupView].
269 RecordWebsiteSettingsAction(WEBSITE_SETTINGS_CHANGED_PERMISSION);
270
raymes9d48b07b2015-10-19 04:32:35271 // TODO(raymes): The scoping here should be a property of ContentSettingsInfo.
272 // Make this happen! crbug.com/444742.
[email protected]df818272012-04-20 13:10:50273 ContentSettingsPattern primary_pattern;
274 ContentSettingsPattern secondary_pattern;
raymes9d48b07b2015-10-19 04:32:35275 if (type == CONTENT_SETTINGS_TYPE_GEOLOCATION ||
276 type == CONTENT_SETTINGS_TYPE_MIDI_SYSEX ||
277 type == CONTENT_SETTINGS_TYPE_FULLSCREEN) {
278 // TODO(markusheintz): The rule we create here should also change the
279 // location permission for iframed content.
280 primary_pattern = ContentSettingsPattern::FromURLNoWildcard(site_url_);
281 secondary_pattern = ContentSettingsPattern::FromURLNoWildcard(site_url_);
282 } else if (type == CONTENT_SETTINGS_TYPE_IMAGES ||
283 type == CONTENT_SETTINGS_TYPE_JAVASCRIPT ||
284 type == CONTENT_SETTINGS_TYPE_PLUGINS ||
285 type == CONTENT_SETTINGS_TYPE_POPUPS ||
286 type == CONTENT_SETTINGS_TYPE_MOUSELOCK ||
287 type == CONTENT_SETTINGS_TYPE_AUTOMATIC_DOWNLOADS ||
288 type == CONTENT_SETTINGS_TYPE_PUSH_MESSAGING) {
289 primary_pattern = ContentSettingsPattern::FromURL(site_url_);
290 secondary_pattern = ContentSettingsPattern::Wildcard();
291 } else if (type == CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC ||
292 type == CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA ||
293 type == CONTENT_SETTINGS_TYPE_NOTIFICATIONS) {
294 primary_pattern = ContentSettingsPattern::FromURLNoWildcard(site_url_);
295 secondary_pattern = ContentSettingsPattern::Wildcard();
296 } else {
297 NOTREACHED() << "ContentSettingsType " << type << "is not supported.";
[email protected]0b9fdd72012-04-04 10:00:33298 }
299
jialiul02aad2d2015-04-01 18:56:03300 // Permission settings are specified via rules. There exists always at least
301 // one rule for the default setting. Get the rule that currently defines
302 // the permission for the given permission |type|. Then test whether the
303 // existing rule is more specific than the rule we are about to create. If
304 // the existing rule is more specific, than change the existing rule instead
305 // of creating a new rule that would be hidden behind the existing rule.
306 content_settings::SettingInfo info;
307 scoped_ptr<base::Value> v =
raymes7dec6d862015-07-27 07:02:08308 content_settings_->GetWebsiteSetting(
jialiul02aad2d2015-04-01 18:56:03309 site_url_, site_url_, type, std::string(), &info);
310 content_settings_->SetNarrowestWebsiteSetting(
311 primary_pattern, secondary_pattern, type, std::string(), setting, info);
[email protected]df818272012-04-20 13:10:50312
[email protected]66f157312012-08-01 13:50:26313 show_info_bar_ = true;
[email protected]2f45d542012-08-22 08:47:24314
[email protected]2f45d542012-08-22 08:47:24315 // Refresh the UI to reflect the new setting.
316 PresentSitePermissions();
[email protected]df818272012-04-20 13:10:50317}
318
319void WebsiteSettings::OnSiteDataAccessed() {
320 PresentSiteData();
[email protected]0b9fdd72012-04-04 10:00:33321}
322
[email protected]66f157312012-08-01 13:50:26323void WebsiteSettings::OnUIClosing() {
estade3feb83f2015-09-01 23:00:49324#if defined(OS_ANDROID)
325 NOTREACHED();
326#else
palmerf2cba0d2015-08-27 23:15:06327 if (show_info_bar_ && web_contents_) {
328 InfoBarService* infobar_service =
329 InfoBarService::FromWebContents(web_contents_);
330 if (infobar_service)
331 WebsiteSettingsInfoBarDelegate::Create(infobar_service);
332 }
jww1ed8ea72014-09-02 20:43:25333
334 SSLCertificateDecisionsDidRevoke user_decision =
335 did_revoke_user_ssl_decisions_ ? USER_CERT_DECISIONS_REVOKED
336 : USER_CERT_DECISIONS_NOT_REVOKED;
337
338 UMA_HISTOGRAM_ENUMERATION("interstitial.ssl.did_user_revoke_decisions",
339 user_decision,
340 END_OF_SSL_CERTIFICATE_DECISIONS_DID_REVOKE_ENUM);
estade3feb83f2015-09-01 23:00:49341#endif
jww1ed8ea72014-09-02 20:43:25342}
343
344void WebsiteSettings::OnRevokeSSLErrorBypassButtonPressed() {
345 DCHECK(chrome_ssl_host_state_delegate_);
jww6a55df72014-09-05 19:59:29346 chrome_ssl_host_state_delegate_->RevokeUserAllowExceptionsHard(
347 site_url().host());
jww1ed8ea72014-09-02 20:43:25348 did_revoke_user_ssl_decisions_ = true;
[email protected]66f157312012-08-01 13:50:26349}
350
estarka3121f6b2015-09-18 21:15:59351void WebsiteSettings::Init(
352 const GURL& url,
353 const SecurityStateModel::SecurityInfo& security_info) {
sashab97894ce2014-10-22 10:08:33354 bool isChromeUINativeScheme = false;
355#if defined(OS_ANDROID)
356 isChromeUINativeScheme = url.SchemeIs(chrome::kChromeUINativeScheme);
357#endif
358
359 if (url.SchemeIs(content::kChromeUIScheme) ||
360 url.SchemeIs(url::kAboutScheme) || isChromeUINativeScheme) {
[email protected]03ef4b2a2012-03-06 15:04:20361 site_identity_status_ = SITE_IDENTITY_STATUS_INTERNAL_PAGE;
362 site_identity_details_ =
363 l10n_util::GetStringUTF16(IDS_PAGE_INFO_INTERNAL_PAGE);
364 site_connection_status_ = SITE_CONNECTION_STATUS_INTERNAL_PAGE;
365 return;
366 }
367
[email protected]03ef4b2a2012-03-06 15:04:20368 // Identity section.
palmer153af982015-09-15 02:04:19369 scoped_refptr<net::X509Certificate> cert;
estarka3121f6b2015-09-18 21:15:59370 cert_id_ = security_info.cert_id;
[email protected]f61c1ce2012-05-09 13:55:11371
estarka3121f6b2015-09-18 21:15:59372 // HTTPS with no or minor errors.
373 if (security_info.cert_id &&
374 cert_store_->RetrieveCert(security_info.cert_id, &cert) &&
375 (!net::IsCertStatusError(security_info.cert_status) ||
376 net::IsCertStatusMinorError(security_info.cert_status))) {
[email protected]03ef4b2a2012-03-06 15:04:20377 // There are no major errors. Check for minor errors.
estarka3121f6b2015-09-18 21:15:59378 if (security_info.security_level ==
379 SecurityStateModel::SECURITY_POLICY_WARNING) {
[email protected]eaf3f322013-04-25 21:53:59380 site_identity_status_ = SITE_IDENTITY_STATUS_ADMIN_PROVIDED_CERT;
[email protected]24a9f1c92013-11-13 12:33:37381 site_identity_details_ = l10n_util::GetStringFUTF16(
382 IDS_CERT_POLICY_PROVIDED_CERT_MESSAGE, UTF8ToUTF16(url.host()));
estarka3121f6b2015-09-18 21:15:59383 } else if (net::IsCertStatusMinorError(security_info.cert_status)) {
[email protected]03ef4b2a2012-03-06 15:04:20384 site_identity_status_ = SITE_IDENTITY_STATUS_CERT_REVOCATION_UNKNOWN;
[email protected]a04db822013-12-11 19:14:40385 base::string16 issuer_name(UTF8ToUTF16(cert->issuer().GetDisplayName()));
[email protected]03ef4b2a2012-03-06 15:04:20386 if (issuer_name.empty()) {
387 issuer_name.assign(l10n_util::GetStringUTF16(
388 IDS_PAGE_INFO_SECURITY_TAB_UNKNOWN_PARTY));
389 }
[email protected]94c74b42013-12-02 15:19:49390
[email protected]03ef4b2a2012-03-06 15:04:20391 site_identity_details_.assign(l10n_util::GetStringFUTF16(
[email protected]94c74b42013-12-02 15:19:49392 GetSiteIdentityDetailsMessageByCTInfo(
estarka3121f6b2015-09-18 21:15:59393 security_info.sct_verify_statuses, false /* not EV */),
[email protected]94c74b42013-12-02 15:19:49394 issuer_name));
[email protected]03ef4b2a2012-03-06 15:04:20395
396 site_identity_details_ += ASCIIToUTF16("\n\n");
estarka3121f6b2015-09-18 21:15:59397 if (security_info.cert_status &
398 net::CERT_STATUS_UNABLE_TO_CHECK_REVOCATION) {
[email protected]03ef4b2a2012-03-06 15:04:20399 site_identity_details_ += l10n_util::GetStringUTF16(
400 IDS_PAGE_INFO_SECURITY_TAB_UNABLE_TO_CHECK_REVOCATION);
estarka3121f6b2015-09-18 21:15:59401 } else if (security_info.cert_status &
402 net::CERT_STATUS_NO_REVOCATION_MECHANISM) {
[email protected]03ef4b2a2012-03-06 15:04:20403 site_identity_details_ += l10n_util::GetStringUTF16(
404 IDS_PAGE_INFO_SECURITY_TAB_NO_REVOCATION_MECHANISM);
405 } else {
406 NOTREACHED() << "Need to specify string for this warning";
407 }
[email protected]03ef4b2a2012-03-06 15:04:20408 } else {
estarka3121f6b2015-09-18 21:15:59409 if (security_info.cert_status & net::CERT_STATUS_IS_EV) {
rsleevi4f8012722014-09-30 01:28:01410 // EV HTTPS page.
411 site_identity_status_ = GetSiteIdentityStatusByCTInfo(
estarka3121f6b2015-09-18 21:15:59412 security_info.sct_verify_statuses, true);
rsleevi4f8012722014-09-30 01:28:01413 DCHECK(!cert->subject().organization_names.empty());
414 organization_name_ = UTF8ToUTF16(cert->subject().organization_names[0]);
415 // An EV Cert is required to have a city (localityName) and country but
416 // state is "if any".
417 DCHECK(!cert->subject().locality_name.empty());
418 DCHECK(!cert->subject().country_name.empty());
419 base::string16 locality;
420 if (!cert->subject().state_or_province_name.empty()) {
421 locality = l10n_util::GetStringFUTF16(
422 IDS_PAGEINFO_ADDRESS,
423 UTF8ToUTF16(cert->subject().locality_name),
424 UTF8ToUTF16(cert->subject().state_or_province_name),
425 UTF8ToUTF16(cert->subject().country_name));
426 } else {
427 locality = l10n_util::GetStringFUTF16(
428 IDS_PAGEINFO_PARTIAL_ADDRESS,
429 UTF8ToUTF16(cert->subject().locality_name),
430 UTF8ToUTF16(cert->subject().country_name));
431 }
432 DCHECK(!cert->subject().organization_names.empty());
433 site_identity_details_.assign(l10n_util::GetStringFUTF16(
434 GetSiteIdentityDetailsMessageByCTInfo(
estarka3121f6b2015-09-18 21:15:59435 security_info.sct_verify_statuses, true /* is EV */),
436 UTF8ToUTF16(cert->subject().organization_names[0]), locality,
rsleevi4f8012722014-09-30 01:28:01437 UTF8ToUTF16(cert->issuer().GetDisplayName())));
438 } else {
439 // Non-EV OK HTTPS page.
440 site_identity_status_ = GetSiteIdentityStatusByCTInfo(
estarka3121f6b2015-09-18 21:15:59441 security_info.sct_verify_statuses, false);
rsleevi4f8012722014-09-30 01:28:01442 base::string16 issuer_name(
443 UTF8ToUTF16(cert->issuer().GetDisplayName()));
444 if (issuer_name.empty()) {
445 issuer_name.assign(l10n_util::GetStringUTF16(
446 IDS_PAGE_INFO_SECURITY_TAB_UNKNOWN_PARTY));
447 }
[email protected]94c74b42013-12-02 15:19:49448
rsleevi4f8012722014-09-30 01:28:01449 site_identity_details_.assign(l10n_util::GetStringFUTF16(
450 GetSiteIdentityDetailsMessageByCTInfo(
estarka3121f6b2015-09-18 21:15:59451 security_info.sct_verify_statuses, false /* not EV */),
rsleevi4f8012722014-09-30 01:28:01452 issuer_name));
453 }
lgarroncc53de22015-10-05 23:03:17454 switch (security_info.sha1_deprecation_status) {
455 case SecurityStateModel::DEPRECATED_SHA1_MINOR:
456 site_identity_status_ =
457 SITE_IDENTITY_STATUS_DEPRECATED_SIGNATURE_ALGORITHM_MINOR;
458 site_identity_details_ +=
459 UTF8ToUTF16("\n\n") +
460 l10n_util::GetStringUTF16(
461 IDS_PAGE_INFO_SECURITY_TAB_DEPRECATED_SIGNATURE_ALGORITHM_MINOR);
462 break;
463 case SecurityStateModel::DEPRECATED_SHA1_MAJOR:
464 site_identity_status_ =
465 SITE_IDENTITY_STATUS_DEPRECATED_SIGNATURE_ALGORITHM_MAJOR;
466 site_identity_details_ +=
467 UTF8ToUTF16("\n\n") +
468 l10n_util::GetStringUTF16(
469 IDS_PAGE_INFO_SECURITY_TAB_DEPRECATED_SIGNATURE_ALGORITHM_MAJOR);
470 break;
471 case SecurityStateModel::NO_DEPRECATED_SHA1:
472 // Nothing to do.
473 break;
rsleevi4f8012722014-09-30 01:28:01474 }
[email protected]03ef4b2a2012-03-06 15:04:20475 }
476 } else {
477 // HTTP or HTTPS with errors (not warnings).
478 site_identity_details_.assign(l10n_util::GetStringUTF16(
479 IDS_PAGE_INFO_SECURITY_TAB_INSECURE_IDENTITY));
estarka3121f6b2015-09-18 21:15:59480 if (!security_info.scheme_is_cryptographic || !security_info.cert_id)
[email protected]03ef4b2a2012-03-06 15:04:20481 site_identity_status_ = SITE_IDENTITY_STATUS_NO_CERT;
482 else
483 site_identity_status_ = SITE_IDENTITY_STATUS_ERROR;
484
[email protected]a04db822013-12-11 19:14:40485 const base::string16 bullet = UTF8ToUTF16("\n • ");
felt2493b4452015-09-17 20:33:59486 std::vector<ssl_errors::ErrorInfo> errors;
estarka3121f6b2015-09-18 21:15:59487 ssl_errors::ErrorInfo::GetErrorsForCertStatus(
488 cert, security_info.cert_status, url, &errors);
[email protected]03ef4b2a2012-03-06 15:04:20489 for (size_t i = 0; i < errors.size(); ++i) {
490 site_identity_details_ += bullet;
491 site_identity_details_ += errors[i].short_description();
492 }
493
estarka3121f6b2015-09-18 21:15:59494 if (security_info.cert_status & net::CERT_STATUS_NON_UNIQUE_NAME) {
[email protected]03ef4b2a2012-03-06 15:04:20495 site_identity_details_ += ASCIIToUTF16("\n\n");
496 site_identity_details_ += l10n_util::GetStringUTF16(
497 IDS_PAGE_INFO_SECURITY_TAB_NON_UNIQUE_NAME);
498 }
499 }
500
501 // Site Connection
502 // We consider anything less than 80 bits encryption to be weak encryption.
503 // TODO(wtc): Bug 1198735: report mixed/unsafe content for unencrypted and
504 // weakly encrypted connections.
505 site_connection_status_ = SITE_CONNECTION_STATUS_UNKNOWN;
506
palmer153af982015-09-15 02:04:19507 base::string16 subject_name(GetSimpleSiteName(url, profile_));
508 if (subject_name.empty()) {
509 subject_name.assign(
510 l10n_util::GetStringUTF16(IDS_PAGE_INFO_SECURITY_TAB_UNKNOWN_PARTY));
511 }
512
estarka3121f6b2015-09-18 21:15:59513 if (!security_info.cert_id || !security_info.scheme_is_cryptographic) {
514 // Page is still loading (so SSL status is not yet available) or
515 // loaded over HTTP or loaded over HTTPS with no cert.
[email protected]1c1051d2014-05-10 11:39:58516 site_connection_status_ = SITE_CONNECTION_STATUS_UNENCRYPTED;
517
518 site_connection_details_.assign(l10n_util::GetStringFUTF16(
519 IDS_PAGE_INFO_SECURITY_TAB_NOT_ENCRYPTED_CONNECTION_TEXT,
520 subject_name));
estarka3121f6b2015-09-18 21:15:59521 } else if (security_info.security_bits < 0) {
522 // Security strength is unknown. Say nothing.
[email protected]03ef4b2a2012-03-06 15:04:20523 site_connection_status_ = SITE_CONNECTION_STATUS_ENCRYPTED_ERROR;
estarka3121f6b2015-09-18 21:15:59524 } else if (security_info.security_bits == 0) {
525 DCHECK_NE(security_info.security_level, SecurityStateModel::NONE);
[email protected]03ef4b2a2012-03-06 15:04:20526 site_connection_status_ = SITE_CONNECTION_STATUS_ENCRYPTED_ERROR;
527 site_connection_details_.assign(l10n_util::GetStringFUTF16(
528 IDS_PAGE_INFO_SECURITY_TAB_NOT_ENCRYPTED_CONNECTION_TEXT,
529 subject_name));
[email protected]03ef4b2a2012-03-06 15:04:20530 } else {
531 site_connection_status_ = SITE_CONNECTION_STATUS_ENCRYPTED;
Adam Langley71c2b59b2014-11-13 00:34:22532
estarka3121f6b2015-09-18 21:15:59533 if (net::SSLConnectionStatusToVersion(security_info.connection_status) >=
Adam Langley71c2b59b2014-11-13 00:34:22534 net::SSL_CONNECTION_VERSION_TLS1_2 &&
estarka3121f6b2015-09-18 21:15:59535 net::IsSecureTLSCipherSuite(net::SSLConnectionStatusToCipherSuite(
536 security_info.connection_status))) {
Adam Langley71c2b59b2014-11-13 00:34:22537 site_connection_details_.assign(l10n_util::GetStringFUTF16(
538 IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTED_CONNECTION_TEXT,
539 subject_name));
540 } else {
541 site_connection_details_.assign(l10n_util::GetStringFUTF16(
542 IDS_PAGE_INFO_SECURITY_TAB_WEAK_ENCRYPTION_CONNECTION_TEXT,
543 subject_name));
544 }
545
estarka3121f6b2015-09-18 21:15:59546 if (security_info.mixed_content_status !=
547 SecurityStateModel::NO_MIXED_CONTENT) {
[email protected]03ef4b2a2012-03-06 15:04:20548 bool ran_insecure_content =
estarka3121f6b2015-09-18 21:15:59549 (security_info.mixed_content_status ==
550 SecurityStateModel::RAN_MIXED_CONTENT ||
551 security_info.mixed_content_status ==
552 SecurityStateModel::RAN_AND_DISPLAYED_MIXED_CONTENT);
palmercc7f5f8c2015-09-04 01:02:59553 site_connection_status_ = ran_insecure_content
554 ? SITE_CONNECTION_STATUS_MIXED_SCRIPT
555 : SITE_CONNECTION_STATUS_MIXED_CONTENT;
[email protected]03ef4b2a2012-03-06 15:04:20556 site_connection_details_.assign(l10n_util::GetStringFUTF16(
557 IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTED_SENTENCE_LINK,
558 site_connection_details_,
559 l10n_util::GetStringUTF16(ran_insecure_content ?
560 IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTED_INSECURE_CONTENT_ERROR :
561 IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTED_INSECURE_CONTENT_WARNING)));
562 }
563 }
564
565 uint16 cipher_suite =
estarka3121f6b2015-09-18 21:15:59566 net::SSLConnectionStatusToCipherSuite(security_info.connection_status);
567 if (security_info.security_bits > 0 && cipher_suite) {
[email protected]03ef4b2a2012-03-06 15:04:20568 int ssl_version =
estarka3121f6b2015-09-18 21:15:59569 net::SSLConnectionStatusToVersion(security_info.connection_status);
[email protected]03ef4b2a2012-03-06 15:04:20570 const char* ssl_version_str;
571 net::SSLVersionToString(&ssl_version_str, ssl_version);
572 site_connection_details_ += ASCIIToUTF16("\n\n");
573 site_connection_details_ += l10n_util::GetStringFUTF16(
574 IDS_PAGE_INFO_SECURITY_TAB_SSL_VERSION,
575 ASCIIToUTF16(ssl_version_str));
576
[email protected]03ef4b2a2012-03-06 15:04:20577 bool no_renegotiation =
estarka3121f6b2015-09-18 21:15:59578 (security_info.connection_status &
579 net::SSL_CONNECTION_NO_RENEGOTIATION_EXTENSION) != 0;
[email protected]03ef4b2a2012-03-06 15:04:20580 const char *key_exchange, *cipher, *mac;
[email protected]b6c1d9e82013-06-12 17:26:57581 bool is_aead;
582 net::SSLCipherSuiteToStrings(
583 &key_exchange, &cipher, &mac, &is_aead, cipher_suite);
[email protected]03ef4b2a2012-03-06 15:04:20584
585 site_connection_details_ += ASCIIToUTF16("\n\n");
[email protected]b6c1d9e82013-06-12 17:26:57586 if (is_aead) {
587 site_connection_details_ += l10n_util::GetStringFUTF16(
588 IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTION_DETAILS_AEAD,
589 ASCIIToUTF16(cipher), ASCIIToUTF16(key_exchange));
590 } else {
591 site_connection_details_ += l10n_util::GetStringFUTF16(
592 IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTION_DETAILS,
593 ASCIIToUTF16(cipher), ASCIIToUTF16(mac), ASCIIToUTF16(key_exchange));
594 }
[email protected]03ef4b2a2012-03-06 15:04:20595
agl078d2102014-10-20 22:03:22596 if (ssl_version == net::SSL_CONNECTION_VERSION_SSL3 &&
597 site_connection_status_ < SITE_CONNECTION_STATUS_MIXED_CONTENT) {
598 site_connection_status_ = SITE_CONNECTION_STATUS_ENCRYPTED_ERROR;
599 }
600
estarka3121f6b2015-09-18 21:15:59601 const bool did_fallback = (security_info.connection_status &
602 net::SSL_CONNECTION_VERSION_FALLBACK) != 0;
[email protected]03ef4b2a2012-03-06 15:04:20603 if (did_fallback) {
[email protected]03ef4b2a2012-03-06 15:04:20604 site_connection_details_ += ASCIIToUTF16("\n\n");
605 site_connection_details_ += l10n_util::GetStringUTF16(
606 IDS_PAGE_INFO_SECURITY_TAB_FALLBACK_MESSAGE);
607 }
agl078d2102014-10-20 22:03:22608
[email protected]03ef4b2a2012-03-06 15:04:20609 if (no_renegotiation) {
610 site_connection_details_ += ASCIIToUTF16("\n\n");
611 site_connection_details_ += l10n_util::GetStringUTF16(
612 IDS_PAGE_INFO_SECURITY_TAB_RENEGOTIATION_MESSAGE);
613 }
614 }
[email protected]e583f752012-08-30 13:26:21615
[email protected]71cd5ef2014-08-13 21:22:04616 // Check if a user decision has been made to allow or deny certificates with
617 // errors on this site.
618 ChromeSSLHostStateDelegate* delegate =
estark7c6bfbf2015-09-16 22:20:50619 ChromeSSLHostStateDelegateFactory::GetForProfile(profile_);
[email protected]71cd5ef2014-08-13 21:22:04620 DCHECK(delegate);
jwwf806c362015-06-02 02:00:40621 // Only show an SSL decision revoke button if the user has chosen to bypass
622 // SSL host errors for this host in the past.
623 show_ssl_decision_revoke_button_ = delegate->HasAllowException(url.host());
[email protected]71cd5ef2014-08-13 21:22:04624
palmer82b1f7b2015-09-17 19:20:41625 // By default select the Permissions Tab that displays all the site
626 // permissions. In case of a connection error or an issue with the certificate
627 // presented by the website, select the Connection Tab to draw the user's
628 // attention to the issue. If the site does not provide a certificate because
629 // it was loaded over an unencrypted connection, don't select the Connection
630 // Tab.
[email protected]e583f752012-08-30 13:26:21631 WebsiteSettingsUI::TabId tab_id = WebsiteSettingsUI::TAB_ID_PERMISSIONS;
632 if (site_connection_status_ == SITE_CONNECTION_STATUS_ENCRYPTED_ERROR ||
633 site_connection_status_ == SITE_CONNECTION_STATUS_MIXED_CONTENT ||
estarkf62683e2015-09-17 17:52:06634 site_connection_status_ == SITE_CONNECTION_STATUS_MIXED_SCRIPT ||
[email protected]e583f752012-08-30 13:26:21635 site_identity_status_ == SITE_IDENTITY_STATUS_ERROR ||
estark134a9822015-10-29 04:35:18636 site_identity_status_ == SITE_IDENTITY_STATUS_CT_ERROR ||
[email protected]eaf3f322013-04-25 21:53:59637 site_identity_status_ == SITE_IDENTITY_STATUS_CERT_REVOCATION_UNKNOWN ||
rsleevi4f8012722014-09-30 01:28:01638 site_identity_status_ == SITE_IDENTITY_STATUS_ADMIN_PROVIDED_CERT ||
639 site_identity_status_ ==
lgarroncc53de22015-10-05 23:03:17640 SITE_IDENTITY_STATUS_DEPRECATED_SIGNATURE_ALGORITHM_MINOR ||
641 site_identity_status_ ==
642 SITE_IDENTITY_STATUS_DEPRECATED_SIGNATURE_ALGORITHM_MAJOR) {
[email protected]e583f752012-08-30 13:26:21643 tab_id = WebsiteSettingsUI::TAB_ID_CONNECTION;
lgarron04a93502014-11-04 22:25:04644 RecordWebsiteSettingsAction(
645 WEBSITE_SETTINGS_CONNECTION_TAB_SHOWN_IMMEDIATELY);
646 }
palmer82b1f7b2015-09-17 19:20:41647
[email protected]e583f752012-08-30 13:26:21648 ui_->SetSelectedTab(tab_id);
[email protected]03ef4b2a2012-03-06 15:04:20649}
[email protected]0b9fdd72012-04-04 10:00:33650
[email protected]df818272012-04-20 13:10:50651void WebsiteSettings::PresentSitePermissions() {
652 PermissionInfoList permission_info_list;
653
654 WebsiteSettingsUI::PermissionInfo permission_info;
655 for (size_t i = 0; i < arraysize(kPermissionType); ++i) {
656 permission_info.type = kPermissionType[i];
657
658 content_settings::SettingInfo info;
sashab2b2a314f2015-01-17 06:42:21659 scoped_ptr<base::Value> value =
raymes7dec6d862015-07-27 07:02:08660 content_settings_->GetWebsiteSetting(
sashab2b2a314f2015-01-17 06:42:21661 site_url_, site_url_, permission_info.type, std::string(), &info);
662 DCHECK(value.get());
663 if (value->GetType() == base::Value::TYPE_INTEGER) {
664 permission_info.setting =
665 content_settings::ValueToContentSetting(value.get());
[email protected]fe4686a2012-10-19 15:38:26666 } else {
sashab2b2a314f2015-01-17 06:42:21667 NOTREACHED();
[email protected]fe4686a2012-10-19 15:38:26668 }
669
[email protected]8bdf45c32012-08-04 00:12:55670 permission_info.source = info.source;
[email protected]df818272012-04-20 13:10:50671
[email protected]b1d113d2012-06-27 21:27:34672 if (info.primary_pattern == ContentSettingsPattern::Wildcard() &&
sashab2b2a314f2015-01-17 06:42:21673 info.secondary_pattern == ContentSettingsPattern::Wildcard()) {
[email protected]b1d113d2012-06-27 21:27:34674 permission_info.default_setting = permission_info.setting;
675 permission_info.setting = CONTENT_SETTING_DEFAULT;
676 } else {
677 permission_info.default_setting =
678 content_settings_->GetDefaultContentSetting(permission_info.type,
679 NULL);
[email protected]df818272012-04-20 13:10:50680 }
palmer0da10b32015-02-11 00:42:19681
682 if (permission_info.setting != CONTENT_SETTING_DEFAULT &&
683 permission_info.setting != permission_info.default_setting) {
684 permission_info_list.push_back(permission_info);
685 }
[email protected]df818272012-04-20 13:10:50686 }
687
688 ui_->SetPermissionInfo(permission_info_list);
[email protected]0b9fdd72012-04-04 10:00:33689}
690
[email protected]df818272012-04-20 13:10:50691void WebsiteSettings::PresentSiteData() {
692 CookieInfoList cookie_info_list;
vabrd5e30cd2014-10-02 11:06:03693 const LocalSharedObjectsCounter& allowed_objects =
[email protected]e0ac35892012-05-15 12:53:34694 tab_specific_content_settings()->allowed_local_shared_objects();
vabrd5e30cd2014-10-02 11:06:03695 const LocalSharedObjectsCounter& blocked_objects =
[email protected]e0ac35892012-05-15 12:53:34696 tab_specific_content_settings()->blocked_local_shared_objects();
697
698 // Add first party cookie and site data counts.
[email protected]df818272012-04-20 13:10:50699 WebsiteSettingsUI::CookieInfo cookie_info;
palmerb145264922015-08-28 23:53:15700 cookie_info.cookie_source =
701 l10n_util::GetStringUTF8(IDS_WEBSITE_SETTINGS_FIRST_PARTY_SITE_DATA);
[email protected]e0ac35892012-05-15 12:53:34702 cookie_info.allowed = allowed_objects.GetObjectCountForDomain(site_url_);
703 cookie_info.blocked = blocked_objects.GetObjectCountForDomain(site_url_);
palmerb145264922015-08-28 23:53:15704 cookie_info.is_first_party = true;
[email protected]e0ac35892012-05-15 12:53:34705 cookie_info_list.push_back(cookie_info);
706
707 // Add third party cookie counts.
708 cookie_info.cookie_source = l10n_util::GetStringUTF8(
709 IDS_WEBSITE_SETTINGS_THIRD_PARTY_SITE_DATA);
710 cookie_info.allowed = allowed_objects.GetObjectCount() - cookie_info.allowed;
711 cookie_info.blocked = blocked_objects.GetObjectCount() - cookie_info.blocked;
palmerb145264922015-08-28 23:53:15712 cookie_info.is_first_party = false;
[email protected]df818272012-04-20 13:10:50713 cookie_info_list.push_back(cookie_info);
[email protected]0b9fdd72012-04-04 10:00:33714
[email protected]df818272012-04-20 13:10:50715 ui_->SetCookieInfo(cookie_info_list);
[email protected]0b9fdd72012-04-04 10:00:33716}
[email protected]16de6de2012-04-04 12:24:14717
[email protected]24c8818c2012-04-25 09:57:41718void WebsiteSettings::PresentSiteIdentity() {
palmerf9b680a2015-07-09 18:56:04719 // After initialization the status about the site's connection and its
720 // identity must be available.
[email protected]24c8818c2012-04-25 09:57:41721 DCHECK_NE(site_identity_status_, SITE_IDENTITY_STATUS_UNKNOWN);
722 DCHECK_NE(site_connection_status_, SITE_CONNECTION_STATUS_UNKNOWN);
723 WebsiteSettingsUI::IdentityInfo info;
724 if (site_identity_status_ == SITE_IDENTITY_STATUS_EV_CERT)
725 info.site_identity = UTF16ToUTF8(organization_name());
726 else
palmer153af982015-09-15 02:04:19727 info.site_identity = UTF16ToUTF8(GetSimpleSiteName(site_url_, profile_));
[email protected]24c8818c2012-04-25 09:57:41728
729 info.connection_status = site_connection_status_;
730 info.connection_status_description =
731 UTF16ToUTF8(site_connection_details_);
732 info.identity_status = site_identity_status_;
733 info.identity_status_description =
734 UTF16ToUTF8(site_identity_details_);
[email protected]f61c1ce2012-05-09 13:55:11735 info.cert_id = cert_id_;
[email protected]71cd5ef2014-08-13 21:22:04736 info.show_ssl_decision_revoke_button = show_ssl_decision_revoke_button_;
[email protected]24c8818c2012-04-25 09:57:41737 ui_->SetIdentityInfo(info);
738}