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 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
|
// 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.
#ifndef CONTENT_BROWSER_ATTRIBUTION_REPORTING_ATTRIBUTION_STORAGE_SQL_H_
#define CONTENT_BROWSER_ATTRIBUTION_REPORTING_ATTRIBUTION_STORAGE_SQL_H_
#include <stdint.h>
#include <memory>
#include <optional>
#include <set>
#include <string>
#include <vector>
#include "base/containers/enum_set.h"
#include "base/containers/flat_set.h"
#include "base/containers/span.h"
#include "base/files/file_path.h"
#include "base/sequence_checker.h"
#include "base/thread_annotations.h"
#include "base/types/expected.h"
#include "content/browser/attribution_reporting/aggregatable_debug_rate_limit_table.h"
#include "content/browser/attribution_reporting/attribution_report.h"
#include "content/browser/attribution_reporting/create_report_result.h"
#include "content/browser/attribution_reporting/os_registrations_table.h"
#include "content/browser/attribution_reporting/rate_limit_table.h"
#include "content/browser/attribution_reporting/stored_source.h"
#include "content/common/content_export.h"
#include "content/public/browser/attribution_data_model.h"
#include "content/public/browser/storage_partition.h"
#include "sql/database.h"
#include "sql/transaction.h"
#include "third_party/blink/public/mojom/aggregation_service/aggregatable_report.mojom-forward.h"
namespace attribution_reporting {
class AggregatableNamedBudgetCandidate;
class AggregatableTriggerConfig;
class SuitableOrigin;
} // namespace attribution_reporting
namespace base {
class Time;
class TimeDelta;
class Uuid;
} // namespace base
namespace net {
class SchemefulSite;
} // namespace net
namespace sql {
class Statement;
} // namespace sql
namespace url {
class Origin;
} // namespace url
namespace content {
class AggregatableDebugReport;
class AttributionResolverDelegate;
class AttributionTrigger;
class CreateReportResult;
class StorableSource;
struct AttributionInfo;
enum class RateLimitResult : int;
// Provides an implementation of storage that is backed by SQLite.
// This class may be constructed on any sequence but must be accessed and
// destroyed on the same sequence. The sequence must outlive |this|.
class CONTENT_EXPORT AttributionStorageSql {
public:
// Version number of the database.
static constexpr int kCurrentVersionNumber = 69;
// Earliest version which can use a `kCurrentVersionNumber` database
// without failing.
static constexpr int kCompatibleVersionNumber = 69;
// Latest version of the database that cannot be upgraded to
// `kCurrentVersionNumber` without razing the database.
static constexpr int kDeprecatedVersionNumber = 55;
static_assert(kCompatibleVersionNumber <= kCurrentVersionNumber);
static_assert(kDeprecatedVersionNumber < kCompatibleVersionNumber);
// Scoper which encapsulates a transaction of changes on the database.
class Transaction {
public:
Transaction(const Transaction&) = delete;
Transaction& operator=(const Transaction&) = delete;
Transaction(Transaction&&) = delete;
Transaction& operator=(Transaction&&) = delete;
~Transaction();
[[nodiscard]] bool Commit();
private:
friend class AttributionStorageSql;
static std::unique_ptr<Transaction> CreateAndStart(sql::Database& db);
explicit Transaction(sql::Database& db);
sql::Transaction transaction_;
};
struct Error {};
// If `user_data_directory` is empty, the DB is created in memory and no data
// is persisted to disk.
AttributionStorageSql(const base::FilePath& user_data_directory,
AttributionResolverDelegate* delegate);
AttributionStorageSql(const AttributionStorageSql&) = delete;
AttributionStorageSql& operator=(const AttributionStorageSql&) = delete;
AttributionStorageSql(AttributionStorageSql&&) = delete;
AttributionStorageSql& operator=(AttributionStorageSql&&) = delete;
~AttributionStorageSql();
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
//
// LINT.IfChange(InitStatus)
enum class InitStatus {
kSuccess = 0,
kFailedToOpenDbInMemory = 1,
kFailedToOpenDbFile = 2,
kFailedToCreateDir = 3,
kFailedToInitializeSchema = 4,
kMaxValue = kFailedToInitializeSchema,
};
// LINT.ThenChange(//tools/metrics/histograms/metadata/attribution_reporting/enums.xml:ConversionStorageSqlInitStatus)
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
//
// LINT.IfChange(ReportCorruptionStatus)
enum class ReportCorruptionStatus {
// Tracks total number of corrupted reports for analysis purposes.
kAnyFieldCorrupted = 0,
kInvalidFailedSendAttempts = 1,
kInvalidExternalReportID = 2,
kInvalidContextOrigin = 3,
kInvalidReportingOrigin = 4,
kInvalidReportType = 5,
kReportingOriginMismatch = 6,
// Obsolete: kMetadataAsStringFailed = 7,
kSourceDataMissingEventLevel = 8,
kSourceDataMissingAggregatable = 9,
kSourceDataFoundNullAggregatable = 10,
kInvalidMetadata = 11,
kSourceNotFound = 12,
kSourceInvalidSourceOrigin = 13,
kSourceInvalidReportingOrigin = 14,
kSourceInvalidSourceType = 15,
kSourceInvalidAttributionLogic = 16,
kSourceInvalidNumConversions = 17,
kSourceInvalidNumAggregatableReports = 18,
kSourceInvalidAggregationKeys = 19,
kSourceInvalidFilterData = 20,
kSourceInvalidActiveState = 21,
kSourceInvalidReadOnlySourceData = 22,
kSourceInvalidEventReportWindows = 23,
kSourceInvalidMaxEventLevelReports = 24,
kSourceInvalidEventLevelEpsilon = 25,
kSourceDestinationSitesQueryFailed = 26,
kSourceInvalidDestinationSites = 27,
kStoredSourceConstructionFailed = 28,
kSourceInvalidTriggerData = 29,
kSourceDedupKeyQueryFailed = 30,
kSourceInvalidRandomizedResponseRate = 31,
kSourceInvalidAttributionScopesData = 32,
kSourceInvalidAggregatableNamedBudgets = 33,
kMaxValue = kSourceInvalidAggregatableNamedBudgets,
};
// LINT.ThenChange(//tools/metrics/histograms/metadata/attribution_reporting/enums.xml:ConversionCorruptReportStatus)
struct DeletionCounts {
int sources = 0;
int reports = 0;
};
struct AggregatableDebugSourceData {
int remaining_budget;
int num_reports;
};
[[nodiscard]] std::unique_ptr<Transaction> StartTransaction();
// Deletes corrupt sources/reports if `deletion_counts` is not `nullptr`.
void VerifyReports(DeletionCounts* deletion_counts);
[[nodiscard]] std::optional<StoredSource> InsertSource(
const StorableSource& source,
base::Time source_time,
int num_attributions,
bool event_level_active,
double randomized_response_rate,
StoredSource::AttributionLogic attribution_logic,
base::Time aggregatable_report_window_time);
[[nodiscard]] bool UpdateOrRemoveSourcesWithIncompatibleScopeFields(
const StorableSource&,
base::Time source_time);
[[nodiscard]] bool RemoveSourcesWithOutdatedScopes(const StorableSource&,
base::Time source_time);
CreateReportResult MaybeCreateAndStoreReport(AttributionTrigger);
std::vector<AttributionReport> GetAttributionReports(
base::Time max_report_time,
int limit = -1);
std::optional<base::Time> GetNextReportTime(base::Time time);
std::optional<AttributionReport> GetReport(AttributionReport::Id);
std::vector<StoredSource> GetActiveSources(int limit = -1);
std::set<AttributionDataModel::DataKey> GetAllDataKeys();
bool DeleteReport(AttributionReport::Id report_id);
bool UpdateReportForSendFailure(AttributionReport::Id report_id,
base::Time new_report_time);
bool AdjustOfflineReportTimes(base::TimeDelta min_delay,
base::TimeDelta max_delay);
void ClearAllDataAllTime(bool delete_rate_limit_data);
void ClearDataWithFilter(
base::Time delete_begin,
base::Time delete_end,
std::variant<StoragePartition::StorageKeyMatcherFunction, url::Origin>
filter_or_origin,
bool delete_rate_limit_data);
[[nodiscard]] std::optional<AggregatableDebugSourceData>
GetAggregatableDebugSourceData(StoredSource::Id);
[[nodiscard]] AggregatableDebugRateLimitTable::Result
AggregatableDebugReportAllowedForRateLimit(const AggregatableDebugReport&);
[[nodiscard]] bool AdjustForAggregatableDebugReport(
const AggregatableDebugReport&,
std::optional<StoredSource::Id>);
void StoreOsRegistrations(const base::flat_set<url::Origin>&);
void SetDelegate(AttributionResolverDelegate*);
// Rate-limiting
[[nodiscard]] bool AddRateLimitForSource(const StoredSource& source,
int64_t destination_limit_priority);
[[nodiscard]] bool AddRateLimitForAttribution(
const AttributionInfo& attribution_info,
const StoredSource& source,
RateLimitTable::Scope scope,
AttributionReport::Id id);
[[nodiscard]] RateLimitResult SourceAllowedForReportingOriginLimit(
const StorableSource& source,
base::Time source_time);
[[nodiscard]] RateLimitResult SourceAllowedForReportingOriginPerSiteLimit(
const StorableSource& source,
base::Time source_time);
[[nodiscard]] RateLimitResult SourceAllowedForDestinationPerDayRateLimit(
const StorableSource& source,
base::Time source_time);
[[nodiscard]] RateLimitTable::DestinationRateLimitResult
SourceAllowedForDestinationRateLimit(const StorableSource& source,
base::Time source_time);
[[nodiscard]] RateLimitResult AttributionAllowedForReportingOriginLimit(
const AttributionInfo& attribution_info,
const StoredSource& source);
[[nodiscard]] RateLimitResult AttributionAllowedForAttributionLimit(
const AttributionInfo& attribution_info,
const StoredSource& source,
RateLimitTable::Scope scope);
[[nodiscard]] bool DeleteAttributionRateLimit(RateLimitTable::Scope,
AttributionReport::Id);
[[nodiscard]] base::expected<std::vector<StoredSource::Id>,
RateLimitTable::Error>
GetSourcesToDeactivateForDestinationLimit(const StorableSource& source,
base::Time source_time);
enum class DbCreationPolicy {
// Create the db if it does not exist.
kCreateIfAbsent,
// Do not create the db if it does not exist.
kIgnoreIfAbsent,
};
// Initializes the database if necessary, and returns whether the database is
// open. |should_create| indicates whether the database should be created if
// it is not already.
[[nodiscard]] bool LazyInit(DbCreationPolicy creation_policy);
// Deletes all sources that have expired and have no pending
// reports. Returns false on failure.
[[nodiscard]] bool DeleteExpiredSources();
// Returns a negative value on failure.
int64_t CountActiveSourcesWithSourceOrigin(
const attribution_reporting::SuitableOrigin& origin,
base::Time now);
[[nodiscard]] bool DeactivateSourcesForDestinationLimit(
base::span<const StoredSource::Id>,
base::Time now);
[[nodiscard]] std::optional<AttributionReport::Id> StoreAttributionReport(
StoredSource::Id,
base::Time trigger_time,
base::Time initial_report_time,
const base::Uuid& external_report_id,
std::optional<uint64_t> trigger_debug_key,
const attribution_reporting::SuitableOrigin& context_origin,
const attribution_reporting::SuitableOrigin& reporting_origin,
uint32_t trigger_data,
int64_t priority);
[[nodiscard]] std::optional<AttributionReport::Id> StoreNullReport(
base::Time trigger_time,
base::Time initial_report_time,
const base::Uuid& external_report_id,
std::optional<uint64_t> trigger_debug_key,
const attribution_reporting::SuitableOrigin& context_origin,
const attribution_reporting::SuitableOrigin& reporting_origin,
const std::optional<attribution_reporting::SuitableOrigin>&
coordinator_origin,
const attribution_reporting::AggregatableTriggerConfig& trigger_config,
base::Time fake_source_time);
[[nodiscard]] std::optional<AttributionReport::Id> StoreAggregatableReport(
StoredSource::Id source_id,
base::Time trigger_time,
base::Time initial_report_time,
const base::Uuid& external_report_id,
std::optional<uint64_t> trigger_debug_key,
const attribution_reporting::SuitableOrigin& context_origin,
const attribution_reporting::SuitableOrigin& reporting_origin,
const std::optional<attribution_reporting::SuitableOrigin>&
coordinator_origin,
const attribution_reporting::AggregatableTriggerConfig& trigger_config,
const std::vector<blink::mojom::AggregatableReportHistogramContribution>&
contributions);
int64_t StorageFileSizeKB();
// Returns the number of sources in storage.
std::optional<int64_t> NumberOfSources();
// Deactivates the given sources. Returns false on error.
[[nodiscard]] bool DeactivateSources(base::span<const StoredSource::Id>);
// Returns false on failure.
[[nodiscard]] bool DeleteSources(base::span<const StoredSource::Id>);
// Returns whether the database execution was successful.
// `source_id_to_attribute` and `source_ids_to_delete` would be populated if
// matching sources were found.
bool FindMatchingSourceForTrigger(
const AttributionTrigger& trigger,
base::Time trigger_time,
std::optional<StoredSource::Id>& source_id_to_attribute,
std::vector<StoredSource::Id>& source_ids_to_delete,
std::vector<StoredSource::Id>& source_ids_to_deactivate);
struct StoredSourceData {
StoredSource source;
int num_attributions;
int num_aggregatable_attribution_reports;
};
std::optional<StoredSourceData> ReadSourceToAttribute(
StoredSource::Id source_id);
// Returns a negative value on failure.
int64_t CountEventLevelReportsWithDestinationSite(
const net::SchemefulSite& destination);
// Returns a negative value on failure.
int64_t CountAggregatableReportsWithDestinationSite(
const net::SchemefulSite& destination);
// Returns a negative value on failure.
int64_t CountUniqueDailyReportingOriginsPerReportingSiteForSource(
const net::SchemefulSite& reporting_site,
base::Time source_time);
// Returns a negative value on failure.
int64_t
CountUniqueDailyReportingOriginsPerDestinationAndReportingSiteForSource(
const net::SchemefulSite& destination_site,
const net::SchemefulSite& reporting_site,
base::Time source_time);
// Stores the data associated with the aggregatable report, e.g. budget
// consumed and dedup keys. The report itself will be stored in
// `GenerateNullAggregatableReportsAndStoreReports()`.
CreateReportResult::Aggregatable MaybeStoreAggregatableAttributionReportData(
const StoredSource&,
bool has_trigger_context_id,
int remaining_aggregatable_attribution_budget,
int num_aggregatable_attribution_reports,
std::optional<uint64_t> dedup_key,
const std::vector<
attribution_reporting::AggregatableNamedBudgetCandidate>&
trigger_budget_candidates,
CreateReportResult::AggregatableSuccess);
struct ReportIdAndPriority {
AttributionReport::Id id;
int64_t priority;
};
base::expected<std::optional<ReportIdAndPriority>, Error>
GetReportWithMinPriority(StoredSource::Id, base::Time report_time);
[[nodiscard]] bool DeactivateSourceAtEventLevel(StoredSource::Id);
[[nodiscard]] bool IncrementNumAttributions(StoredSource::Id);
[[nodiscard]] bool StoreDedupKey(StoredSource::Id,
uint64_t dedup_key,
AttributionReport::Type);
// Returns a negative value on failure.
int64_t CountUniqueReportingOriginsPerSiteForAttribution(
const AttributionTrigger&,
base::Time now);
private:
using ReportCorruptionStatusSet =
base::EnumSet<ReportCorruptionStatus,
ReportCorruptionStatus::kAnyFieldCorrupted,
ReportCorruptionStatus::kMaxValue>;
struct ReportCorruptionStatusSetAndIds;
enum class DbStatus {
kOpen,
// The database has never been created, i.e. there is no database file at
// all.
kDeferringCreation,
// The database exists but is not open yet.
kDeferringOpen,
// The database initialization failed, or the db suffered from an
// unrecoverable, but potentially transient, error.
kClosed,
// The database initialization failed, or the db suffered from a
// catastrophic failure.
kClosedDueToCatastrophicError,
};
[[nodiscard]] bool ReadDedupKeys(
StoredSource::Id,
std::vector<uint64_t>& event_level_dedup_keys,
std::vector<uint64_t>& aggregatable_dedup_keys)
VALID_CONTEXT_REQUIRED(sequence_checker_);
base::expected<AttributionReport, ReportCorruptionStatusSetAndIds>
ReadReportFromStatement(sql::Statement&)
VALID_CONTEXT_REQUIRED(sequence_checker_);
base::expected<StoredSourceData, ReportCorruptionStatusSetAndIds>
ReadSourceFromStatement(sql::Statement&)
VALID_CONTEXT_REQUIRED(sequence_checker_);
[[nodiscard]] bool DeleteReportInternal(AttributionReport::Id)
VALID_CONTEXT_REQUIRED(sequence_checker_);
[[nodiscard]] bool DeleteEventLevelReportsTriggeredLaterThanForSources(
base::span<const StoredSource::Id>,
base::Time source_time) VALID_CONTEXT_REQUIRED(sequence_checker_);
[[nodiscard]] bool RemoveScopesDataForSource(StoredSource::Id)
VALID_CONTEXT_REQUIRED(sequence_checker_);
// Returns false on failure.
[[nodiscard]] bool InitializeSchema(bool db_empty)
VALID_CONTEXT_REQUIRED(sequence_checker_);
// Returns false on failure.
[[nodiscard]] bool CreateSchema() VALID_CONTEXT_REQUIRED(sequence_checker_);
void HandleInitializationFailure(const InitStatus status)
VALID_CONTEXT_REQUIRED(sequence_checker_);
void DatabaseErrorCallback(int extended_error, sql::Statement* stmt);
// Deletes all event-level and aggregatable reports in storage for storage
// keys matching `filter`, between `delete_begin` and `delete_end` time. More
// specifically, this:
// 1. Deletes all sources within the time range. If any report is attributed
// to this source it is also deleted.
// 2. Deletes all reports within the time range. All sources these reports
// attributed to are also deleted.
//
// All sources to be deleted are updated in `source_ids_to_delete`.
// Returns false on failure.
[[nodiscard]] bool ClearReportsForOriginsInRange(
base::Time delete_begin,
base::Time delete_end,
StoragePartition::StorageKeyMatcherFunction filter,
std::vector<StoredSource::Id>& source_ids_to_delete,
int& num_event_reports_deleted,
int& num_aggregatable_reports_deleted)
VALID_CONTEXT_REQUIRED(sequence_checker_);
[[nodiscard]] bool ClearReportsForSourceIds(
base::span<const StoredSource::Id>,
int& num_event_reports_deleted,
int& num_aggregatable_reports_deleted)
VALID_CONTEXT_REQUIRED(sequence_checker_);
// Aggregate Attribution:
// Adjusts the aggregatable budget and selected named budget, if any, for the
// source event by `additional_budget_consumed`.
[[nodiscard]] bool AdjustBudgetConsumedForSource(
StoredSource::Id source_id,
bool has_trigger_context_id,
int additional_budget_consumed,
const StoredSource::AggregatableNamedBudgets*)
VALID_CONTEXT_REQUIRED(sequence_checker_);
[[nodiscard]] std::optional<AttributionReport::Id> StoreAttributionReport(
int64_t source_id,
base::Time trigger_time,
base::Time initial_report_time,
const base::Uuid& external_report_id,
std::optional<uint64_t> trigger_debug_key,
const attribution_reporting::SuitableOrigin& context_origin,
const attribution_reporting::SuitableOrigin& reporting_origin,
AttributionReport::Type,
const std::string& serialized_metadata)
VALID_CONTEXT_REQUIRED(sequence_checker_);
[[nodiscard]] bool AdjustAggregatableDebugSourceData(
StoredSource::Id,
int additional_budget_consumed) VALID_CONTEXT_REQUIRED(sequence_checker_);
const base::FilePath path_to_database_;
// Current status of the database initialization. Tracks what stage |this| is
// at for lazy initialization, and used as a signal for if the database is
// closed. This is initialized in the first call to LazyInit() to avoid doing
// additional work in the constructor, see https://crbug.com/1121307.
std::optional<DbStatus> db_status_ GUARDED_BY_CONTEXT(sequence_checker_);
sql::Database db_ GUARDED_BY_CONTEXT(sequence_checker_);
raw_ptr<AttributionResolverDelegate> delegate_
GUARDED_BY_CONTEXT(sequence_checker_);
// Table which stores timestamps of sent reports, and checks if new reports
// can be created given API rate limits. The underlying table is created in
// |db_|, but only accessed within |RateLimitTable|.
// `rate_limit_table_` references `delegate_` So it must be declared after it.
RateLimitTable rate_limit_table_ GUARDED_BY_CONTEXT(sequence_checker_);
// `aggregatable_rate_limit_table_` references `delegate_` So it must be
// declared after it.
AggregatableDebugRateLimitTable aggregatable_debug_rate_limit_table_
GUARDED_BY_CONTEXT(sequence_checker_);
OsRegistrationsTable os_registrations_table_
GUARDED_BY_CONTEXT(sequence_checker_);
SEQUENCE_CHECKER(sequence_checker_);
};
} // namespace content
#endif // CONTENT_BROWSER_ATTRIBUTION_REPORTING_ATTRIBUTION_STORAGE_SQL_H_
|