blob: d3b3d73558211e2725f0c8d94b933a639fef8110 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/security_interstitials/content/bad_clock_blocking_page.h"
#include <utility>
#include "base/strings/string_number_conversions.h"
#include "components/safe_browsing/core/common/safe_browsing_prefs.h"
#include "components/security_interstitials/content/cert_report_helper.h"
#include "components/security_interstitials/content/security_interstitial_controller_client.h"
#include "components/security_interstitials/content/ssl_cert_reporter.h"
#include "components/security_interstitials/core/bad_clock_ui.h"
#include "components/security_interstitials/core/metrics_helper.h"
#include "content/public/browser/interstitial_page.h"
#include "content/public/browser/interstitial_page_delegate.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/ssl_status.h"
#include "content/public/browser/web_contents.h"
#include "net/base/net_errors.h"
using content::InterstitialPageDelegate;
using content::NavigationController;
using content::NavigationEntry;
// static
const InterstitialPageDelegate::TypeID BadClockBlockingPage::kTypeForTesting =
&BadClockBlockingPage::kTypeForTesting;
// Note that we always create a navigation entry with SSL errors.
// No error happening loading a sub-resource triggers an interstitial so far.
// Creating an interstitial without showing (e.g. from chrome://interstitials)
// it leaks memory, so don't create it here.
BadClockBlockingPage::BadClockBlockingPage(
content::WebContents* web_contents,
int cert_error,
const net::SSLInfo& ssl_info,
const GURL& request_url,
const base::Time& time_triggered,
ssl_errors::ClockState clock_state,
std::unique_ptr<SSLCertReporter> ssl_cert_reporter,
std::unique_ptr<
security_interstitials::SecurityInterstitialControllerClient>
controller_client)
: SSLBlockingPageBase(web_contents,
CertificateErrorReport::INTERSTITIAL_CLOCK,
ssl_info,
request_url,
std::move(ssl_cert_reporter),
false /* overridable */,
time_triggered,
std::move(controller_client)),
ssl_info_(ssl_info),
bad_clock_ui_(new security_interstitials::BadClockUI(request_url,
cert_error,
ssl_info,
time_triggered,
clock_state,
controller())) {}
BadClockBlockingPage::~BadClockBlockingPage() = default;
bool BadClockBlockingPage::ShouldCreateNewNavigation() const {
return true;
}
InterstitialPageDelegate::TypeID BadClockBlockingPage::GetTypeForTesting() {
return BadClockBlockingPage::kTypeForTesting;
}
void BadClockBlockingPage::PopulateInterstitialStrings(
base::DictionaryValue* load_time_data) {
bad_clock_ui_->PopulateStringsForHTML(load_time_data);
cert_report_helper()->PopulateExtendedReportingOption(load_time_data);
}
void BadClockBlockingPage::OverrideEntry(NavigationEntry* entry) {
entry->GetSSL() = content::SSLStatus(ssl_info_);
}
// This handles the commands sent from the interstitial JavaScript.
void BadClockBlockingPage::CommandReceived(const std::string& command) {
if (command == "\"pageLoadComplete\"") {
// content::WaitForRenderFrameReady sends this message when the page
// load completes. Ignore it.
return;
}
int cmd = 0;
bool retval = base::StringToInt(command, &cmd);
DCHECK(retval);
// Let the CertReportHelper handle commands first, This allows it to get set
// up to send reports, so that the report is populated properly if
// BadClockErrorUI's command handling triggers a report to be sent.
cert_report_helper()->HandleReportingCommands(
static_cast<security_interstitials::SecurityInterstitialCommand>(cmd),
controller()->GetPrefService());
bad_clock_ui_->HandleCommand(
static_cast<security_interstitials::SecurityInterstitialCommand>(cmd));
}