blob: c58e09bd4fc91b5c1d9ba3f5b57591d6e070bd07 [file] [log] [blame]
// 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 "chrome/browser/password_manager/password_store_proxy_mac.h"
#include <string>
#include <utility>
#include "base/metrics/histogram_macros.h"
#include "chrome/browser/password_manager/password_store_mac.h"
#include "chrome/browser/password_manager/simple_password_store_mac.h"
#include "content/public/browser/browser_thread.h"
#include "crypto/apple_keychain.h"
using password_manager::MigrationStatus;
using password_manager::PasswordStoreChangeList;
PasswordStoreProxyMac::PasswordStoreProxyMac(
scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner,
std::unique_ptr<crypto::AppleKeychain> keychain,
std::unique_ptr<password_manager::LoginDatabase> login_db,
PrefService* prefs)
: PasswordStore(main_thread_runner, nullptr),
login_metadata_db_(std::move(login_db)),
keychain_(std::move(keychain)) {
DCHECK(login_metadata_db_);
migration_status_.Init(password_manager::prefs::kKeychainMigrationStatus,
prefs);
// The login database will be set later after initialization.
password_store_simple_ =
new SimplePasswordStoreMac(main_thread_runner, nullptr, nullptr);
}
PasswordStoreProxyMac::~PasswordStoreProxyMac() {
}
bool PasswordStoreProxyMac::Init(
const syncer::SyncableService::StartSyncFlare& flare) {
// Set up a background thread.
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
thread_.reset(new base::Thread("Chrome_PasswordStore_Thread"));
if (!thread_->Start()) {
thread_.reset();
return false;
}
if (!password_manager::PasswordStore::Init(flare))
return false;
return ScheduleTask(
base::Bind(&PasswordStoreProxyMac::InitOnBackgroundThread, this,
static_cast<MigrationStatus>(migration_status_.GetValue())));
}
void PasswordStoreProxyMac::ShutdownOnUIThread() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
PasswordStore::ShutdownOnUIThread();
thread_->Stop();
// Execute the task which are still pending.
FlushPendingTasks();
// Unsubscribe the observer, otherwise it's too late in the destructor.
migration_status_.Destroy();
GetBackend()->ShutdownOnUIThread();
}
scoped_refptr<base::SingleThreadTaskRunner>
PasswordStoreProxyMac::GetBackgroundTaskRunner() {
return thread_ ? thread_->task_runner() : nullptr;
}
password_manager::PasswordStore* PasswordStoreProxyMac::GetBackend() const {
return password_store_simple_.get();
}
void PasswordStoreProxyMac::InitOnBackgroundThread(MigrationStatus status) {
DCHECK(GetBackgroundTaskRunner()->BelongsToCurrentThread());
if (!login_metadata_db_->Init()) {
login_metadata_db_.reset();
LOG(ERROR) << "Could not create/open login database.";
}
if (login_metadata_db_ && (status == MigrationStatus::NOT_STARTED ||
status == MigrationStatus::FAILED_ONCE ||
status == MigrationStatus::FAILED_TWICE)) {
// Let's try to migrate the passwords.
login_metadata_db_->set_clear_password_values(true);
auto import_status =
PasswordStoreMac::ImportFromKeychain(login_metadata_db_.get(),
keychain_.get());
if (import_status == PasswordStoreMac::MIGRATION_OK) {
status = MigrationStatus::MIGRATED;
} else if (import_status == PasswordStoreMac::MIGRATION_PARTIAL) {
status = MigrationStatus::MIGRATED_PARTIALLY;
} else {
login_metadata_db_.reset();
}
pending_ui_tasks_.push_back(
base::Bind(&PasswordStoreProxyMac::UpdateStatusPref, this, status));
} else if (login_metadata_db_ && status == MigrationStatus::MIGRATED) {
// Delete the migrated passwords from the keychain.
std::vector<std::unique_ptr<autofill::PasswordForm>> forms;
if (login_metadata_db_->GetAutofillableLogins(&forms)) {
PasswordStoreMac::CleanUpKeychain(keychain_.get(), forms);
status = MigrationStatus::MIGRATED_DELETED;
pending_ui_tasks_.push_back(
base::Bind(&PasswordStoreProxyMac::UpdateStatusPref, this, status));
}
}
password_store_simple_->InitWithTaskRunner(GetBackgroundTaskRunner(),
std::move(login_metadata_db_));
if (!pending_ui_tasks_.empty()) {
main_thread_runner_->PostTask(
FROM_HERE, base::Bind(&PasswordStoreProxyMac::FlushPendingTasks, this));
}
UMA_HISTOGRAM_ENUMERATION(
"PasswordManager.KeychainMigration.Status", static_cast<int>(status),
static_cast<int>(MigrationStatus::MIGRATION_STATUS_COUNT));
}
void PasswordStoreProxyMac::UpdateStatusPref(MigrationStatus status) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
migration_status_.SetValue(static_cast<int>(status));
}
void PasswordStoreProxyMac::FlushPendingTasks() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
for (auto& task : pending_ui_tasks_)
task.Run();
pending_ui_tasks_.clear();
}
void PasswordStoreProxyMac::ReportMetricsImpl(
const std::string& sync_username,
bool custom_passphrase_sync_enabled) {
GetBackend()->ReportMetricsImpl(sync_username,
custom_passphrase_sync_enabled);
}
PasswordStoreChangeList PasswordStoreProxyMac::AddLoginImpl(
const autofill::PasswordForm& form) {
return GetBackend()->AddLoginImpl(form);
}
PasswordStoreChangeList PasswordStoreProxyMac::UpdateLoginImpl(
const autofill::PasswordForm& form) {
return GetBackend()->UpdateLoginImpl(form);
}
PasswordStoreChangeList PasswordStoreProxyMac::RemoveLoginImpl(
const autofill::PasswordForm& form) {
return GetBackend()->RemoveLoginImpl(form);
}
PasswordStoreChangeList PasswordStoreProxyMac::RemoveLoginsByURLAndTimeImpl(
const base::Callback<bool(const GURL&)>& url_filter,
base::Time delete_begin,
base::Time delete_end) {
return GetBackend()->RemoveLoginsByURLAndTimeImpl(url_filter, delete_begin,
delete_end);
}
PasswordStoreChangeList PasswordStoreProxyMac::RemoveLoginsCreatedBetweenImpl(
base::Time delete_begin,
base::Time delete_end) {
return GetBackend()->RemoveLoginsCreatedBetweenImpl(delete_begin, delete_end);
}
PasswordStoreChangeList PasswordStoreProxyMac::RemoveLoginsSyncedBetweenImpl(
base::Time delete_begin,
base::Time delete_end) {
return GetBackend()->RemoveLoginsSyncedBetweenImpl(delete_begin, delete_end);
}
PasswordStoreChangeList
PasswordStoreProxyMac::DisableAutoSignInForOriginsImpl(
const base::Callback<bool(const GURL&)>& origin_filter) {
return GetBackend()->DisableAutoSignInForOriginsImpl(origin_filter);
}
bool PasswordStoreProxyMac::RemoveStatisticsByOriginAndTimeImpl(
const base::Callback<bool(const GURL&)>& origin_filter,
base::Time delete_begin,
base::Time delete_end) {
return GetBackend()->RemoveStatisticsByOriginAndTimeImpl(
origin_filter, delete_begin, delete_end);
}
std::vector<std::unique_ptr<autofill::PasswordForm>>
PasswordStoreProxyMac::FillMatchingLogins(const FormDigest& form) {
return GetBackend()->FillMatchingLogins(form);
}
bool PasswordStoreProxyMac::FillAutofillableLogins(
std::vector<std::unique_ptr<autofill::PasswordForm>>* forms) {
return GetBackend()->FillAutofillableLogins(forms);
}
bool PasswordStoreProxyMac::FillBlacklistLogins(
std::vector<std::unique_ptr<autofill::PasswordForm>>* forms) {
return GetBackend()->FillBlacklistLogins(forms);
}
void PasswordStoreProxyMac::AddSiteStatsImpl(
const password_manager::InteractionsStats& stats) {
GetBackend()->AddSiteStatsImpl(stats);
}
void PasswordStoreProxyMac::RemoveSiteStatsImpl(const GURL& origin_domain) {
GetBackend()->RemoveSiteStatsImpl(origin_domain);
}
std::vector<std::unique_ptr<password_manager::InteractionsStats>>
PasswordStoreProxyMac::GetSiteStatsImpl(const GURL& origin_domain) {
return GetBackend()->GetSiteStatsImpl(origin_domain);
}