2018-07-26 10:31:00 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 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 "BrowsingContext.h"
|
|
|
|
|
2018-08-29 05:00:00 +03:00
|
|
|
#include "mozilla/dom/BrowsingContextBinding.h"
|
2018-07-26 10:31:00 +03:00
|
|
|
#include "mozilla/dom/ContentChild.h"
|
|
|
|
#include "mozilla/Assertions.h"
|
|
|
|
#include "mozilla/ClearOnShutdown.h"
|
|
|
|
#include "mozilla/Logging.h"
|
|
|
|
#include "mozilla/StaticPtr.h"
|
|
|
|
|
|
|
|
#include "nsDataHashtable.h"
|
2018-06-28 05:40:00 +03:00
|
|
|
#include "nsRefPtrHashtable.h"
|
2018-07-26 10:31:00 +03:00
|
|
|
#include "nsIDocShell.h"
|
|
|
|
#include "nsContentUtils.h"
|
2018-06-29 02:41:00 +03:00
|
|
|
#include "nsThreadUtils.h"
|
2018-07-26 10:31:00 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
static LazyLogModule gBrowsingContextLog("BrowsingContext");
|
|
|
|
|
|
|
|
static StaticAutoPtr<BrowsingContext::Children> sRootBrowsingContexts;
|
|
|
|
|
|
|
|
static StaticAutoPtr<nsDataHashtable<nsUint64HashKey, BrowsingContext*>>
|
|
|
|
sBrowsingContexts;
|
|
|
|
|
2018-06-28 05:40:00 +03:00
|
|
|
// TODO(farre): This duplicates some of the work performed by the
|
|
|
|
// bfcache. This should be unified. [Bug 1471601]
|
|
|
|
static StaticAutoPtr<nsRefPtrHashtable<nsUint64HashKey, BrowsingContext>>
|
|
|
|
sCachedBrowsingContexts;
|
|
|
|
|
2018-07-26 10:31:00 +03:00
|
|
|
/* static */ void
|
|
|
|
BrowsingContext::Init()
|
|
|
|
{
|
|
|
|
if (!sRootBrowsingContexts) {
|
|
|
|
sRootBrowsingContexts = new BrowsingContext::Children();
|
|
|
|
ClearOnShutdown(&sRootBrowsingContexts);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!sBrowsingContexts) {
|
|
|
|
sBrowsingContexts =
|
|
|
|
new nsDataHashtable<nsUint64HashKey, BrowsingContext*>();
|
|
|
|
ClearOnShutdown(&sBrowsingContexts);
|
|
|
|
}
|
2018-06-28 05:40:00 +03:00
|
|
|
|
|
|
|
if (!sCachedBrowsingContexts) {
|
|
|
|
sCachedBrowsingContexts =
|
|
|
|
new nsRefPtrHashtable<nsUint64HashKey, BrowsingContext>();
|
|
|
|
ClearOnShutdown(&sCachedBrowsingContexts);
|
|
|
|
}
|
2018-07-26 10:31:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ LogModule*
|
|
|
|
BrowsingContext::GetLog()
|
|
|
|
{
|
|
|
|
return gBrowsingContextLog;
|
|
|
|
}
|
|
|
|
|
2018-06-29 02:41:00 +03:00
|
|
|
// TODO(farre): BrowsingContext::CleanupContexts starts from the list
|
|
|
|
// of root BrowsingContexts. This isn't enough when separate
|
|
|
|
// BrowsingContext nodes of a BrowsingContext tree not in a crashing
|
|
|
|
// child process are from that process and thus needs to be
|
|
|
|
// cleaned. [Bug 1472108]
|
|
|
|
/* static */ void
|
|
|
|
BrowsingContext::CleanupContexts(uint64_t aProcessId)
|
|
|
|
{
|
|
|
|
if (sRootBrowsingContexts) {
|
|
|
|
RefPtr<BrowsingContext> context = sRootBrowsingContexts->getFirst();
|
|
|
|
|
|
|
|
while (context) {
|
|
|
|
RefPtr<BrowsingContext> next = context->getNext();
|
|
|
|
if (context->IsOwnedByProcess() &&
|
|
|
|
aProcessId == context->OwnerProcessId()) {
|
|
|
|
context->Detach();
|
|
|
|
}
|
|
|
|
context = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-26 10:31:00 +03:00
|
|
|
/* static */ already_AddRefed<BrowsingContext>
|
|
|
|
BrowsingContext::Get(uint64_t aId)
|
|
|
|
{
|
|
|
|
RefPtr<BrowsingContext> abc = sBrowsingContexts->Get(aId);
|
|
|
|
return abc.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
BrowsingContext::BrowsingContext(nsIDocShell* aDocShell)
|
|
|
|
: mBrowsingContextId(nsContentUtils::GenerateBrowsingContextId())
|
|
|
|
, mProcessId(Nothing())
|
|
|
|
, mDocShell(aDocShell)
|
|
|
|
{
|
|
|
|
sBrowsingContexts->Put(mBrowsingContextId, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
BrowsingContext::BrowsingContext(uint64_t aBrowsingContextId,
|
|
|
|
const nsAString& aName,
|
|
|
|
const Maybe<uint64_t>& aProcessId)
|
|
|
|
: mBrowsingContextId(aBrowsingContextId)
|
|
|
|
, mProcessId(aProcessId)
|
|
|
|
, mName(aName)
|
|
|
|
{
|
|
|
|
// mProcessId only really has a meaning in the parent process, where
|
|
|
|
// it keeps track of which BrowsingContext is actually holding the
|
|
|
|
// nsDocShell.
|
|
|
|
MOZ_DIAGNOSTIC_ASSERT(XRE_IsParentProcess() || aProcessId.isNothing());
|
|
|
|
sBrowsingContexts->Put(mBrowsingContextId, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BrowsingContext::Attach(BrowsingContext* aParent)
|
|
|
|
{
|
|
|
|
if (isInList()) {
|
|
|
|
MOZ_LOG(GetLog(),
|
|
|
|
LogLevel::Debug,
|
|
|
|
("%s: Connecting already existing 0x%08" PRIx64 " to 0x%08" PRIx64,
|
|
|
|
XRE_IsParentProcess() ? "Parent" : "Child",
|
|
|
|
Id(),
|
|
|
|
aParent ? aParent->Id() : 0));
|
|
|
|
MOZ_DIAGNOSTIC_ASSERT(sBrowsingContexts->Contains(Id()));
|
2018-06-28 05:40:00 +03:00
|
|
|
MOZ_DIAGNOSTIC_ASSERT(!IsCached());
|
2018-07-26 10:31:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-28 05:40:00 +03:00
|
|
|
bool wasCached = sCachedBrowsingContexts->Remove(Id());
|
|
|
|
|
2018-07-26 10:31:00 +03:00
|
|
|
MOZ_LOG(GetLog(),
|
|
|
|
LogLevel::Debug,
|
2018-06-28 05:40:00 +03:00
|
|
|
("%s: %s 0x%08" PRIx64 " to 0x%08" PRIx64,
|
2018-07-26 10:31:00 +03:00
|
|
|
XRE_IsParentProcess() ? "Parent" : "Child",
|
2018-08-29 05:00:00 +03:00
|
|
|
wasCached ? "Re-connecting" : "Connecting",
|
2018-07-26 10:31:00 +03:00
|
|
|
Id(),
|
|
|
|
aParent ? aParent->Id() : 0));
|
|
|
|
|
|
|
|
auto* children = aParent ? &aParent->mChildren : sRootBrowsingContexts.get();
|
|
|
|
children->insertBack(this);
|
|
|
|
mParent = aParent;
|
|
|
|
|
|
|
|
if (!XRE_IsContentProcess()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto cc = dom::ContentChild::GetSingleton();
|
|
|
|
MOZ_DIAGNOSTIC_ASSERT(cc);
|
|
|
|
cc->SendAttachBrowsingContext(
|
|
|
|
dom::BrowsingContextId(mParent ? mParent->Id() : 0),
|
|
|
|
dom::BrowsingContextId(Id()),
|
|
|
|
mName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BrowsingContext::Detach()
|
|
|
|
{
|
|
|
|
RefPtr<BrowsingContext> kungFuDeathGrip(this);
|
|
|
|
|
2018-06-28 05:40:00 +03:00
|
|
|
if (sCachedBrowsingContexts) {
|
|
|
|
sCachedBrowsingContexts->Remove(Id());
|
|
|
|
}
|
|
|
|
|
2018-07-26 10:31:00 +03:00
|
|
|
if (!isInList()) {
|
|
|
|
MOZ_LOG(GetLog(),
|
|
|
|
LogLevel::Debug,
|
|
|
|
("%s: Detaching already detached 0x%08" PRIx64,
|
|
|
|
XRE_IsParentProcess() ? "Parent" : "Child",
|
|
|
|
Id()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_LOG(GetLog(),
|
|
|
|
LogLevel::Debug,
|
|
|
|
("%s: Detaching 0x%08" PRIx64 " from 0x%08" PRIx64,
|
|
|
|
XRE_IsParentProcess() ? "Parent" : "Child",
|
|
|
|
Id(),
|
|
|
|
mParent ? mParent->Id() : 0));
|
|
|
|
|
|
|
|
remove();
|
|
|
|
|
|
|
|
if (!XRE_IsContentProcess()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto cc = dom::ContentChild::GetSingleton();
|
|
|
|
MOZ_DIAGNOSTIC_ASSERT(cc);
|
2018-06-28 05:40:00 +03:00
|
|
|
cc->SendDetachBrowsingContext(dom::BrowsingContextId(Id()),
|
|
|
|
false /* aMoveToBFCache */);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BrowsingContext::CacheChildren()
|
|
|
|
{
|
|
|
|
if (mChildren.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_LOG(GetLog(),
|
|
|
|
LogLevel::Debug,
|
|
|
|
("%s: Caching children of 0x%08" PRIx64 "",
|
|
|
|
XRE_IsParentProcess() ? "Parent" : "Child",
|
|
|
|
Id()));
|
|
|
|
|
|
|
|
while (!mChildren.isEmpty()) {
|
|
|
|
RefPtr<BrowsingContext> child = mChildren.popFirst();
|
|
|
|
sCachedBrowsingContexts->Put(child->Id(), child);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!XRE_IsContentProcess()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto cc = dom::ContentChild::GetSingleton();
|
|
|
|
MOZ_DIAGNOSTIC_ASSERT(cc);
|
|
|
|
cc->SendDetachBrowsingContext(dom::BrowsingContextId(Id()),
|
|
|
|
true /* aMoveToBFCache */);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
BrowsingContext::IsCached()
|
|
|
|
{
|
|
|
|
return sCachedBrowsingContexts->Contains(Id());
|
2018-07-26 10:31:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t
|
|
|
|
BrowsingContext::OwnerProcessId() const
|
|
|
|
{
|
|
|
|
MOZ_DIAGNOSTIC_ASSERT(XRE_IsParentProcess());
|
|
|
|
return mProcessId.value();
|
|
|
|
}
|
|
|
|
|
2018-08-29 05:00:00 +03:00
|
|
|
void
|
|
|
|
BrowsingContext::GetChildren(nsTArray<RefPtr<BrowsingContext>>& aChildren)
|
|
|
|
{
|
|
|
|
for (BrowsingContext* context : mChildren) {
|
|
|
|
aChildren.AppendElement(context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
BrowsingContext::GetRootBrowsingContexts(nsTArray<RefPtr<BrowsingContext>>& aBrowsingContexts)
|
|
|
|
{
|
|
|
|
for (BrowsingContext* context : *sRootBrowsingContexts) {
|
|
|
|
aBrowsingContexts.AppendElement(context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-26 10:31:00 +03:00
|
|
|
BrowsingContext::~BrowsingContext()
|
|
|
|
{
|
|
|
|
MOZ_DIAGNOSTIC_ASSERT(!isInList());
|
|
|
|
|
|
|
|
if (sBrowsingContexts) {
|
|
|
|
sBrowsingContexts->Remove(mBrowsingContextId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-29 05:00:00 +03:00
|
|
|
nsISupports*
|
|
|
|
BrowsingContext::GetParentObject() const
|
|
|
|
{
|
|
|
|
return xpc::NativeGlobal(xpc::PrivilegedJunkScope());
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject*
|
|
|
|
BrowsingContext::WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto)
|
|
|
|
{
|
|
|
|
return BrowsingContext_Binding::Wrap(aCx, this, aGivenProto);
|
|
|
|
}
|
|
|
|
|
2018-07-26 10:31:00 +03:00
|
|
|
static void
|
|
|
|
ImplCycleCollectionUnlink(BrowsingContext::Children& aField)
|
|
|
|
{
|
|
|
|
aField.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ImplCycleCollectionTraverse(nsCycleCollectionTraversalCallback& aCallback,
|
|
|
|
BrowsingContext::Children& aField,
|
|
|
|
const char* aName,
|
|
|
|
uint32_t aFlags = 0)
|
|
|
|
{
|
|
|
|
for (BrowsingContext* aContext : aField) {
|
|
|
|
aCallback.NoteNativeChild(aContext,
|
|
|
|
NS_CYCLE_COLLECTION_PARTICIPANT(BrowsingContext));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-29 05:00:00 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(BrowsingContext, mDocShell, mChildren)
|
2018-07-26 10:31:00 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_ROOT_NATIVE(BrowsingContext, AddRef)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNROOT_NATIVE(BrowsingContext, Release)
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|