// Copyright (c) 2012 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 "content/browser/ssl/ssl_manager.h" #include #include "base/bind.h" #include "base/strings/utf_string_conversions.h" #include "base/supports_user_data.h" #include "content/browser/frame_host/navigation_entry_impl.h" #include "content/browser/loader/resource_dispatcher_host_impl.h" #include "content/browser/loader/resource_request_info_impl.h" #include "content/browser/ssl/ssl_cert_error_handler.h" #include "content/browser/ssl/ssl_policy.h" #include "content/browser/ssl/ssl_request_info.h" #include "content/browser/web_contents/web_contents_impl.h" #include "content/common/ssl_status_serialization.h" #include "content/public/browser/browser_context.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/load_from_memory_cache_details.h" #include "content/public/browser/navigation_details.h" #include "content/public/browser/resource_request_details.h" #include "content/public/common/ssl_status.h" #include "net/url_request/url_request.h" namespace content { namespace { const char kSSLManagerKeyName[] = "content_ssl_manager"; class SSLManagerSet : public base::SupportsUserData::Data { public: SSLManagerSet() { } std::set& get() { return set_; } private: std::set set_; DISALLOW_COPY_AND_ASSIGN(SSLManagerSet); }; } // namespace // static void SSLManager::OnSSLCertificateError( const base::WeakPtr& delegate, const ResourceType resource_type, const GURL& url, int render_process_id, int render_frame_id, const net::SSLInfo& ssl_info, bool fatal) { DCHECK(delegate.get()); DVLOG(1) << "OnSSLCertificateError() cert_error: " << net::MapCertStatusToNetError(ssl_info.cert_status) << " resource_type: " << resource_type << " url: " << url.spec() << " render_process_id: " << render_process_id << " render_frame_id: " << render_frame_id << " cert_status: " << std::hex << ssl_info.cert_status; // A certificate error occurred. Construct a SSLCertErrorHandler object and // hand it over to the UI thread for processing. BrowserThread::PostTask( BrowserThread::UI, FROM_HERE, base::Bind(&SSLCertErrorHandler::Dispatch, new SSLCertErrorHandler(delegate, resource_type, url, render_process_id, render_frame_id, ssl_info, fatal))); } // static void SSLManager::NotifySSLInternalStateChanged(BrowserContext* context) { SSLManagerSet* managers = static_cast( context->GetUserData(kSSLManagerKeyName)); for (std::set::iterator i = managers->get().begin(); i != managers->get().end(); ++i) { (*i)->UpdateEntry((*i)->controller()->GetLastCommittedEntry()); } } SSLManager::SSLManager(NavigationControllerImpl* controller) : backend_(controller), policy_(new SSLPolicy(&backend_)), controller_(controller) { DCHECK(controller_); SSLManagerSet* managers = static_cast( controller_->GetBrowserContext()->GetUserData(kSSLManagerKeyName)); if (!managers) { managers = new SSLManagerSet; controller_->GetBrowserContext()->SetUserData(kSSLManagerKeyName, managers); } managers->get().insert(this); } SSLManager::~SSLManager() { SSLManagerSet* managers = static_cast( controller_->GetBrowserContext()->GetUserData(kSSLManagerKeyName)); managers->get().erase(this); } void SSLManager::DidCommitProvisionalLoad(const LoadCommittedDetails& details) { NavigationEntryImpl* entry = controller_->GetLastCommittedEntry(); if (details.is_main_frame) { if (entry) { // Decode the security details. int ssl_cert_id; net::CertStatus ssl_cert_status; int ssl_security_bits; int ssl_connection_status; SignedCertificateTimestampIDStatusList ssl_signed_certificate_timestamp_ids; DeserializeSecurityInfo(details.serialized_security_info, &ssl_cert_id, &ssl_cert_status, &ssl_security_bits, &ssl_connection_status, &ssl_signed_certificate_timestamp_ids); // We may not have an entry if this is a navigation to an initial blank // page. Reset the SSL information and add the new data we have. entry->GetSSL() = SSLStatus(); entry->GetSSL().cert_id = ssl_cert_id; entry->GetSSL().cert_status = ssl_cert_status; entry->GetSSL().security_bits = ssl_security_bits; entry->GetSSL().connection_status = ssl_connection_status; entry->GetSSL().signed_certificate_timestamp_ids = ssl_signed_certificate_timestamp_ids; } } UpdateEntry(entry); } void SSLManager::DidDisplayInsecureContent() { UpdateEntry(controller_->GetLastCommittedEntry()); } void SSLManager::DidRunInsecureContent(const std::string& security_origin) { NavigationEntryImpl* navigation_entry = controller_->GetLastCommittedEntry(); policy()->DidRunInsecureContent(navigation_entry, security_origin); UpdateEntry(navigation_entry); } void SSLManager::DidLoadFromMemoryCache( const LoadFromMemoryCacheDetails& details) { // Simulate loading this resource through the usual path. // Note that we specify SUB_RESOURCE as the resource type as WebCore only // caches sub-resources. // This resource must have been loaded with no filtering because filtered // resouces aren't cachable. scoped_refptr info(new SSLRequestInfo( details.url, RESOURCE_TYPE_SUB_RESOURCE, details.pid, details.cert_id, details.cert_status)); // Simulate loading this resource through the usual path. policy()->OnRequestStarted(info.get()); } void SSLManager::DidStartResourceResponse( const ResourceRequestDetails& details) { scoped_refptr info(new SSLRequestInfo( details.url, details.resource_type, details.origin_child_id, details.ssl_cert_id, details.ssl_cert_status)); // Notify our policy that we started a resource request. Ideally, the // policy should have the ability to cancel the request, but we can't do // that yet. policy()->OnRequestStarted(info.get()); } void SSLManager::DidReceiveResourceRedirect( const ResourceRedirectDetails& details) { // TODO(abarth): Make sure our redirect behavior is correct. If we ever see a // non-HTTPS resource in the redirect chain, we want to trigger // insecure content, even if the redirect chain goes back to // HTTPS. This is because the network attacker can redirect the // HTTP request to https://attacker.com/payload.js. } void SSLManager::UpdateEntry(NavigationEntryImpl* entry) { // We don't always have a navigation entry to update, for example in the // case of the Web Inspector. if (!entry) return; SSLStatus original_ssl_status = entry->GetSSL(); // Copy! WebContentsImpl* contents = static_cast(controller_->delegate()->GetWebContents()); policy()->UpdateEntry(entry, contents); if (!entry->GetSSL().Equals(original_ssl_status)) contents->DidChangeVisibleSSLState(); } } // namespace content