File: trigger_manager.cc

package info (click to toggle)
chromium 138.0.7204.183-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 6,080,960 kB
  • sloc: cpp: 34,937,079; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,954; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,811; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (347 lines) | stat: -rw-r--r-- 14,740 bytes parent folder | download | duplicates (6)
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
337
338
339
340
341
342
343
344
345
346
347
// 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/triggers/trigger_manager.h"

#include "base/containers/contains.h"
#include "base/functional/bind.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/histogram_functions.h"
#include "base/task/single_thread_task_runner.h"
#include "components/prefs/pref_service.h"
#include "components/safe_browsing/content/browser/base_ui_manager.h"
#include "components/safe_browsing/content/browser/threat_details.h"
#include "components/safe_browsing/content/browser/web_contents_key.h"
#include "components/safe_browsing/core/common/features.h"
#include "components/safe_browsing/core/common/safe_browsing_prefs.h"
#include "components/security_interstitials/core/unsafe_resource.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"

namespace safe_browsing {

namespace {

bool TriggerNeedsOptInForCollection(const TriggerType trigger_type) {
  switch (trigger_type) {
    case TriggerType::SECURITY_INTERSTITIAL:
      // For security interstitials, users can change the opt-in while the
      // trigger runs, so collection can begin without opt-in.
      return false;
    case TriggerType::AD_SAMPLE:
      // Ad samples happen in the background so the user must already be opted
      // in before the trigger is allowed to run.
      return true;
    case TriggerType::GAIA_PASSWORD_REUSE:
      // For Gaia password reuses, it is unlikely for users to change opt-in
      // while the trigger runs, so we require opt-in for collection to avoid
      // overheads.
      return true;
    case TriggerType::SUSPICIOUS_SITE:
      // Suspicious site collection happens in the background so the user must
      // already be opted in before the trigger is allowed to run.
      return true;
    case TriggerType::APK_DOWNLOAD:
      // APK download collection happens in the background so the user must
      // already be opted in before the trigger is allowed to run.
      return true;
    case TriggerType::PHISHY_SITE_INTERACTION:
      // For phishy site interactions reporting, the user must already be
      // opted in before the trigger is allowed to run.
      return true;
    case TriggerType::DEPRECATED_AD_POPUP:
    case TriggerType::DEPRECATED_AD_REDIRECT:
      NOTREACHED() << "These triggers have been handled in "
                      "CanStartDataCollectionWithReason()";
  }
  // By default, require opt-in for all triggers.
  return true;
}

bool CanSendReport(const TriggerManager::DataCollectionPermissions&
                       data_collection_permissions,
                   const TriggerType trigger_type) {
  // SafeBrowsingExtendedReportingOptInAllowed policy was deprecated.
  // trigger_manager will not depend on the is_extended_reporting_opt_in_allowed
  // value when the extended reporting is deprecated. We will remove the feature
  // flag check when the feature is fully rolled out.
  bool is_extended_reporting_opt_in_allowed =
      base::FeatureList::IsEnabled(kExtendedReportingRemovePrefDependency)
          ? true
          : data_collection_permissions.is_extended_reporting_opt_in_allowed;
  // Reports are only sent for non-incoginito users who are allowed to modify
  // the Extended Reporting setting and have opted-in to Extended Reporting.
  return !data_collection_permissions.is_off_the_record &&
         is_extended_reporting_opt_in_allowed &&
         data_collection_permissions.is_extended_reporting_enabled;
}

}  // namespace

DataCollectorsContainer::DataCollectorsContainer() = default;
DataCollectorsContainer::~DataCollectorsContainer() = default;

TriggerManager::FinishCollectingThreatDetailsResult::
    FinishCollectingThreatDetailsResult(bool should_send_report,
                                        bool are_threat_details_available)
    : should_send_report(should_send_report),
      are_threat_details_available(are_threat_details_available) {}

bool TriggerManager::FinishCollectingThreatDetailsResult::IsReportSent() {
  return should_send_report && are_threat_details_available;
}

TriggerManager::DataCollectionPermissions::DataCollectionPermissions(
    bool is_extended_reporting_opt_in_allowed,
    bool is_off_the_record,
    bool is_extended_reporting_enabled)
    : is_extended_reporting_opt_in_allowed(
          is_extended_reporting_opt_in_allowed),
      is_off_the_record(is_off_the_record),
      is_extended_reporting_enabled(is_extended_reporting_enabled) {}

TriggerManager::DataCollectionPermissions::DataCollectionPermissions(
    const SBErrorOptions& error_display_options)
    : is_extended_reporting_opt_in_allowed(
          error_display_options.is_extended_reporting_opt_in_allowed),
      is_off_the_record(error_display_options.is_off_the_record),
      is_extended_reporting_enabled(
          error_display_options.is_extended_reporting_enabled) {}

TriggerManager::TriggerManager(BaseUIManager* ui_manager,
                               PrefService* local_state_prefs)
    : ui_manager_(ui_manager),
      trigger_throttler_(new TriggerThrottler(local_state_prefs)) {}

TriggerManager::~TriggerManager() = default;

void TriggerManager::set_trigger_throttler(TriggerThrottler* throttler) {
  trigger_throttler_.reset(throttler);
}

// static
TriggerManager::DataCollectionPermissions
TriggerManager::GetDataCollectionPermissions(
    const PrefService& pref_service,
    content::WebContents* web_contents) {
  return DataCollectionPermissions(
      IsExtendedReportingOptInAllowed(pref_service),
      web_contents->GetBrowserContext()->IsOffTheRecord(),
      IsExtendedReportingEnabledBypassDeprecationFlag(pref_service));
}

bool TriggerManager::CanStartDataCollection(
    const DataCollectionPermissions& data_collection_permissions,
    const TriggerType trigger_type) {
  TriggerManagerReason unused_reason;
  return CanStartDataCollectionWithReason(data_collection_permissions,
                                          trigger_type, &unused_reason);
}

bool TriggerManager::CanStartDataCollectionWithReason(
    const DataCollectionPermissions& data_collection_permissions,
    const TriggerType trigger_type,
    TriggerManagerReason* out_reason) {
  if (trigger_type == TriggerType::DEPRECATED_AD_POPUP ||
      trigger_type == TriggerType::DEPRECATED_AD_REDIRECT) {
    *out_reason = TriggerManagerReason::REPORT_TYPE_DEPRECATED;
    return false;
  }

  *out_reason = TriggerManagerReason::NO_REASON;

  // Some triggers require that the user be opted-in to extended reporting in
  // order to run, while others can run without opt-in (eg: because users are
  // prompted for opt-in as part of the trigger).
  bool optin_required_check_ok =
      !TriggerNeedsOptInForCollection(trigger_type) ||
      data_collection_permissions.is_extended_reporting_enabled;

  // SafeBrowsingExtendedReportingOptInAllowed policy was deprecated.
  // trigger_manager will not depend on the is_extended_reporting_opt_in_allowed
  // value when the extended reporting is deprecated. We will remove the feature
  // flag check when the feature is fully rolled out.
  bool is_extended_reporting_opt_in_allowed =
      base::FeatureList::IsEnabled(kExtendedReportingRemovePrefDependency)
          ? true
          : data_collection_permissions.is_extended_reporting_opt_in_allowed;

  // We start data collection as long as user is not incognito, and the
  // |trigger_type| has available quota. For some triggers we also require
  // extended reporting opt-in in order to start data collection.
  if (!data_collection_permissions.is_off_the_record &&
      is_extended_reporting_opt_in_allowed && optin_required_check_ok) {
    bool quota_ok = trigger_throttler_->TriggerCanFire(trigger_type);
    if (!quota_ok)
      *out_reason = TriggerManagerReason::DAILY_QUOTA_EXCEEDED;
    return quota_ok;
  } else {
    *out_reason = TriggerManagerReason::USER_PREFERENCES;
    return false;
  }
}

bool TriggerManager::StartCollectingThreatDetails(
    const TriggerType trigger_type,
    content::WebContents* web_contents,
    const security_interstitials::UnsafeResource& resource,
    scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory,
    history::HistoryService* history_service,
    ReferrerChainProvider* referrer_chain_provider,
    const DataCollectionPermissions& data_collection_permissions) {
  TriggerManagerReason unused_reason;
  return StartCollectingThreatDetailsWithReason(
      trigger_type, web_contents, resource, url_loader_factory, history_service,
      referrer_chain_provider, data_collection_permissions, &unused_reason);
}

bool TriggerManager::StartCollectingThreatDetailsWithReason(
    const TriggerType trigger_type,
    content::WebContents* web_contents,
    const security_interstitials::UnsafeResource& resource,
    scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory,
    history::HistoryService* history_service,
    ReferrerChainProvider* referrer_chain_provider,
    const DataCollectionPermissions& data_collection_permissions,
    TriggerManagerReason* reason) {
  DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
  if (!CanStartDataCollectionWithReason(data_collection_permissions,
                                        trigger_type, reason)) {
    return false;
  }

  // Ensure we're not already collecting ThreatDetails on this tab. Create an
  // entry in the map for this |web_contents| if it's not there already.
  DataCollectorsContainer* collectors =
      &data_collectors_map_[GetWebContentsKey(web_contents)];
  if (collectors->threat_details) {
    return false;
  }

  bool should_trim_threat_details = trigger_type == TriggerType::AD_SAMPLE;
  collectors->threat_details = ThreatDetails::NewThreatDetails(
      ui_manager_, web_contents, resource, url_loader_factory, history_service,
      referrer_chain_provider, should_trim_threat_details,
      base::BindOnce(&TriggerManager::ThreatDetailsDone,
                     weak_factory_.GetWeakPtr()));
  return true;
}

void TriggerManager::SetInterstitialInteractions(
    std::unique_ptr<security_interstitials::InterstitialInteractionMap>
        interstitial_interactions) {
  interstitial_interactions_ = std::move(interstitial_interactions);
}

TriggerManager::FinishCollectingThreatDetailsResult
TriggerManager::FinishCollectingThreatDetails(
    const TriggerType trigger_type,
    WebContentsKey web_contents_key,
    const base::TimeDelta& delay,
    bool did_proceed,
    int num_visits,
    const DataCollectionPermissions& data_collection_permissions,
    std::optional<int64_t> warning_shown_ts,
    bool is_hats_candidate) {
  DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
  // Determine whether a report should be sent.
  bool should_send_report =
      CanSendReport(data_collection_permissions, trigger_type);
  bool has_threat_details_in_map =
      base::Contains(data_collectors_map_, web_contents_key);

  if (should_send_report &&
      trigger_type == TriggerType::SECURITY_INTERSTITIAL) {
    base::UmaHistogramBoolean(
        "SafeBrowsing.ClientSafeBrowsingReport.HasThreatDetailsForTab."
        "SecurityInterstitial",
        has_threat_details_in_map);
  }

  if (trigger_type == TriggerType::GAIA_PASSWORD_REUSE) {
    base::UmaHistogramBoolean(
        "SafeBrowsing.ClientSafeBrowsingReport.PasswordReuse.RepeatVisit",
        num_visits > 0);
  }

  // Make sure there's a ThreatDetails collector running on this tab.
  if (!has_threat_details_in_map)
    return FinishCollectingThreatDetailsResult(
        should_send_report,
        /*are_threat_details_available=*/false);
  DataCollectorsContainer* collectors = &data_collectors_map_[web_contents_key];
  bool has_threat_details = !!collectors->threat_details;

  if (!has_threat_details) {
    return FinishCollectingThreatDetailsResult(
        should_send_report,
        /*are_threat_details_available=*/false);
  }

  // Trigger finishing the ThreatDetails collection if we should send the
  // report to SB or if the user may see a HaTS survey.
  if (should_send_report || is_hats_candidate) {
    // Find the data collector and tell it to finish collecting data. We expect
    // it to notify us when it's finished so we can clean up references to it.
    collectors->threat_details->SetIsHatsCandidate(is_hats_candidate);
    collectors->threat_details->SetShouldSendReport(should_send_report);
    base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
        FROM_HERE,
        base::BindOnce(&ThreatDetails::FinishCollection,
                       collectors->threat_details->GetWeakPtr(), did_proceed,
                       num_visits, std::move(interstitial_interactions_),
                       warning_shown_ts),
        delay);

    // Record that this trigger fired and collected data.
    trigger_throttler_->TriggerFired(trigger_type);
  } else {
    // We aren't telling ThreatDetails to finish the report so we should clean
    // up our map ourselves.
    ThreatDetailsDone(web_contents_key);
  }

  return FinishCollectingThreatDetailsResult(
      should_send_report,
      /*are_threat_details_available=*/true);
}

void TriggerManager::ThreatDetailsDone(WebContentsKey web_contents_key) {
  DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
  // Clean up the ThreatDetailsdata collector on the specified tab.
  if (!base::Contains(data_collectors_map_, web_contents_key)) {
    return;
  }

  DataCollectorsContainer* collectors = &data_collectors_map_[web_contents_key];
  collectors->threat_details = nullptr;
}

void TriggerManager::WebContentsDestroyed(content::WebContents* web_contents) {
  DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
  WebContentsKey key = GetWebContentsKey(web_contents);
  if (!base::Contains(data_collectors_map_, key)) {
    return;
  }
  data_collectors_map_.erase(key);
}

TriggerManagerWebContentsHelper::TriggerManagerWebContentsHelper(
    content::WebContents* web_contents,
    TriggerManager* trigger_manager)
    : content::WebContentsObserver(web_contents),
      content::WebContentsUserData<TriggerManagerWebContentsHelper>(
          *web_contents),
      trigger_manager_(trigger_manager) {}

TriggerManagerWebContentsHelper::~TriggerManagerWebContentsHelper() = default;

void TriggerManagerWebContentsHelper::WebContentsDestroyed() {
  trigger_manager_->WebContentsDestroyed(web_contents());
}

WEB_CONTENTS_USER_DATA_KEY_IMPL(TriggerManagerWebContentsHelper);

}  // namespace safe_browsing