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
|
// Copyright 2022 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/first_party_sets/first_party_sets_handler_database_helper.h"
#include "base/containers/contains.h"
#include "base/logging.h"
#include "content/browser/first_party_sets/database/first_party_sets_database.h"
#include "net/base/schemeful_site.h"
#include "net/first_party_sets/first_party_set_entry.h"
#include "net/first_party_sets/first_party_sets_cache_filter.h"
#include "net/first_party_sets/first_party_sets_context_config.h"
#include "net/first_party_sets/global_first_party_sets.h"
namespace content {
FirstPartySetsHandlerDatabaseHelper::FirstPartySetsHandlerDatabaseHelper(
const base::FilePath& db_path) {
CHECK(!db_path.empty());
db_ = std::make_unique<FirstPartySetsDatabase>(db_path);
}
FirstPartySetsHandlerDatabaseHelper::~FirstPartySetsHandlerDatabaseHelper() =
default;
// static
base::flat_set<net::SchemefulSite>
FirstPartySetsHandlerDatabaseHelper::ComputeSetsDiff(
const net::GlobalFirstPartySets& old_sets,
const net::FirstPartySetsContextConfig& old_config,
const net::GlobalFirstPartySets& current_sets,
const net::FirstPartySetsContextConfig& current_config) {
// TODO(crbug.com/40186153): For now we don't clear site data if FPSs
// is disabled. This may change with future feature ruquest.
if ((old_sets.empty() && old_config.empty()) ||
(current_sets.empty() && current_config.empty())) {
return {};
}
std::vector<net::SchemefulSite> result;
old_sets.ForEachEffectiveSetEntry(
old_config, [&](const net::SchemefulSite& old_member,
const net::FirstPartySetEntry& old_entry) {
std::optional<net::FirstPartySetEntry> current_entry =
current_sets.FindEntry(old_member, current_config);
// Look for the removed sites and the ones whose primary has changed.
if (!current_entry.has_value() ||
current_entry.value().primary() != old_entry.primary()) {
result.push_back(old_member);
}
return true;
});
return result;
}
std::optional<
std::pair<std::vector<net::SchemefulSite>, net::FirstPartySetsCacheFilter>>
FirstPartySetsHandlerDatabaseHelper::UpdateAndGetSitesToClearForContext(
const std::string& browser_context_id,
const net::GlobalFirstPartySets& current_sets,
const net::FirstPartySetsContextConfig& current_config) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
CHECK(!browser_context_id.empty());
std::optional<
std::pair<net::GlobalFirstPartySets, net::FirstPartySetsContextConfig>>
old_sets_with_config = db_->GetGlobalSetsAndConfig(browser_context_id);
if (!old_sets_with_config.has_value()) {
DVLOG(1) << "Failed to get the old sites for browser_context_id="
<< browser_context_id;
return std::nullopt;
}
base::flat_set<net::SchemefulSite> diff =
ComputeSetsDiff(old_sets_with_config->first, old_sets_with_config->second,
current_sets, current_config);
if (!db_->InsertSitesToClear(browser_context_id, diff)) {
DVLOG(1) << "Failed to update the sites to clear for browser_context_id="
<< browser_context_id;
return std::nullopt;
}
std::optional<std::pair<std::vector<net::SchemefulSite>,
net::FirstPartySetsCacheFilter>>
sites_to_clear = db_->GetSitesToClearFilters(browser_context_id);
if (!sites_to_clear.has_value()) {
DVLOG(1) << "Failed to get the sites to clear for browser_context_id="
<< browser_context_id;
}
return sites_to_clear;
}
void FirstPartySetsHandlerDatabaseHelper::UpdateClearStatusForContext(
const std::string& browser_context_id) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!db_->InsertBrowserContextCleared(browser_context_id)) {
DVLOG(1) << "Failed to update clear state for browser_context_id="
<< browser_context_id;
}
}
void FirstPartySetsHandlerDatabaseHelper::PersistSets(
const std::string& browser_context_id,
const net::GlobalFirstPartySets& sets,
const net::FirstPartySetsContextConfig& config) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
CHECK(!browser_context_id.empty());
if (!db_->PersistSets(browser_context_id, sets, config))
DVLOG(1) << "Failed to write sets into the database.";
}
std::optional<
std::pair<net::GlobalFirstPartySets, net::FirstPartySetsContextConfig>>
FirstPartySetsHandlerDatabaseHelper::GetGlobalSetsAndConfigForTesting(
const std::string& browser_context_id) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
CHECK(!browser_context_id.empty());
return db_->GetGlobalSetsAndConfig(browser_context_id);
}
// Wraps FirstPartySetsDatabase::HasEntryInBrowserContextsClearedForTesting.
bool FirstPartySetsHandlerDatabaseHelper::
HasEntryInBrowserContextsClearedForTesting(
const std::string& browser_context_id) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
CHECK(!browser_context_id.empty());
return db_->HasEntryInBrowserContextsClearedForTesting( // IN-TEST
browser_context_id);
}
} // namespace content
|