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.
5 // Classes for managing the SafeBrowsing interstitial pages.
7 // When a user is about to visit a page the SafeBrowsing system has deemed to
8 // be malicious, either as malware or a phishing page, we show an interstitial
9 // page with some options (go back, continue) to give the user a chance to avoid
12 // The SafeBrowsingBlockingPage is created by the SafeBrowsingUIManager on the
13 // UI thread when we've determined that a page is malicious. The operation of
14 // the blocking page occurs on the UI thread, where it waits for the user to
15 // make a decision about what to do: either go back or continue on.
17 // The blocking page forwards the result of the user's choice back to the
18 // SafeBrowsingUIManager so that we can cancel the request for the new page,
19 // or allow it to continue.
21 // A web page may contain several resources flagged as malware/phishing. This
22 // results into more than one interstitial being shown. On the first unsafe
23 // resource received we show an interstitial. Any subsequent unsafe resource
24 // notifications while the first interstitial is showing is queued. If the user
25 // decides to proceed in the first interstitial, we display all queued unsafe
26 // resources in a new interstitial.
28 #ifndef CHROME_BROWSER_SAFE_BROWSING_SAFE_BROWSING_BLOCKING_PAGE_H_
29 #define CHROME_BROWSER_SAFE_BROWSING_SAFE_BROWSING_BLOCKING_PAGE_H_
35 #include "base/gtest_prod_util.h"
36 #include "base/task/cancelable_task_tracker.h"
37 #include "base/time/time.h"
38 #include "chrome/browser/history/history_service.h"
39 #include "chrome/browser/interstitials/security_interstitial_page.h"
40 #include "chrome/browser/safe_browsing/ui_manager.h"
44 class SafeBrowsingBlockingPageFactory
;
50 #if defined(ENABLE_EXTENSIONS)
51 namespace extensions
{
52 class ExperienceSamplingEvent
;
56 class SafeBrowsingBlockingPage
: public SecurityInterstitialPage
{
58 typedef SafeBrowsingUIManager::UnsafeResource UnsafeResource
;
59 typedef std::vector
<UnsafeResource
> UnsafeResourceList
;
60 typedef std::map
<content::WebContents
*, UnsafeResourceList
> UnsafeResourceMap
;
62 // Interstitial type, used in tests.
63 static const void* kTypeForTesting
;
65 ~SafeBrowsingBlockingPage() override
;
67 // Creates a blocking page. Use ShowBlockingPage if you don't need to access
68 // the blocking page directly.
69 static SafeBrowsingBlockingPage
* CreateBlockingPage(
70 SafeBrowsingUIManager
* ui_manager
,
71 content::WebContents
* web_contents
,
72 const UnsafeResource
& unsafe_resource
);
74 // Shows a blocking page warning the user about phishing/malware for a
76 // You can call this method several times, if an interstitial is already
77 // showing, the new one will be queued and displayed if the user decides
78 // to proceed on the currently showing interstitial.
79 static void ShowBlockingPage(
80 SafeBrowsingUIManager
* ui_manager
, const UnsafeResource
& resource
);
82 // Makes the passed |factory| the factory used to instantiate
83 // SafeBrowsingBlockingPage objects. Useful for tests.
84 static void RegisterFactory(SafeBrowsingBlockingPageFactory
* factory
) {
88 // InterstitialPageDelegate method:
89 void OnProceed() override
;
90 void OnDontProceed() override
;
91 void CommandReceived(const std::string
& command
) override
;
92 void OverrideRendererPrefs(content::RendererPreferences
* prefs
) override
;
94 // SecurityInterstitialPage method:
95 const void* GetTypeForTesting() const override
;
98 friend class SafeBrowsingBlockingPageTest
;
99 FRIEND_TEST_ALL_PREFIXES(SafeBrowsingBlockingPageTest
,
100 ProceedThenDontProceed
);
101 void SetReportingPreference(bool report
);
102 void UpdateReportingPref(); // Used for the transition from old to new pref.
104 // Don't instantiate this class directly, use ShowBlockingPage instead.
105 SafeBrowsingBlockingPage(SafeBrowsingUIManager
* ui_manager
,
106 content::WebContents
* web_contents
,
107 const UnsafeResourceList
& unsafe_resources
);
109 // SecurityInterstitialPage methods:
110 bool ShouldCreateNewNavigation() const override
;
111 void PopulateInterstitialStrings(
112 base::DictionaryValue
* load_time_data
) override
;
114 // After a malware interstitial where the user opted-in to the
115 // report but clicked "proceed anyway", we delay the call to
116 // MalwareDetails::FinishCollection() by this much time (in
117 // milliseconds), in order to get data from the blocked resource itself.
118 int64 malware_details_proceed_delay_ms_
;
120 FRIEND_TEST_ALL_PREFIXES(SafeBrowsingBlockingPageTest
,
121 MalwareReportsTransitionDisabled
);
122 FRIEND_TEST_ALL_PREFIXES(SafeBrowsingBlockingPageTest
,
123 MalwareReportsToggling
);
125 // These enums are used for histograms. Don't reorder, delete, or insert
126 // elements. New elements should be added before MAX_ACTION only.
143 // Record a user decision or interaction to the appropriate UMA histogram.
144 void RecordUserDecision(Decision decision
);
145 void RecordUserInteraction(Interaction interaction
);
147 // Used to query the HistoryService to see if the URL is in history. For UMA.
148 void OnGotHistoryCount(bool success
, int num_visits
, base::Time first_visit
);
150 // Checks if we should even show the malware details option. For example, we
151 // don't show it in incognito mode.
152 bool CanShowMalwareDetailsOption();
154 // Called when the insterstitial is going away. If there is a
155 // pending malware details object, we look at the user's
156 // preferences, and if the option to send malware details is
157 // enabled, the report is scheduled to be sent on the |ui_manager_|.
158 void FinishMalwareDetails(int64 delay_ms
);
160 // Returns the boolean value of the given |pref| from the PrefService of the
161 // Profile associated with |web_contents_|.
162 bool IsPrefEnabled(const char* pref
);
164 // A list of SafeBrowsingUIManager::UnsafeResource for a tab that the user
165 // should be warned about. They are queued when displaying more than one
166 // interstitial at a time.
167 static UnsafeResourceMap
* GetUnsafeResourcesMap();
169 // Notifies the SafeBrowsingUIManager on the IO thread whether to proceed
170 // or not for the |resources|.
171 static void NotifySafeBrowsingUIManager(
172 SafeBrowsingUIManager
* ui_manager
,
173 const UnsafeResourceList
& resources
, bool proceed
);
175 // Returns true if the passed |unsafe_resources| is blocking the load of
177 static bool IsMainPageLoadBlocked(
178 const UnsafeResourceList
& unsafe_resources
);
180 friend class SafeBrowsingBlockingPageFactoryImpl
;
182 // For reporting back user actions.
183 SafeBrowsingUIManager
* ui_manager_
;
184 base::MessageLoop
* report_loop_
;
186 // True if the interstitial is blocking the main page because it is on one
187 // of our lists. False if a subresource is being blocked, or in the case of
188 // client-side detection where the interstitial is shown after page load
190 bool is_main_frame_load_blocked_
;
192 // The index of a navigation entry that should be removed when DontProceed()
193 // is invoked, -1 if not entry should be removed.
194 int navigation_entry_index_to_remove_
;
196 // The list of unsafe resources this page is warning about.
197 UnsafeResourceList unsafe_resources_
;
199 // A MalwareDetails object that we start generating when the
200 // blocking page is shown. The object will be sent when the warning
201 // is gone (if the user enables the feature).
202 scoped_refptr
<MalwareDetails
> malware_details_
;
206 // Which type of interstitial this is.
211 } interstitial_type_
;
213 // The factory used to instantiate SafeBrowsingBlockingPage objects.
214 // Usefull for tests, so they can provide their own implementation of
215 // SafeBrowsingBlockingPage.
216 static SafeBrowsingBlockingPageFactory
* factory_
;
218 // How many times is this same URL in history? Used for histogramming.
220 base::CancelableTaskTracker request_tracker_
;
223 // Fills the passed dictionary with the values to be passed to the template
224 // when creating the HTML.
225 void PopulateMalwareLoadTimeData(base::DictionaryValue
* load_time_data
);
226 void PopulateHarmfulLoadTimeData(base::DictionaryValue
* load_time_data
);
227 void PopulatePhishingLoadTimeData(base::DictionaryValue
* load_time_data
);
229 #if defined(ENABLE_EXTENSIONS)
230 scoped_ptr
<extensions::ExperienceSamplingEvent
> sampling_event_
;
233 DISALLOW_COPY_AND_ASSIGN(SafeBrowsingBlockingPage
);
236 // Factory for creating SafeBrowsingBlockingPage. Useful for tests.
237 class SafeBrowsingBlockingPageFactory
{
239 virtual ~SafeBrowsingBlockingPageFactory() { }
241 virtual SafeBrowsingBlockingPage
* CreateSafeBrowsingPage(
242 SafeBrowsingUIManager
* ui_manager
,
243 content::WebContents
* web_contents
,
244 const SafeBrowsingBlockingPage::UnsafeResourceList
& unsafe_resources
) = 0;
247 #endif // CHROME_BROWSER_SAFE_BROWSING_SAFE_BROWSING_BLOCKING_PAGE_H_