| // Copyright 2016 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/browsing_data/clear_site_data_throttle.h" |
| |
| #include "base/memory/ptr_util.h" |
| #include "base/metrics/histogram_macros.h" |
| #include "base/scoped_observer.h" |
| #include "base/strings/string_split.h" |
| #include "base/strings/string_util.h" |
| #include "base/strings/stringprintf.h" |
| #include "base/values.h" |
| #include "content/browser/service_worker/service_worker_response_info.h" |
| #include "content/public/browser/browser_context.h" |
| #include "content/public/browser/browser_thread.h" |
| #include "content/public/browser/browsing_data_filter_builder.h" |
| #include "content/public/browser/browsing_data_remover.h" |
| #include "content/public/browser/render_frame_host.h" |
| #include "content/public/browser/web_contents.h" |
| #include "content/public/common/origin_util.h" |
| #include "content/public/common/resource_response_info.h" |
| #include "content/public/common/resource_type.h" |
| #include "net/base/load_flags.h" |
| #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
| #include "net/http/http_response_headers.h" |
| #include "net/url_request/redirect_info.h" |
| #include "url/gurl.h" |
| #include "url/origin.h" |
| |
| namespace content { |
| |
| namespace { |
| |
| const char kNameForLogging[] = "ClearSiteDataThrottle"; |
| |
| const char kClearSiteDataHeader[] = "Clear-Site-Data"; |
| |
| // Datatypes. |
| const char kDatatypeCookies[] = "\"cookies\""; |
| const char kDatatypeStorage[] = "\"storage\""; |
| const char kDatatypeCache[] = "\"cache\""; |
| |
| // Pretty-printed log output. |
| const char kConsoleMessageTemplate[] = "Clear-Site-Data header on '%s': %s"; |
| const char kConsoleMessageCleared[] = "Cleared data types: %s."; |
| const char kConsoleMessageDatatypeSeparator[] = ", "; |
| |
| bool IsNavigationRequest(net::URLRequest* request) { |
| const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); |
| return info && IsResourceTypeFrame(info->GetResourceType()); |
| } |
| |
| // Represents the parameters as a single number to be recorded in a histogram. |
| int ParametersMask(bool clear_cookies, bool clear_storage, bool clear_cache) { |
| return static_cast<int>(clear_cookies) * (1 << 0) + |
| static_cast<int>(clear_storage) * (1 << 1) + |
| static_cast<int>(clear_cache) * (1 << 2); |
| } |
| |
| // A helper function to pass an IO thread callback to a method called on |
| // the UI thread. |
| void JumpFromUIToIOThread(base::OnceClosure callback) { |
| DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| BrowserThread::PostTask(BrowserThread::IO, FROM_HERE, std::move(callback)); |
| } |
| |
| // Finds the BrowserContext associated with the request and requests |
| // the actual clearing of data for |origin|. The data types to be deleted |
| // are determined by |clear_cookies|, |clear_storage|, and |clear_cache|. |
| // |web_contents_getter| identifies the WebContents from which the request |
| // originated. Must be run on the UI thread. The |callback| will be executed |
| // on the IO thread. |
| class UIThreadSiteDataClearer : public BrowsingDataRemover::Observer { |
| public: |
| static void Run( |
| const ResourceRequestInfo::WebContentsGetter& web_contents_getter, |
| const url::Origin& origin, |
| bool clear_cookies, |
| bool clear_storage, |
| bool clear_cache, |
| base::OnceClosure callback) { |
| WebContents* web_contents = web_contents_getter.Run(); |
| if (!web_contents) |
| return; |
| |
| (new UIThreadSiteDataClearer(web_contents, origin, clear_cookies, |
| clear_storage, clear_cache, |
| std::move(callback))) |
| ->RunAndDestroySelfWhenDone(); |
| } |
| |
| private: |
| UIThreadSiteDataClearer(const WebContents* web_contents, |
| const url::Origin& origin, |
| bool clear_cookies, |
| bool clear_storage, |
| bool clear_cache, |
| base::OnceClosure callback) |
| : origin_(origin), |
| clear_cookies_(clear_cookies), |
| clear_storage_(clear_storage), |
| clear_cache_(clear_cache), |
| callback_(std::move(callback)), |
| pending_task_count_(0), |
| remover_(nullptr), |
| scoped_observer_(this) { |
| DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| |
| remover_ = BrowserContext::GetBrowsingDataRemover( |
| web_contents->GetBrowserContext()); |
| DCHECK(remover_); |
| scoped_observer_.Add(remover_); |
| } |
| |
| ~UIThreadSiteDataClearer() override {} |
| |
| void RunAndDestroySelfWhenDone() { |
| DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| |
| // Cookies and channel IDs are scoped to |
| // a) eTLD+1 of |origin|'s host if |origin|'s host is a registrable domain |
| // or a subdomain thereof |
| // b) |origin|'s host exactly if it is an IP address or an internal hostname |
| // (e.g. "localhost" or "fileserver"). |
| // TODO(msramek): What about plugin data? |
| if (clear_cookies_) { |
| std::string domain = GetDomainAndRegistry( |
| origin_.host(), |
| net::registry_controlled_domains::INCLUDE_PRIVATE_REGISTRIES); |
| |
| if (domain.empty()) |
| domain = origin_.host(); // IP address or internal hostname. |
| |
| std::unique_ptr<BrowsingDataFilterBuilder> domain_filter_builder( |
| BrowsingDataFilterBuilder::Create( |
| BrowsingDataFilterBuilder::WHITELIST)); |
| domain_filter_builder->AddRegisterableDomain(domain); |
| |
| pending_task_count_++; |
| remover_->RemoveWithFilterAndReply( |
| base::Time(), base::Time::Max(), |
| BrowsingDataRemover::DATA_TYPE_COOKIES | |
| BrowsingDataRemover::DATA_TYPE_CHANNEL_IDS, |
| BrowsingDataRemover::ORIGIN_TYPE_UNPROTECTED_WEB | |
| BrowsingDataRemover::ORIGIN_TYPE_PROTECTED_WEB, |
| std::move(domain_filter_builder), this); |
| } |
| |
| // Delete origin-scoped data. |
| int remove_mask = 0; |
| if (clear_storage_) |
| remove_mask |= BrowsingDataRemover::DATA_TYPE_DOM_STORAGE; |
| if (clear_cache_) |
| remove_mask |= BrowsingDataRemover::DATA_TYPE_CACHE; |
| |
| if (remove_mask) { |
| std::unique_ptr<BrowsingDataFilterBuilder> origin_filter_builder( |
| BrowsingDataFilterBuilder::Create( |
| BrowsingDataFilterBuilder::WHITELIST)); |
| origin_filter_builder->AddOrigin(origin_); |
| |
| pending_task_count_++; |
| remover_->RemoveWithFilterAndReply( |
| base::Time(), base::Time::Max(), remove_mask, |
| BrowsingDataRemover::ORIGIN_TYPE_UNPROTECTED_WEB | |
| BrowsingDataRemover::ORIGIN_TYPE_PROTECTED_WEB, |
| std::move(origin_filter_builder), this); |
| } |
| |
| DCHECK_GT(pending_task_count_, 0); |
| } |
| |
| // BrowsingDataRemover::Observer: |
| void OnBrowsingDataRemoverDone() override { |
| DCHECK(pending_task_count_); |
| if (--pending_task_count_) |
| return; |
| |
| JumpFromUIToIOThread(std::move(callback_)); |
| delete this; |
| } |
| |
| url::Origin origin_; |
| bool clear_cookies_; |
| bool clear_storage_; |
| bool clear_cache_; |
| base::OnceClosure callback_; |
| int pending_task_count_; |
| BrowsingDataRemover* remover_; |
| ScopedObserver<BrowsingDataRemover, BrowsingDataRemover::Observer> |
| scoped_observer_; |
| }; |
| |
| // Outputs a single |formatted_message| on the UI thread. |
| void OutputFormattedMessage(WebContents* web_contents, |
| ConsoleMessageLevel level, |
| const std::string& formatted_text) { |
| if (web_contents) |
| web_contents->GetMainFrame()->AddMessageToConsole(level, formatted_text); |
| } |
| |
| // Outputs |messages| to the console of WebContents retrieved from |
| // |web_contents_getter|. Must be run on the UI thread. |
| void OutputMessagesOnUIThread( |
| const ResourceRequestInfo::WebContentsGetter& web_contents_getter, |
| const std::vector<ClearSiteDataThrottle::ConsoleMessagesDelegate::Message>& |
| messages, |
| const ClearSiteDataThrottle::ConsoleMessagesDelegate:: |
| OutputFormattedMessageFunction& output_formatted_message_function) { |
| DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| |
| WebContents* web_contents = web_contents_getter.Run(); |
| |
| for (const auto& message : messages) { |
| // Prefix each message with |kConsoleMessageTemplate|. |
| output_formatted_message_function.Run( |
| web_contents, message.level, |
| base::StringPrintf(kConsoleMessageTemplate, message.url.spec().c_str(), |
| message.text.c_str())); |
| } |
| } |
| |
| } // namespace |
| |
| //////////////////////////////////////////////////////////////////////////////// |
| // ConsoleMessagesDelegate |
| |
| ClearSiteDataThrottle::ConsoleMessagesDelegate::ConsoleMessagesDelegate() |
| : output_formatted_message_function_(base::Bind(&OutputFormattedMessage)) {} |
| |
| ClearSiteDataThrottle::ConsoleMessagesDelegate::~ConsoleMessagesDelegate() {} |
| |
| void ClearSiteDataThrottle::ConsoleMessagesDelegate::AddMessage( |
| const GURL& url, |
| const std::string& text, |
| ConsoleMessageLevel level) { |
| messages_.push_back({url, text, level}); |
| } |
| |
| void ClearSiteDataThrottle::ConsoleMessagesDelegate::OutputMessages( |
| const ResourceRequestInfo::WebContentsGetter& web_contents_getter) { |
| if (messages_.empty()) |
| return; |
| |
| DCHECK_CURRENTLY_ON(BrowserThread::IO); |
| BrowserThread::PostTask( |
| BrowserThread::UI, FROM_HERE, |
| base::BindOnce(&OutputMessagesOnUIThread, web_contents_getter, |
| std::move(messages_), output_formatted_message_function_)); |
| |
| messages_.clear(); |
| } |
| |
| void ClearSiteDataThrottle::ConsoleMessagesDelegate:: |
| SetOutputFormattedMessageFunctionForTesting( |
| const OutputFormattedMessageFunction& function) { |
| output_formatted_message_function_ = function; |
| } |
| |
| //////////////////////////////////////////////////////////////////////////////// |
| // ClearSiteDataThrottle |
| |
| // static |
| std::unique_ptr<ResourceThrottle> |
| ClearSiteDataThrottle::MaybeCreateThrottleForRequest(net::URLRequest* request) { |
| // The throttle has no purpose if the request has no ResourceRequestInfo, |
| // because we won't be able to determine whose data should be deleted. |
| if (!ResourceRequestInfo::ForRequest(request)) |
| return nullptr; |
| |
| return base::WrapUnique(new ClearSiteDataThrottle( |
| request, base::MakeUnique<ConsoleMessagesDelegate>())); |
| } |
| |
| ClearSiteDataThrottle::~ClearSiteDataThrottle() { |
| // Output the cached console messages. For navigations, we output console |
| // messages when the request is finished rather than in real time, since in |
| // the case of navigations swapping RenderFrameHost would cause the outputs |
| // to disappear. |
| if (IsNavigationRequest(request_)) |
| OutputConsoleMessages(); |
| } |
| |
| const char* ClearSiteDataThrottle::GetNameForLogging() const { |
| return kNameForLogging; |
| } |
| |
| void ClearSiteDataThrottle::WillRedirectRequest( |
| const net::RedirectInfo& redirect_info, |
| bool* defer) { |
| *defer = HandleHeader(); |
| |
| // For subresource requests, console messages are output on every redirect. |
| // If the redirect is deferred, wait until it is resumed. |
| if (!IsNavigationRequest(request_) && !*defer) |
| OutputConsoleMessages(); |
| } |
| |
| void ClearSiteDataThrottle::WillProcessResponse(bool* defer) { |
| *defer = HandleHeader(); |
| |
| // For subresource requests, console messages are output on every redirect. |
| // If the redirect is deferred, wait until it is resumed. |
| if (!IsNavigationRequest(request_) && !*defer) |
| OutputConsoleMessages(); |
| } |
| |
| // static |
| bool ClearSiteDataThrottle::ParseHeaderForTesting( |
| const std::string& header, |
| bool* clear_cookies, |
| bool* clear_storage, |
| bool* clear_cache, |
| ConsoleMessagesDelegate* delegate, |
| const GURL& current_url) { |
| return ClearSiteDataThrottle::ParseHeader( |
| header, clear_cookies, clear_storage, clear_cache, delegate, current_url); |
| } |
| |
| ClearSiteDataThrottle::ClearSiteDataThrottle( |
| net::URLRequest* request, |
| std::unique_ptr<ConsoleMessagesDelegate> delegate) |
| : request_(request), |
| delegate_(std::move(delegate)), |
| weak_ptr_factory_(this) { |
| DCHECK(request_); |
| DCHECK(delegate_); |
| } |
| |
| const GURL& ClearSiteDataThrottle::GetCurrentURL() const { |
| return request_->url(); |
| } |
| |
| const net::HttpResponseHeaders* ClearSiteDataThrottle::GetResponseHeaders() |
| const { |
| return request_->response_headers(); |
| } |
| |
| bool ClearSiteDataThrottle::HandleHeader() { |
| const net::HttpResponseHeaders* headers = GetResponseHeaders(); |
| |
| std::string header_value; |
| if (!headers || |
| !headers->GetNormalizedHeader(kClearSiteDataHeader, &header_value)) { |
| return false; |
| } |
| |
| // Only accept the header on secure non-unique origins. |
| if (!IsOriginSecure(GetCurrentURL())) { |
| delegate_->AddMessage(GetCurrentURL(), |
| "Not supported for insecure origins.", |
| CONSOLE_MESSAGE_LEVEL_ERROR); |
| return false; |
| } |
| |
| url::Origin origin(GetCurrentURL()); |
| if (origin.unique()) { |
| delegate_->AddMessage(GetCurrentURL(), "Not supported for unique origins.", |
| CONSOLE_MESSAGE_LEVEL_ERROR); |
| return false; |
| } |
| |
| // The LOAD_DO_NOT_SAVE_COOKIES flag prohibits the request from doing any |
| // modification to cookies. Clear-Site-Data applies this restriction to other |
| // data types as well. |
| // TODO(msramek): Consider showing a blocked icon via |
| // TabSpecificContentSettings and reporting the action in the "Blocked" |
| // section of the cookies dialog in OIB. |
| if (request_->load_flags() & net::LOAD_DO_NOT_SAVE_COOKIES) { |
| delegate_->AddMessage( |
| GetCurrentURL(), |
| "The request's credentials mode prohibits modifying cookies " |
| "and other local data.", |
| CONSOLE_MESSAGE_LEVEL_ERROR); |
| return false; |
| } |
| |
| // Service workers can handle fetches of third-party resources and inject |
| // arbitrary headers. Ignore responses that came from a service worker, |
| // as supporting Clear-Site-Data would give them the power to delete data from |
| // any website. |
| // See https://w3c.github.io/webappsec-clear-site-data/#service-workers |
| // for more information. |
| const ServiceWorkerResponseInfo* response_info = |
| ServiceWorkerResponseInfo::ForRequest(request_); |
| if (response_info) { |
| ResourceResponseInfo extra_response_info; |
| response_info->GetExtraResponseInfo(&extra_response_info); |
| |
| if (extra_response_info.was_fetched_via_service_worker) { |
| delegate_->AddMessage( |
| GetCurrentURL(), |
| "Ignoring, as the response came from a service worker.", |
| CONSOLE_MESSAGE_LEVEL_ERROR); |
| return false; |
| } |
| } |
| |
| bool clear_cookies; |
| bool clear_storage; |
| bool clear_cache; |
| |
| if (!ClearSiteDataThrottle::ParseHeader(header_value, &clear_cookies, |
| &clear_storage, &clear_cache, |
| delegate_.get(), GetCurrentURL())) { |
| return false; |
| } |
| |
| // If the header is valid, clear the data for this browser context and origin. |
| clearing_started_ = base::TimeTicks::Now(); |
| |
| // Record the call parameters. |
| UMA_HISTOGRAM_ENUMERATION( |
| "Navigation.ClearSiteData.Parameters", |
| ParametersMask(clear_cookies, clear_storage, clear_cache), (1 << 3)); |
| |
| base::WeakPtr<ClearSiteDataThrottle> weak_ptr = |
| weak_ptr_factory_.GetWeakPtr(); |
| |
| // Immediately bind the weak pointer to the current thread (IO). This will |
| // make a potential misuse on the UI thread DCHECK immediately rather than |
| // later when it's correctly used on the IO thread again. |
| weak_ptr.get(); |
| |
| ExecuteClearingTask( |
| origin, clear_cookies, clear_storage, clear_cache, |
| base::BindOnce(&ClearSiteDataThrottle::TaskFinished, weak_ptr)); |
| |
| return true; |
| } |
| |
| // static |
| bool ClearSiteDataThrottle::ParseHeader(const std::string& header, |
| bool* clear_cookies, |
| bool* clear_storage, |
| bool* clear_cache, |
| ConsoleMessagesDelegate* delegate, |
| const GURL& current_url) { |
| if (!base::IsStringASCII(header)) { |
| delegate->AddMessage(current_url, "Must only contain ASCII characters.", |
| CONSOLE_MESSAGE_LEVEL_ERROR); |
| return false; |
| } |
| |
| *clear_cookies = false; |
| *clear_storage = false; |
| *clear_cache = false; |
| |
| std::string type_names; |
| for (const base::StringPiece& type : base::SplitStringPiece( |
| header, ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY)) { |
| bool* data_type = nullptr; |
| |
| if (type == kDatatypeCookies) { |
| data_type = clear_cookies; |
| } else if (type == kDatatypeStorage) { |
| data_type = clear_storage; |
| } else if (type == kDatatypeCache) { |
| data_type = clear_cache; |
| } else { |
| delegate->AddMessage(current_url, |
| base::StringPrintf("Unrecognized type: %s.", |
| type.as_string().c_str()), |
| CONSOLE_MESSAGE_LEVEL_ERROR); |
| continue; |
| } |
| |
| DCHECK(data_type); |
| |
| if (*data_type) |
| continue; |
| |
| *data_type = true; |
| if (!type_names.empty()) |
| type_names += kConsoleMessageDatatypeSeparator; |
| type_names += type.as_string(); |
| } |
| |
| if (!*clear_cookies && !*clear_storage && !*clear_cache) { |
| delegate->AddMessage(current_url, "No recognized types specified.", |
| CONSOLE_MESSAGE_LEVEL_ERROR); |
| return false; |
| } |
| |
| // Pretty-print which types are to be cleared. |
| delegate->AddMessage( |
| current_url, |
| base::StringPrintf(kConsoleMessageCleared, type_names.c_str()), |
| CONSOLE_MESSAGE_LEVEL_INFO); |
| |
| return true; |
| } |
| |
| void ClearSiteDataThrottle::ExecuteClearingTask(const url::Origin& origin, |
| bool clear_cookies, |
| bool clear_storage, |
| bool clear_cache, |
| base::OnceClosure callback) { |
| DCHECK_CURRENTLY_ON(BrowserThread::IO); |
| BrowserThread::PostTask( |
| BrowserThread::UI, FROM_HERE, |
| base::BindOnce(&UIThreadSiteDataClearer::Run, |
| ResourceRequestInfo::ForRequest(request_) |
| ->GetWebContentsGetterForRequest(), |
| origin, clear_cookies, clear_storage, clear_cache, |
| std::move(callback))); |
| } |
| |
| void ClearSiteDataThrottle::TaskFinished() { |
| DCHECK_CURRENTLY_ON(BrowserThread::IO); |
| DCHECK(!clearing_started_.is_null()); |
| |
| UMA_HISTOGRAM_CUSTOM_TIMES("Navigation.ClearSiteData.Duration", |
| base::TimeTicks::Now() - clearing_started_, |
| base::TimeDelta::FromMilliseconds(1), |
| base::TimeDelta::FromSeconds(1), 50); |
| |
| // For subresource requests, console messages are output immediately. |
| if (!IsNavigationRequest(request_)) |
| OutputConsoleMessages(); |
| |
| Resume(); |
| } |
| |
| void ClearSiteDataThrottle::OutputConsoleMessages() { |
| const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request_); |
| if (info) |
| delegate_->OutputMessages(info->GetWebContentsGetterForRequest()); |
| } |
| |
| } // namespace content |