[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 1 | // 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] | 4237dd5 | 2012-06-05 00:00:32 | [diff] [blame] | 5 | #include "chrome/browser/ui/website_settings/website_settings.h" |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 6 | |
| 7 | #include <string> |
| 8 | #include <vector> |
| 9 | |
[email protected] | eb2140c | 2013-07-29 12:37:34 | [diff] [blame] | 10 | #include "base/command_line.h" |
[email protected] | 15b09254 | 2012-05-16 13:08:14 | [diff] [blame] | 11 | #include "base/i18n/time_formatting.h" |
[email protected] | 71cd5ef | 2014-08-13 21:22:04 | [diff] [blame] | 12 | #include "base/metrics/field_trial.h" |
[email protected] | 3ea1b18 | 2013-02-08 22:38:41 | [diff] [blame] | 13 | #include "base/metrics/histogram.h" |
| 14 | #include "base/strings/string_number_conversions.h" |
jialiul | 02aad2d | 2015-04-01 18:56:03 | [diff] [blame] | 15 | #include "base/strings/stringprintf.h" |
[email protected] | 774cc3c | 2013-06-07 20:26:45 | [diff] [blame] | 16 | #include "base/strings/utf_string_conversions.h" |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 17 | #include "base/values.h" |
jialiul | 02aad2d | 2015-04-01 18:56:03 | [diff] [blame] | 18 | #include "chrome/browser/browser_process.h" |
[email protected] | 6b8a3c74 | 2014-07-25 00:25:35 | [diff] [blame] | 19 | #include "chrome/browser/browsing_data/browsing_data_channel_id_helper.h" |
[email protected] | b0cb5e8 | 2012-07-19 19:22:47 | [diff] [blame] | 20 | #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" |
peconn | 5100d43 | 2015-09-16 12:03:08 | [diff] [blame] | 25 | #include "chrome/browser/content_settings/host_content_settings_map_factory.h" |
[email protected] | 77a91c7 | 2012-08-13 16:19:34 | [diff] [blame] | 26 | #include "chrome/browser/history/history_service_factory.h" |
palmer | f2cba0d | 2015-08-27 23:15:06 | [diff] [blame] | 27 | #include "chrome/browser/infobars/infobar_service.h" |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 28 | #include "chrome/browser/profiles/profile.h" |
[email protected] | 71cd5ef | 2014-08-13 21:22:04 | [diff] [blame] | 29 | #include "chrome/browser/ssl/chrome_ssl_host_state_delegate.h" |
| 30 | #include "chrome/browser/ssl/chrome_ssl_host_state_delegate_factory.h" |
[email protected] | 4237dd5 | 2012-06-05 00:00:32 | [diff] [blame] | 31 | #include "chrome/browser/ui/website_settings/website_settings_ui.h" |
[email protected] | 71cd5ef | 2014-08-13 21:22:04 | [diff] [blame] | 32 | #include "chrome/common/chrome_switches.h" |
palmer | 153af98 | 2015-09-15 02:04:19 | [diff] [blame] | 33 | #include "chrome/common/pref_names.h" |
jsbell | ddb849e | 2015-08-27 00:12:56 | [diff] [blame] | 34 | #include "chrome/common/url_constants.h" |
thestig | 884a160 | 2014-08-27 01:29:39 | [diff] [blame] | 35 | #include "chrome/grit/chromium_strings.h" |
| 36 | #include "chrome/grit/generated_resources.h" |
mukai | 8eaec82 | 2014-10-25 17:53:16 | [diff] [blame] | 37 | #include "components/content_settings/core/browser/content_settings_utils.h" |
| 38 | #include "components/content_settings/core/browser/host_content_settings_map.h" |
vabr | 4856559 | 2014-10-08 15:06:02 | [diff] [blame] | 39 | #include "components/content_settings/core/browser/local_shared_objects_counter.h" |
palmer | 0da10b3 | 2015-02-11 00:42:19 | [diff] [blame] | 40 | #include "components/content_settings/core/common/content_settings.h" |
vasilii | f62dbf9 | 2014-09-05 10:23:13 | [diff] [blame] | 41 | #include "components/content_settings/core/common/content_settings_pattern.h" |
jialiul | 02aad2d | 2015-04-01 18:56:03 | [diff] [blame] | 42 | #include "components/rappor/rappor_utils.h" |
felt | 2493b445 | 2015-09-17 20:33:59 | [diff] [blame] | 43 | #include "components/ssl_errors/error_info.h" |
palmer | 153af98 | 2015-09-15 02:04:19 | [diff] [blame] | 44 | #include "components/url_formatter/elide_url.h" |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 45 | #include "content/public/browser/browser_thread.h" |
[email protected] | b59c6cf0 | 2012-03-12 20:51:42 | [diff] [blame] | 46 | #include "content/public/browser/cert_store.h" |
[email protected] | e22d64f | 2012-09-10 09:03:23 | [diff] [blame] | 47 | #include "content/public/browser/user_metrics.h" |
[email protected] | eb2140c | 2013-07-29 12:37:34 | [diff] [blame] | 48 | #include "content/public/common/content_switches.h" |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 49 | #include "content/public/common/url_constants.h" |
[email protected] | 6e7845ae | 2013-03-29 21:48:11 | [diff] [blame] | 50 | #include "net/cert/cert_status_flags.h" |
| 51 | #include "net/cert/x509_certificate.h" |
[email protected] | 536fd0b | 2013-03-14 17:41:57 | [diff] [blame] | 52 | #include "net/ssl/ssl_cipher_suite_names.h" |
| 53 | #include "net/ssl/ssl_connection_status_flags.h" |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 54 | #include "ui/base/l10n/l10n_util.h" |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 55 | |
[email protected] | 24a9f1c9 | 2013-11-13 12:33:37 | [diff] [blame] | 56 | #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 | |
estade | 3feb83f | 2015-09-01 23:00:49 | [diff] [blame] | 61 | #if !defined(OS_ANDROID) |
| 62 | #include "chrome/browser/ui/website_settings/website_settings_infobar_delegate.h" |
| 63 | #endif |
| 64 | |
[email protected] | ab6df3b1 | 2013-12-24 23:32:26 | [diff] [blame] | 65 | using base::ASCIIToUTF16; |
| 66 | using base::UTF8ToUTF16; |
[email protected] | f729d7a | 2013-12-26 07:07:56 | [diff] [blame] | 67 | using base::UTF16ToUTF8; |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 68 | using content::BrowserThread; |
| 69 | |
| 70 | namespace { |
| 71 | |
jww | 1ed8ea7 | 2014-09-02 20:43:25 | [diff] [blame] | 72 | // Events for UMA. Do not reorder or change! |
| 73 | enum SSLCertificateDecisionsDidRevoke { |
| 74 | USER_CERT_DECISIONS_NOT_REVOKED = 0, |
| 75 | USER_CERT_DECISIONS_REVOKED, |
| 76 | END_OF_SSL_CERTIFICATE_DECISIONS_DID_REVOKE_ENUM |
| 77 | }; |
| 78 | |
palmer | 0da10b3 | 2015-02-11 00:42:19 | [diff] [blame] | 79 | // 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] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 82 | ContentSettingsType kPermissionType[] = { |
sashab | 2b2a314f | 2015-01-17 06:42:21 | [diff] [blame] | 83 | CONTENT_SETTINGS_TYPE_GEOLOCATION, |
sashab | 2b2a314f | 2015-01-17 06:42:21 | [diff] [blame] | 84 | CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA, |
| 85 | CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC, |
palmer | 0da10b3 | 2015-02-11 00:42:19 | [diff] [blame] | 86 | CONTENT_SETTINGS_TYPE_NOTIFICATIONS, |
| 87 | CONTENT_SETTINGS_TYPE_IMAGES, |
| 88 | CONTENT_SETTINGS_TYPE_JAVASCRIPT, |
| 89 | CONTENT_SETTINGS_TYPE_POPUPS, |
| 90 | CONTENT_SETTINGS_TYPE_FULLSCREEN, |
sashab | 2b2a314f | 2015-01-17 06:42:21 | [diff] [blame] | 91 | CONTENT_SETTINGS_TYPE_AUTOMATIC_DOWNLOADS, |
palmer | 0da10b3 | 2015-02-11 00:42:19 | [diff] [blame] | 92 | CONTENT_SETTINGS_TYPE_PLUGINS, |
| 93 | CONTENT_SETTINGS_TYPE_MOUSELOCK, |
sashab | 2b2a314f | 2015-01-17 06:42:21 | [diff] [blame] | 94 | CONTENT_SETTINGS_TYPE_MIDI_SYSEX, |
benwells | a68ed4b | 2014-11-13 03:25:36 | [diff] [blame] | 95 | #if defined(OS_ANDROID) |
sashab | 2b2a314f | 2015-01-17 06:42:21 | [diff] [blame] | 96 | CONTENT_SETTINGS_TYPE_PUSH_MESSAGING, |
benwells | a68ed4b | 2014-11-13 03:25:36 | [diff] [blame] | 97 | #endif |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 98 | }; |
| 99 | |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 100 | bool CertificateTransparencyStatusMatch( |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 101 | const std::vector<net::ct::SCTVerifyStatus>& sct_verify_statuses, |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 102 | net::ct::SCTVerifyStatus status) { |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 103 | for (const auto& verify_status : sct_verify_statuses) { |
| 104 | if (verify_status == status) |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 105 | return true; |
| 106 | } |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 107 | return false; |
| 108 | } |
| 109 | |
| 110 | int GetSiteIdentityDetailsMessageByCTInfo( |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 111 | const std::vector<net::ct::SCTVerifyStatus>& sct_verify_statuses, |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 112 | bool is_ev) { |
| 113 | // No SCTs - no CT information. |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 114 | if (sct_verify_statuses.empty()) |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 115 | return (is_ev ? IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_EV_NO_CT |
| 116 | : IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_NO_CT); |
| 117 | |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 118 | if (CertificateTransparencyStatusMatch(sct_verify_statuses, |
| 119 | net::ct::SCT_STATUS_OK)) |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 120 | return (is_ev ? IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_EV_CT_VERIFIED |
| 121 | : IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_CT_VERIFIED); |
| 122 | |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 123 | if (CertificateTransparencyStatusMatch(sct_verify_statuses, |
| 124 | net::ct::SCT_STATUS_INVALID)) |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 125 | return (is_ev ? IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_EV_CT_INVALID |
| 126 | : IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_CT_INVALID); |
| 127 | |
| 128 | // status is SCT_STATUS_LOG_UNKNOWN |
| 129 | return (is_ev ? IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_EV_CT_UNVERIFIED |
| 130 | : IDS_PAGE_INFO_SECURITY_TAB_SECURE_IDENTITY_CT_UNVERIFIED); |
| 131 | } |
| 132 | |
| 133 | // This function will return SITE_IDENTITY_STATUS_CERT or |
| 134 | // SITE_IDENTITY_STATUS_EV_CERT depending on |is_ev| unless there are SCTs |
| 135 | // which failed verification, in which case it will return |
| 136 | // SITE_IDENTITY_STATUS_ERROR. |
| 137 | WebsiteSettings::SiteIdentityStatus GetSiteIdentityStatusByCTInfo( |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 138 | const std::vector<net::ct::SCTVerifyStatus>& sct_verify_statuses, |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 139 | bool is_ev) { |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 140 | if (CertificateTransparencyStatusMatch(sct_verify_statuses, |
| 141 | net::ct::SCT_STATUS_INVALID)) |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 142 | return WebsiteSettings::SITE_IDENTITY_STATUS_ERROR; |
| 143 | |
| 144 | return is_ev ? WebsiteSettings::SITE_IDENTITY_STATUS_EV_CERT |
| 145 | : WebsiteSettings::SITE_IDENTITY_STATUS_CERT; |
| 146 | } |
| 147 | |
palmer | 153af98 | 2015-09-15 02:04:19 | [diff] [blame] | 148 | base::string16 GetSimpleSiteName(const GURL& url, Profile* profile) { |
| 149 | std::string languages; |
| 150 | if (profile) |
| 151 | languages = profile->GetPrefs()->GetString(prefs::kAcceptLanguages); |
| 152 | return url_formatter::FormatUrlForSecurityDisplayOmitScheme(url, languages); |
| 153 | } |
| 154 | |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 155 | } // namespace |
| 156 | |
| 157 | WebsiteSettings::WebsiteSettings( |
| 158 | WebsiteSettingsUI* ui, |
| 159 | Profile* profile, |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 160 | TabSpecificContentSettings* tab_specific_content_settings, |
palmer | f2cba0d | 2015-08-27 23:15:06 | [diff] [blame] | 161 | content::WebContents* web_contents, |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 162 | const GURL& url, |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 163 | const SecurityStateModel::SecurityInfo& security_info, |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 164 | content::CertStore* cert_store) |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 165 | : TabSpecificContentSettings::SiteDataObserver( |
| 166 | tab_specific_content_settings), |
| 167 | ui_(ui), |
palmer | f2cba0d | 2015-08-27 23:15:06 | [diff] [blame] | 168 | web_contents_(web_contents), |
[email protected] | 66f15731 | 2012-08-01 13:50:26 | [diff] [blame] | 169 | show_info_bar_(false), |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 170 | site_url_(url), |
| 171 | site_identity_status_(SITE_IDENTITY_STATUS_UNKNOWN), |
[email protected] | f61c1ce | 2012-05-09 13:55:11 | [diff] [blame] | 172 | cert_id_(0), |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 173 | site_connection_status_(SITE_CONNECTION_STATUS_UNKNOWN), |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 174 | cert_store_(cert_store), |
peconn | 5100d43 | 2015-09-16 12:03:08 | [diff] [blame] | 175 | content_settings_(HostContentSettingsMapFactory::GetForProfile(profile)), |
[email protected] | 71cd5ef | 2014-08-13 21:22:04 | [diff] [blame] | 176 | chrome_ssl_host_state_delegate_( |
jww | 1ed8ea7 | 2014-09-02 20:43:25 | [diff] [blame] | 177 | ChromeSSLHostStateDelegateFactory::GetForProfile(profile)), |
palmer | 153af98 | 2015-09-15 02:04:19 | [diff] [blame] | 178 | did_revoke_user_ssl_decisions_(false), |
| 179 | profile_(profile) { |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 180 | Init(url, security_info); |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 181 | |
| 182 | PresentSitePermissions(); |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 183 | PresentSiteData(); |
[email protected] | 24c8818c | 2012-04-25 09:57:41 | [diff] [blame] | 184 | PresentSiteIdentity(); |
[email protected] | e22d64f | 2012-09-10 09:03:23 | [diff] [blame] | 185 | |
| 186 | // Every time the Website Settings UI is opened a |WebsiteSettings| object is |
| 187 | // created. So this counts how ofter the Website Settings UI is opened. |
lgarron | 04a9350 | 2014-11-04 22:25:04 | [diff] [blame] | 188 | RecordWebsiteSettingsAction(WEBSITE_SETTINGS_OPENED); |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 189 | } |
| 190 | |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 191 | WebsiteSettings::~WebsiteSettings() { |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 192 | } |
| 193 | |
lgarron | 04a9350 | 2014-11-04 22:25:04 | [diff] [blame] | 194 | void WebsiteSettings::RecordWebsiteSettingsAction( |
| 195 | WebsiteSettingsAction action) { |
| 196 | UMA_HISTOGRAM_ENUMERATION("WebsiteSettings.Action", |
| 197 | action, |
| 198 | WEBSITE_SETTINGS_COUNT); |
| 199 | |
| 200 | // Use a separate histogram to record actions if they are done on a page with |
| 201 | // an HTTPS URL. Note that this *disregards* security status. |
palmer | ee0e5af | 2015-06-05 03:10:40 | [diff] [blame] | 202 | // |
| 203 | |
| 204 | // TODO(palmer): Consider adding a new histogram for |
| 205 | // GURL::SchemeIsCryptographic. (We don't want to replace this call with a |
| 206 | // call to that function because we don't want to change the meanings of |
| 207 | // existing metrics.) This would inform the decision to mark non-secure |
| 208 | // origins as Dubious or Non-Secure; the overall bug for that is |
| 209 | // crbug.com/454579. |
lgarron | 04a9350 | 2014-11-04 22:25:04 | [diff] [blame] | 210 | if (site_url_.SchemeIs(url::kHttpsScheme)) { |
| 211 | UMA_HISTOGRAM_ENUMERATION("WebsiteSettings.Action.HttpsUrl", |
| 212 | action, |
| 213 | WEBSITE_SETTINGS_COUNT); |
| 214 | } |
| 215 | } |
| 216 | |
jialiul | 02aad2d | 2015-04-01 18:56:03 | [diff] [blame] | 217 | // Get corresponding Rappor Metric. |
| 218 | const std::string GetRapporMetric(ContentSettingsType permission) { |
| 219 | std::string permission_str; |
| 220 | switch (permission) { |
| 221 | case CONTENT_SETTINGS_TYPE_GEOLOCATION: |
| 222 | permission_str = "Geolocation"; |
| 223 | break; |
| 224 | case CONTENT_SETTINGS_TYPE_NOTIFICATIONS: |
| 225 | permission_str = "Notifications"; |
| 226 | break; |
| 227 | case CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC: |
| 228 | permission_str = "Mic"; |
| 229 | break; |
| 230 | case CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA: |
| 231 | permission_str = "Camera"; |
| 232 | break; |
| 233 | default: |
| 234 | return ""; |
| 235 | } |
| 236 | |
| 237 | return base::StringPrintf("ContentSettings.PermissionActions_%s.Revoked.Url", |
| 238 | permission_str.c_str()); |
| 239 | } |
lgarron | 04a9350 | 2014-11-04 22:25:04 | [diff] [blame] | 240 | |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 241 | void WebsiteSettings::OnSitePermissionChanged(ContentSettingsType type, |
| 242 | ContentSetting setting) { |
[email protected] | e22d64f | 2012-09-10 09:03:23 | [diff] [blame] | 243 | // Count how often a permission for a specific content type is changed using |
| 244 | // the Website Settings UI. |
raymes | 4a13d43 | 2015-09-08 00:44:07 | [diff] [blame] | 245 | size_t num_values; |
| 246 | int histogram_value = ContentSettingTypeToHistogramValue(type, &num_values); |
sashab | 9debecd | 2014-12-18 04:15:56 | [diff] [blame] | 247 | UMA_HISTOGRAM_ENUMERATION("WebsiteSettings.OriginInfo.PermissionChanged", |
raymes | 4a13d43 | 2015-09-08 00:44:07 | [diff] [blame] | 248 | histogram_value, num_values); |
sashab | 9debecd | 2014-12-18 04:15:56 | [diff] [blame] | 249 | |
| 250 | if (setting == ContentSetting::CONTENT_SETTING_ALLOW) { |
| 251 | UMA_HISTOGRAM_ENUMERATION( |
| 252 | "WebsiteSettings.OriginInfo.PermissionChanged.Allowed", histogram_value, |
raymes | 4a13d43 | 2015-09-08 00:44:07 | [diff] [blame] | 253 | num_values); |
sashab | 9debecd | 2014-12-18 04:15:56 | [diff] [blame] | 254 | } else if (setting == ContentSetting::CONTENT_SETTING_BLOCK) { |
| 255 | UMA_HISTOGRAM_ENUMERATION( |
| 256 | "WebsiteSettings.OriginInfo.PermissionChanged.Blocked", histogram_value, |
raymes | 4a13d43 | 2015-09-08 00:44:07 | [diff] [blame] | 257 | num_values); |
jialiul | 02aad2d | 2015-04-01 18:56:03 | [diff] [blame] | 258 | // 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 | } |
sashab | 9debecd | 2014-12-18 04:15:56 | [diff] [blame] | 264 | } |
[email protected] | e22d64f | 2012-09-10 09:03:23 | [diff] [blame] | 265 | |
lgarron | 04a9350 | 2014-11-04 22:25:04 | [diff] [blame] | 266 | // 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 | |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 271 | ContentSettingsPattern primary_pattern; |
| 272 | ContentSettingsPattern secondary_pattern; |
| 273 | switch (type) { |
| 274 | case CONTENT_SETTINGS_TYPE_GEOLOCATION: |
[email protected] | eb2140c | 2013-07-29 12:37:34 | [diff] [blame] | 275 | case CONTENT_SETTINGS_TYPE_MIDI_SYSEX: |
mlamouri | ab1897c | 2015-02-18 12:09:32 | [diff] [blame] | 276 | case CONTENT_SETTINGS_TYPE_FULLSCREEN: |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 277 | // TODO(markusheintz): The rule we create here should also change the |
| 278 | // location permission for iframed content. |
| 279 | primary_pattern = ContentSettingsPattern::FromURLNoWildcard(site_url_); |
| 280 | secondary_pattern = ContentSettingsPattern::FromURLNoWildcard(site_url_); |
| 281 | break; |
| 282 | case CONTENT_SETTINGS_TYPE_NOTIFICATIONS: |
| 283 | primary_pattern = ContentSettingsPattern::FromURLNoWildcard(site_url_); |
| 284 | secondary_pattern = ContentSettingsPattern::Wildcard(); |
| 285 | break; |
[email protected] | b1d113d | 2012-06-27 21:27:34 | [diff] [blame] | 286 | case CONTENT_SETTINGS_TYPE_IMAGES: |
| 287 | case CONTENT_SETTINGS_TYPE_JAVASCRIPT: |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 288 | case CONTENT_SETTINGS_TYPE_PLUGINS: |
| 289 | case CONTENT_SETTINGS_TYPE_POPUPS: |
[email protected] | b1d113d | 2012-06-27 21:27:34 | [diff] [blame] | 290 | case CONTENT_SETTINGS_TYPE_MOUSELOCK: |
[email protected] | ad635b1 | 2013-07-22 21:53:27 | [diff] [blame] | 291 | case CONTENT_SETTINGS_TYPE_AUTOMATIC_DOWNLOADS: |
benwells | a68ed4b | 2014-11-13 03:25:36 | [diff] [blame] | 292 | case CONTENT_SETTINGS_TYPE_PUSH_MESSAGING: |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 293 | primary_pattern = ContentSettingsPattern::FromURL(site_url_); |
| 294 | secondary_pattern = ContentSettingsPattern::Wildcard(); |
| 295 | break; |
sashab | 2b2a314f | 2015-01-17 06:42:21 | [diff] [blame] | 296 | case CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC: |
| 297 | case CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA: |
[email protected] | 0bacc191 | 2012-12-11 11:05:34 | [diff] [blame] | 298 | primary_pattern = ContentSettingsPattern::FromURLNoWildcard(site_url_); |
| 299 | secondary_pattern = ContentSettingsPattern::Wildcard(); |
[email protected] | 0bacc191 | 2012-12-11 11:05:34 | [diff] [blame] | 300 | break; |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 301 | default: |
| 302 | NOTREACHED() << "ContentSettingsType " << type << "is not supported."; |
| 303 | break; |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 304 | } |
| 305 | |
jialiul | 02aad2d | 2015-04-01 18:56:03 | [diff] [blame] | 306 | // Permission settings are specified via rules. There exists always at least |
| 307 | // one rule for the default setting. Get the rule that currently defines |
| 308 | // the permission for the given permission |type|. Then test whether the |
| 309 | // existing rule is more specific than the rule we are about to create. If |
| 310 | // the existing rule is more specific, than change the existing rule instead |
| 311 | // of creating a new rule that would be hidden behind the existing rule. |
| 312 | content_settings::SettingInfo info; |
| 313 | scoped_ptr<base::Value> v = |
raymes | 7dec6d86 | 2015-07-27 07:02:08 | [diff] [blame] | 314 | content_settings_->GetWebsiteSetting( |
jialiul | 02aad2d | 2015-04-01 18:56:03 | [diff] [blame] | 315 | site_url_, site_url_, type, std::string(), &info); |
| 316 | content_settings_->SetNarrowestWebsiteSetting( |
| 317 | primary_pattern, secondary_pattern, type, std::string(), setting, info); |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 318 | |
[email protected] | 66f15731 | 2012-08-01 13:50:26 | [diff] [blame] | 319 | show_info_bar_ = true; |
[email protected] | 2f45d54 | 2012-08-22 08:47:24 | [diff] [blame] | 320 | |
[email protected] | 2f45d54 | 2012-08-22 08:47:24 | [diff] [blame] | 321 | // Refresh the UI to reflect the new setting. |
| 322 | PresentSitePermissions(); |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | void WebsiteSettings::OnSiteDataAccessed() { |
| 326 | PresentSiteData(); |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 327 | } |
| 328 | |
[email protected] | 66f15731 | 2012-08-01 13:50:26 | [diff] [blame] | 329 | void WebsiteSettings::OnUIClosing() { |
estade | 3feb83f | 2015-09-01 23:00:49 | [diff] [blame] | 330 | #if defined(OS_ANDROID) |
| 331 | NOTREACHED(); |
| 332 | #else |
palmer | f2cba0d | 2015-08-27 23:15:06 | [diff] [blame] | 333 | if (show_info_bar_ && web_contents_) { |
| 334 | InfoBarService* infobar_service = |
| 335 | InfoBarService::FromWebContents(web_contents_); |
| 336 | if (infobar_service) |
| 337 | WebsiteSettingsInfoBarDelegate::Create(infobar_service); |
| 338 | } |
jww | 1ed8ea7 | 2014-09-02 20:43:25 | [diff] [blame] | 339 | |
| 340 | SSLCertificateDecisionsDidRevoke user_decision = |
| 341 | did_revoke_user_ssl_decisions_ ? USER_CERT_DECISIONS_REVOKED |
| 342 | : USER_CERT_DECISIONS_NOT_REVOKED; |
| 343 | |
| 344 | UMA_HISTOGRAM_ENUMERATION("interstitial.ssl.did_user_revoke_decisions", |
| 345 | user_decision, |
| 346 | END_OF_SSL_CERTIFICATE_DECISIONS_DID_REVOKE_ENUM); |
estade | 3feb83f | 2015-09-01 23:00:49 | [diff] [blame] | 347 | #endif |
jww | 1ed8ea7 | 2014-09-02 20:43:25 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | void WebsiteSettings::OnRevokeSSLErrorBypassButtonPressed() { |
| 351 | DCHECK(chrome_ssl_host_state_delegate_); |
jww | 6a55df7 | 2014-09-05 19:59:29 | [diff] [blame] | 352 | chrome_ssl_host_state_delegate_->RevokeUserAllowExceptionsHard( |
| 353 | site_url().host()); |
jww | 1ed8ea7 | 2014-09-02 20:43:25 | [diff] [blame] | 354 | did_revoke_user_ssl_decisions_ = true; |
[email protected] | 66f15731 | 2012-08-01 13:50:26 | [diff] [blame] | 355 | } |
| 356 | |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 357 | void WebsiteSettings::Init( |
| 358 | const GURL& url, |
| 359 | const SecurityStateModel::SecurityInfo& security_info) { |
sashab | 97894ce | 2014-10-22 10:08:33 | [diff] [blame] | 360 | bool isChromeUINativeScheme = false; |
| 361 | #if defined(OS_ANDROID) |
| 362 | isChromeUINativeScheme = url.SchemeIs(chrome::kChromeUINativeScheme); |
| 363 | #endif |
| 364 | |
| 365 | if (url.SchemeIs(content::kChromeUIScheme) || |
| 366 | url.SchemeIs(url::kAboutScheme) || isChromeUINativeScheme) { |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 367 | site_identity_status_ = SITE_IDENTITY_STATUS_INTERNAL_PAGE; |
| 368 | site_identity_details_ = |
| 369 | l10n_util::GetStringUTF16(IDS_PAGE_INFO_INTERNAL_PAGE); |
| 370 | site_connection_status_ = SITE_CONNECTION_STATUS_INTERNAL_PAGE; |
| 371 | return; |
| 372 | } |
| 373 | |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 374 | // Identity section. |
palmer | 153af98 | 2015-09-15 02:04:19 | [diff] [blame] | 375 | scoped_refptr<net::X509Certificate> cert; |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 376 | cert_id_ = security_info.cert_id; |
[email protected] | f61c1ce | 2012-05-09 13:55:11 | [diff] [blame] | 377 | |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 378 | // HTTPS with no or minor errors. |
| 379 | if (security_info.cert_id && |
| 380 | cert_store_->RetrieveCert(security_info.cert_id, &cert) && |
| 381 | (!net::IsCertStatusError(security_info.cert_status) || |
| 382 | net::IsCertStatusMinorError(security_info.cert_status))) { |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 383 | // There are no major errors. Check for minor errors. |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 384 | if (security_info.security_level == |
| 385 | SecurityStateModel::SECURITY_POLICY_WARNING) { |
[email protected] | eaf3f32 | 2013-04-25 21:53:59 | [diff] [blame] | 386 | site_identity_status_ = SITE_IDENTITY_STATUS_ADMIN_PROVIDED_CERT; |
[email protected] | 24a9f1c9 | 2013-11-13 12:33:37 | [diff] [blame] | 387 | site_identity_details_ = l10n_util::GetStringFUTF16( |
| 388 | IDS_CERT_POLICY_PROVIDED_CERT_MESSAGE, UTF8ToUTF16(url.host())); |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 389 | } else if (net::IsCertStatusMinorError(security_info.cert_status)) { |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 390 | site_identity_status_ = SITE_IDENTITY_STATUS_CERT_REVOCATION_UNKNOWN; |
[email protected] | a04db82 | 2013-12-11 19:14:40 | [diff] [blame] | 391 | base::string16 issuer_name(UTF8ToUTF16(cert->issuer().GetDisplayName())); |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 392 | if (issuer_name.empty()) { |
| 393 | issuer_name.assign(l10n_util::GetStringUTF16( |
| 394 | IDS_PAGE_INFO_SECURITY_TAB_UNKNOWN_PARTY)); |
| 395 | } |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 396 | |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 397 | site_identity_details_.assign(l10n_util::GetStringFUTF16( |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 398 | GetSiteIdentityDetailsMessageByCTInfo( |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 399 | security_info.sct_verify_statuses, false /* not EV */), |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 400 | issuer_name)); |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 401 | |
| 402 | site_identity_details_ += ASCIIToUTF16("\n\n"); |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 403 | if (security_info.cert_status & |
| 404 | net::CERT_STATUS_UNABLE_TO_CHECK_REVOCATION) { |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 405 | site_identity_details_ += l10n_util::GetStringUTF16( |
| 406 | IDS_PAGE_INFO_SECURITY_TAB_UNABLE_TO_CHECK_REVOCATION); |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 407 | } else if (security_info.cert_status & |
| 408 | net::CERT_STATUS_NO_REVOCATION_MECHANISM) { |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 409 | site_identity_details_ += l10n_util::GetStringUTF16( |
| 410 | IDS_PAGE_INFO_SECURITY_TAB_NO_REVOCATION_MECHANISM); |
| 411 | } else { |
| 412 | NOTREACHED() << "Need to specify string for this warning"; |
| 413 | } |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 414 | } else { |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 415 | if (security_info.cert_status & net::CERT_STATUS_IS_EV) { |
rsleevi | 4f801272 | 2014-09-30 01:28:01 | [diff] [blame] | 416 | // EV HTTPS page. |
| 417 | site_identity_status_ = GetSiteIdentityStatusByCTInfo( |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 418 | security_info.sct_verify_statuses, true); |
rsleevi | 4f801272 | 2014-09-30 01:28:01 | [diff] [blame] | 419 | DCHECK(!cert->subject().organization_names.empty()); |
| 420 | organization_name_ = UTF8ToUTF16(cert->subject().organization_names[0]); |
| 421 | // An EV Cert is required to have a city (localityName) and country but |
| 422 | // state is "if any". |
| 423 | DCHECK(!cert->subject().locality_name.empty()); |
| 424 | DCHECK(!cert->subject().country_name.empty()); |
| 425 | base::string16 locality; |
| 426 | if (!cert->subject().state_or_province_name.empty()) { |
| 427 | locality = l10n_util::GetStringFUTF16( |
| 428 | IDS_PAGEINFO_ADDRESS, |
| 429 | UTF8ToUTF16(cert->subject().locality_name), |
| 430 | UTF8ToUTF16(cert->subject().state_or_province_name), |
| 431 | UTF8ToUTF16(cert->subject().country_name)); |
| 432 | } else { |
| 433 | locality = l10n_util::GetStringFUTF16( |
| 434 | IDS_PAGEINFO_PARTIAL_ADDRESS, |
| 435 | UTF8ToUTF16(cert->subject().locality_name), |
| 436 | UTF8ToUTF16(cert->subject().country_name)); |
| 437 | } |
| 438 | DCHECK(!cert->subject().organization_names.empty()); |
| 439 | site_identity_details_.assign(l10n_util::GetStringFUTF16( |
| 440 | GetSiteIdentityDetailsMessageByCTInfo( |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 441 | security_info.sct_verify_statuses, true /* is EV */), |
| 442 | UTF8ToUTF16(cert->subject().organization_names[0]), locality, |
rsleevi | 4f801272 | 2014-09-30 01:28:01 | [diff] [blame] | 443 | UTF8ToUTF16(cert->issuer().GetDisplayName()))); |
| 444 | } else { |
| 445 | // Non-EV OK HTTPS page. |
| 446 | site_identity_status_ = GetSiteIdentityStatusByCTInfo( |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 447 | security_info.sct_verify_statuses, false); |
rsleevi | 4f801272 | 2014-09-30 01:28:01 | [diff] [blame] | 448 | base::string16 issuer_name( |
| 449 | UTF8ToUTF16(cert->issuer().GetDisplayName())); |
| 450 | if (issuer_name.empty()) { |
| 451 | issuer_name.assign(l10n_util::GetStringUTF16( |
| 452 | IDS_PAGE_INFO_SECURITY_TAB_UNKNOWN_PARTY)); |
| 453 | } |
[email protected] | 94c74b4 | 2013-12-02 15:19:49 | [diff] [blame] | 454 | |
rsleevi | 4f801272 | 2014-09-30 01:28:01 | [diff] [blame] | 455 | site_identity_details_.assign(l10n_util::GetStringFUTF16( |
| 456 | GetSiteIdentityDetailsMessageByCTInfo( |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 457 | security_info.sct_verify_statuses, false /* not EV */), |
rsleevi | 4f801272 | 2014-09-30 01:28:01 | [diff] [blame] | 458 | issuer_name)); |
| 459 | } |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 460 | if (security_info.sha1_deprecation_status != |
| 461 | SecurityStateModel::NO_DEPRECATED_SHA1) { |
rsleevi | 4f801272 | 2014-09-30 01:28:01 | [diff] [blame] | 462 | site_identity_status_ = |
| 463 | SITE_IDENTITY_STATUS_DEPRECATED_SIGNATURE_ALGORITHM; |
| 464 | site_identity_details_ += |
| 465 | UTF8ToUTF16("\n\n") + |
| 466 | l10n_util::GetStringUTF16( |
| 467 | IDS_PAGE_INFO_SECURITY_TAB_DEPRECATED_SIGNATURE_ALGORITHM); |
| 468 | } |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 469 | } |
| 470 | } else { |
| 471 | // HTTP or HTTPS with errors (not warnings). |
| 472 | site_identity_details_.assign(l10n_util::GetStringUTF16( |
| 473 | IDS_PAGE_INFO_SECURITY_TAB_INSECURE_IDENTITY)); |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 474 | if (!security_info.scheme_is_cryptographic || !security_info.cert_id) |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 475 | site_identity_status_ = SITE_IDENTITY_STATUS_NO_CERT; |
| 476 | else |
| 477 | site_identity_status_ = SITE_IDENTITY_STATUS_ERROR; |
| 478 | |
[email protected] | a04db82 | 2013-12-11 19:14:40 | [diff] [blame] | 479 | const base::string16 bullet = UTF8ToUTF16("\n • "); |
felt | 2493b445 | 2015-09-17 20:33:59 | [diff] [blame] | 480 | std::vector<ssl_errors::ErrorInfo> errors; |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 481 | ssl_errors::ErrorInfo::GetErrorsForCertStatus( |
| 482 | cert, security_info.cert_status, url, &errors); |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 483 | for (size_t i = 0; i < errors.size(); ++i) { |
| 484 | site_identity_details_ += bullet; |
| 485 | site_identity_details_ += errors[i].short_description(); |
| 486 | } |
| 487 | |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 488 | if (security_info.cert_status & net::CERT_STATUS_NON_UNIQUE_NAME) { |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 489 | site_identity_details_ += ASCIIToUTF16("\n\n"); |
| 490 | site_identity_details_ += l10n_util::GetStringUTF16( |
| 491 | IDS_PAGE_INFO_SECURITY_TAB_NON_UNIQUE_NAME); |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | // Site Connection |
| 496 | // We consider anything less than 80 bits encryption to be weak encryption. |
| 497 | // TODO(wtc): Bug 1198735: report mixed/unsafe content for unencrypted and |
| 498 | // weakly encrypted connections. |
| 499 | site_connection_status_ = SITE_CONNECTION_STATUS_UNKNOWN; |
| 500 | |
palmer | 153af98 | 2015-09-15 02:04:19 | [diff] [blame] | 501 | base::string16 subject_name(GetSimpleSiteName(url, profile_)); |
| 502 | if (subject_name.empty()) { |
| 503 | subject_name.assign( |
| 504 | l10n_util::GetStringUTF16(IDS_PAGE_INFO_SECURITY_TAB_UNKNOWN_PARTY)); |
| 505 | } |
| 506 | |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 507 | if (!security_info.cert_id || !security_info.scheme_is_cryptographic) { |
| 508 | // Page is still loading (so SSL status is not yet available) or |
| 509 | // loaded over HTTP or loaded over HTTPS with no cert. |
[email protected] | 1c1051d | 2014-05-10 11:39:58 | [diff] [blame] | 510 | site_connection_status_ = SITE_CONNECTION_STATUS_UNENCRYPTED; |
| 511 | |
| 512 | site_connection_details_.assign(l10n_util::GetStringFUTF16( |
| 513 | IDS_PAGE_INFO_SECURITY_TAB_NOT_ENCRYPTED_CONNECTION_TEXT, |
| 514 | subject_name)); |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 515 | } else if (security_info.security_bits < 0) { |
| 516 | // Security strength is unknown. Say nothing. |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 517 | site_connection_status_ = SITE_CONNECTION_STATUS_ENCRYPTED_ERROR; |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 518 | } else if (security_info.security_bits == 0) { |
| 519 | DCHECK_NE(security_info.security_level, SecurityStateModel::NONE); |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 520 | site_connection_status_ = SITE_CONNECTION_STATUS_ENCRYPTED_ERROR; |
| 521 | site_connection_details_.assign(l10n_util::GetStringFUTF16( |
| 522 | IDS_PAGE_INFO_SECURITY_TAB_NOT_ENCRYPTED_CONNECTION_TEXT, |
| 523 | subject_name)); |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 524 | } else { |
| 525 | site_connection_status_ = SITE_CONNECTION_STATUS_ENCRYPTED; |
Adam Langley | 71c2b59b | 2014-11-13 00:34:22 | [diff] [blame] | 526 | |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 527 | if (net::SSLConnectionStatusToVersion(security_info.connection_status) >= |
Adam Langley | 71c2b59b | 2014-11-13 00:34:22 | [diff] [blame] | 528 | net::SSL_CONNECTION_VERSION_TLS1_2 && |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 529 | net::IsSecureTLSCipherSuite(net::SSLConnectionStatusToCipherSuite( |
| 530 | security_info.connection_status))) { |
Adam Langley | 71c2b59b | 2014-11-13 00:34:22 | [diff] [blame] | 531 | site_connection_details_.assign(l10n_util::GetStringFUTF16( |
| 532 | IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTED_CONNECTION_TEXT, |
| 533 | subject_name)); |
| 534 | } else { |
| 535 | site_connection_details_.assign(l10n_util::GetStringFUTF16( |
| 536 | IDS_PAGE_INFO_SECURITY_TAB_WEAK_ENCRYPTION_CONNECTION_TEXT, |
| 537 | subject_name)); |
| 538 | } |
| 539 | |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 540 | if (security_info.mixed_content_status != |
| 541 | SecurityStateModel::NO_MIXED_CONTENT) { |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 542 | bool ran_insecure_content = |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 543 | (security_info.mixed_content_status == |
| 544 | SecurityStateModel::RAN_MIXED_CONTENT || |
| 545 | security_info.mixed_content_status == |
| 546 | SecurityStateModel::RAN_AND_DISPLAYED_MIXED_CONTENT); |
palmer | cc7f5f8c | 2015-09-04 01:02:59 | [diff] [blame] | 547 | site_connection_status_ = ran_insecure_content |
| 548 | ? SITE_CONNECTION_STATUS_MIXED_SCRIPT |
| 549 | : SITE_CONNECTION_STATUS_MIXED_CONTENT; |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 550 | site_connection_details_.assign(l10n_util::GetStringFUTF16( |
| 551 | IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTED_SENTENCE_LINK, |
| 552 | site_connection_details_, |
| 553 | l10n_util::GetStringUTF16(ran_insecure_content ? |
| 554 | IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTED_INSECURE_CONTENT_ERROR : |
| 555 | IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTED_INSECURE_CONTENT_WARNING))); |
| 556 | } |
| 557 | } |
| 558 | |
| 559 | uint16 cipher_suite = |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 560 | net::SSLConnectionStatusToCipherSuite(security_info.connection_status); |
| 561 | if (security_info.security_bits > 0 && cipher_suite) { |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 562 | int ssl_version = |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 563 | net::SSLConnectionStatusToVersion(security_info.connection_status); |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 564 | const char* ssl_version_str; |
| 565 | net::SSLVersionToString(&ssl_version_str, ssl_version); |
| 566 | site_connection_details_ += ASCIIToUTF16("\n\n"); |
| 567 | site_connection_details_ += l10n_util::GetStringFUTF16( |
| 568 | IDS_PAGE_INFO_SECURITY_TAB_SSL_VERSION, |
| 569 | ASCIIToUTF16(ssl_version_str)); |
| 570 | |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 571 | bool no_renegotiation = |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 572 | (security_info.connection_status & |
| 573 | net::SSL_CONNECTION_NO_RENEGOTIATION_EXTENSION) != 0; |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 574 | const char *key_exchange, *cipher, *mac; |
[email protected] | b6c1d9e8 | 2013-06-12 17:26:57 | [diff] [blame] | 575 | bool is_aead; |
| 576 | net::SSLCipherSuiteToStrings( |
| 577 | &key_exchange, &cipher, &mac, &is_aead, cipher_suite); |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 578 | |
| 579 | site_connection_details_ += ASCIIToUTF16("\n\n"); |
[email protected] | b6c1d9e8 | 2013-06-12 17:26:57 | [diff] [blame] | 580 | if (is_aead) { |
| 581 | site_connection_details_ += l10n_util::GetStringFUTF16( |
| 582 | IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTION_DETAILS_AEAD, |
| 583 | ASCIIToUTF16(cipher), ASCIIToUTF16(key_exchange)); |
| 584 | } else { |
| 585 | site_connection_details_ += l10n_util::GetStringFUTF16( |
| 586 | IDS_PAGE_INFO_SECURITY_TAB_ENCRYPTION_DETAILS, |
| 587 | ASCIIToUTF16(cipher), ASCIIToUTF16(mac), ASCIIToUTF16(key_exchange)); |
| 588 | } |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 589 | |
agl | 078d210 | 2014-10-20 22:03:22 | [diff] [blame] | 590 | if (ssl_version == net::SSL_CONNECTION_VERSION_SSL3 && |
| 591 | site_connection_status_ < SITE_CONNECTION_STATUS_MIXED_CONTENT) { |
| 592 | site_connection_status_ = SITE_CONNECTION_STATUS_ENCRYPTED_ERROR; |
| 593 | } |
| 594 | |
estark | a3121f6b | 2015-09-18 21:15:59 | [diff] [blame^] | 595 | const bool did_fallback = (security_info.connection_status & |
| 596 | net::SSL_CONNECTION_VERSION_FALLBACK) != 0; |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 597 | if (did_fallback) { |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 598 | site_connection_details_ += ASCIIToUTF16("\n\n"); |
| 599 | site_connection_details_ += l10n_util::GetStringUTF16( |
| 600 | IDS_PAGE_INFO_SECURITY_TAB_FALLBACK_MESSAGE); |
| 601 | } |
agl | 078d210 | 2014-10-20 22:03:22 | [diff] [blame] | 602 | |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 603 | if (no_renegotiation) { |
| 604 | site_connection_details_ += ASCIIToUTF16("\n\n"); |
| 605 | site_connection_details_ += l10n_util::GetStringUTF16( |
| 606 | IDS_PAGE_INFO_SECURITY_TAB_RENEGOTIATION_MESSAGE); |
| 607 | } |
| 608 | } |
[email protected] | e583f75 | 2012-08-30 13:26:21 | [diff] [blame] | 609 | |
[email protected] | 71cd5ef | 2014-08-13 21:22:04 | [diff] [blame] | 610 | // Check if a user decision has been made to allow or deny certificates with |
| 611 | // errors on this site. |
| 612 | ChromeSSLHostStateDelegate* delegate = |
estark | 7c6bfbf | 2015-09-16 22:20:50 | [diff] [blame] | 613 | ChromeSSLHostStateDelegateFactory::GetForProfile(profile_); |
[email protected] | 71cd5ef | 2014-08-13 21:22:04 | [diff] [blame] | 614 | DCHECK(delegate); |
jww | f806c36 | 2015-06-02 02:00:40 | [diff] [blame] | 615 | // Only show an SSL decision revoke button if the user has chosen to bypass |
| 616 | // SSL host errors for this host in the past. |
| 617 | show_ssl_decision_revoke_button_ = delegate->HasAllowException(url.host()); |
[email protected] | 71cd5ef | 2014-08-13 21:22:04 | [diff] [blame] | 618 | |
palmer | 82b1f7b | 2015-09-17 19:20:41 | [diff] [blame] | 619 | // By default select the Permissions Tab that displays all the site |
| 620 | // permissions. In case of a connection error or an issue with the certificate |
| 621 | // presented by the website, select the Connection Tab to draw the user's |
| 622 | // attention to the issue. If the site does not provide a certificate because |
| 623 | // it was loaded over an unencrypted connection, don't select the Connection |
| 624 | // Tab. |
[email protected] | e583f75 | 2012-08-30 13:26:21 | [diff] [blame] | 625 | WebsiteSettingsUI::TabId tab_id = WebsiteSettingsUI::TAB_ID_PERMISSIONS; |
| 626 | if (site_connection_status_ == SITE_CONNECTION_STATUS_ENCRYPTED_ERROR || |
| 627 | site_connection_status_ == SITE_CONNECTION_STATUS_MIXED_CONTENT || |
estark | f62683e | 2015-09-17 17:52:06 | [diff] [blame] | 628 | site_connection_status_ == SITE_CONNECTION_STATUS_MIXED_SCRIPT || |
[email protected] | e583f75 | 2012-08-30 13:26:21 | [diff] [blame] | 629 | site_identity_status_ == SITE_IDENTITY_STATUS_ERROR || |
[email protected] | eaf3f32 | 2013-04-25 21:53:59 | [diff] [blame] | 630 | site_identity_status_ == SITE_IDENTITY_STATUS_CERT_REVOCATION_UNKNOWN || |
rsleevi | 4f801272 | 2014-09-30 01:28:01 | [diff] [blame] | 631 | site_identity_status_ == SITE_IDENTITY_STATUS_ADMIN_PROVIDED_CERT || |
| 632 | site_identity_status_ == |
lgarron | 04a9350 | 2014-11-04 22:25:04 | [diff] [blame] | 633 | SITE_IDENTITY_STATUS_DEPRECATED_SIGNATURE_ALGORITHM) { |
[email protected] | e583f75 | 2012-08-30 13:26:21 | [diff] [blame] | 634 | tab_id = WebsiteSettingsUI::TAB_ID_CONNECTION; |
lgarron | 04a9350 | 2014-11-04 22:25:04 | [diff] [blame] | 635 | RecordWebsiteSettingsAction( |
| 636 | WEBSITE_SETTINGS_CONNECTION_TAB_SHOWN_IMMEDIATELY); |
| 637 | } |
palmer | 82b1f7b | 2015-09-17 19:20:41 | [diff] [blame] | 638 | |
[email protected] | e583f75 | 2012-08-30 13:26:21 | [diff] [blame] | 639 | ui_->SetSelectedTab(tab_id); |
[email protected] | 03ef4b2a | 2012-03-06 15:04:20 | [diff] [blame] | 640 | } |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 641 | |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 642 | void WebsiteSettings::PresentSitePermissions() { |
| 643 | PermissionInfoList permission_info_list; |
| 644 | |
| 645 | WebsiteSettingsUI::PermissionInfo permission_info; |
| 646 | for (size_t i = 0; i < arraysize(kPermissionType); ++i) { |
| 647 | permission_info.type = kPermissionType[i]; |
| 648 | |
| 649 | content_settings::SettingInfo info; |
sashab | 2b2a314f | 2015-01-17 06:42:21 | [diff] [blame] | 650 | scoped_ptr<base::Value> value = |
raymes | 7dec6d86 | 2015-07-27 07:02:08 | [diff] [blame] | 651 | content_settings_->GetWebsiteSetting( |
sashab | 2b2a314f | 2015-01-17 06:42:21 | [diff] [blame] | 652 | site_url_, site_url_, permission_info.type, std::string(), &info); |
| 653 | DCHECK(value.get()); |
| 654 | if (value->GetType() == base::Value::TYPE_INTEGER) { |
| 655 | permission_info.setting = |
| 656 | content_settings::ValueToContentSetting(value.get()); |
[email protected] | fe4686a | 2012-10-19 15:38:26 | [diff] [blame] | 657 | } else { |
sashab | 2b2a314f | 2015-01-17 06:42:21 | [diff] [blame] | 658 | NOTREACHED(); |
[email protected] | fe4686a | 2012-10-19 15:38:26 | [diff] [blame] | 659 | } |
| 660 | |
[email protected] | 8bdf45c3 | 2012-08-04 00:12:55 | [diff] [blame] | 661 | permission_info.source = info.source; |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 662 | |
[email protected] | b1d113d | 2012-06-27 21:27:34 | [diff] [blame] | 663 | if (info.primary_pattern == ContentSettingsPattern::Wildcard() && |
sashab | 2b2a314f | 2015-01-17 06:42:21 | [diff] [blame] | 664 | info.secondary_pattern == ContentSettingsPattern::Wildcard()) { |
[email protected] | b1d113d | 2012-06-27 21:27:34 | [diff] [blame] | 665 | permission_info.default_setting = permission_info.setting; |
| 666 | permission_info.setting = CONTENT_SETTING_DEFAULT; |
| 667 | } else { |
| 668 | permission_info.default_setting = |
| 669 | content_settings_->GetDefaultContentSetting(permission_info.type, |
| 670 | NULL); |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 671 | } |
palmer | 0da10b3 | 2015-02-11 00:42:19 | [diff] [blame] | 672 | |
| 673 | if (permission_info.setting != CONTENT_SETTING_DEFAULT && |
| 674 | permission_info.setting != permission_info.default_setting) { |
| 675 | permission_info_list.push_back(permission_info); |
| 676 | } |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | ui_->SetPermissionInfo(permission_info_list); |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 680 | } |
| 681 | |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 682 | void WebsiteSettings::PresentSiteData() { |
| 683 | CookieInfoList cookie_info_list; |
vabr | d5e30cd | 2014-10-02 11:06:03 | [diff] [blame] | 684 | const LocalSharedObjectsCounter& allowed_objects = |
[email protected] | e0ac3589 | 2012-05-15 12:53:34 | [diff] [blame] | 685 | tab_specific_content_settings()->allowed_local_shared_objects(); |
vabr | d5e30cd | 2014-10-02 11:06:03 | [diff] [blame] | 686 | const LocalSharedObjectsCounter& blocked_objects = |
[email protected] | e0ac3589 | 2012-05-15 12:53:34 | [diff] [blame] | 687 | tab_specific_content_settings()->blocked_local_shared_objects(); |
| 688 | |
| 689 | // Add first party cookie and site data counts. |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 690 | WebsiteSettingsUI::CookieInfo cookie_info; |
palmer | b14526492 | 2015-08-28 23:53:15 | [diff] [blame] | 691 | cookie_info.cookie_source = |
| 692 | l10n_util::GetStringUTF8(IDS_WEBSITE_SETTINGS_FIRST_PARTY_SITE_DATA); |
[email protected] | e0ac3589 | 2012-05-15 12:53:34 | [diff] [blame] | 693 | cookie_info.allowed = allowed_objects.GetObjectCountForDomain(site_url_); |
| 694 | cookie_info.blocked = blocked_objects.GetObjectCountForDomain(site_url_); |
palmer | b14526492 | 2015-08-28 23:53:15 | [diff] [blame] | 695 | cookie_info.is_first_party = true; |
[email protected] | e0ac3589 | 2012-05-15 12:53:34 | [diff] [blame] | 696 | cookie_info_list.push_back(cookie_info); |
| 697 | |
| 698 | // Add third party cookie counts. |
| 699 | cookie_info.cookie_source = l10n_util::GetStringUTF8( |
| 700 | IDS_WEBSITE_SETTINGS_THIRD_PARTY_SITE_DATA); |
| 701 | cookie_info.allowed = allowed_objects.GetObjectCount() - cookie_info.allowed; |
| 702 | cookie_info.blocked = blocked_objects.GetObjectCount() - cookie_info.blocked; |
palmer | b14526492 | 2015-08-28 23:53:15 | [diff] [blame] | 703 | cookie_info.is_first_party = false; |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 704 | cookie_info_list.push_back(cookie_info); |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 705 | |
[email protected] | df81827 | 2012-04-20 13:10:50 | [diff] [blame] | 706 | ui_->SetCookieInfo(cookie_info_list); |
[email protected] | 0b9fdd7 | 2012-04-04 10:00:33 | [diff] [blame] | 707 | } |
[email protected] | 16de6de | 2012-04-04 12:24:14 | [diff] [blame] | 708 | |
[email protected] | 24c8818c | 2012-04-25 09:57:41 | [diff] [blame] | 709 | void WebsiteSettings::PresentSiteIdentity() { |
palmer | f9b680a | 2015-07-09 18:56:04 | [diff] [blame] | 710 | // After initialization the status about the site's connection and its |
| 711 | // identity must be available. |
[email protected] | 24c8818c | 2012-04-25 09:57:41 | [diff] [blame] | 712 | DCHECK_NE(site_identity_status_, SITE_IDENTITY_STATUS_UNKNOWN); |
| 713 | DCHECK_NE(site_connection_status_, SITE_CONNECTION_STATUS_UNKNOWN); |
| 714 | WebsiteSettingsUI::IdentityInfo info; |
| 715 | if (site_identity_status_ == SITE_IDENTITY_STATUS_EV_CERT) |
| 716 | info.site_identity = UTF16ToUTF8(organization_name()); |
| 717 | else |
palmer | 153af98 | 2015-09-15 02:04:19 | [diff] [blame] | 718 | info.site_identity = UTF16ToUTF8(GetSimpleSiteName(site_url_, profile_)); |
[email protected] | 24c8818c | 2012-04-25 09:57:41 | [diff] [blame] | 719 | |
| 720 | info.connection_status = site_connection_status_; |
| 721 | info.connection_status_description = |
| 722 | UTF16ToUTF8(site_connection_details_); |
| 723 | info.identity_status = site_identity_status_; |
| 724 | info.identity_status_description = |
| 725 | UTF16ToUTF8(site_identity_details_); |
[email protected] | f61c1ce | 2012-05-09 13:55:11 | [diff] [blame] | 726 | info.cert_id = cert_id_; |
[email protected] | 71cd5ef | 2014-08-13 21:22:04 | [diff] [blame] | 727 | info.show_ssl_decision_revoke_button = show_ssl_decision_revoke_button_; |
[email protected] | 24c8818c | 2012-04-25 09:57:41 | [diff] [blame] | 728 | ui_->SetIdentityInfo(info); |
| 729 | } |