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
|
// Copyright 2016 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/core/browser/db/v4_database.h"
#include <memory>
#include <utility>
#include "base/debug/crash_logging.h"
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/lazy_instance.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/histogram_functions.h"
#include "base/metrics/histogram_macros.h"
#include "base/task/sequenced_task_runner.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "components/safe_browsing/core/common/features.h"
#include "components/safe_browsing/core/common/proto/webui.pb.h"
#if BUILDFLAG(IS_APPLE)
#include "base/apple/backup_util.h"
#endif
using base::TimeTicks;
namespace safe_browsing {
namespace {
const char kV4DatabaseSizeMetric[] = "SafeBrowsing.V4Database.Size";
const char kV4DatabaseSizeLinearMetric[] = "SafeBrowsing.V4Database.SizeLinear";
const char kV4DatabaseUpdateLatency[] = "SafeBrowsing.V4Database.UpdateLatency";
constexpr base::TimeDelta kUmaMinTime = base::Milliseconds(1);
constexpr base::TimeDelta kUmaMaxTime = base::Hours(5);
constexpr int kUmaNumBuckets = 50;
// The factory that controls the creation of the V4Database object.
base::LazyInstance<std::unique_ptr<V4DatabaseFactory>>::Leaky g_db_factory =
LAZY_INSTANCE_INITIALIZER;
// The factory that controls the creation of V4Store objects.
base::LazyInstance<std::unique_ptr<V4StoreFactory>>::Leaky g_store_factory =
LAZY_INSTANCE_INITIALIZER;
// Verifies the checksums on a collection of stores.
// Returns the IDs of stores whose checksums failed to verify.
std::vector<ListIdentifier> VerifyChecksums(
std::vector<std::pair<ListIdentifier, V4Store*>> stores) {
std::vector<ListIdentifier> stores_to_reset;
for (const auto& store_map_iter : stores) {
if (!store_map_iter.second->VerifyChecksum()) {
stores_to_reset.push_back(store_map_iter.first);
}
}
return stores_to_reset;
}
// Returns hash prefixes matching the collection of stores.
FullHashToStoreAndHashPrefixesMap CheckStores(
const std::vector<FullHashStr>& full_hashes,
std::vector<std::pair<ListIdentifier, V4Store*>> stores) {
FullHashToStoreAndHashPrefixesMap results;
for (const auto& store : stores) {
base::TimeTicks start = base::TimeTicks::Now();
for (const auto& full_hash : full_hashes) {
HashPrefixStr hash_prefix =
store.second->GetMatchingHashPrefix(full_hash);
if (!hash_prefix.empty()) {
results[full_hash].emplace_back(store.first, hash_prefix);
}
}
if (store.first.threat_type() == ThreatType::HIGH_CONFIDENCE_ALLOWLIST) {
base::UmaHistogramTimes(
"SafeBrowsing.V4Store.DbThread."
"CheckHighConfidenceAllowlistStoreDuration",
base::TimeTicks::Now() - start);
}
}
return results;
}
} // namespace
std::unique_ptr<V4Database, base::OnTaskRunnerDeleter>
V4DatabaseFactory::Create(
const scoped_refptr<base::SequencedTaskRunner>& db_task_runner,
std::unique_ptr<StoreMap> store_map) {
// Not using MakeUnique since the constructor of V4Database is protected.
return std::unique_ptr<V4Database, base::OnTaskRunnerDeleter>(
new V4Database(db_task_runner, std::move(store_map)),
base::OnTaskRunnerDeleter(db_task_runner));
}
// static
void V4Database::Create(
const scoped_refptr<base::SequencedTaskRunner>& db_task_runner,
const base::FilePath& base_path,
const ListInfos& list_infos,
NewDatabaseReadyCallback new_db_callback) {
DCHECK(base_path.IsAbsolute());
DCHECK(!list_infos.empty());
const scoped_refptr<base::SequencedTaskRunner> callback_task_runner =
base::SequencedTaskRunner::GetCurrentDefault();
db_task_runner->PostTask(
FROM_HERE, base::BindOnce(&V4Database::CreateOnTaskRunner, db_task_runner,
base_path, list_infos, callback_task_runner,
std::move(new_db_callback)));
}
// static
void V4Database::CreateOnTaskRunner(
const scoped_refptr<base::SequencedTaskRunner>& db_task_runner,
const base::FilePath& base_path,
const ListInfos& list_infos,
const scoped_refptr<base::SequencedTaskRunner>& callback_task_runner,
NewDatabaseReadyCallback new_db_callback) {
DCHECK(db_task_runner->RunsTasksInCurrentSequence());
if (!g_store_factory.Get())
g_store_factory.Get() = std::make_unique<V4StoreFactory>();
if (!base::CreateDirectory(base_path)) {
return;
}
#if BUILDFLAG(IS_APPLE)
base::apple::SetBackupExclusion(base_path);
#endif
std::unique_ptr<StoreMap> store_map = std::make_unique<StoreMap>();
for (const auto& it : list_infos) {
if (!it.fetch_updates()) {
// This list doesn't need to be fetched or stored on disk.
continue;
}
const base::FilePath store_path = base_path.AppendASCII(it.filename());
V4StorePtr store =
g_store_factory.Get()->CreateV4Store(db_task_runner, store_path);
base::UmaHistogramBoolean("SafeBrowsing.V4Store.ReadyOnStartup",
store->HasValidData());
store_map->insert({it.list_id(), std::move(store)});
}
if (!g_db_factory.Get())
g_db_factory.Get() = std::make_unique<V4DatabaseFactory>();
std::unique_ptr<V4Database, base::OnTaskRunnerDeleter> v4_database =
g_db_factory.Get()->Create(db_task_runner, std::move(store_map));
// Database is done loading, pass it to the new_db_callback on the caller's
// thread. This would unblock resource loads.
callback_task_runner->PostTask(
FROM_HERE,
base::BindOnce(std::move(new_db_callback), std::move(v4_database)));
}
// static
void V4Database::RegisterDatabaseFactoryForTest(
std::unique_ptr<V4DatabaseFactory> factory) {
g_db_factory.Get() = std::move(factory);
}
// static
void V4Database::RegisterStoreFactoryForTest(
std::unique_ptr<V4StoreFactory> factory) {
g_store_factory.Get() = std::move(factory);
}
V4Database::V4Database(
const scoped_refptr<base::SequencedTaskRunner>& db_task_runner,
std::unique_ptr<StoreMap> store_map)
: store_map_(std::move(store_map)),
db_task_runner_(db_task_runner),
pending_store_updates_(0) {
DCHECK(db_task_runner->RunsTasksInCurrentSequence());
// This method executes on the DB sequence, whereas
// |sequence_checker_| is meant to verify methods that should
// execute on the UI sequence. Detach that sequence checker here; it
// will be bound to the UI sequence in InitializeOnUIThread().
DETACH_FROM_SEQUENCE(sequence_checker_);
}
void V4Database::InitializeOnUIThread() {
// This invocation serves to bind |sequence_checker_| to the UI sequence
// after its having been detached from the DB sequence in this object's
// constructor.
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
}
void V4Database::StopOnUIThread() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
weak_factory_on_io_.InvalidateWeakPtrs();
}
V4Database::~V4Database() {
DCHECK(db_task_runner_->RunsTasksInCurrentSequence());
}
void V4Database::ApplyUpdate(
std::unique_ptr<ParsedServerResponse> parsed_server_response,
DatabaseUpdatedCallback db_updated_callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(!pending_store_updates_);
DCHECK(db_updated_callback_.is_null());
db_updated_callback_ = db_updated_callback;
// Post the V4Store update task on the DB sequence but get the callback on the
// current sequence.
const scoped_refptr<base::SequencedTaskRunner> current_task_runner =
base::SequencedTaskRunner::GetCurrentDefault();
for (std::unique_ptr<ListUpdateResponse>& response :
*parsed_server_response) {
ListIdentifier identifier(*response);
StoreMap::const_iterator iter = store_map_->find(identifier);
if (iter != store_map_->end()) {
const V4StorePtr& old_store = iter->second;
if (old_store->state() != response->new_client_state()) {
// A different state implies there are updates to process.
pending_store_updates_++;
UpdatedStoreReadyCallback store_ready_callback =
base::BindOnce(&V4Database::UpdatedStoreReady,
weak_factory_on_io_.GetWeakPtr(), identifier);
db_task_runner_->PostTask(
FROM_HERE, base::BindOnce(&V4Store::ApplyUpdate,
base::Unretained(old_store.get()),
std::move(response), current_task_runner,
std::move(store_ready_callback)));
}
} else {
NOTREACHED() << "Got update for unexpected identifier: " << identifier;
}
}
if (!pending_store_updates_) {
current_task_runner->PostTask(FROM_HERE, db_updated_callback_);
db_updated_callback_.Reset();
RecordDatabaseUpdateLatency();
last_update_ = base::Time::Now();
}
}
void V4Database::UpdatedStoreReady(ListIdentifier identifier,
V4StorePtr new_store) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(pending_store_updates_);
if (new_store) {
if (auto it = store_map_->find(identifier); it != store_map_->end()) {
it->second.swap(new_store);
}
}
pending_store_updates_--;
if (!pending_store_updates_) {
db_updated_callback_.Run();
RecordDatabaseUpdateLatency();
last_update_ = base::Time::Now();
db_updated_callback_.Reset();
}
}
std::unique_ptr<StoreStateMap> V4Database::GetStoreStateMap() {
std::unique_ptr<StoreStateMap> store_state_map =
std::make_unique<StoreStateMap>();
for (const auto& store_map_iter : *store_map_) {
(*store_state_map)[store_map_iter.first] = store_map_iter.second->state();
}
return store_state_map;
}
bool V4Database::AreAnyStoresAvailable(
const StoresToCheck& stores_to_check) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
for (const ListIdentifier& identifier : stores_to_check) {
if (IsStoreAvailable(identifier))
return true;
}
return false;
}
bool V4Database::AreAllStoresAvailable(
const StoresToCheck& stores_to_check) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
for (const ListIdentifier& identifier : stores_to_check) {
if (!IsStoreAvailable(identifier))
return false;
}
return true;
}
void V4Database::GetStoresMatchingFullHash(
const std::vector<FullHashStr>& full_hashes,
const StoresToCheck& stores_to_check,
base::OnceCallback<void(FullHashToStoreAndHashPrefixesMap)> callback) {
FullHashToStoreAndHashPrefixesMap results;
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
std::vector<std::pair<ListIdentifier, V4Store*>> stores;
for (const ListIdentifier& identifier : stores_to_check) {
if (!IsStoreAvailable(identifier)) {
continue;
}
const auto& store_pair = store_map_->find(identifier);
CHECK(store_pair != store_map_->end());
stores.emplace_back(identifier, store_pair->second.get());
}
auto check_stores =
base::BindOnce(CheckStores, full_hashes, std::move(stores));
// The V4Stores ptrs are guaranteed to be valid because their deletion would
// be sequenced on the DB thread, after this posted task is serviced.
db_task_runner_->PostTaskAndReplyWithResult(
FROM_HERE, std::move(check_stores), std::move(callback));
}
void V4Database::ResetStores(
const std::vector<ListIdentifier>& stores_to_reset) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
for (const ListIdentifier& identifier : stores_to_reset) {
store_map_->at(identifier)->Reset();
}
}
void V4Database::VerifyChecksum(
DatabaseReadyForUpdatesCallback db_ready_for_updates_callback) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Make a threadsafe copy of store_map_ w/raw pointers that we can hand to
// the DB thread. The V4Stores ptrs are guaranteed to be valid because their
// deletion would be sequenced on the DB thread, after this posted task is
// serviced.
std::vector<std::pair<ListIdentifier, V4Store*>> stores;
for (const auto& next_store : *store_map_) {
stores.push_back(std::make_pair(next_store.first, next_store.second.get()));
}
db_task_runner_->PostTaskAndReplyWithResult(
FROM_HERE, base::BindOnce(&VerifyChecksums, stores),
base::BindOnce(&V4Database::OnChecksumVerified,
weak_factory_on_io_.GetWeakPtr(),
std::move(db_ready_for_updates_callback)));
}
void V4Database::OnChecksumVerified(
DatabaseReadyForUpdatesCallback db_ready_for_updates_callback,
const std::vector<ListIdentifier>& stores_to_reset) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
std::move(db_ready_for_updates_callback).Run(stores_to_reset);
}
bool V4Database::IsStoreAvailable(const ListIdentifier& identifier) const {
const auto& store_pair = store_map_->find(identifier);
return (store_pair != store_map_->end()) &&
store_pair->second->HasValidData();
}
int64_t V4Database::GetStoreSizeInBytes(
const ListIdentifier& identifier) const {
const auto& store_pair = store_map_->find(identifier);
if (store_pair == store_map_->end()) {
return 0;
}
return store_pair->second->file_size();
}
void V4Database::RecordFileSizeHistograms() {
int64_t db_size = 0;
for (const auto& store_map_iter : *store_map_) {
const int64_t size =
store_map_iter.second->RecordAndReturnFileSize(kV4DatabaseSizeMetric);
db_size += size;
}
const int64_t db_size_kilobytes = static_cast<int64_t>(db_size / 1024);
UMA_HISTOGRAM_COUNTS_1M(kV4DatabaseSizeMetric, db_size_kilobytes);
const int64_t db_size_megabytes =
static_cast<int64_t>(db_size_kilobytes / 1024);
UMA_HISTOGRAM_EXACT_LINEAR(kV4DatabaseSizeLinearMetric, db_size_megabytes,
50);
}
void V4Database::RecordDatabaseUpdateLatency() {
if (!last_update_.is_null())
UmaHistogramCustomTimes(kV4DatabaseUpdateLatency,
base::Time::Now() - last_update_, kUmaMinTime,
kUmaMaxTime, kUmaNumBuckets);
}
void V4Database::CollectDatabaseInfo(
DatabaseManagerInfo::DatabaseInfo* database_info) {
// Records the database size in bytes.
int64_t db_size = 0;
for (const auto& store_map_iter : *store_map_) {
DatabaseManagerInfo::DatabaseInfo::StoreInfo* store_info =
database_info->add_store_info();
store_map_iter.second->CollectStoreInfo(store_info, kV4DatabaseSizeMetric);
db_size += store_info->file_size_bytes();
}
database_info->set_database_size_bytes(db_size);
}
ListInfo::ListInfo(const bool fetch_updates,
const std::string& filename,
const ListIdentifier& list_id,
const SBThreatType sb_threat_type)
: fetch_updates_(fetch_updates),
filename_(filename),
list_id_(list_id),
sb_threat_type_(sb_threat_type) {
DCHECK(!fetch_updates_ || !filename_.empty());
DCHECK_NE(SBThreatType::SB_THREAT_TYPE_SAFE, sb_threat_type_);
}
ListInfo::~ListInfo() = default;
} // namespace safe_browsing
|