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
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/password_manager/core/browser/affiliation_backend.h"
#include <stdint.h>
#include <algorithm>
#include <utility>
#include "base/bind.h"
#include "base/location.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/histogram_macros.h"
#include "base/single_thread_task_runner.h"
#include "base/threading/thread_checker.h"
#include "base/time/clock.h"
#include "base/time/tick_clock.h"
#include "base/time/time.h"
#include "components/password_manager/core/browser/affiliation_database.h"
#include "components/password_manager/core/browser/affiliation_fetch_throttler.h"
#include "components/password_manager/core/browser/affiliation_fetcher.h"
#include "components/password_manager/core/browser/facet_manager.h"
#include "net/url_request/url_request_context_getter.h"
namespace password_manager {
AffiliationBackend::AffiliationBackend(
const scoped_refptr<net::URLRequestContextGetter>& request_context_getter,
const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
std::unique_ptr<base::Clock> time_source,
std::unique_ptr<base::TickClock> time_tick_source)
: request_context_getter_(request_context_getter),
task_runner_(task_runner),
clock_(std::move(time_source)),
tick_clock_(std::move(time_tick_source)),
construction_time_(clock_->Now()),
weak_ptr_factory_(this) {
DCHECK_LT(base::Time(), clock_->Now());
}
AffiliationBackend::~AffiliationBackend() {
}
void AffiliationBackend::Initialize(const base::FilePath& db_path) {
thread_checker_.reset(new base::ThreadChecker);
DCHECK(!throttler_);
throttler_.reset(
new AffiliationFetchThrottler(this, task_runner_, tick_clock_.get()));
// TODO(engedy): Currently, when Init() returns false, it always poisons the
// DB, so subsequent operations will silently fail. Consider either fully
// committing to this approach and making Init() a void, or handling the
// return value here. See: https://crbug.com/478831.
cache_.reset(new AffiliationDatabase());
cache_->Init(db_path);
}
void AffiliationBackend::GetAffiliations(
const FacetURI& facet_uri,
StrategyOnCacheMiss cache_miss_strategy,
const AffiliationService::ResultCallback& callback,
const scoped_refptr<base::TaskRunner>& callback_task_runner) {
DCHECK(thread_checker_ && thread_checker_->CalledOnValidThread());
FacetManager* facet_manager = GetOrCreateFacetManager(facet_uri);
DCHECK(facet_manager);
facet_manager->GetAffiliations(cache_miss_strategy, callback,
callback_task_runner);
if (facet_manager->CanBeDiscarded())
facet_managers_.erase(facet_uri);
}
void AffiliationBackend::Prefetch(const FacetURI& facet_uri,
const base::Time& keep_fresh_until) {
DCHECK(thread_checker_ && thread_checker_->CalledOnValidThread());
FacetManager* facet_manager = GetOrCreateFacetManager(facet_uri);
DCHECK(facet_manager);
facet_manager->Prefetch(keep_fresh_until);
if (facet_manager->CanBeDiscarded())
facet_managers_.erase(facet_uri);
}
void AffiliationBackend::CancelPrefetch(const FacetURI& facet_uri,
const base::Time& keep_fresh_until) {
DCHECK(thread_checker_ && thread_checker_->CalledOnValidThread());
auto facet_manager_it = facet_managers_.find(facet_uri);
if (facet_manager_it == facet_managers_.end())
return;
facet_manager_it->second->CancelPrefetch(keep_fresh_until);
if (facet_manager_it->second->CanBeDiscarded())
facet_managers_.erase(facet_uri);
}
void AffiliationBackend::TrimCache() {
DCHECK(thread_checker_ && thread_checker_->CalledOnValidThread());
std::vector<AffiliatedFacetsWithUpdateTime> all_affiliations;
cache_->GetAllAffiliations(&all_affiliations);
for (const auto& affiliation : all_affiliations)
DiscardCachedDataIfNoLongerNeeded(affiliation.facets);
}
void AffiliationBackend::TrimCacheForFacet(const FacetURI& facet_uri) {
DCHECK(thread_checker_ && thread_checker_->CalledOnValidThread());
AffiliatedFacetsWithUpdateTime affiliation;
if (cache_->GetAffiliationsForFacet(facet_uri, &affiliation))
DiscardCachedDataIfNoLongerNeeded(affiliation.facets);
}
// static
void AffiliationBackend::DeleteCache(const base::FilePath& db_path) {
AffiliationDatabase::Delete(db_path);
}
FacetManager* AffiliationBackend::GetOrCreateFacetManager(
const FacetURI& facet_uri) {
std::unique_ptr<FacetManager>& facet_manager = facet_managers_[facet_uri];
if (!facet_manager) {
facet_manager =
base::MakeUnique<FacetManager>(facet_uri, this, clock_.get());
}
return facet_manager.get();
}
void AffiliationBackend::DiscardCachedDataIfNoLongerNeeded(
const AffiliatedFacets& affiliated_facets) {
DCHECK(thread_checker_ && thread_checker_->CalledOnValidThread());
// Discard the equivalence class if there is no facet in the class whose
// FacetManager claims that it needs to keep the data.
for (const auto& facet_uri : affiliated_facets) {
auto facet_manager_it = facet_managers_.find(facet_uri);
if (facet_manager_it != facet_managers_.end() &&
!facet_manager_it->second->CanCachedDataBeDiscarded()) {
return;
}
}
CHECK(!affiliated_facets.empty());
cache_->DeleteAffiliationsForFacet(affiliated_facets[0]);
}
void AffiliationBackend::OnSendNotification(const FacetURI& facet_uri) {
DCHECK(thread_checker_ && thread_checker_->CalledOnValidThread());
auto facet_manager_it = facet_managers_.find(facet_uri);
if (facet_manager_it == facet_managers_.end())
return;
facet_manager_it->second->NotifyAtRequestedTime();
if (facet_manager_it->second->CanBeDiscarded())
facet_managers_.erase(facet_uri);
}
bool AffiliationBackend::ReadAffiliationsFromDatabase(
const FacetURI& facet_uri,
AffiliatedFacetsWithUpdateTime* affiliations) {
return cache_->GetAffiliationsForFacet(facet_uri, affiliations);
}
void AffiliationBackend::SignalNeedNetworkRequest() {
throttler_->SignalNetworkRequestNeeded();
}
void AffiliationBackend::RequestNotificationAtTime(const FacetURI& facet_uri,
base::Time time) {
// TODO(engedy): Avoid spamming the task runner; only ever schedule the first
// callback. crbug.com/437865.
task_runner_->PostDelayedTask(
FROM_HERE, base::Bind(&AffiliationBackend::OnSendNotification,
weak_ptr_factory_.GetWeakPtr(), facet_uri),
time - clock_->Now());
}
void AffiliationBackend::OnFetchSucceeded(
std::unique_ptr<AffiliationFetcherDelegate::Result> result) {
DCHECK(thread_checker_ && thread_checker_->CalledOnValidThread());
fetcher_.reset();
throttler_->InformOfNetworkRequestComplete(true);
for (const AffiliatedFacets& affiliated_facets : *result) {
AffiliatedFacetsWithUpdateTime affiliation;
affiliation.facets = affiliated_facets;
affiliation.last_update_time = clock_->Now();
std::vector<AffiliatedFacetsWithUpdateTime> obsoleted_affiliations;
cache_->StoreAndRemoveConflicting(affiliation, &obsoleted_affiliations);
// Cached data in contradiction with newly stored data automatically gets
// removed from the DB, and will be stored into |obsoleted_affiliations|.
// TODO(engedy): Currently, handling this is entirely meaningless unless in
// the edge case when the user has credentials for two Android applications
// which are now being de-associated. But even in that case, nothing will
// explode and the only symptom will be that credentials for the Android
// application that is not being fetched right now, if any, will not be
// filled into affiliated applications until the next fetch. Still, this
// should be implemented at some point by letting facet managers know if
// data. See: https://crbug.com/478832.
for (const auto& facet_uri : affiliated_facets) {
auto facet_manager_it = facet_managers_.find(facet_uri);
if (facet_manager_it == facet_managers_.end())
continue;
FacetManager* facet_manager = facet_manager_it->second.get();
facet_manager->OnFetchSucceeded(affiliation);
if (facet_manager->CanBeDiscarded())
facet_managers_.erase(facet_uri);
}
}
// A subsequent fetch may be needed if any additional GetAffiliations()
// requests came in while the current fetch was in flight.
for (const auto& facet_manager_pair : facet_managers_) {
if (facet_manager_pair.second->DoesRequireFetch()) {
throttler_->SignalNetworkRequestNeeded();
return;
}
}
}
void AffiliationBackend::OnFetchFailed() {
DCHECK(thread_checker_ && thread_checker_->CalledOnValidThread());
fetcher_.reset();
throttler_->InformOfNetworkRequestComplete(false);
// Trigger a retry if a fetch is still needed.
for (const auto& facet_manager_pair : facet_managers_) {
if (facet_manager_pair.second->DoesRequireFetch()) {
throttler_->SignalNetworkRequestNeeded();
return;
}
}
}
void AffiliationBackend::OnMalformedResponse() {
DCHECK(thread_checker_ && thread_checker_->CalledOnValidThread());
// TODO(engedy): Potentially handle this case differently. crbug.com/437865.
OnFetchFailed();
}
bool AffiliationBackend::OnCanSendNetworkRequest() {
DCHECK(!fetcher_);
std::vector<FacetURI> requested_facet_uris;
for (const auto& facet_manager_pair : facet_managers_) {
if (facet_manager_pair.second->DoesRequireFetch())
requested_facet_uris.push_back(facet_manager_pair.first);
}
// In case a request is no longer needed, return false to indicate this.
if (requested_facet_uris.empty())
return false;
fetcher_.reset(AffiliationFetcher::Create(request_context_getter_.get(),
requested_facet_uris, this));
fetcher_->StartRequest();
ReportStatistics(requested_facet_uris.size());
return true;
}
void AffiliationBackend::ReportStatistics(size_t requested_facet_uri_count) {
UMA_HISTOGRAM_COUNTS_100("PasswordManager.AffiliationBackend.FetchSize",
requested_facet_uri_count);
if (last_request_time_.is_null()) {
base::TimeDelta delay = clock_->Now() - construction_time_;
UMA_HISTOGRAM_CUSTOM_TIMES(
"PasswordManager.AffiliationBackend.FirstFetchDelay", delay,
base::TimeDelta::FromSeconds(1), base::TimeDelta::FromDays(3), 50);
} else {
base::TimeDelta delay = clock_->Now() - last_request_time_;
UMA_HISTOGRAM_CUSTOM_TIMES(
"PasswordManager.AffiliationBackend.SubsequentFetchDelay", delay,
base::TimeDelta::FromSeconds(1), base::TimeDelta::FromDays(3), 50);
}
last_request_time_ = clock_->Now();
}
void AffiliationBackend::SetThrottlerForTesting(
std::unique_ptr<AffiliationFetchThrottler> throttler) {
throttler_ = std::move(throttler);
}
} // namespace password_manager
|