blob: 59be592b50d9840b1ee0df2518c1d8c4348a8e7a [file] [log] [blame]
// Copyright (c) 2012 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/chromeos/settings/cros_settings.h"
#include <stddef.h>
#include "base/bind.h"
#include "base/command_line.h"
#include "base/logging.h"
#include "base/strings/string_util.h"
#include "base/values.h"
#include "chrome/browser/chromeos/settings/device_settings_provider.h"
#include "chrome/browser/chromeos/settings/device_settings_service.h"
#include "chrome/browser/chromeos/settings/supervised_user_cros_settings_provider.h"
#include "chromeos/constants/chromeos_switches.h"
#include "chromeos/settings/cros_settings_names.h"
#include "chromeos/settings/system_settings_provider.h"
#include "google_apis/gaia/gaia_auth_util.h"
namespace chromeos {
static CrosSettings* g_cros_settings = nullptr;
// Calling SetForTesting sets this flag. This flag means that the production
// code which calls Initialize and Shutdown will have no effect - the test
// install attributes will remain in place until ShutdownForTesting is called.
bool g_using_cros_settings_for_testing = false;
// static
void CrosSettings::Initialize(PrefService* local_state) {
// Don't reinitialize if a specific instance has already been set for test.
if (g_using_cros_settings_for_testing)
return;
CHECK(!g_cros_settings);
g_cros_settings = new CrosSettings(DeviceSettingsService::Get(), local_state);
}
// static
bool CrosSettings::IsInitialized() {
return g_cros_settings;
}
// static
void CrosSettings::Shutdown() {
if (g_using_cros_settings_for_testing)
return;
DCHECK(g_cros_settings);
delete g_cros_settings;
g_cros_settings = nullptr;
}
// static
CrosSettings* CrosSettings::Get() {
CHECK(g_cros_settings);
return g_cros_settings;
}
// static
void CrosSettings::SetForTesting(CrosSettings* test_instance) {
DCHECK(!g_cros_settings);
DCHECK(!g_using_cros_settings_for_testing);
g_cros_settings = test_instance;
g_using_cros_settings_for_testing = true;
}
// static
void CrosSettings::ShutdownForTesting() {
DCHECK(g_using_cros_settings_for_testing);
// Don't delete the test instance, we are not the owner.
g_cros_settings = nullptr;
g_using_cros_settings_for_testing = false;
}
bool CrosSettings::IsUserWhitelisted(const std::string& username,
bool* wildcard_match) const {
// Skip whitelist check for tests.
if (chromeos::switches::ShouldSkipOobePostLogin()) {
return true;
}
bool allow_new_user = false;
GetBoolean(kAccountsPrefAllowNewUser, &allow_new_user);
if (allow_new_user)
return true;
return FindEmailInList(kAccountsPrefUsers, username, wildcard_match);
}
CrosSettings::CrosSettings() = default;
CrosSettings::CrosSettings(DeviceSettingsService* device_settings_service,
PrefService* local_state) {
CrosSettingsProvider::NotifyObserversCallback notify_cb(
base::Bind(&CrosSettings::FireObservers,
// This is safe since |this| is never deleted.
base::Unretained(this)));
auto supervised_user_cros_provider =
std::make_unique<SupervisedUserCrosSettingsProvider>(notify_cb);
supervised_user_cros_settings_provider_ = supervised_user_cros_provider.get();
AddSettingsProvider(std::move(supervised_user_cros_provider));
AddSettingsProvider(std::make_unique<DeviceSettingsProvider>(
notify_cb, device_settings_service, local_state));
AddSettingsProvider(std::make_unique<SystemSettingsProvider>(notify_cb));
}
CrosSettings::~CrosSettings() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
}
bool CrosSettings::IsCrosSettings(const std::string& path) {
return base::StartsWith(path, kCrosSettingsPrefix,
base::CompareCase::SENSITIVE);
}
const base::Value* CrosSettings::GetPref(const std::string& path) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
CrosSettingsProvider* provider = GetProvider(path);
if (provider)
return provider->Get(path);
NOTREACHED() << path << " preference was not found in the signed settings.";
return nullptr;
}
CrosSettingsProvider::TrustedStatus CrosSettings::PrepareTrustedValues(
const base::Closure& callback) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
for (size_t i = 0; i < providers_.size(); ++i) {
CrosSettingsProvider::TrustedStatus status =
providers_[i]->PrepareTrustedValues(callback);
if (status != CrosSettingsProvider::TRUSTED)
return status;
}
return CrosSettingsProvider::TRUSTED;
}
bool CrosSettings::GetBoolean(const std::string& path,
bool* bool_value) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
const base::Value* value = GetPref(path);
if (value)
return value->GetAsBoolean(bool_value);
return false;
}
bool CrosSettings::GetInteger(const std::string& path,
int* out_value) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
const base::Value* value = GetPref(path);
if (value)
return value->GetAsInteger(out_value);
return false;
}
bool CrosSettings::GetDouble(const std::string& path,
double* out_value) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
const base::Value* value = GetPref(path);
if (value)
return value->GetAsDouble(out_value);
return false;
}
bool CrosSettings::GetString(const std::string& path,
std::string* out_value) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
const base::Value* value = GetPref(path);
if (value)
return value->GetAsString(out_value);
return false;
}
bool CrosSettings::GetList(const std::string& path,
const base::ListValue** out_value) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
const base::Value* value = GetPref(path);
if (value)
return value->GetAsList(out_value);
return false;
}
bool CrosSettings::GetDictionary(
const std::string& path,
const base::DictionaryValue** out_value) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
const base::Value* value = GetPref(path);
if (value)
return value->GetAsDictionary(out_value);
return false;
}
bool CrosSettings::FindEmailInList(const std::string& path,
const std::string& email,
bool* wildcard_match) const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
const base::ListValue* list;
if (!GetList(path, &list)) {
if (wildcard_match)
*wildcard_match = false;
return false;
}
return FindEmailInList(list, email, wildcard_match);
}
// static
bool CrosSettings::FindEmailInList(const base::ListValue* list,
const std::string& email,
bool* wildcard_match) {
std::string canonicalized_email(
gaia::CanonicalizeEmail(gaia::SanitizeEmail(email)));
std::string wildcard_email;
std::string::size_type at_pos = canonicalized_email.find('@');
if (at_pos != std::string::npos) {
wildcard_email =
std::string("*").append(canonicalized_email.substr(at_pos));
}
if (wildcard_match)
*wildcard_match = false;
bool found_wildcard_match = false;
for (base::ListValue::const_iterator entry(list->begin());
entry != list->end();
++entry) {
std::string entry_string;
if (!entry->GetAsString(&entry_string)) {
NOTREACHED();
continue;
}
std::string canonicalized_entry(
gaia::CanonicalizeEmail(gaia::SanitizeEmail(entry_string)));
if (canonicalized_entry != wildcard_email &&
canonicalized_entry == canonicalized_email) {
return true;
}
// If there is a wildcard match, don't exit early. There might be an exact
// match further down the list that should take precedence if present.
if (canonicalized_entry == wildcard_email)
found_wildcard_match = true;
}
if (wildcard_match)
*wildcard_match = found_wildcard_match;
return found_wildcard_match;
}
bool CrosSettings::AddSettingsProvider(
std::unique_ptr<CrosSettingsProvider> provider) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
CrosSettingsProvider* provider_ptr = provider.get();
providers_.push_back(std::move(provider));
// Allow the provider to notify this object when settings have changed.
// Providers instantiated inside this class will have the same callback
// passed to their constructor, but doing it here allows for providers
// to be instantiated outside this class.
CrosSettingsProvider::NotifyObserversCallback notify_cb(
base::Bind(&CrosSettings::FireObservers, base::Unretained(this)));
provider_ptr->SetNotifyObserversCallback(notify_cb);
return true;
}
std::unique_ptr<CrosSettingsProvider> CrosSettings::RemoveSettingsProvider(
CrosSettingsProvider* provider) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
auto it = std::find_if(
providers_.begin(), providers_.end(),
[provider](const std::unique_ptr<CrosSettingsProvider>& ptr) {
return ptr.get() == provider;
});
if (it != providers_.end()) {
std::unique_ptr<CrosSettingsProvider> ptr = std::move(*it);
providers_.erase(it);
return ptr;
}
return nullptr;
}
std::unique_ptr<CrosSettings::ObserverSubscription>
CrosSettings::AddSettingsObserver(const std::string& path,
const base::Closure& callback) {
DCHECK(!path.empty());
DCHECK(!callback.is_null());
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!GetProvider(path)) {
NOTREACHED() << "Trying to add an observer for an unregistered setting: "
<< path;
return std::unique_ptr<CrosSettings::ObserverSubscription>();
}
// Get the callback registry associated with the path.
base::CallbackList<void(void)>* registry = nullptr;
auto observer_iterator = settings_observers_.find(path);
if (observer_iterator == settings_observers_.end()) {
settings_observers_[path] =
std::make_unique<base::CallbackList<void(void)>>();
registry = settings_observers_[path].get();
} else {
registry = observer_iterator->second.get();
}
return registry->Add(callback);
}
CrosSettingsProvider* CrosSettings::GetProvider(
const std::string& path) const {
for (size_t i = 0; i < providers_.size(); ++i) {
if (providers_[i]->HandlesSetting(path))
return providers_[i].get();
}
return nullptr;
}
void CrosSettings::FireObservers(const std::string& path) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
auto observer_iterator = settings_observers_.find(path);
if (observer_iterator == settings_observers_.end())
return;
observer_iterator->second->Notify();
}
ScopedTestCrosSettings::ScopedTestCrosSettings(PrefService* local_state) {
CrosSettings::Initialize(local_state);
}
ScopedTestCrosSettings::~ScopedTestCrosSettings() {
CrosSettings::Shutdown();
}
} // namespace chromeos