mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
3909bb5fb8
- Bug 1110446 P2 Cleanup stale caches/bodies if last session didn't shutdown cleanly. r=ehsan (7925cf5fa) - Bug 1110446 P3 Add a test that forces a Cache object to be orphaned and reclaimed. r=ehsan (c61409240) - Bug 1110446 P4 Add a test that orphanes Cache API body files. r=ehsan (97e0a6f73) - Bug 1157670 - Fixing an incorrect assertion in QuotaManager.cpp leads to an assertion failure; r=bent (0a19eac66) - Bug 1165119 Remove corrupt morgue directories polluting nightly profiles. r=janv (d148170d8) - Bug 1165119 - Follow-up to address review feedback accidentally left out of last push. r=me (f7ef96873) - Fixup to make bug 1165119 ride the trains properly. r=trivial,DONTBUILD (87d186da4) - Bug 1162624 - Add support for restoring corrupted or missing metadata files; r=bent (57e4341e6) - Bug 1174113 - QuotaManager: Origin initialization fails on moz-safe-about+++home; r=bent (b7673128c) - Bug 1142694 - QuotaManager default/temporary initialization fails on some profiles; r=bent (29a286137) - Bug 1166871 - Always force a repaint before handling a wheel event so that we don't untransform it into some other scrollframe. r=botond (28e56646d) - Don't vertically scroll APZCs that have less than one pixel of vertical scroll range. (bug 1154134, r=kats) (1bac9c054) - Bug 1166871 - Add a test. r=botond (45d398bb6) - Bug 1164557 - Do not start an overscroll animation if one is already running. r=kats (287a27910) - Bug 1163832 - Add an API to flush pending APZ repaint requests and dispatch a notification upon completion. r=botond (8b3f9e06f) - Bug 858680 - Part 1: Perform incremental_vacuum on open databases while idle, r=janv. (715f77ad6) - Bug 858680 - Part 2: Add idle notifications to QuotaClient, r=janv. (9f245b1bb) - Bug 1135166 - Initialize Telemetry histogram id cache early to avoid races. r=froydnj,vladan (f0bd8278c) - Bug 1162176, Part 1. r=mak. (f92ba4061) - Bug 1162176, Part 2. r=janv. (f313e1cf3) - Bug 1155634 - Move ConnectionPool creation closer to where we actually use it and at a point guaranteed to be after QuotaManager has been started. r=khuey relanding CLOSED TREE (ce489e8f4) - Bug 1155652 - Fix two incorrect assertions r=janv (2417d91ed) - Bug 1156063 - Intermittent application crashed [@ mozilla::dom::indexedDB::::ConnectionPool::Start] in various tests. r=janv (b1126ac71) - Bug 1157029 - More changes to bulletproof shutdown of failed connections, r=janv. (93a425abb) - Bug 858680 - Part 4: Perform maintenance on databases while idle, r=janv. (017d536fe) - Bug 1130775 - Convert synchronized ops and storage registration into unified directory locks; r=bent (300f635f7) - Bug 1130775 followup: Add missing 'override' keyword to SendResults() methods in QuotaManager.cpp. rs=ehsan (397338f5b) - Bug 1170021 - Part 1: Merge QuotaManager with QuotaObject; r=bent (168264350) - Bug 1170021 - Part 2: Move DirectoryLock out of QuotaManager class; r=bent (278964f88) - pointer style (99453953c) - Bug 1171931 - Refactor duplicated code using XRE_IsParent/ContentProcess. r=froydnj (6d1ddbff1)
270 lines
6.9 KiB
C++
270 lines
6.9 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* vim: set ts=4 et sw=4 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "DomainPolicy.h"
|
|
#include "mozilla/dom/ContentParent.h"
|
|
#include "mozilla/ipc/URIUtils.h"
|
|
#include "mozilla/unused.h"
|
|
#include "nsIMessageManager.h"
|
|
#include "nsScriptSecurityManager.h"
|
|
|
|
namespace mozilla {
|
|
|
|
using namespace ipc;
|
|
using namespace dom;
|
|
|
|
NS_IMPL_ISUPPORTS(DomainPolicy, nsIDomainPolicy)
|
|
|
|
static nsresult
|
|
BroadcastDomainSetChange(DomainSetType aSetType, DomainSetChangeType aChangeType,
|
|
nsIURI* aDomain = nullptr)
|
|
{
|
|
MOZ_ASSERT(XRE_IsParentProcess(),
|
|
"DomainPolicy should only be exposed to the chrome process.");
|
|
|
|
nsTArray<ContentParent*> parents;
|
|
ContentParent::GetAll(parents);
|
|
if (!parents.Length()) {
|
|
return NS_OK;
|
|
}
|
|
|
|
OptionalURIParams uri;
|
|
SerializeURI(aDomain, uri);
|
|
|
|
for (uint32_t i = 0; i < parents.Length(); i++) {
|
|
unused << parents[i]->SendDomainSetChanged(aSetType, aChangeType, uri);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
DomainPolicy::DomainPolicy() : mBlacklist(new DomainSet(BLACKLIST))
|
|
, mSuperBlacklist(new DomainSet(SUPER_BLACKLIST))
|
|
, mWhitelist(new DomainSet(WHITELIST))
|
|
, mSuperWhitelist(new DomainSet(SUPER_WHITELIST))
|
|
{
|
|
if (XRE_IsParentProcess()) {
|
|
BroadcastDomainSetChange(NO_TYPE, ACTIVATE_POLICY);
|
|
}
|
|
}
|
|
|
|
DomainPolicy::~DomainPolicy()
|
|
{
|
|
// The SSM holds a strong ref to the DomainPolicy until Deactivate() is
|
|
// invoked, so we should never hit the destructor until that happens.
|
|
MOZ_ASSERT(!mBlacklist && !mSuperBlacklist &&
|
|
!mWhitelist && !mSuperWhitelist);
|
|
}
|
|
|
|
|
|
NS_IMETHODIMP
|
|
DomainPolicy::GetBlacklist(nsIDomainSet** aSet)
|
|
{
|
|
nsCOMPtr<nsIDomainSet> set = mBlacklist;
|
|
set.forget(aSet);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DomainPolicy::GetSuperBlacklist(nsIDomainSet** aSet)
|
|
{
|
|
nsCOMPtr<nsIDomainSet> set = mSuperBlacklist;
|
|
set.forget(aSet);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DomainPolicy::GetWhitelist(nsIDomainSet** aSet)
|
|
{
|
|
nsCOMPtr<nsIDomainSet> set = mWhitelist;
|
|
set.forget(aSet);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DomainPolicy::GetSuperWhitelist(nsIDomainSet** aSet)
|
|
{
|
|
nsCOMPtr<nsIDomainSet> set = mSuperWhitelist;
|
|
set.forget(aSet);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DomainPolicy::Deactivate()
|
|
{
|
|
// Clear the hashtables first to free up memory, since script might
|
|
// hold the doomed sets alive indefinitely.
|
|
mBlacklist->Clear();
|
|
mSuperBlacklist->Clear();
|
|
mWhitelist->Clear();
|
|
mSuperWhitelist->Clear();
|
|
|
|
// Null them out.
|
|
mBlacklist = nullptr;
|
|
mSuperBlacklist = nullptr;
|
|
mWhitelist = nullptr;
|
|
mSuperWhitelist = nullptr;
|
|
|
|
// Inform the SSM.
|
|
nsScriptSecurityManager* ssm = nsScriptSecurityManager::GetScriptSecurityManager();
|
|
if (ssm) {
|
|
ssm->DeactivateDomainPolicy();
|
|
}
|
|
if (XRE_IsParentProcess()) {
|
|
BroadcastDomainSetChange(NO_TYPE, DEACTIVATE_POLICY);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
DomainPolicy::CloneDomainPolicy(DomainPolicyClone* aClone)
|
|
{
|
|
aClone->active() = true;
|
|
static_cast<DomainSet*>(mBlacklist.get())->CloneSet(&aClone->blacklist());
|
|
static_cast<DomainSet*>(mSuperBlacklist.get())->CloneSet(&aClone->superBlacklist());
|
|
static_cast<DomainSet*>(mWhitelist.get())->CloneSet(&aClone->whitelist());
|
|
static_cast<DomainSet*>(mSuperWhitelist.get())->CloneSet(&aClone->superWhitelist());
|
|
}
|
|
|
|
static
|
|
void
|
|
CopyURIs(const InfallibleTArray<URIParams>& aDomains, nsIDomainSet* aSet)
|
|
{
|
|
for (uint32_t i = 0; i < aDomains.Length(); i++) {
|
|
nsCOMPtr<nsIURI> uri = DeserializeURI(aDomains[i]);
|
|
aSet->Add(uri);
|
|
}
|
|
}
|
|
|
|
void
|
|
DomainPolicy::ApplyClone(DomainPolicyClone* aClone)
|
|
{
|
|
nsCOMPtr<nsIDomainSet> list;
|
|
|
|
CopyURIs(aClone->blacklist(), mBlacklist);
|
|
CopyURIs(aClone->whitelist(), mWhitelist);
|
|
CopyURIs(aClone->superBlacklist(), mSuperBlacklist);
|
|
CopyURIs(aClone->superWhitelist(), mSuperWhitelist);
|
|
}
|
|
|
|
static already_AddRefed<nsIURI>
|
|
GetCanonicalClone(nsIURI* aURI)
|
|
{
|
|
nsCOMPtr<nsIURI> clone;
|
|
nsresult rv = aURI->Clone(getter_AddRefs(clone));
|
|
NS_ENSURE_SUCCESS(rv, nullptr);
|
|
rv = clone->SetUserPass(EmptyCString());
|
|
NS_ENSURE_SUCCESS(rv, nullptr);
|
|
rv = clone->SetPath(EmptyCString());
|
|
NS_ENSURE_SUCCESS(rv, nullptr);
|
|
return clone.forget();
|
|
}
|
|
|
|
NS_IMPL_ISUPPORTS(DomainSet, nsIDomainSet)
|
|
|
|
NS_IMETHODIMP
|
|
DomainSet::Add(nsIURI* aDomain)
|
|
{
|
|
nsCOMPtr<nsIURI> clone = GetCanonicalClone(aDomain);
|
|
NS_ENSURE_TRUE(clone, NS_ERROR_FAILURE);
|
|
mHashTable.PutEntry(clone);
|
|
if (XRE_IsParentProcess())
|
|
return BroadcastDomainSetChange(mType, ADD_DOMAIN, aDomain);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DomainSet::Remove(nsIURI* aDomain)
|
|
{
|
|
nsCOMPtr<nsIURI> clone = GetCanonicalClone(aDomain);
|
|
NS_ENSURE_TRUE(clone, NS_ERROR_FAILURE);
|
|
mHashTable.RemoveEntry(clone);
|
|
if (XRE_IsParentProcess())
|
|
return BroadcastDomainSetChange(mType, REMOVE_DOMAIN, aDomain);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DomainSet::Clear()
|
|
{
|
|
mHashTable.Clear();
|
|
if (XRE_IsParentProcess())
|
|
return BroadcastDomainSetChange(mType, CLEAR_DOMAINS);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DomainSet::Contains(nsIURI* aDomain, bool* aContains)
|
|
{
|
|
*aContains = false;
|
|
nsCOMPtr<nsIURI> clone = GetCanonicalClone(aDomain);
|
|
NS_ENSURE_TRUE(clone, NS_ERROR_FAILURE);
|
|
*aContains = mHashTable.Contains(clone);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DomainSet::ContainsSuperDomain(nsIURI* aDomain, bool* aContains)
|
|
{
|
|
*aContains = false;
|
|
nsCOMPtr<nsIURI> clone = GetCanonicalClone(aDomain);
|
|
NS_ENSURE_TRUE(clone, NS_ERROR_FAILURE);
|
|
nsAutoCString domain;
|
|
nsresult rv = clone->GetHost(domain);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
while (true) {
|
|
// Check the current domain.
|
|
if (mHashTable.Contains(clone)) {
|
|
*aContains = true;
|
|
return NS_OK;
|
|
}
|
|
|
|
// Chop off everything before the first dot, or break if there are no
|
|
// dots left.
|
|
int32_t index = domain.Find(".");
|
|
if (index == kNotFound)
|
|
break;
|
|
domain.Assign(Substring(domain, index + 1));
|
|
rv = clone->SetHost(domain);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
|
|
// No match.
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
DomainSet::GetType(uint32_t* aType)
|
|
{
|
|
*aType = mType;
|
|
return NS_OK;
|
|
}
|
|
|
|
static
|
|
PLDHashOperator
|
|
DomainEnumerator(nsURIHashKey* aEntry, void* aUserArg)
|
|
{
|
|
InfallibleTArray<URIParams>* uris = static_cast<InfallibleTArray<URIParams>*>(aUserArg);
|
|
nsIURI* key = aEntry->GetKey();
|
|
|
|
URIParams uri;
|
|
SerializeURI(key, uri);
|
|
|
|
uris->AppendElement(uri);
|
|
return PL_DHASH_NEXT;
|
|
}
|
|
|
|
void
|
|
DomainSet::CloneSet(InfallibleTArray<URIParams>* aDomains)
|
|
{
|
|
mHashTable.EnumerateEntries(DomainEnumerator, aDomains);
|
|
}
|
|
|
|
} /* namespace mozilla */
|