2013-07-03 00:24:32 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=4 sw=4 et 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 "JavaScriptChild.h"
|
|
|
|
#include "mozilla/dom/ContentChild.h"
|
2013-08-01 16:45:17 -07:00
|
|
|
#include "mozilla/dom/BindingUtils.h"
|
2014-08-05 21:43:36 -07:00
|
|
|
#include "mozilla/ipc/MessageChannel.h"
|
2013-07-03 00:24:32 -07:00
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "xpcprivate.h"
|
|
|
|
#include "jsfriendapi.h"
|
2014-08-05 21:43:36 -07:00
|
|
|
#include "AccessCheck.h"
|
2013-07-03 00:24:32 -07:00
|
|
|
|
|
|
|
using namespace JS;
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::jsipc;
|
|
|
|
|
|
|
|
using mozilla::AutoSafeJSContext;
|
|
|
|
|
|
|
|
static void
|
2015-03-28 15:22:11 -07:00
|
|
|
UpdateChildWeakPointersAfterGC(JSRuntime* rt, void* data)
|
2013-07-03 00:24:32 -07:00
|
|
|
{
|
2015-03-28 15:22:11 -07:00
|
|
|
static_cast<JavaScriptChild*>(data)->updateWeakPointers();
|
2014-09-02 02:07:22 -07:00
|
|
|
}
|
|
|
|
|
2015-03-28 15:22:11 -07:00
|
|
|
JavaScriptChild::JavaScriptChild(JSRuntime* rt)
|
2014-05-16 16:40:37 -07:00
|
|
|
: JavaScriptShared(rt),
|
|
|
|
JavaScriptBase<PJavaScriptChild>(rt)
|
2013-07-03 00:24:32 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-05-16 16:40:37 -07:00
|
|
|
JavaScriptChild::~JavaScriptChild()
|
2013-07-03 00:24:32 -07:00
|
|
|
{
|
2014-09-24 04:54:11 -07:00
|
|
|
JS_RemoveWeakPointerCallback(rt_, UpdateChildWeakPointersAfterGC);
|
2013-07-03 00:24:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
JavaScriptChild::init()
|
|
|
|
{
|
2014-05-16 16:40:36 -07:00
|
|
|
if (!WrapperOwner::init())
|
2013-07-03 00:24:32 -07:00
|
|
|
return false;
|
2014-05-16 16:40:36 -07:00
|
|
|
if (!WrapperAnswer::init())
|
|
|
|
return false;
|
|
|
|
|
2014-09-24 04:54:11 -07:00
|
|
|
JS_AddWeakPointerCallback(rt_, UpdateChildWeakPointersAfterGC, this);
|
2013-07-03 00:24:32 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-05-16 16:40:37 -07:00
|
|
|
void
|
2014-09-24 04:54:11 -07:00
|
|
|
JavaScriptChild::updateWeakPointers()
|
2013-07-03 00:24:32 -07:00
|
|
|
{
|
2014-09-02 02:07:22 -07:00
|
|
|
objects_.sweep();
|
2014-09-25 04:13:29 -07:00
|
|
|
unwaivedObjectIds_.sweep();
|
|
|
|
waivedObjectIds_.sweep();
|
2013-07-03 00:24:32 -07:00
|
|
|
}
|
2014-08-20 12:49:10 -07:00
|
|
|
|
2015-03-28 15:22:11 -07:00
|
|
|
JSObject*
|
2014-09-12 17:41:18 -07:00
|
|
|
JavaScriptChild::scopeForTargetObjects()
|
2014-08-20 12:49:10 -07:00
|
|
|
{
|
2014-09-12 17:41:18 -07:00
|
|
|
// CPOWs from the parent need to point into the child's privileged junk
|
|
|
|
// scope so that they can benefit from XrayWrappers in the child.
|
2014-08-20 12:49:10 -07:00
|
|
|
return xpc::PrivilegedJunkScope();
|
|
|
|
}
|
2015-01-26 13:32:18 -08:00
|
|
|
|
2015-03-28 15:22:11 -07:00
|
|
|
PJavaScriptChild*
|
|
|
|
mozilla::jsipc::NewJavaScriptChild(JSRuntime* rt)
|
2015-01-26 13:32:18 -08:00
|
|
|
{
|
2015-03-28 15:22:11 -07:00
|
|
|
JavaScriptChild* child = new JavaScriptChild(rt);
|
2015-01-26 13:32:18 -08:00
|
|
|
if (!child->init()) {
|
|
|
|
delete child;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return child;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-03-28 15:22:11 -07:00
|
|
|
mozilla::jsipc::ReleaseJavaScriptChild(PJavaScriptChild* child)
|
2015-01-26 13:32:18 -08:00
|
|
|
{
|
2015-03-28 15:22:11 -07:00
|
|
|
static_cast<JavaScriptChild*>(child)->decref();
|
2015-01-26 13:32:18 -08:00
|
|
|
}
|