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 426 427 428 429 430 431 432 433 434 435 436 437 438 439
|
// Copyright 2012 The Chromium Authors
// 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 <memory>
#include <utility>
#include "base/containers/contains.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/metrics/histogram_macros.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_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "extensions/browser/api/declarative/rules_cache_delegate.h"
#include "extensions/browser/extension_error.h"
#include "extensions/browser/extension_registry.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/extension_id.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";
base::Value::List RulesToValue(
const std::vector<const api::events::Rule*>& rules) {
base::Value::List value;
for (const auto* rule : rules)
value.Append(rule->ToValue());
return value;
}
std::vector<api::events::Rule> RulesFromValue(
const std::optional<base::Value>& value) {
std::vector<api::events::Rule> rules;
if (!value || !value->is_list())
return rules;
rules.reserve(value->GetList().size());
for (const base::Value& dict_value : value->GetList()) {
if (!dict_value.is_dict())
continue;
auto rule = api::events::Rule::FromValue(dict_value.GetDict());
if (rule) {
rules.push_back(std::move(rule).value());
}
}
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,
RulesCacheDelegate* cache_delegate,
int id)
: browser_context_(browser_context),
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) {
if (cache_delegate) {
cache_delegate_ = cache_delegate->GetWeakPtr();
cache_delegate->Init(this);
}
}
std::string RulesRegistry::AddRulesNoFill(
const ExtensionId& extension_id,
std::vector<api::events::Rule> rules_in,
RulesDictionary* destination,
std::vector<const api::events::Rule*>* rules_out) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// Verify that all rule IDs are new.
for (const auto& rule : rules_in) {
const RuleId& rule_id = *(rule.id);
// Every rule should have a priority assigned.
DCHECK(rule.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::vector<const api::events::Rule*> rule_ptrs;
rule_ptrs.reserve(rules_in.size());
for (auto& rule : rules_in)
rule_ptrs.push_back(&rule);
std::string error = AddRulesImpl(extension_id, rule_ptrs);
if (!error.empty())
return error;
// Commit all rules into |rules_| on success.
rule_ptrs.clear();
for (auto& rule : rules_in) {
const RuleId& rule_id = *(rule.id);
RulesDictionaryKey key(extension_id, rule_id);
auto insert_result = destination->emplace(key, std::move(rule));
// All rule IDs are new so insert had better not have failed.
DCHECK(insert_result.second);
if (rules_out)
rule_ptrs.push_back(&(insert_result.first->second));
}
if (rules_out)
*rules_out = rule_ptrs;
MaybeProcessChangedRules(extension_id);
return kSuccess;
}
std::string RulesRegistry::AddRules(
const ExtensionId& extension_id,
std::vector<api::events::Rule> rules_in,
std::vector<const api::events::Rule*>* rules_out) {
return AddRulesInternal(extension_id, std::move(rules_in), &rules_,
rules_out);
}
std::string RulesRegistry::AddRulesInternal(
const ExtensionId& extension_id,
std::vector<api::events::Rule> rules_in,
RulesDictionary* destination,
std::vector<const api::events::Rule*>* rules_out) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
std::string error = CheckAndFillInOptionalRules(extension_id, &rules_in);
if (!error.empty())
return error;
FillInOptionalPriorities(&rules_in);
return AddRulesNoFill(extension_id, std::move(rules_in), destination,
rules_out);
}
std::string RulesRegistry::RemoveRules(
const ExtensionId& extension_id,
const std::vector<std::string>& rule_identifiers) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// Check if any of the rules are non-removable.
for (const RuleId& rule_id : rule_identifiers) {
RulesDictionaryKey lookup_key(extension_id, rule_id);
auto 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 (auto i = rule_identifiers.cbegin(); i != rule_identifiers.cend(); ++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 ExtensionId& 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 ExtensionId& extension_id,
bool remove_manifest_rules) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
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 ExtensionId& extension_id,
const std::vector<std::string>& rule_identifiers,
std::vector<const api::events::Rule*>* out) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
for (const auto& i : rule_identifiers) {
RulesDictionaryKey lookup_key(extension_id, i);
auto 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 ExtensionId& extension_id,
RulesDictionary* rules,
std::vector<const api::events::Rule*>* out) {
for (auto& i : *rules) {
const RulesDictionaryKey& key = i.first;
if (key.first == extension_id)
out->push_back(&i.second);
}
}
void RulesRegistry::GetAllRules(const ExtensionId& extension_id,
std::vector<const api::events::Rule*>* out) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
GetRules(extension_id, &manifest_rules_, out);
GetRules(extension_id, &rules_, out);
}
void RulesRegistry::OnShutdown() {
browser_context_ = nullptr;
}
void RulesRegistry::OnExtensionUnloaded(const Extension* extension) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
std::string error = RemoveAllRulesImpl(extension->id());
if (!error.empty())
ReportInternalError(extension->id(), error);
}
void RulesRegistry::OnExtensionUninstalled(const Extension* extension) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
std::string error = RemoveAllRulesNoStoreUpdate(extension->id(), true);
if (!error.empty())
ReportInternalError(extension->id(), error);
}
void RulesRegistry::OnExtensionLoaded(const Extension* extension) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
std::vector<const api::events::Rule*> rules;
GetAllRules(extension->id(), &rules);
DeclarativeManifestData* declarative_data =
DeclarativeManifestData::Get(extension);
if (declarative_data) {
std::vector<api::events::Rule> manifest_rules =
declarative_data->RulesForEvent(event_name_);
if (manifest_rules.size()) {
std::string error =
AddRulesInternal(extension->id(), std::move(manifest_rules),
&manifest_rules_, nullptr);
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 (const auto& used_rule_identifier : used_rule_identifiers_) {
// Each extension is counted as 1 just for being there. Otherwise we miss
// keys with empty values.
entry_count += 1u + used_rule_identifier.second.size();
}
return entry_count;
}
void RulesRegistry::DeserializeAndAddRules(const ExtensionId& extension_id,
std::optional<base::Value> rules) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// Since this is called in response to asynchronously loading rules from
// storage, the extension may have been unloaded by the time this is called.
if (!ExtensionRegistry::Get(browser_context())
->enabled_extensions()
.Contains(extension_id)) {
return;
}
std::string error =
AddRulesNoFill(extension_id, RulesFromValue(rules), &rules_, nullptr);
if (!error.empty())
ReportInternalError(extension_id, error);
}
void RulesRegistry::ReportInternalError(const ExtensionId& extension_id,
const std::string& error) {
std::unique_ptr<ExtensionError> error_instance(new InternalError(
extension_id, base::ASCIIToUTF16(error), logging::LOGGING_ERROR));
ExtensionsBrowserClient::Get()->ReportError(browser_context_,
std::move(error_instance));
}
RulesRegistry::~RulesRegistry() {
}
void RulesRegistry::MarkReady() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
ready_.Signal();
}
void RulesRegistry::ProcessChangedRules(const ExtensionId& extension_id) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK(base::Contains(process_changed_rules_requested_, extension_id));
process_changed_rules_requested_[extension_id] = NOT_SCHEDULED_FOR_PROCESSING;
std::vector<const api::events::Rule*> new_rules;
GetRules(extension_id, &rules_, &new_rules);
cache_delegate_->UpdateRules(extension_id, RulesToValue(new_rules));
}
void RulesRegistry::MaybeProcessChangedRules(const ExtensionId& 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::BindOnce(&RulesRegistry::ProcessChangedRules,
weak_ptr_factory_.GetWeakPtr(), extension_id));
}
bool RulesRegistry::IsUniqueId(const ExtensionId& extension_id,
const std::string& rule_id) const {
auto 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 ExtensionId& 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 ExtensionId& extension_id,
std::vector<api::events::Rule>* rules) {
// IDs we have inserted, in case we need to rollback this operation.
// TODO(rdevlin.cronin, avi): Um, this variable is never inserted into; is
// this a bug? https://crbug.com/913655
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 (const auto& rule : *rules) {
if (rule.id) {
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 (auto& rule : *rules) {
if (!rule.id) {
rule.id = GenerateUniqueId(extension_id);
used_rule_identifiers_[extension_id].insert(*(rule.id));
}
}
return std::string();
}
void RulesRegistry::FillInOptionalPriorities(
std::vector<api::events::Rule>* rules) {
for (auto& rule : *rules) {
if (!rule.priority)
rule.priority = DEFAULT_PRIORITY;
}
}
void RulesRegistry::RemoveUsedRuleIdentifiers(
const ExtensionId& 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 ExtensionId& extension_id) {
used_rule_identifiers_.erase(extension_id);
}
} // namespace extensions
|