зеркало из https://github.com/mozilla/gecko-dev.git
491 строка
16 KiB
C++
491 строка
16 KiB
C++
/* -*- 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 "mozilla/dom/JSWindowActorService.h"
|
|
#include "mozilla/dom/ChromeUtilsBinding.h"
|
|
#include "mozilla/dom/EventListenerBinding.h"
|
|
#include "mozilla/dom/Event.h"
|
|
#include "mozilla/dom/EventTargetBinding.h"
|
|
#include "mozilla/dom/EventTarget.h"
|
|
#include "mozilla/dom/JSWindowActorBinding.h"
|
|
#include "mozilla/dom/JSWindowActorChild.h"
|
|
#include "mozilla/dom/MessageManagerBinding.h"
|
|
#include "mozilla/dom/PContent.h"
|
|
#include "mozilla/dom/ContentParent.h"
|
|
#include "mozilla/dom/WindowGlobalChild.h"
|
|
#include "mozilla/StaticPtr.h"
|
|
#include "mozilla/Logging.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace {
|
|
StaticRefPtr<JSWindowActorService> gJSWindowActorService;
|
|
}
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(JSWindowActorProtocol)
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(JSWindowActorProtocol)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(JSWindowActorProtocol)
|
|
NS_INTERFACE_MAP_ENTRY(nsIObserver)
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMEventListener)
|
|
NS_INTERFACE_MAP_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION(JSWindowActorProtocol, mURIMatcher)
|
|
|
|
/* static */ already_AddRefed<JSWindowActorProtocol>
|
|
JSWindowActorProtocol::FromIPC(const JSWindowActorInfo& aInfo) {
|
|
MOZ_DIAGNOSTIC_ASSERT(XRE_IsContentProcess());
|
|
|
|
RefPtr<JSWindowActorProtocol> proto = new JSWindowActorProtocol(aInfo.name());
|
|
// Content processes cannot load chrome browsing contexts, so this flag is
|
|
// irrelevant and not propagated.
|
|
proto->mIncludeChrome = false;
|
|
proto->mAllFrames = aInfo.allFrames();
|
|
proto->mMatches = aInfo.matches();
|
|
proto->mRemoteTypes = aInfo.remoteTypes();
|
|
proto->mChild.mModuleURI = aInfo.url();
|
|
|
|
proto->mChild.mEvents.SetCapacity(aInfo.events().Length());
|
|
for (auto& ipc : aInfo.events()) {
|
|
auto* event = proto->mChild.mEvents.AppendElement();
|
|
event->mName.Assign(ipc.name());
|
|
event->mFlags.mCapture = ipc.capture();
|
|
event->mFlags.mInSystemGroup = ipc.systemGroup();
|
|
event->mFlags.mAllowUntrustedEvents = ipc.allowUntrusted();
|
|
if (ipc.passive()) {
|
|
event->mPassive.Construct(ipc.passive().value());
|
|
}
|
|
}
|
|
|
|
proto->mChild.mObservers = aInfo.observers();
|
|
return proto.forget();
|
|
}
|
|
|
|
JSWindowActorInfo JSWindowActorProtocol::ToIPC() {
|
|
MOZ_DIAGNOSTIC_ASSERT(XRE_IsParentProcess());
|
|
|
|
JSWindowActorInfo info;
|
|
info.name() = mName;
|
|
info.allFrames() = mAllFrames;
|
|
info.matches() = mMatches;
|
|
info.remoteTypes() = mRemoteTypes;
|
|
info.url() = mChild.mModuleURI;
|
|
|
|
info.events().SetCapacity(mChild.mEvents.Length());
|
|
for (auto& event : mChild.mEvents) {
|
|
auto* ipc = info.events().AppendElement();
|
|
ipc->name().Assign(event.mName);
|
|
ipc->capture() = event.mFlags.mCapture;
|
|
ipc->systemGroup() = event.mFlags.mInSystemGroup;
|
|
ipc->allowUntrusted() = event.mFlags.mAllowUntrustedEvents;
|
|
if (event.mPassive.WasPassed()) {
|
|
ipc->passive() = Some(event.mPassive.Value());
|
|
}
|
|
}
|
|
|
|
info.observers() = mChild.mObservers;
|
|
return info;
|
|
}
|
|
|
|
already_AddRefed<JSWindowActorProtocol>
|
|
JSWindowActorProtocol::FromWebIDLOptions(const nsAString& aName,
|
|
const WindowActorOptions& aOptions,
|
|
ErrorResult& aRv) {
|
|
MOZ_DIAGNOSTIC_ASSERT(XRE_IsParentProcess());
|
|
|
|
RefPtr<JSWindowActorProtocol> proto = new JSWindowActorProtocol(aName);
|
|
proto->mAllFrames = aOptions.mAllFrames;
|
|
proto->mIncludeChrome = aOptions.mIncludeChrome;
|
|
|
|
if (aOptions.mMatches.WasPassed()) {
|
|
MOZ_ASSERT(aOptions.mMatches.Value().Length());
|
|
proto->mMatches = aOptions.mMatches.Value();
|
|
}
|
|
|
|
if (aOptions.mRemoteTypes.WasPassed()) {
|
|
MOZ_ASSERT(aOptions.mRemoteTypes.Value().Length());
|
|
proto->mRemoteTypes = aOptions.mRemoteTypes.Value();
|
|
}
|
|
|
|
if (aOptions.mParent.WasPassed()) {
|
|
proto->mParent.mModuleURI.emplace(aOptions.mParent.Value().mModuleURI);
|
|
}
|
|
if (aOptions.mChild.WasPassed()) {
|
|
proto->mChild.mModuleURI.emplace(aOptions.mChild.Value().mModuleURI);
|
|
}
|
|
|
|
if (!aOptions.mChild.WasPassed() && !aOptions.mParent.WasPassed()) {
|
|
aRv.ThrowDOMException(
|
|
NS_ERROR_DOM_NOT_SUPPORTED_ERR,
|
|
NS_LITERAL_CSTRING("No point registering an actor with neither child "
|
|
"nor parent specifications."));
|
|
return nullptr;
|
|
}
|
|
|
|
// For each event declared in the source dictionary, initialize the
|
|
// corresponding event declaration entry in the JSWindowActorProtocol.
|
|
if (aOptions.mChild.WasPassed() &&
|
|
aOptions.mChild.Value().mEvents.WasPassed()) {
|
|
auto& entries = aOptions.mChild.Value().mEvents.Value().Entries();
|
|
proto->mChild.mEvents.SetCapacity(entries.Length());
|
|
|
|
for (auto& entry : entries) {
|
|
// We don't support the mOnce field, as it doesn't work well in this
|
|
// environment. For now, throw an error in that case.
|
|
if (entry.mValue.mOnce) {
|
|
aRv.Throw(NS_ERROR_DOM_NOT_SUPPORTED_ERR);
|
|
return nullptr;
|
|
}
|
|
|
|
// Add the EventDecl to our list of events.
|
|
EventDecl* evt = proto->mChild.mEvents.AppendElement();
|
|
evt->mName = entry.mKey;
|
|
evt->mFlags.mCapture = entry.mValue.mCapture;
|
|
evt->mFlags.mInSystemGroup = entry.mValue.mMozSystemGroup;
|
|
evt->mFlags.mAllowUntrustedEvents =
|
|
entry.mValue.mWantUntrusted.WasPassed()
|
|
? entry.mValue.mWantUntrusted.Value()
|
|
: false;
|
|
if (entry.mValue.mPassive.WasPassed()) {
|
|
evt->mPassive.Construct(entry.mValue.mPassive.Value());
|
|
}
|
|
}
|
|
}
|
|
|
|
if (aOptions.mChild.WasPassed() &&
|
|
aOptions.mChild.Value().mObservers.WasPassed()) {
|
|
proto->mChild.mObservers = aOptions.mChild.Value().mObservers.Value();
|
|
}
|
|
|
|
return proto.forget();
|
|
}
|
|
|
|
/**
|
|
* This listener only listens for events for the child side of the protocol.
|
|
* This will work in both content and parent processes.
|
|
*/
|
|
NS_IMETHODIMP JSWindowActorProtocol::HandleEvent(Event* aEvent) {
|
|
// Determine which inner window we're associated with, and get its
|
|
// WindowGlobalChild actor.
|
|
EventTarget* target = aEvent->GetOriginalTarget();
|
|
if (NS_WARN_IF(!target)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
nsCOMPtr<nsPIDOMWindowInner> inner =
|
|
do_QueryInterface(target->GetOwnerGlobal());
|
|
if (NS_WARN_IF(!inner)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
RefPtr<WindowGlobalChild> wgc = inner->GetWindowGlobalChild();
|
|
if (NS_WARN_IF(!wgc)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
// Ensure our actor is present.
|
|
ErrorResult error;
|
|
RefPtr<JSWindowActorChild> actor = wgc->GetActor(mName, error);
|
|
if (error.Failed()) {
|
|
nsresult rv = error.StealNSResult();
|
|
|
|
// Don't raise an error if creation of our actor was vetoed.
|
|
if (rv == NS_ERROR_NOT_AVAILABLE) {
|
|
return NS_OK;
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
// Build our event listener & call it.
|
|
JS::Rooted<JSObject*> global(RootingCx(),
|
|
JS::GetNonCCWObjectGlobal(actor->GetWrapper()));
|
|
RefPtr<EventListener> eventListener =
|
|
new EventListener(actor->GetWrapper(), global, nullptr, nullptr);
|
|
eventListener->HandleEvent(*aEvent, "JSWindowActorProtocol::HandleEvent");
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP JSWindowActorProtocol::Observe(nsISupports* aSubject,
|
|
const char* aTopic,
|
|
const char16_t* aData) {
|
|
nsCOMPtr<nsPIDOMWindowInner> inner = do_QueryInterface(aSubject);
|
|
RefPtr<WindowGlobalChild> wgc;
|
|
|
|
if (!inner) {
|
|
nsCOMPtr<nsPIDOMWindowOuter> outer = do_QueryInterface(aSubject);
|
|
if (NS_WARN_IF(!outer) || NS_WARN_IF(!outer->GetCurrentInnerWindow())) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
wgc = outer->GetCurrentInnerWindow()->GetWindowGlobalChild();
|
|
} else {
|
|
wgc = inner->GetWindowGlobalChild();
|
|
}
|
|
|
|
if (NS_WARN_IF(!wgc)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
// Ensure our actor is present.
|
|
ErrorResult error;
|
|
RefPtr<JSWindowActorChild> actor = wgc->GetActor(mName, error);
|
|
if (NS_WARN_IF(error.Failed())) {
|
|
nsresult rv = error.StealNSResult();
|
|
|
|
// Don't raise an error if creation of our actor was vetoed.
|
|
if (rv == NS_ERROR_NOT_AVAILABLE) {
|
|
return NS_OK;
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
// Build a observer callback.
|
|
JS::Rooted<JSObject*> global(RootingCx(),
|
|
JS::GetNonCCWObjectGlobal(actor->GetWrapper()));
|
|
RefPtr<MozObserverCallback> observerCallback =
|
|
new MozObserverCallback(actor->GetWrapper(), global, nullptr, nullptr);
|
|
observerCallback->Observe(aSubject, nsDependentCString(aTopic),
|
|
aData ? nsDependentString(aData) : VoidString());
|
|
return NS_OK;
|
|
}
|
|
|
|
void JSWindowActorProtocol::RegisterListenersFor(EventTarget* aTarget) {
|
|
EventListenerManager* elm = aTarget->GetOrCreateListenerManager();
|
|
|
|
for (auto& event : mChild.mEvents) {
|
|
elm->AddEventListenerByType(EventListenerHolder(this), event.mName,
|
|
event.mFlags, event.mPassive);
|
|
}
|
|
}
|
|
|
|
void JSWindowActorProtocol::UnregisterListenersFor(EventTarget* aTarget) {
|
|
EventListenerManager* elm = aTarget->GetOrCreateListenerManager();
|
|
|
|
for (auto& event : mChild.mEvents) {
|
|
elm->RemoveEventListenerByType(EventListenerHolder(this), event.mName,
|
|
event.mFlags);
|
|
}
|
|
}
|
|
|
|
void JSWindowActorProtocol::AddObservers() {
|
|
nsCOMPtr<nsIObserverService> os = services::GetObserverService();
|
|
for (auto& topic : mChild.mObservers) {
|
|
// This makes the observer service hold an owning reference to the
|
|
// JSWindowActorProtocol. The JSWindowActorProtocol objects will be living
|
|
// for the full lifetime of the content process, thus the extra strong
|
|
// referencec doesn't have a negative impact.
|
|
os->AddObserver(this, topic.get(), false);
|
|
}
|
|
}
|
|
|
|
void JSWindowActorProtocol::RemoveObservers() {
|
|
nsCOMPtr<nsIObserverService> os = services::GetObserverService();
|
|
for (auto& topic : mChild.mObservers) {
|
|
os->RemoveObserver(this, topic.get());
|
|
}
|
|
}
|
|
|
|
extensions::MatchPatternSet* JSWindowActorProtocol::GetURIMatcher() {
|
|
// If we've already created the pattern set, return it.
|
|
if (mURIMatcher || mMatches.IsEmpty()) {
|
|
return mURIMatcher;
|
|
}
|
|
|
|
// Constructing the MatchPatternSet requires a JS environment to be run in.
|
|
// We can construct it here in the JSM scope, as we will be keeping it around.
|
|
AutoJSAPI jsapi;
|
|
MOZ_ALWAYS_TRUE(jsapi.Init(xpc::PrivilegedJunkScope()));
|
|
GlobalObject global(jsapi.cx(), xpc::PrivilegedJunkScope());
|
|
|
|
nsTArray<OwningStringOrMatchPattern> patterns;
|
|
patterns.SetCapacity(mMatches.Length());
|
|
for (nsString& s : mMatches) {
|
|
auto* entry = patterns.AppendElement();
|
|
entry->SetAsString() = s;
|
|
}
|
|
|
|
MatchPatternOptions matchPatternOptions;
|
|
// Make MatchPattern's mSchemes create properly.
|
|
matchPatternOptions.mRestrictSchemes = false;
|
|
mURIMatcher = extensions::MatchPatternSet::Constructor(
|
|
global, patterns, matchPatternOptions, IgnoreErrors());
|
|
return mURIMatcher;
|
|
}
|
|
|
|
bool JSWindowActorProtocol::RemoteTypePrefixMatches(
|
|
const nsDependentSubstring& aRemoteType) {
|
|
for (auto& remoteType : mRemoteTypes) {
|
|
if (StringBeginsWith(aRemoteType, remoteType)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool JSWindowActorProtocol::Matches(BrowsingContext* aBrowsingContext,
|
|
nsIURI* aURI,
|
|
const nsAString& aRemoteType) {
|
|
MOZ_ASSERT(aBrowsingContext, "DocShell without a BrowsingContext!");
|
|
MOZ_ASSERT(aURI, "Must have URI!");
|
|
|
|
if (!mAllFrames && aBrowsingContext->GetParent()) {
|
|
return false;
|
|
}
|
|
|
|
if (!mIncludeChrome && !aBrowsingContext->IsContent()) {
|
|
return false;
|
|
}
|
|
|
|
if (!mRemoteTypes.IsEmpty() &&
|
|
!RemoteTypePrefixMatches(RemoteTypePrefix(aRemoteType))) {
|
|
return false;
|
|
}
|
|
|
|
if (extensions::MatchPatternSet* uriMatcher = GetURIMatcher()) {
|
|
if (!uriMatcher->Matches(aURI)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
JSWindowActorService::JSWindowActorService() { MOZ_ASSERT(NS_IsMainThread()); }
|
|
|
|
JSWindowActorService::~JSWindowActorService() { MOZ_ASSERT(NS_IsMainThread()); }
|
|
|
|
/* static */
|
|
already_AddRefed<JSWindowActorService> JSWindowActorService::GetSingleton() {
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
if (!gJSWindowActorService) {
|
|
gJSWindowActorService = new JSWindowActorService();
|
|
ClearOnShutdown(&gJSWindowActorService);
|
|
}
|
|
|
|
RefPtr<JSWindowActorService> service = gJSWindowActorService.get();
|
|
return service.forget();
|
|
}
|
|
|
|
void JSWindowActorService::RegisterWindowActor(
|
|
const nsAString& aName, const WindowActorOptions& aOptions,
|
|
ErrorResult& aRv) {
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
MOZ_ASSERT(XRE_IsParentProcess());
|
|
|
|
auto entry = mDescriptors.LookupForAdd(aName);
|
|
if (entry) {
|
|
aRv.ThrowDOMException(NS_ERROR_DOM_NOT_SUPPORTED_ERR,
|
|
nsPrintfCString("'%s' actor is already registered.",
|
|
NS_ConvertUTF16toUTF8(aName).get()));
|
|
return;
|
|
}
|
|
|
|
// Insert a new entry for the protocol.
|
|
RefPtr<JSWindowActorProtocol> proto =
|
|
JSWindowActorProtocol::FromWebIDLOptions(aName, aOptions, aRv);
|
|
if (NS_WARN_IF(aRv.Failed())) {
|
|
entry.OrRemove();
|
|
return;
|
|
}
|
|
|
|
entry.OrInsert([&] { return proto; });
|
|
|
|
// Send information about the newly added entry to every existing content
|
|
// process.
|
|
AutoTArray<JSWindowActorInfo, 1> ipcInfos{proto->ToIPC()};
|
|
for (auto* cp : ContentParent::AllProcesses(ContentParent::eLive)) {
|
|
Unused << cp->SendInitJSWindowActorInfos(ipcInfos);
|
|
}
|
|
|
|
// Register event listeners for any existing chrome targets.
|
|
for (EventTarget* target : mChromeEventTargets) {
|
|
proto->RegisterListenersFor(target);
|
|
}
|
|
|
|
// Add observers to the protocol.
|
|
proto->AddObservers();
|
|
}
|
|
|
|
void JSWindowActorService::UnregisterWindowActor(const nsAString& aName) {
|
|
nsAutoString name(aName);
|
|
|
|
RefPtr<JSWindowActorProtocol> proto;
|
|
if (mDescriptors.Remove(aName, getter_AddRefs(proto))) {
|
|
// If we're in the parent process, also unregister the window actor in all
|
|
// live content processes.
|
|
if (XRE_IsParentProcess()) {
|
|
for (auto* cp : ContentParent::AllProcesses(ContentParent::eLive)) {
|
|
Unused << cp->SendUnregisterJSWindowActor(name);
|
|
}
|
|
}
|
|
|
|
// Remove listeners for this actor from each of our chrome targets.
|
|
for (EventTarget* target : mChromeEventTargets) {
|
|
proto->UnregisterListenersFor(target);
|
|
}
|
|
|
|
// Remove observers for this actor from observer serivce.
|
|
proto->RemoveObservers();
|
|
}
|
|
}
|
|
|
|
void JSWindowActorService::LoadJSWindowActorInfos(
|
|
nsTArray<JSWindowActorInfo>& aInfos) {
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
MOZ_ASSERT(XRE_IsContentProcess());
|
|
|
|
for (uint32_t i = 0, len = aInfos.Length(); i < len; i++) {
|
|
// Create our JSWindowActorProtocol, register it in mDescriptors.
|
|
RefPtr<JSWindowActorProtocol> proto =
|
|
JSWindowActorProtocol::FromIPC(aInfos[i]);
|
|
mDescriptors.Put(aInfos[i].name(), proto);
|
|
|
|
// Register listeners for each chrome target.
|
|
for (EventTarget* target : mChromeEventTargets) {
|
|
proto->RegisterListenersFor(target);
|
|
}
|
|
|
|
// Add observers for each actor.
|
|
proto->AddObservers();
|
|
}
|
|
}
|
|
|
|
void JSWindowActorService::GetJSWindowActorInfos(
|
|
nsTArray<JSWindowActorInfo>& aInfos) {
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
MOZ_ASSERT(XRE_IsParentProcess());
|
|
|
|
for (auto iter = mDescriptors.ConstIter(); !iter.Done(); iter.Next()) {
|
|
aInfos.AppendElement(iter.Data()->ToIPC());
|
|
}
|
|
}
|
|
|
|
void JSWindowActorService::RegisterChromeEventTarget(EventTarget* aTarget) {
|
|
MOZ_ASSERT(!mChromeEventTargets.Contains(aTarget));
|
|
mChromeEventTargets.AppendElement(aTarget);
|
|
|
|
// Register event listeners on the newly added Window Root.
|
|
for (auto iter = mDescriptors.Iter(); !iter.Done(); iter.Next()) {
|
|
iter.Data()->RegisterListenersFor(aTarget);
|
|
}
|
|
}
|
|
|
|
/* static */
|
|
void JSWindowActorService::UnregisterChromeEventTarget(EventTarget* aTarget) {
|
|
if (gJSWindowActorService) {
|
|
// NOTE: No need to unregister listeners here, as the target is going away.
|
|
gJSWindowActorService->mChromeEventTargets.RemoveElement(aTarget);
|
|
}
|
|
}
|
|
|
|
already_AddRefed<JSWindowActorProtocol> JSWindowActorService::GetProtocol(
|
|
const nsAString& aName) {
|
|
return mDescriptors.Get(aName);
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|