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
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/attribution_reporting/test/configurable_storage_delegate.h"
#include <stdint.h>
#include <algorithm>
#include <limits>
#include <optional>
#include <utility>
#include <vector>
#include "base/check.h"
#include "base/containers/flat_set.h"
#include "base/notreached.h"
#include "base/sequence_checker.h"
#include "base/time/time.h"
#include "base/types/expected.h"
#include "components/attribution_reporting/event_level_epsilon.h"
#include "components/attribution_reporting/event_report_windows.h"
#include "components/attribution_reporting/max_event_level_reports.h"
#include "components/attribution_reporting/privacy_math.h"
#include "content/browser/attribution_reporting/attribution_config.h"
#include "content/browser/attribution_reporting/attribution_report.h"
#include "content/browser/attribution_reporting/attribution_resolver_delegate.h"
#include "content/browser/attribution_reporting/attribution_test_utils.h"
namespace content {
ConfigurableStorageDelegate::ConfigurableStorageDelegate()
: AttributionResolverDelegate([]() {
AttributionConfig c;
c.max_sources_per_origin = std::numeric_limits<int>::max(),
c.max_destinations_per_source_site_reporting_site =
std::numeric_limits<int>::max();
c.rate_limit.time_window = base::TimeDelta::Max();
c.rate_limit.max_source_registration_reporting_origins =
std::numeric_limits<int64_t>::max();
c.rate_limit.max_attribution_reporting_origins =
std::numeric_limits<int64_t>::max();
c.rate_limit.max_attributions = std::numeric_limits<int64_t>::max();
c.rate_limit.max_reporting_origins_per_source_reporting_site =
std::numeric_limits<int>::max();
c.event_level_limit.max_reports_per_destination =
std::numeric_limits<int>::max();
c.aggregate_limit.max_reports_per_destination =
std::numeric_limits<int>::max();
c.aggregate_limit.min_delay = base::TimeDelta();
c.aggregate_limit.delay_span = base::TimeDelta();
return c;
}()) {}
ConfigurableStorageDelegate::~ConfigurableStorageDelegate() = default;
void ConfigurableStorageDelegate::DetachFromSequence() {
DETACH_FROM_SEQUENCE(sequence_checker_);
}
base::Time ConfigurableStorageDelegate::GetEventLevelReportTime(
const attribution_reporting::EventReportWindows& event_report_windows,
base::Time source_time,
base::Time trigger_time) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (use_realistic_report_times_) {
return event_report_windows.ComputeReportTime(source_time, trigger_time);
} else {
return source_time + report_delay_;
}
}
base::Time ConfigurableStorageDelegate::GetAggregatableReportTime(
base::Time trigger_time) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return trigger_time + report_delay_;
}
base::TimeDelta ConfigurableStorageDelegate::GetDeleteExpiredSourcesFrequency()
const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return delete_expired_sources_frequency_;
}
base::TimeDelta
ConfigurableStorageDelegate::GetDeleteExpiredRateLimitsFrequency() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return delete_expired_rate_limits_frequency_;
}
base::TimeDelta
ConfigurableStorageDelegate::GetDeleteExpiredOsRegistrationsFrequency() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return delete_expired_os_registrations_frequency_;
}
base::Uuid ConfigurableStorageDelegate::NewReportID() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return DefaultExternalReportID();
}
std::optional<AttributionResolverDelegate::OfflineReportDelayConfig>
ConfigurableStorageDelegate::GetOfflineReportDelayConfig() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return offline_report_delay_config_;
}
void ConfigurableStorageDelegate::ShuffleReports(
std::vector<AttributionReport>& reports) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (reverse_reports_on_shuffle_) {
std::ranges::reverse(reports);
}
}
AttributionResolverDelegate::GetRandomizedResponseResult
ConfigurableStorageDelegate::GetRandomizedResponse(
attribution_reporting::mojom::SourceType,
const attribution_reporting::TriggerDataSet&,
const attribution_reporting::EventReportWindows&,
attribution_reporting::MaxEventLevelReports,
attribution_reporting::EventLevelEpsilon,
const std::optional<attribution_reporting::AttributionScopesData>&) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (exceeds_channel_capacity_limit_) {
return base::unexpected(attribution_reporting::RandomizedResponseError::
kExceedsChannelCapacityLimit);
}
return attribution_reporting::RandomizedResponseData(
randomized_response_rate_, randomized_response_);
}
bool ConfigurableStorageDelegate::GenerateNullAggregatableReportForLookbackDay(
int lookback_day,
attribution_reporting::mojom::SourceRegistrationTimeConfig) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return null_aggregatable_reports_lookback_days_.contains(lookback_day);
}
void ConfigurableStorageDelegate::set_max_sources_per_origin(int max) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
config_.max_sources_per_origin = max;
}
void ConfigurableStorageDelegate::set_max_reports_per_destination(
AttributionReport::Type report_type,
int max) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
switch (report_type) {
case AttributionReport::Type::kEventLevel:
config_.event_level_limit.max_reports_per_destination = max;
break;
case AttributionReport::Type::kAggregatableAttribution:
config_.aggregate_limit.max_reports_per_destination = max;
break;
case AttributionReport::Type::kNullAggregatable:
NOTREACHED();
}
}
void ConfigurableStorageDelegate::
set_max_destinations_per_source_site_reporting_site(int max) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
config_.max_destinations_per_source_site_reporting_site = max;
}
void ConfigurableStorageDelegate::set_rate_limits(
AttributionConfig::RateLimitConfig c) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(c.Validate());
config_.rate_limit = c;
}
void ConfigurableStorageDelegate::set_destination_rate_limit(
AttributionConfig::DestinationRateLimit limit) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Intentionally allows `limit` to be invalid for testing.
config_.destination_rate_limit = limit;
}
void ConfigurableStorageDelegate::set_aggregatable_debug_rate_limit(
AttributionConfig::AggregatableDebugRateLimit limit) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Intentionally allows `limit` to be invalid for testing.
config_.aggregatable_debug_rate_limit = std::move(limit);
}
void ConfigurableStorageDelegate::set_delete_expired_sources_frequency(
base::TimeDelta frequency) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
delete_expired_sources_frequency_ = frequency;
}
void ConfigurableStorageDelegate::set_delete_expired_rate_limits_frequency(
base::TimeDelta frequency) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
delete_expired_rate_limits_frequency_ = frequency;
}
void ConfigurableStorageDelegate::set_delete_expired_os_registrations_frequency(
base::TimeDelta frequency) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
delete_expired_os_registrations_frequency_ = frequency;
}
void ConfigurableStorageDelegate::set_report_delay(
base::TimeDelta report_delay) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
report_delay_ = report_delay;
}
void ConfigurableStorageDelegate::set_offline_report_delay_config(
std::optional<OfflineReportDelayConfig> config) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
offline_report_delay_config_ = config;
}
void ConfigurableStorageDelegate::set_reverse_reports_on_shuffle(bool reverse) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
reverse_reports_on_shuffle_ = reverse;
}
void ConfigurableStorageDelegate::set_randomized_response_rate(double rate) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
randomized_response_rate_ = rate;
}
void ConfigurableStorageDelegate::set_randomized_response(
attribution_reporting::RandomizedResponse randomized_response) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
randomized_response_ = std::move(randomized_response);
}
void ConfigurableStorageDelegate::set_exceeds_channel_capacity_limit(
bool exceeds) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
exceeds_channel_capacity_limit_ = exceeds;
}
void ConfigurableStorageDelegate::set_null_aggregatable_reports_lookback_days(
base::flat_set<int> null_aggregatable_reports_lookback_days) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
null_aggregatable_reports_lookback_days_ =
std::move(null_aggregatable_reports_lookback_days);
}
void ConfigurableStorageDelegate::use_realistic_report_times() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
use_realistic_report_times_ = true;
}
} // namespace content
|