1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/safe_browsing/content/browser/base_blocking_page.h"
#include <cstddef>
#include <memory>
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/lazy_instance.h"
#include "base/strings/string_number_conversions.h"
#include "base/time/time.h"
#include "components/safe_browsing/content/browser/async_check_tracker.h"
#include "components/safe_browsing/content/browser/content_unsafe_resource_util.h"
#include "components/safe_browsing/content/browser/safe_browsing_controller_client.h"
#include "components/safe_browsing/core/common/features.h"
#include "components/safe_browsing/core/common/safe_browsing_prefs.h"
#include "components/safe_browsing/core/common/utils.h"
#include "components/security_interstitials/content/security_interstitial_controller_client.h"
#include "components/security_interstitials/content/settings_page_helper.h"
#include "components/security_interstitials/core/metrics_helper.h"
#include "components/security_interstitials/core/safe_browsing_loud_error_ui.h"
#include "components/security_interstitials/core/unsafe_resource.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/web_contents.h"
using content::WebContents;
using security_interstitials::BaseSafeBrowsingErrorUI;
using security_interstitials::SafeBrowsingLoudErrorUI;
using security_interstitials::SecurityInterstitialControllerClient;
namespace safe_browsing {
namespace {
// After a safe browsing interstitial where the user opted-in to the report
// but clicked "proceed anyway", we delay the call to
// ThreatDetails::FinishCollection() by this much time (in
// milliseconds).
const int64_t kThreatDetailsProceedDelayMilliSeconds = 3000;
base::LazyInstance<BaseBlockingPage::UnsafeResourceMap>::Leaky
g_unsafe_resource_map = LAZY_INSTANCE_INITIALIZER;
} // namespace
BaseBlockingPage::BaseBlockingPage(
BaseUIManager* ui_manager,
WebContents* web_contents,
const GURL& main_frame_url,
const UnsafeResourceList& unsafe_resources,
std::unique_ptr<SecurityInterstitialControllerClient> controller_client,
const BaseSafeBrowsingErrorUI::SBErrorDisplayOptions& display_options)
: SecurityInterstitialPage(web_contents,
unsafe_resources[0].url,
std::move(controller_client)),
ui_manager_(ui_manager),
main_frame_url_(main_frame_url),
navigation_entry_index_to_remove_(-1),
unsafe_resources_(unsafe_resources),
proceeded_(false),
threat_details_proceed_delay_ms_(kThreatDetailsProceedDelayMilliSeconds),
sb_error_ui_(std::make_unique<SafeBrowsingLoudErrorUI>(
unsafe_resources_[0].url,
GetInterstitialReason(unsafe_resources_),
display_options,
ui_manager->app_locale(),
base::Time::NowFromSystemTime(),
controller(),
/* created_prior_to_navigation */
IsMainPageResourceLoadPending(unsafe_resources))) {}
BaseBlockingPage::~BaseBlockingPage() = default;
// static
const security_interstitials::BaseSafeBrowsingErrorUI::SBErrorDisplayOptions
BaseBlockingPage::CreateDefaultDisplayOptions(
const UnsafeResourceList& unsafe_resources) {
return BaseSafeBrowsingErrorUI::SBErrorDisplayOptions(
IsMainPageResourceLoadPending(unsafe_resources),
false, // kSafeBrowsingExtendedReportingOptInAllowed
false, // is_off_the_record
false, // is_extended_reporting
false, // is_sber_policy_managed
false, // is_enhanced_protection_enabled
false, // kSafeBrowsingProceedAnywayDisabled
false, // should_open_links_in_new_tab
true, // always_show_back_to_safety
false, // is_enhanced_protection_message_enabled
false, // is_safe_browsing_managed
"cpn_safe_browsing"); // help_center_article_link
}
// static
bool BaseBlockingPage::IsMainPageResourceLoadPending(
const UnsafeResourceList& unsafe_resources) {
// If there is more than one unsafe resource, the main page load must not be
// pending. Otherwise, check if the one resource is.
return unsafe_resources.size() == 1 &&
AsyncCheckTracker::IsMainPageResourceLoadPending(unsafe_resources[0]);
}
void BaseBlockingPage::SetThreatDetailsProceedDelayForTesting(int64_t delay) {
threat_details_proceed_delay_ms_ = delay;
}
void BaseBlockingPage::CommandReceived(const std::string& page_cmd) {
if (page_cmd == "\"pageLoadComplete\"") {
// content::WaitForRenderFrameReady sends this message when the page
// load completes. Ignore it.
return;
}
int command = 0;
bool retval = base::StringToInt(page_cmd, &command);
DCHECK(retval) << page_cmd;
auto interstitial_command =
static_cast<security_interstitials::SecurityInterstitialCommand>(command);
if (interstitial_command ==
security_interstitials::SecurityInterstitialCommand::CMD_PROCEED) {
// With committed interstitials, OnProceed() doesn't get called, so handle
// adding to the allow list here.
set_proceeded(true);
ui_manager()->OnBlockingPageDone(unsafe_resources(), true /* proceed */,
web_contents(), main_frame_url(),
true /* showed_interstitial */);
}
sb_error_ui_->HandleCommand(interstitial_command);
}
void BaseBlockingPage::PopulateInterstitialStrings(
base::Value::Dict& load_time_data) {
sb_error_ui_->PopulateStringsForHtml(load_time_data);
}
void BaseBlockingPage::FinishThreatDetails(const base::TimeDelta& delay,
bool did_proceed,
int num_visits) {}
// static
BaseBlockingPage::UnsafeResourceMap* BaseBlockingPage::GetUnsafeResourcesMap() {
return g_unsafe_resource_map.Pointer();
}
// static
std::string BaseBlockingPage::GetMetricPrefix(
const UnsafeResourceList& unsafe_resources,
BaseSafeBrowsingErrorUI::SBInterstitialReason interstitial_reason) {
switch (interstitial_reason) {
case BaseSafeBrowsingErrorUI::SB_REASON_MALWARE:
return "malware";
case BaseSafeBrowsingErrorUI::SB_REASON_HARMFUL:
return "harmful";
case BaseSafeBrowsingErrorUI::SB_REASON_BILLING:
return "billing";
case BaseSafeBrowsingErrorUI::SB_REASON_PHISHING:
return "phishing";
}
NOTREACHED();
}
// static
security_interstitials::BaseSafeBrowsingErrorUI::SBInterstitialReason
BaseBlockingPage::GetInterstitialReason(
const UnsafeResourceList& unsafe_resources) {
using enum SBThreatType;
bool harmful = false;
for (auto iter = unsafe_resources.begin(); iter != unsafe_resources.end();
++iter) {
const BaseUIManager::UnsafeResource& resource = *iter;
safe_browsing::SBThreatType threat_type = resource.threat_type;
if (threat_type == SB_THREAT_TYPE_BILLING)
return BaseSafeBrowsingErrorUI::SB_REASON_BILLING;
if (threat_type == SB_THREAT_TYPE_URL_MALWARE) {
return BaseSafeBrowsingErrorUI::SB_REASON_MALWARE;
}
if (threat_type == SB_THREAT_TYPE_URL_UNWANTED) {
harmful = true;
} else {
DCHECK(threat_type == SB_THREAT_TYPE_URL_PHISHING ||
threat_type == SB_THREAT_TYPE_URL_CLIENT_SIDE_PHISHING);
}
}
if (harmful)
return BaseSafeBrowsingErrorUI::SB_REASON_HARMFUL;
return BaseSafeBrowsingErrorUI::SB_REASON_PHISHING;
}
BaseUIManager* BaseBlockingPage::ui_manager() const {
return ui_manager_;
}
const GURL BaseBlockingPage::main_frame_url() const {
return main_frame_url_;
}
BaseBlockingPage::UnsafeResourceList BaseBlockingPage::unsafe_resources()
const {
return unsafe_resources_;
}
bool BaseBlockingPage::proceeded() const {
return proceeded_;
}
int64_t BaseBlockingPage::threat_details_proceed_delay() const {
return threat_details_proceed_delay_ms_;
}
BaseSafeBrowsingErrorUI* BaseBlockingPage::sb_error_ui() const {
return sb_error_ui_.get();
}
void BaseBlockingPage::set_proceeded(bool proceeded) {
proceeded_ = proceeded;
}
// static
security_interstitials::MetricsHelper::ReportDetails
BaseBlockingPage::GetReportingInfo(
const UnsafeResourceList& unsafe_resources,
std::optional<base::TimeTicks> blocked_page_shown_timestamp) {
BaseSafeBrowsingErrorUI::SBInterstitialReason interstitial_reason =
GetInterstitialReason(unsafe_resources);
security_interstitials::MetricsHelper::ReportDetails reporting_info;
reporting_info.metric_prefix =
GetMetricPrefix(unsafe_resources, interstitial_reason);
CHECK_GE(unsafe_resources.size(), 1u);
reporting_info.extra_suffix = GetExtraMetricsSuffix(unsafe_resources[0]);
// When the subtype expands to more threat_source and the CHECK below is hit,
// define new histograms in xml file to represent the change.
if (unsafe_resources[0].threat_source ==
ThreatSource::CLIENT_SIDE_DETECTION) {
reporting_info.extra_extra_suffix =
GetExtraExtraMetricsSuffix(unsafe_resources[0]);
}
if (unsafe_resources[0].threat_subtype !=
safe_browsing::ThreatSubtype::UNKNOWN) {
CHECK_EQ(unsafe_resources[0].threat_source,
ThreatSource::CLIENT_SIDE_DETECTION);
}
reporting_info.blocked_page_shown_timestamp = blocked_page_shown_timestamp;
return reporting_info;
}
// static
std::unique_ptr<SecurityInterstitialControllerClient>
BaseBlockingPage::CreateControllerClient(
content::WebContents* web_contents,
const UnsafeResourceList& unsafe_resources,
BaseUIManager* ui_manager,
PrefService* pref_service,
std::unique_ptr<security_interstitials::SettingsPageHelper>
settings_page_helper,
std::optional<base::TimeTicks> blocked_page_shown_timestamp) {
history::HistoryService* history_service =
ui_manager->history_service(web_contents);
std::unique_ptr<security_interstitials::MetricsHelper> metrics_helper =
std::make_unique<security_interstitials::MetricsHelper>(
unsafe_resources[0].url,
GetReportingInfo(unsafe_resources, blocked_page_shown_timestamp),
history_service);
return std::make_unique<SafeBrowsingControllerClient>(
web_contents, std::move(metrics_helper), pref_service,
ui_manager->app_locale(), ui_manager->default_safe_page(),
std::move(settings_page_helper));
}
int BaseBlockingPage::GetHTMLTemplateId() {
return sb_error_ui_->GetHTMLTemplateId();
}
void BaseBlockingPage::set_sb_error_ui(
std::unique_ptr<BaseSafeBrowsingErrorUI> sb_error_ui) {
sb_error_ui_ = std::move(sb_error_ui);
}
void BaseBlockingPage::OnDontProceedDone() {
if (!sb_error_ui_->is_proceed_anyway_disabled()) {
controller()->metrics_helper()->RecordUserDecision(
security_interstitials::MetricsHelper::DONT_PROCEED);
}
ui_manager_->OnBlockingPageDone(unsafe_resources_, false /* proceed */,
web_contents(), main_frame_url_,
true /* showed_interstitial */);
// The user does not want to proceed, clear the queued unsafe resources
// notifications we received while the interstitial was showing.
UnsafeResourceMap* unsafe_resource_map = GetUnsafeResourcesMap();
auto iter = unsafe_resource_map->find(web_contents());
if (iter != unsafe_resource_map->end() && !iter->second.empty()) {
ui_manager_->OnBlockingPageDone(iter->second, false, web_contents(),
main_frame_url_,
true /* showed_interstitial */);
unsafe_resource_map->erase(iter);
}
// We don't remove the navigation entry if the tab is being destroyed as this
// would trigger a navigation that would cause trouble as the render view host
// for the tab has by then already been destroyed. We also don't delete the
// current entry if it has been committed again, which is possible on a page
// that had a subresource warning.
const int last_committed_index =
web_contents()->GetController().GetLastCommittedEntryIndex();
if (navigation_entry_index_to_remove_ != -1 &&
navigation_entry_index_to_remove_ != last_committed_index &&
!web_contents()->IsBeingDestroyed()) {
CHECK(web_contents()->GetController().RemoveEntryAtIndex(
navigation_entry_index_to_remove_));
}
}
// static
bool BaseBlockingPage::ShouldReportThreatDetails(SBThreatType threat_type) {
using enum SBThreatType;
return threat_type == SB_THREAT_TYPE_BILLING ||
threat_type == SB_THREAT_TYPE_URL_CLIENT_SIDE_PHISHING ||
threat_type == SB_THREAT_TYPE_URL_MALWARE ||
threat_type == SB_THREAT_TYPE_URL_PHISHING ||
threat_type == SB_THREAT_TYPE_URL_UNWANTED;
}
} // namespace safe_browsing
|