blob: 718a8ef2c5fb9d325afa66bf0f8e45dee114a64b [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 "extensions/browser/api/declarative/rules_registry.h"
#include <utility>
#include "base/bind.h"
#include "base/logging.h"
#include "base/message_loop/message_loop.h"
#include "base/metrics/histogram.h"
#include "base/stl_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "base/values.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_source.h"
#include "extensions/browser/api/declarative/rules_cache_delegate.h"
#include "extensions/browser/extension_error.h"
#include "extensions/browser/extension_prefs.h"
#include "extensions/browser/extension_system.h"
#include "extensions/browser/extensions_browser_client.h"
#include "extensions/browser/state_store.h"
#include "extensions/common/api/declarative/declarative_manifest_data.h"
#include "extensions/common/extension.h"
#include "extensions/common/extensions_client.h"
#include "extensions/common/manifest_constants.h"
namespace extensions {
namespace {
const char kSuccess[] = "";
const char kDuplicateRuleId[] = "Duplicate rule ID: %s";
const char kErrorCannotRemoveManifestRules[] =
"Rules declared in the 'event_rules' manifest field cannot be removed";
std::unique_ptr<base::Value> RulesToValue(
const std::vector<linked_ptr<api::events::Rule>>& rules) {
std::unique_ptr<base::ListValue> list(new base::ListValue());
for (size_t i = 0; i < rules.size(); ++i)
list->Append(rules[i]->ToValue());
return std::move(list);
}
std::vector<linked_ptr<api::events::Rule>> RulesFromValue(
const base::Value* value) {
std::vector<linked_ptr<api::events::Rule>> rules;
const base::ListValue* list = NULL;
if (!value || !value->GetAsList(&list))
return rules;
rules.reserve(list->GetSize());
for (size_t i = 0; i < list->GetSize(); ++i) {
const base::DictionaryValue* dict = NULL;
if (!list->GetDictionary(i, &dict))
continue;
linked_ptr<api::events::Rule> rule(new api::events::Rule());
if (api::events::Rule::Populate(*dict, rule.get()))
rules.push_back(rule);
}
return rules;
}
std::string ToId(int identifier) {
return base::StringPrintf("_%d_", identifier);
}
} // namespace
// RulesRegistry
RulesRegistry::RulesRegistry(content::BrowserContext* browser_context,
const std::string& event_name,
content::BrowserThread::ID owner_thread,
RulesCacheDelegate* cache_delegate,
int id)
: browser_context_(browser_context),
owner_thread_(owner_thread),
event_name_(event_name),
id_(id),
ready_(/*signaled=*/!cache_delegate), // Immediately ready if no cache
// delegate to wait for.
last_generated_rule_identifier_id_(0),
weak_ptr_factory_(browser_context_ ? this : NULL) {
if (cache_delegate) {
cache_delegate_ = cache_delegate->GetWeakPtr();
cache_delegate->Init(this);
}
}
std::string RulesRegistry::AddRulesNoFill(
const std::string& extension_id,
const std::vector<linked_ptr<api::events::Rule>>& rules,
RulesDictionary* out) {
DCHECK_CURRENTLY_ON(owner_thread());
// Verify that all rule IDs are new.
for (std::vector<linked_ptr<api::events::Rule>>::const_iterator i =
rules.begin();
i != rules.end(); ++i) {
const RuleId& rule_id = *((*i)->id);
// Every rule should have a priority assigned.
DCHECK((*i)->priority);
RulesDictionaryKey key(extension_id, rule_id);
if (rules_.find(key) != rules_.end() ||
manifest_rules_.find(key) != manifest_rules_.end())
return base::StringPrintf(kDuplicateRuleId, rule_id.c_str());
}
std::string error = AddRulesImpl(extension_id, rules);
if (!error.empty())
return error;
// Commit all rules into |rules_| on success.
for (std::vector<linked_ptr<api::events::Rule>>::const_iterator i =
rules.begin();
i != rules.end(); ++i) {
const RuleId& rule_id = *((*i)->id);
RulesDictionaryKey key(extension_id, rule_id);
(*out)[key] = *i;
}
MaybeProcessChangedRules(extension_id);
return kSuccess;
}
std::string RulesRegistry::AddRules(
const std::string& extension_id,
const std::vector<linked_ptr<api::events::Rule>>& rules) {
return AddRulesInternal(extension_id, rules, &rules_);
}
std::string RulesRegistry::AddRulesInternal(
const std::string& extension_id,
const std::vector<linked_ptr<api::events::Rule>>& rules,
RulesDictionary* out) {
DCHECK_CURRENTLY_ON(owner_thread());
std::string error = CheckAndFillInOptionalRules(extension_id, rules);
if (!error.empty())
return error;
FillInOptionalPriorities(rules);
return AddRulesNoFill(extension_id, rules, out);
}
std::string RulesRegistry::RemoveRules(
const std::string& extension_id,
const std::vector<std::string>& rule_identifiers) {
DCHECK_CURRENTLY_ON(owner_thread());
// Check if any of the rules are non-removable.
for (RuleId rule_id : rule_identifiers) {
RulesDictionaryKey lookup_key(extension_id, rule_id);
RulesDictionary::iterator itr = manifest_rules_.find(lookup_key);
if (itr != manifest_rules_.end())
return kErrorCannotRemoveManifestRules;
}
std::string error = RemoveRulesImpl(extension_id, rule_identifiers);
if (!error.empty())
return error;
for (std::vector<std::string>::const_iterator i = rule_identifiers.begin();
i != rule_identifiers.end();
++i) {
RulesDictionaryKey lookup_key(extension_id, *i);
rules_.erase(lookup_key);
}
MaybeProcessChangedRules(extension_id);
RemoveUsedRuleIdentifiers(extension_id, rule_identifiers);
return kSuccess;
}
std::string RulesRegistry::RemoveAllRules(const std::string& extension_id) {
std::string result =
RulesRegistry::RemoveAllRulesNoStoreUpdate(extension_id, false);
MaybeProcessChangedRules(extension_id); // Now update the prefs and store.
return result;
}
std::string RulesRegistry::RemoveAllRulesNoStoreUpdate(
const std::string& extension_id,
bool remove_manifest_rules) {
DCHECK_CURRENTLY_ON(owner_thread());
std::string error = RemoveAllRulesImpl(extension_id);
if (!error.empty())
return error;
auto remove_rules = [&extension_id](RulesDictionary& dictionary) {
for (auto it = dictionary.begin(); it != dictionary.end();) {
if (it->first.first == extension_id)
dictionary.erase(it++);
else
++it;
}
};
remove_rules(rules_);
if (remove_manifest_rules)
remove_rules(manifest_rules_);
RemoveAllUsedRuleIdentifiers(extension_id);
return kSuccess;
}
void RulesRegistry::GetRules(const std::string& extension_id,
const std::vector<std::string>& rule_identifiers,
std::vector<linked_ptr<api::events::Rule>>* out) {
DCHECK_CURRENTLY_ON(owner_thread());
for (const auto& i : rule_identifiers) {
RulesDictionaryKey lookup_key(extension_id, i);
RulesDictionary::iterator entry = rules_.find(lookup_key);
if (entry != rules_.end())
out->push_back(entry->second);
entry = manifest_rules_.find(lookup_key);
if (entry != manifest_rules_.end())
out->push_back(entry->second);
}
}
void RulesRegistry::GetRules(const std::string& extension_id,
const RulesDictionary& rules,
std::vector<linked_ptr<api::events::Rule>>* out) {
for (const auto& i : rules) {
const RulesDictionaryKey& key = i.first;
if (key.first == extension_id)
out->push_back(i.second);
}
}
void RulesRegistry::GetAllRules(
const std::string& extension_id,
std::vector<linked_ptr<api::events::Rule>>* out) {
DCHECK_CURRENTLY_ON(owner_thread());
GetRules(extension_id, manifest_rules_, out);
GetRules(extension_id, rules_, out);
}
void RulesRegistry::OnExtensionUnloaded(const Extension* extension) {
DCHECK_CURRENTLY_ON(owner_thread());
std::string error = RemoveAllRulesImpl(extension->id());
if (!error.empty())
ReportInternalError(extension->id(), error);
}
void RulesRegistry::OnExtensionUninstalled(const Extension* extension) {
DCHECK_CURRENTLY_ON(owner_thread());
std::string error = RemoveAllRulesNoStoreUpdate(extension->id(), true);
if (!error.empty())
ReportInternalError(extension->id(), error);
}
void RulesRegistry::OnExtensionLoaded(const Extension* extension) {
DCHECK_CURRENTLY_ON(owner_thread());
std::vector<linked_ptr<api::events::Rule>> rules;
GetAllRules(extension->id(), &rules);
DeclarativeManifestData* declarative_data =
DeclarativeManifestData::Get(extension);
if (declarative_data) {
std::vector<linked_ptr<api::events::Rule>>& manifest_rules =
declarative_data->RulesForEvent(event_name_);
if (manifest_rules.size()) {
std::string error =
AddRulesInternal(extension->id(), manifest_rules, &manifest_rules_);
if (!error.empty())
ReportInternalError(extension->id(), error);
}
}
std::string error = AddRulesImpl(extension->id(), rules);
if (!error.empty())
ReportInternalError(extension->id(), error);
}
size_t RulesRegistry::GetNumberOfUsedRuleIdentifiersForTesting() const {
size_t entry_count = 0u;
for (RuleIdentifiersMap::const_iterator extension =
used_rule_identifiers_.begin();
extension != used_rule_identifiers_.end();
++extension) {
// Each extension is counted as 1 just for being there. Otherwise we miss
// keys with empty values.
entry_count += 1u + extension->second.size();
}
return entry_count;
}
void RulesRegistry::DeserializeAndAddRules(const std::string& extension_id,
std::unique_ptr<base::Value> rules) {
DCHECK_CURRENTLY_ON(owner_thread());
std::string error =
AddRulesNoFill(extension_id, RulesFromValue(rules.get()), &rules_);
if (!error.empty())
ReportInternalError(extension_id, error);
}
void RulesRegistry::ReportInternalError(const std::string& extension_id,
const std::string& error) {
std::unique_ptr<ExtensionError> error_instance(new InternalError(
extension_id, base::ASCIIToUTF16(error), logging::LOG_ERROR));
ExtensionsBrowserClient::Get()->ReportError(browser_context_,
std::move(error_instance));
}
RulesRegistry::~RulesRegistry() {
}
void RulesRegistry::MarkReady(base::Time storage_init_time) {
DCHECK_CURRENTLY_ON(owner_thread());
if (!storage_init_time.is_null()) {
UMA_HISTOGRAM_TIMES("Extensions.DeclarativeRulesStorageInitialization",
base::Time::Now() - storage_init_time);
}
ready_.Signal();
}
void RulesRegistry::ProcessChangedRules(const std::string& extension_id) {
DCHECK_CURRENTLY_ON(owner_thread());
DCHECK(ContainsKey(process_changed_rules_requested_, extension_id));
process_changed_rules_requested_[extension_id] = NOT_SCHEDULED_FOR_PROCESSING;
std::vector<linked_ptr<api::events::Rule>> new_rules;
GetRules(extension_id, rules_, &new_rules);
content::BrowserThread::PostTask(
content::BrowserThread::UI, FROM_HERE,
base::Bind(&RulesCacheDelegate::WriteToStorage, cache_delegate_,
extension_id, base::Passed(RulesToValue(new_rules))));
}
void RulesRegistry::MaybeProcessChangedRules(const std::string& extension_id) {
// Read and initialize |process_changed_rules_requested_[extension_id]| if
// necessary. (Note that the insertion below will not overwrite
// |process_changed_rules_requested_[extension_id]| if that already exists.
std::pair<ProcessStateMap::iterator, bool> insertion =
process_changed_rules_requested_.insert(std::make_pair(
extension_id,
browser_context_ ? NOT_SCHEDULED_FOR_PROCESSING : NEVER_PROCESS));
if (insertion.first->second != NOT_SCHEDULED_FOR_PROCESSING)
return;
process_changed_rules_requested_[extension_id] = SCHEDULED_FOR_PROCESSING;
ready_.Post(FROM_HERE,
base::Bind(&RulesRegistry::ProcessChangedRules,
weak_ptr_factory_.GetWeakPtr(),
extension_id));
}
bool RulesRegistry::IsUniqueId(const std::string& extension_id,
const std::string& rule_id) const {
RuleIdentifiersMap::const_iterator identifiers =
used_rule_identifiers_.find(extension_id);
if (identifiers == used_rule_identifiers_.end())
return true;
return identifiers->second.find(rule_id) == identifiers->second.end();
}
std::string RulesRegistry::GenerateUniqueId(const std::string& extension_id) {
while (!IsUniqueId(extension_id, ToId(last_generated_rule_identifier_id_)))
++last_generated_rule_identifier_id_;
return ToId(last_generated_rule_identifier_id_);
}
std::string RulesRegistry::CheckAndFillInOptionalRules(
const std::string& extension_id,
const std::vector<linked_ptr<api::events::Rule>>& rules) {
// IDs we have inserted, in case we need to rollback this operation.
std::vector<std::string> rollback_log;
// First we insert all rules with existing identifier, so that generated
// identifiers cannot collide with identifiers passed by the caller.
for (std::vector<linked_ptr<api::events::Rule>>::const_iterator i =
rules.begin();
i != rules.end(); ++i) {
api::events::Rule* rule = i->get();
if (rule->id.get()) {
std::string id = *(rule->id);
if (!IsUniqueId(extension_id, id)) {
RemoveUsedRuleIdentifiers(extension_id, rollback_log);
return "Id " + id + " was used multiple times.";
}
used_rule_identifiers_[extension_id].insert(id);
}
}
// Now we generate IDs in case they were not specified in the rules. This
// cannot fail so we do not need to keep track of a rollback log.
for (std::vector<linked_ptr<api::events::Rule>>::const_iterator i =
rules.begin();
i != rules.end(); ++i) {
api::events::Rule* rule = i->get();
if (!rule->id.get()) {
rule->id.reset(new std::string(GenerateUniqueId(extension_id)));
used_rule_identifiers_[extension_id].insert(*(rule->id));
}
}
return std::string();
}
void RulesRegistry::FillInOptionalPriorities(
const std::vector<linked_ptr<api::events::Rule>>& rules) {
std::vector<linked_ptr<api::events::Rule>>::const_iterator i;
for (i = rules.begin(); i != rules.end(); ++i) {
if (!(*i)->priority.get())
(*i)->priority.reset(new int(DEFAULT_PRIORITY));
}
}
void RulesRegistry::RemoveUsedRuleIdentifiers(
const std::string& extension_id,
const std::vector<std::string>& identifiers) {
std::vector<std::string>::const_iterator i;
for (i = identifiers.begin(); i != identifiers.end(); ++i)
used_rule_identifiers_[extension_id].erase(*i);
}
void RulesRegistry::RemoveAllUsedRuleIdentifiers(
const std::string& extension_id) {
used_rule_identifiers_.erase(extension_id);
}
} // namespace extensions