2015-05-03 19:32:37 +00: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: */
|
2013-12-12 01:51:57 +00:00
|
|
|
/* 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/ScriptSettings.h"
|
2013-12-12 01:51:57 +00:00
|
|
|
#include "mozilla/ThreadLocal.h"
|
|
|
|
#include "mozilla/Assertions.h"
|
2013-12-12 01:51:57 +00:00
|
|
|
|
2013-12-12 01:51:57 +00:00
|
|
|
#include "jsapi.h"
|
2014-08-15 01:47:15 +00:00
|
|
|
#include "xpcprivate.h" // For AutoCxPusher guts
|
2013-12-12 01:51:57 +00:00
|
|
|
#include "xpcpublic.h"
|
2013-12-12 01:51:57 +00:00
|
|
|
#include "nsIGlobalObject.h"
|
2014-11-13 21:22:24 +00:00
|
|
|
#include "nsIDocShell.h"
|
2013-12-12 01:51:57 +00:00
|
|
|
#include "nsIScriptGlobalObject.h"
|
|
|
|
#include "nsIScriptContext.h"
|
|
|
|
#include "nsContentUtils.h"
|
2014-06-19 07:21:14 +00:00
|
|
|
#include "nsGlobalWindow.h"
|
|
|
|
#include "nsPIDOMWindow.h"
|
2013-12-12 01:51:57 +00:00
|
|
|
#include "nsTArray.h"
|
2014-01-07 18:53:31 +00:00
|
|
|
#include "nsJSUtils.h"
|
2014-08-15 01:47:15 +00:00
|
|
|
#include "nsDOMJSUtils.h"
|
2014-08-15 01:47:15 +00:00
|
|
|
#include "WorkerPrivate.h"
|
2013-12-12 01:51:57 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-11-23 19:11:22 +00:00
|
|
|
static MOZ_THREAD_LOCAL(ScriptSettingsStackEntry*) sScriptSettingsTLS;
|
|
|
|
static bool sScriptSettingsTLSInitialized;
|
2013-12-12 01:51:57 +00:00
|
|
|
|
|
|
|
class ScriptSettingsStack {
|
|
|
|
public:
|
2014-06-13 06:24:13 +00:00
|
|
|
static ScriptSettingsStackEntry* Top() {
|
|
|
|
return sScriptSettingsTLS.get();
|
2013-12-12 01:51:57 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 06:24:13 +00:00
|
|
|
static void Push(ScriptSettingsStackEntry *aEntry) {
|
|
|
|
MOZ_ASSERT(!aEntry->mOlder);
|
|
|
|
// Whenever JSAPI use is disabled, the next stack entry pushed must
|
|
|
|
// always be a candidate entry point.
|
|
|
|
MOZ_ASSERT_IF(!Top() || Top()->NoJSAPI(), aEntry->mIsCandidateEntryPoint);
|
2013-12-12 01:51:57 +00:00
|
|
|
|
2014-06-13 06:24:13 +00:00
|
|
|
aEntry->mOlder = Top();
|
|
|
|
sScriptSettingsTLS.set(aEntry);
|
2013-12-12 01:51:57 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 06:24:13 +00:00
|
|
|
static void Pop(ScriptSettingsStackEntry *aEntry) {
|
|
|
|
MOZ_ASSERT(aEntry == Top());
|
|
|
|
sScriptSettingsTLS.set(aEntry->mOlder);
|
2013-12-12 01:51:57 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 06:24:13 +00:00
|
|
|
static nsIGlobalObject* IncumbentGlobal() {
|
|
|
|
ScriptSettingsStackEntry *entry = Top();
|
2016-05-01 18:29:22 +00:00
|
|
|
if (!entry) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return entry->mGlobalObject;
|
2014-02-15 06:36:43 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 06:24:13 +00:00
|
|
|
static ScriptSettingsStackEntry* EntryPoint() {
|
|
|
|
ScriptSettingsStackEntry *entry = Top();
|
|
|
|
if (!entry) {
|
2013-12-12 01:51:57 +00:00
|
|
|
return nullptr;
|
2014-06-13 06:24:13 +00:00
|
|
|
}
|
|
|
|
while (entry) {
|
|
|
|
if (entry->mIsCandidateEntryPoint)
|
|
|
|
return entry;
|
|
|
|
entry = entry->mOlder;
|
2013-12-12 01:51:57 +00:00
|
|
|
}
|
2014-04-20 07:36:40 +00:00
|
|
|
MOZ_CRASH("Non-empty stack should always have an entry point");
|
2013-12-12 01:51:57 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 06:24:13 +00:00
|
|
|
static nsIGlobalObject* EntryGlobal() {
|
2014-02-15 06:36:43 +00:00
|
|
|
ScriptSettingsStackEntry *entry = EntryPoint();
|
2016-05-01 18:29:22 +00:00
|
|
|
if (!entry) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return entry->mGlobalObject;
|
2014-02-15 06:36:43 +00:00
|
|
|
}
|
2014-11-13 21:22:24 +00:00
|
|
|
|
2013-12-12 01:51:57 +00:00
|
|
|
};
|
|
|
|
|
2014-11-13 21:22:24 +00:00
|
|
|
static unsigned long gRunToCompletionListeners = 0;
|
|
|
|
|
|
|
|
void
|
|
|
|
UseEntryScriptProfiling()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
++gRunToCompletionListeners;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UnuseEntryScriptProfiling()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(gRunToCompletionListeners > 0);
|
|
|
|
--gRunToCompletionListeners;
|
|
|
|
}
|
|
|
|
|
2013-12-12 01:51:57 +00:00
|
|
|
void
|
|
|
|
InitScriptSettings()
|
|
|
|
{
|
2015-11-23 19:11:22 +00:00
|
|
|
bool success = sScriptSettingsTLS.init();
|
|
|
|
if (!success) {
|
|
|
|
MOZ_CRASH();
|
2013-12-12 01:51:57 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 06:24:13 +00:00
|
|
|
sScriptSettingsTLS.set(nullptr);
|
2015-11-23 19:11:22 +00:00
|
|
|
sScriptSettingsTLSInitialized = true;
|
2013-12-12 01:51:57 +00:00
|
|
|
}
|
|
|
|
|
2014-12-06 17:51:14 +00:00
|
|
|
void
|
|
|
|
DestroyScriptSettings()
|
2013-12-12 01:51:57 +00:00
|
|
|
{
|
2014-06-13 06:24:13 +00:00
|
|
|
MOZ_ASSERT(sScriptSettingsTLS.get() == nullptr);
|
|
|
|
}
|
|
|
|
|
2014-12-06 17:51:14 +00:00
|
|
|
bool
|
|
|
|
ScriptSettingsInitialized()
|
|
|
|
{
|
2015-11-23 19:11:22 +00:00
|
|
|
return sScriptSettingsTLSInitialized;
|
2014-12-06 17:51:14 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 06:24:13 +00:00
|
|
|
ScriptSettingsStackEntry::ScriptSettingsStackEntry(nsIGlobalObject *aGlobal,
|
|
|
|
bool aCandidate)
|
|
|
|
: mGlobalObject(aGlobal)
|
|
|
|
, mIsCandidateEntryPoint(aCandidate)
|
|
|
|
, mOlder(nullptr)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mGlobalObject);
|
|
|
|
MOZ_ASSERT(mGlobalObject->GetGlobalJSObject(),
|
|
|
|
"Must have an actual JS global for the duration on the stack");
|
|
|
|
MOZ_ASSERT(JS_IsGlobalObject(mGlobalObject->GetGlobalJSObject()),
|
|
|
|
"No outer windows allowed");
|
|
|
|
|
|
|
|
ScriptSettingsStack::Push(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This constructor is only for use by AutoNoJSAPI.
|
|
|
|
ScriptSettingsStackEntry::ScriptSettingsStackEntry()
|
|
|
|
: mGlobalObject(nullptr)
|
|
|
|
, mIsCandidateEntryPoint(true)
|
|
|
|
, mOlder(nullptr)
|
|
|
|
{
|
|
|
|
ScriptSettingsStack::Push(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
ScriptSettingsStackEntry::~ScriptSettingsStackEntry()
|
|
|
|
{
|
|
|
|
// We must have an actual JS global for the entire time this is on the stack.
|
|
|
|
MOZ_ASSERT_IF(mGlobalObject, mGlobalObject->GetGlobalJSObject());
|
|
|
|
|
|
|
|
ScriptSettingsStack::Pop(this);
|
2013-12-12 01:51:57 +00:00
|
|
|
}
|
|
|
|
|
2014-11-13 19:13:36 +00:00
|
|
|
// If the entry or incumbent global ends up being something that the subject
|
|
|
|
// principal doesn't subsume, we don't want to use it. This never happens on
|
|
|
|
// the web, but can happen with asymmetric privilege relationships (i.e.
|
|
|
|
// nsExpandedPrincipal and System Principal).
|
|
|
|
//
|
|
|
|
// The most correct thing to use instead would be the topmost global on the
|
|
|
|
// callstack whose principal is subsumed by the subject principal. But that's
|
|
|
|
// hard to compute, so we just substitute the global of the current
|
|
|
|
// compartment. In practice, this is fine.
|
|
|
|
//
|
|
|
|
// Note that in particular things like:
|
|
|
|
//
|
|
|
|
// |SpecialPowers.wrap(crossOriginWindow).eval(open())|
|
|
|
|
//
|
|
|
|
// trigger this case. Although both the entry global and the current global
|
|
|
|
// have normal principals, the use of Gecko-specific System-Principaled JS
|
|
|
|
// puts the code from two different origins on the callstack at once, which
|
|
|
|
// doesn't happen normally on the web.
|
|
|
|
static nsIGlobalObject*
|
|
|
|
ClampToSubject(nsIGlobalObject* aGlobalOrNull)
|
|
|
|
{
|
|
|
|
if (!aGlobalOrNull || !NS_IsMainThread()) {
|
|
|
|
return aGlobalOrNull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIPrincipal* globalPrin = aGlobalOrNull->PrincipalOrNull();
|
|
|
|
NS_ENSURE_TRUE(globalPrin, GetCurrentGlobal());
|
2015-10-14 05:06:10 +00:00
|
|
|
if (!nsContentUtils::SubjectPrincipalOrSystemIfNativeCaller()->SubsumesConsideringDomain(globalPrin)) {
|
2014-11-13 19:13:36 +00:00
|
|
|
return GetCurrentGlobal();
|
|
|
|
}
|
|
|
|
|
|
|
|
return aGlobalOrNull;
|
|
|
|
}
|
|
|
|
|
2014-01-07 18:53:31 +00:00
|
|
|
nsIGlobalObject*
|
2014-08-19 19:02:05 +00:00
|
|
|
GetEntryGlobal()
|
2014-01-07 18:53:31 +00:00
|
|
|
{
|
2014-11-13 19:13:36 +00:00
|
|
|
return ClampToSubject(ScriptSettingsStack::EntryGlobal());
|
2014-01-07 18:53:31 +00:00
|
|
|
}
|
|
|
|
|
2014-08-19 19:02:06 +00:00
|
|
|
nsIDocument*
|
|
|
|
GetEntryDocument()
|
|
|
|
{
|
2014-10-17 15:19:19 +00:00
|
|
|
nsIGlobalObject* global = GetEntryGlobal();
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> entryWin = do_QueryInterface(global);
|
2014-10-17 15:19:19 +00:00
|
|
|
|
|
|
|
// If our entry global isn't a window, see if it's an addon scope associated
|
|
|
|
// with a window. If it is, the caller almost certainly wants that rather
|
|
|
|
// than null.
|
2014-10-17 17:08:45 +00:00
|
|
|
if (!entryWin && global) {
|
2016-01-30 17:05:36 +00:00
|
|
|
if (auto* win = xpc::AddonWindowOrNull(global->GetGlobalJSObject())) {
|
|
|
|
entryWin = win->AsInner();
|
|
|
|
}
|
2014-10-17 15:19:19 +00:00
|
|
|
}
|
|
|
|
|
2014-08-19 19:02:06 +00:00
|
|
|
return entryWin ? entryWin->GetExtantDoc() : nullptr;
|
|
|
|
}
|
|
|
|
|
2013-12-12 01:51:57 +00:00
|
|
|
nsIGlobalObject*
|
|
|
|
GetIncumbentGlobal()
|
|
|
|
{
|
|
|
|
// We need the current JSContext in order to check the JS for
|
|
|
|
// scripted frames that may have appeared since anyone last
|
|
|
|
// manipulated the stack. If it's null, that means that there
|
2014-02-15 06:36:43 +00:00
|
|
|
// must be no entry global on the stack, and therefore no incumbent
|
2013-12-12 01:51:57 +00:00
|
|
|
// global either.
|
|
|
|
JSContext *cx = nsContentUtils::GetCurrentJSContextForThread();
|
|
|
|
if (!cx) {
|
2014-06-13 06:24:13 +00:00
|
|
|
MOZ_ASSERT(ScriptSettingsStack::EntryGlobal() == nullptr);
|
2013-12-12 01:51:57 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// See what the JS engine has to say. If we've got a scripted caller
|
|
|
|
// override in place, the JS engine will lie to us and pretend that
|
|
|
|
// there's nothing on the JS stack, which will cause us to check the
|
|
|
|
// incumbent script stack below.
|
2014-02-25 15:43:14 +00:00
|
|
|
if (JSObject *global = JS::GetScriptedCallerGlobal(cx)) {
|
2014-11-13 19:13:36 +00:00
|
|
|
return ClampToSubject(xpc::NativeGlobal(global));
|
2013-12-12 01:51:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Ok, nothing from the JS engine. Let's use whatever's on the
|
|
|
|
// explicit stack.
|
2014-11-13 19:13:36 +00:00
|
|
|
return ClampToSubject(ScriptSettingsStack::IncumbentGlobal());
|
2014-02-15 00:13:38 +00:00
|
|
|
}
|
|
|
|
|
2014-08-19 19:02:05 +00:00
|
|
|
nsIGlobalObject*
|
|
|
|
GetCurrentGlobal()
|
|
|
|
{
|
|
|
|
JSContext *cx = nsContentUtils::GetCurrentJSContextForThread();
|
|
|
|
if (!cx) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject *global = JS::CurrentGlobalOrNull(cx);
|
|
|
|
if (!global) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-09-21 19:31:53 +00:00
|
|
|
return xpc::NativeGlobal(global);
|
2014-08-19 19:02:05 +00:00
|
|
|
}
|
|
|
|
|
2014-02-15 06:36:44 +00:00
|
|
|
nsIPrincipal*
|
|
|
|
GetWebIDLCallerPrincipal()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2014-06-13 06:24:13 +00:00
|
|
|
ScriptSettingsStackEntry *entry = ScriptSettingsStack::EntryPoint();
|
2014-02-15 06:36:44 +00:00
|
|
|
|
2014-06-13 06:24:13 +00:00
|
|
|
// If we have an entry point that is not NoJSAPI, we know it must be an
|
|
|
|
// AutoEntryScript.
|
2014-04-15 03:27:00 +00:00
|
|
|
if (!entry || entry->NoJSAPI()) {
|
2014-02-15 06:36:44 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
AutoEntryScript* aes = static_cast<AutoEntryScript*>(entry);
|
|
|
|
|
|
|
|
// We can't yet rely on the Script Settings Stack to properly determine the
|
|
|
|
// entry script, because there are still lots of places in the tree where we
|
|
|
|
// don't yet use an AutoEntryScript (bug 951991 tracks this work). In the
|
|
|
|
// mean time though, we can make some observations to hack around the
|
|
|
|
// problem:
|
|
|
|
//
|
|
|
|
// (1) All calls into JS-implemented WebIDL go through CallSetup, which goes
|
|
|
|
// through AutoEntryScript.
|
|
|
|
// (2) The top candidate entry point in the Script Settings Stack is the
|
|
|
|
// entry point if and only if no other JSContexts have been pushed on
|
|
|
|
// top of the push made by that entry's AutoEntryScript.
|
|
|
|
//
|
|
|
|
// Because of (1), all of the cases where we might return a non-null
|
|
|
|
// WebIDL Caller are guaranteed to have put an entry on the Script Settings
|
|
|
|
// Stack, so we can restrict our search to that. Moreover, (2) gives us a
|
|
|
|
// criterion to determine whether an entry in the Script Setting Stack means
|
|
|
|
// that we should return a non-null WebIDL Caller.
|
|
|
|
//
|
|
|
|
// Once we fix bug 951991, this can all be simplified.
|
2014-04-15 03:26:59 +00:00
|
|
|
if (!aes->CxPusherIsStackTop()) {
|
2014-02-15 06:36:44 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return aes->mWebIDLCallerPrincipal;
|
|
|
|
}
|
|
|
|
|
2014-04-15 03:26:59 +00:00
|
|
|
AutoJSAPI::AutoJSAPI()
|
2014-06-19 07:21:14 +00:00
|
|
|
: mCx(nullptr)
|
2015-11-20 21:29:41 +00:00
|
|
|
, mIsMainThread(false) // For lack of anything better
|
2014-04-15 03:26:59 +00:00
|
|
|
{
|
2014-06-19 07:21:14 +00:00
|
|
|
}
|
|
|
|
|
2014-09-29 13:34:21 +00:00
|
|
|
AutoJSAPI::~AutoJSAPI()
|
|
|
|
{
|
2016-03-23 15:44:54 +00:00
|
|
|
if (!mCx) {
|
|
|
|
// No need to do anything here: we never managed to Init, so can't have an
|
|
|
|
// exception on our (nonexistent) JSContext. We also don't need to restore
|
|
|
|
// any state on it.
|
|
|
|
return;
|
2014-09-29 13:34:21 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 15:44:54 +00:00
|
|
|
ReportException();
|
|
|
|
|
2014-09-29 13:34:21 +00:00
|
|
|
if (mOldErrorReporter.isSome()) {
|
|
|
|
JS_SetErrorReporter(JS_GetRuntime(cx()), mOldErrorReporter.value());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-23 15:44:54 +00:00
|
|
|
void
|
|
|
|
WarningOnlyErrorReporter(JSContext* aCx, const char* aMessage,
|
|
|
|
JSErrorReport* aRep);
|
|
|
|
|
2014-06-19 07:21:14 +00:00
|
|
|
void
|
2016-06-02 14:34:39 +00:00
|
|
|
AutoJSAPI::InitInternal(nsIGlobalObject* aGlobalObject, JSObject* aGlobal,
|
|
|
|
JSContext* aCx, bool aIsMainThread)
|
2014-06-19 07:21:14 +00:00
|
|
|
{
|
2014-08-28 17:00:56 +00:00
|
|
|
MOZ_ASSERT(aCx);
|
2015-11-20 21:29:41 +00:00
|
|
|
MOZ_ASSERT(aIsMainThread == NS_IsMainThread());
|
2016-06-02 14:34:39 +00:00
|
|
|
MOZ_ASSERT(bool(aGlobalObject) == bool(aGlobal));
|
|
|
|
MOZ_ASSERT_IF(aGlobalObject, aGlobalObject->GetGlobalJSObject() == aGlobal);
|
2016-03-15 21:25:53 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
bool haveException = JS_IsExceptionPending(aCx);
|
|
|
|
#endif // DEBUG
|
2015-11-20 21:29:41 +00:00
|
|
|
|
2014-06-19 07:21:14 +00:00
|
|
|
mCx = aCx;
|
2015-11-20 21:29:41 +00:00
|
|
|
mIsMainThread = aIsMainThread;
|
2016-06-02 14:34:39 +00:00
|
|
|
mGlobalObject = aGlobalObject;
|
2014-06-19 07:21:14 +00:00
|
|
|
if (aIsMainThread) {
|
2014-07-01 16:02:10 +00:00
|
|
|
// This Rooted<> is necessary only as long as AutoCxPusher::AutoCxPusher
|
|
|
|
// can GC, which is only possible because XPCJSContextStack::Push calls
|
|
|
|
// nsIPrincipal.Equals. Once that is removed, the Rooted<> will no longer
|
|
|
|
// be necessary.
|
|
|
|
JS::Rooted<JSObject*> global(JS_GetRuntime(aCx), aGlobal);
|
2014-08-13 22:39:41 +00:00
|
|
|
mCxPusher.emplace(mCx);
|
|
|
|
mAutoNullableCompartment.emplace(mCx, global);
|
2014-07-01 16:02:10 +00:00
|
|
|
} else {
|
2014-08-13 22:39:41 +00:00
|
|
|
mAutoNullableCompartment.emplace(mCx, aGlobal);
|
2014-04-15 03:26:59 +00:00
|
|
|
}
|
2014-09-29 13:34:21 +00:00
|
|
|
|
2016-03-01 21:53:22 +00:00
|
|
|
JSRuntime* rt = JS_GetRuntime(aCx);
|
|
|
|
mOldErrorReporter.emplace(JS_GetErrorReporter(rt));
|
|
|
|
|
2016-03-23 15:44:54 +00:00
|
|
|
JS_SetErrorReporter(rt, WarningOnlyErrorReporter);
|
2016-03-15 21:25:53 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
if (haveException) {
|
|
|
|
JS::Rooted<JS::Value> exn(aCx);
|
|
|
|
JS_GetPendingException(aCx, &exn);
|
|
|
|
|
|
|
|
JS_ClearPendingException(aCx);
|
|
|
|
if (exn.isObject()) {
|
|
|
|
JS::Rooted<JSObject*> exnObj(aCx, &exn.toObject());
|
|
|
|
|
|
|
|
nsAutoJSString stack, filename, name, message;
|
|
|
|
int32_t line;
|
|
|
|
|
|
|
|
JS::Rooted<JS::Value> tmp(aCx);
|
|
|
|
if (!JS_GetProperty(aCx, exnObj, "filename", &tmp)) {
|
|
|
|
JS_ClearPendingException(aCx);
|
|
|
|
}
|
|
|
|
if (tmp.isUndefined()) {
|
|
|
|
if (!JS_GetProperty(aCx, exnObj, "fileName", &tmp)) {
|
|
|
|
JS_ClearPendingException(aCx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!filename.init(aCx, tmp)) {
|
|
|
|
JS_ClearPendingException(aCx);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!JS_GetProperty(aCx, exnObj, "stack", &tmp) ||
|
|
|
|
!stack.init(aCx, tmp)) {
|
|
|
|
JS_ClearPendingException(aCx);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!JS_GetProperty(aCx, exnObj, "name", &tmp) ||
|
|
|
|
!name.init(aCx, tmp)) {
|
|
|
|
JS_ClearPendingException(aCx);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!JS_GetProperty(aCx, exnObj, "message", &tmp) ||
|
|
|
|
!message.init(aCx, tmp)) {
|
|
|
|
JS_ClearPendingException(aCx);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!JS_GetProperty(aCx, exnObj, "lineNumber", &tmp) ||
|
|
|
|
!JS::ToInt32(aCx, tmp, &line)) {
|
|
|
|
JS_ClearPendingException(aCx);
|
|
|
|
line = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf_stderr("PREEXISTING EXCEPTION OBJECT: '%s: %s'\n%s:%d\n%s\n",
|
|
|
|
NS_ConvertUTF16toUTF8(name).get(),
|
|
|
|
NS_ConvertUTF16toUTF8(message).get(),
|
|
|
|
NS_ConvertUTF16toUTF8(filename).get(), line,
|
|
|
|
NS_ConvertUTF16toUTF8(stack).get());
|
|
|
|
} else {
|
|
|
|
// It's a primitive... not much we can do other than stringify it.
|
|
|
|
nsAutoJSString exnStr;
|
|
|
|
if (!exnStr.init(aCx, exn)) {
|
|
|
|
JS_ClearPendingException(aCx);
|
|
|
|
}
|
|
|
|
|
|
|
|
printf_stderr("PREEXISTING EXCEPTION PRIMITIVE: %s\n",
|
|
|
|
NS_ConvertUTF16toUTF8(exnStr).get());
|
|
|
|
}
|
|
|
|
MOZ_ASSERT(false, "We had an exception; we should not have");
|
|
|
|
}
|
|
|
|
#endif // DEBUG
|
2014-04-15 03:26:59 +00:00
|
|
|
}
|
|
|
|
|
2014-06-19 07:21:14 +00:00
|
|
|
AutoJSAPI::AutoJSAPI(nsIGlobalObject* aGlobalObject,
|
|
|
|
bool aIsMainThread,
|
|
|
|
JSContext* aCx)
|
2016-06-07 18:30:48 +00:00
|
|
|
: mIsMainThread(aIsMainThread)
|
2014-04-15 03:26:59 +00:00
|
|
|
{
|
2014-06-19 07:21:14 +00:00
|
|
|
MOZ_ASSERT(aGlobalObject);
|
|
|
|
MOZ_ASSERT(aGlobalObject->GetGlobalJSObject(), "Must have a JS global");
|
|
|
|
MOZ_ASSERT(aCx);
|
2015-11-20 21:29:41 +00:00
|
|
|
MOZ_ASSERT(aIsMainThread == NS_IsMainThread());
|
2014-06-19 07:21:14 +00:00
|
|
|
|
2016-06-02 14:34:39 +00:00
|
|
|
InitInternal(aGlobalObject, aGlobalObject->GetGlobalJSObject(), aCx,
|
|
|
|
aIsMainThread);
|
2014-06-19 07:21:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutoJSAPI::Init()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mCx, "An AutoJSAPI should only be initialised once");
|
|
|
|
|
2016-06-02 14:34:39 +00:00
|
|
|
InitInternal(/* aGlobalObject */ nullptr, /* aGlobal */ nullptr,
|
2014-06-19 07:21:14 +00:00
|
|
|
nsContentUtils::GetDefaultJSContextForThread(),
|
|
|
|
NS_IsMainThread());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AutoJSAPI::Init(nsIGlobalObject* aGlobalObject, JSContext* aCx)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(!mCx, "An AutoJSAPI should only be initialised once");
|
|
|
|
MOZ_ASSERT(aCx);
|
|
|
|
|
|
|
|
if (NS_WARN_IF(!aGlobalObject)) {
|
|
|
|
return false;
|
2014-04-15 03:26:59 +00:00
|
|
|
}
|
|
|
|
|
2014-06-19 07:21:14 +00:00
|
|
|
JSObject* global = aGlobalObject->GetGlobalJSObject();
|
|
|
|
if (NS_WARN_IF(!global)) {
|
|
|
|
return false;
|
2014-04-15 03:26:59 +00:00
|
|
|
}
|
2014-06-19 07:21:14 +00:00
|
|
|
|
2016-06-02 14:34:39 +00:00
|
|
|
InitInternal(aGlobalObject, global, aCx, NS_IsMainThread());
|
2014-06-19 07:21:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AutoJSAPI::Init(nsIGlobalObject* aGlobalObject)
|
|
|
|
{
|
|
|
|
return Init(aGlobalObject, nsContentUtils::GetDefaultJSContextForThread());
|
|
|
|
}
|
|
|
|
|
2014-09-21 19:31:53 +00:00
|
|
|
bool
|
|
|
|
AutoJSAPI::Init(JSObject* aObject)
|
|
|
|
{
|
|
|
|
return Init(xpc::NativeGlobal(aObject));
|
|
|
|
}
|
|
|
|
|
2014-06-19 07:21:14 +00:00
|
|
|
bool
|
2016-01-30 17:05:36 +00:00
|
|
|
AutoJSAPI::Init(nsPIDOMWindowInner* aWindow, JSContext* aCx)
|
2014-06-19 07:21:14 +00:00
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
return Init(nsGlobalWindow::Cast(aWindow), aCx);
|
2014-04-15 03:26:59 +00:00
|
|
|
}
|
|
|
|
|
2014-06-19 07:21:14 +00:00
|
|
|
bool
|
2016-01-30 17:05:36 +00:00
|
|
|
AutoJSAPI::Init(nsPIDOMWindowInner* aWindow)
|
2014-04-15 03:26:59 +00:00
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
return Init(nsGlobalWindow::Cast(aWindow));
|
2014-04-15 03:26:59 +00:00
|
|
|
}
|
|
|
|
|
2014-06-19 07:21:14 +00:00
|
|
|
bool
|
2014-06-25 10:17:17 +00:00
|
|
|
AutoJSAPI::Init(nsGlobalWindow* aWindow, JSContext* aCx)
|
|
|
|
{
|
|
|
|
return Init(static_cast<nsIGlobalObject*>(aWindow), aCx);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AutoJSAPI::Init(nsGlobalWindow* aWindow)
|
|
|
|
{
|
|
|
|
return Init(static_cast<nsIGlobalObject*>(aWindow));
|
|
|
|
}
|
|
|
|
|
2014-12-16 10:02:37 +00:00
|
|
|
// Even with autoJSAPIOwnsErrorReporting, the JS engine still sends warning
|
|
|
|
// reports to the JSErrorReporter as soon as they are generated. These go
|
|
|
|
// directly to the console, so we can handle them easily here.
|
2014-09-29 13:34:21 +00:00
|
|
|
//
|
2014-12-16 10:02:37 +00:00
|
|
|
// Eventually, SpiderMonkey will have a special-purpose callback for warnings
|
|
|
|
// only.
|
2014-09-29 13:34:21 +00:00
|
|
|
void
|
|
|
|
WarningOnlyErrorReporter(JSContext* aCx, const char* aMessage, JSErrorReport* aRep)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(JSREPORT_IS_WARNING(aRep->flags));
|
2016-03-01 21:53:22 +00:00
|
|
|
if (!NS_IsMainThread()) {
|
|
|
|
// Reporting a warning on workers is a bit complicated because we have to
|
|
|
|
// climb our parent chain until we get to the main thread. So go ahead and
|
|
|
|
// just go through the worker ReportError codepath here.
|
|
|
|
//
|
|
|
|
// That said, it feels like we should be able to short-circuit things a bit
|
|
|
|
// here by posting an appropriate runnable to the main thread directly...
|
|
|
|
// Worth looking into sometime.
|
|
|
|
workers::WorkerPrivate* worker = workers::GetWorkerPrivateFromContext(aCx);
|
|
|
|
MOZ_ASSERT(worker);
|
|
|
|
|
|
|
|
worker->ReportError(aCx, aMessage, aRep);
|
|
|
|
return;
|
|
|
|
}
|
2015-11-20 21:29:41 +00:00
|
|
|
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<xpc::ErrorReport> xpcReport = new xpc::ErrorReport();
|
2016-01-30 17:05:36 +00:00
|
|
|
nsGlobalWindow* win = xpc::CurrentWindowOrNull(aCx);
|
2016-03-08 22:21:40 +00:00
|
|
|
if (!win) {
|
|
|
|
// We run addons in a separate privileged compartment, but if we're in an
|
|
|
|
// addon compartment we should log warnings to the console of the associated
|
|
|
|
// DOM Window.
|
|
|
|
win = xpc::AddonWindowOrNull(JS::CurrentGlobalOrNull(aCx));
|
|
|
|
}
|
2014-12-04 17:47:48 +00:00
|
|
|
xpcReport->Init(aRep, aMessage, nsContentUtils::IsCallerChrome(),
|
2016-01-30 17:05:36 +00:00
|
|
|
win ? win->AsInner()->WindowID() : 0);
|
2014-09-29 13:34:21 +00:00
|
|
|
xpcReport->LogToConsole();
|
|
|
|
}
|
|
|
|
|
2015-06-16 00:10:38 +00:00
|
|
|
void
|
|
|
|
AutoJSAPI::ReportException()
|
|
|
|
{
|
|
|
|
if (!HasException()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// AutoJSAPI uses a JSAutoNullableCompartment, and may be in a null
|
|
|
|
// compartment when the destructor is called. However, the JS engine
|
|
|
|
// requires us to be in a compartment when we fetch the pending exception.
|
|
|
|
// In this case, we enter the privileged junk scope and don't dispatch any
|
|
|
|
// error events.
|
|
|
|
JS::Rooted<JSObject*> errorGlobal(cx(), JS::CurrentGlobalOrNull(cx()));
|
2016-02-18 03:56:36 +00:00
|
|
|
if (!errorGlobal) {
|
|
|
|
if (mIsMainThread) {
|
|
|
|
errorGlobal = xpc::PrivilegedJunkScope();
|
|
|
|
} else {
|
|
|
|
errorGlobal = workers::GetCurrentThreadWorkerGlobal();
|
|
|
|
}
|
|
|
|
}
|
2015-06-16 00:10:38 +00:00
|
|
|
JSAutoCompartment ac(cx(), errorGlobal);
|
|
|
|
JS::Rooted<JS::Value> exn(cx());
|
|
|
|
js::ErrorReport jsReport(cx());
|
2016-04-19 23:29:21 +00:00
|
|
|
if (StealException(&exn) &&
|
|
|
|
jsReport.init(cx(), exn, js::ErrorReport::WithSideEffects)) {
|
2015-11-20 21:29:41 +00:00
|
|
|
if (mIsMainThread) {
|
|
|
|
RefPtr<xpc::ErrorReport> xpcReport = new xpc::ErrorReport();
|
2016-03-08 22:21:40 +00:00
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
RefPtr<nsGlobalWindow> win = xpc::WindowGlobalOrNull(errorGlobal);
|
2016-03-08 22:21:40 +00:00
|
|
|
if (!win) {
|
|
|
|
// We run addons in a separate privileged compartment, but they still
|
|
|
|
// expect to trigger the onerror handler of their associated DOM Window.
|
|
|
|
win = xpc::AddonWindowOrNull(errorGlobal);
|
|
|
|
}
|
2016-01-30 17:05:36 +00:00
|
|
|
nsPIDOMWindowInner* inner = win ? win->AsInner() : nullptr;
|
2015-11-20 21:29:41 +00:00
|
|
|
xpcReport->Init(jsReport.report(), jsReport.message(),
|
|
|
|
nsContentUtils::IsCallerChrome(),
|
2016-01-30 17:05:36 +00:00
|
|
|
inner ? inner->WindowID() : 0);
|
2016-03-08 22:21:40 +00:00
|
|
|
if (inner && jsReport.report()->errorNumber != JSMSG_OUT_OF_MEMORY) {
|
2016-01-30 17:05:36 +00:00
|
|
|
DispatchScriptErrorEvent(inner, JS_GetRuntime(cx()), xpcReport, exn);
|
2015-11-20 21:29:41 +00:00
|
|
|
} else {
|
2016-03-08 22:21:40 +00:00
|
|
|
JS::Rooted<JSObject*> stack(cx(),
|
2016-03-10 03:27:14 +00:00
|
|
|
xpc::FindExceptionStackForConsoleReport(inner, exn));
|
2016-03-08 22:21:40 +00:00
|
|
|
xpcReport->LogToConsoleWithStack(stack);
|
2015-11-20 21:29:41 +00:00
|
|
|
}
|
2015-06-16 00:10:38 +00:00
|
|
|
} else {
|
2015-11-20 21:29:41 +00:00
|
|
|
// On a worker, we just use the worker error reporting mechanism and don't
|
|
|
|
// bother with xpc::ErrorReport. This will ensure that all the right
|
|
|
|
// events (which are a lot more complicated than in the window case) get
|
|
|
|
// fired.
|
|
|
|
workers::WorkerPrivate* worker = workers::GetCurrentThreadWorkerPrivate();
|
|
|
|
MOZ_ASSERT(worker);
|
|
|
|
MOZ_ASSERT(worker->GetJSContext() == cx());
|
|
|
|
// Before invoking ReportError, put the exception back on the context,
|
|
|
|
// because it may want to put it in its error events and has no other way
|
|
|
|
// to get hold of it. After we invoke ReportError, clear the exception on
|
|
|
|
// cx(), just in case ReportError didn't.
|
|
|
|
JS_SetPendingException(cx(), exn);
|
|
|
|
worker->ReportError(cx(), jsReport.message(), jsReport.report());
|
|
|
|
ClearException();
|
2015-06-16 00:10:38 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
NS_WARNING("OOMed while acquiring uncaught exception from JSAPI");
|
2016-03-01 21:52:27 +00:00
|
|
|
ClearException();
|
2015-06-16 00:10:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-08 20:16:27 +00:00
|
|
|
bool
|
|
|
|
AutoJSAPI::PeekException(JS::MutableHandle<JS::Value> aVal)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT_IF(mIsMainThread, CxPusherIsStackTop());
|
|
|
|
MOZ_ASSERT(HasException());
|
|
|
|
MOZ_ASSERT(js::GetContextCompartment(cx()));
|
|
|
|
if (!JS_GetPendingException(cx(), aVal)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-09-29 13:34:21 +00:00
|
|
|
bool
|
|
|
|
AutoJSAPI::StealException(JS::MutableHandle<JS::Value> aVal)
|
|
|
|
{
|
2015-06-08 20:16:27 +00:00
|
|
|
if (!PeekException(aVal)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
JS_ClearPendingException(cx());
|
|
|
|
return true;
|
2014-09-29 13:34:21 +00:00
|
|
|
}
|
|
|
|
|
2013-12-12 01:51:57 +00:00
|
|
|
AutoEntryScript::AutoEntryScript(nsIGlobalObject* aGlobalObject,
|
2015-04-09 01:23:48 +00:00
|
|
|
const char *aReason,
|
2013-12-12 01:51:57 +00:00
|
|
|
bool aIsMainThread,
|
|
|
|
JSContext* aCx)
|
2014-06-19 07:21:14 +00:00
|
|
|
: AutoJSAPI(aGlobalObject, aIsMainThread,
|
2016-06-02 14:34:39 +00:00
|
|
|
aCx ? aCx : nsContentUtils::GetSafeJSContext())
|
2014-04-15 03:26:59 +00:00
|
|
|
, ScriptSettingsStackEntry(aGlobalObject, /* aCandidate = */ true)
|
2014-06-05 02:48:06 +00:00
|
|
|
, mWebIDLCallerPrincipal(nullptr)
|
2013-12-12 01:51:57 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(aGlobalObject);
|
2014-04-15 03:26:59 +00:00
|
|
|
MOZ_ASSERT_IF(!aCx, aIsMainThread); // cx is mandatory off-main-thread.
|
2016-06-02 14:34:39 +00:00
|
|
|
MOZ_ASSERT_IF(aCx && aIsMainThread, aCx == nsContentUtils::GetSafeJSContext());
|
2014-11-13 21:22:24 +00:00
|
|
|
|
|
|
|
if (aIsMainThread && gRunToCompletionListeners > 0) {
|
2015-05-20 09:28:00 +00:00
|
|
|
mDocShellEntryMonitor.emplace(cx(), aReason);
|
2014-11-13 21:22:24 +00:00
|
|
|
}
|
2013-12-12 01:51:57 +00:00
|
|
|
}
|
|
|
|
|
2016-03-09 20:28:26 +00:00
|
|
|
AutoEntryScript::AutoEntryScript(JSObject* aObject,
|
|
|
|
const char *aReason,
|
|
|
|
bool aIsMainThread,
|
|
|
|
JSContext* aCx)
|
|
|
|
: AutoEntryScript(xpc::NativeGlobal(aObject), aReason, aIsMainThread, aCx)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-08-13 22:36:44 +00:00
|
|
|
AutoEntryScript::~AutoEntryScript()
|
|
|
|
{
|
|
|
|
// GC when we pop a script entry point. This is a useful heuristic that helps
|
|
|
|
// us out on certain (flawed) benchmarks like sunspider, because it lets us
|
|
|
|
// avoid GCing during the timing loop.
|
|
|
|
JS_MaybeGC(cx());
|
|
|
|
}
|
|
|
|
|
2015-05-20 09:28:00 +00:00
|
|
|
AutoEntryScript::DocshellEntryMonitor::DocshellEntryMonitor(JSContext* aCx,
|
|
|
|
const char* aReason)
|
|
|
|
: JS::dbg::AutoEntryMonitor(aCx)
|
|
|
|
, mReason(aReason)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutoEntryScript::DocshellEntryMonitor::Entry(JSContext* aCx, JSFunction* aFunction,
|
2015-11-05 10:31:00 +00:00
|
|
|
JSScript* aScript, JS::Handle<JS::Value> aAsyncStack,
|
2016-03-23 14:40:53 +00:00
|
|
|
const char* aAsyncCause)
|
2015-05-20 09:28:00 +00:00
|
|
|
{
|
|
|
|
JS::Rooted<JSFunction*> rootedFunction(aCx);
|
|
|
|
if (aFunction) {
|
|
|
|
rootedFunction = aFunction;
|
|
|
|
}
|
|
|
|
JS::Rooted<JSScript*> rootedScript(aCx);
|
|
|
|
if (aScript) {
|
|
|
|
rootedScript = aScript;
|
|
|
|
}
|
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> window =
|
2015-05-20 09:28:00 +00:00
|
|
|
do_QueryInterface(xpc::NativeGlobal(JS::CurrentGlobalOrNull(aCx)));
|
|
|
|
if (!window || !window->GetDocShell() ||
|
|
|
|
!window->GetDocShell()->GetRecordProfileTimelineMarkers()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocShell> docShellForJSRunToCompletion = window->GetDocShell();
|
|
|
|
nsString filename;
|
|
|
|
uint32_t lineNumber = 0;
|
|
|
|
|
|
|
|
js::AutoStableStringChars functionName(aCx);
|
|
|
|
if (rootedFunction) {
|
|
|
|
JS::Rooted<JSString*> displayId(aCx, JS_GetFunctionDisplayId(rootedFunction));
|
|
|
|
if (displayId) {
|
2015-05-28 15:57:00 +00:00
|
|
|
if (!functionName.initTwoByte(aCx, displayId)) {
|
|
|
|
JS_ClearPendingException(aCx);
|
|
|
|
return;
|
|
|
|
}
|
2015-05-20 09:28:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rootedScript) {
|
|
|
|
rootedScript = JS_GetFunctionScript(aCx, rootedFunction);
|
|
|
|
}
|
|
|
|
if (rootedScript) {
|
|
|
|
filename = NS_ConvertUTF8toUTF16(JS_GetScriptFilename(rootedScript));
|
|
|
|
lineNumber = JS_GetScriptBaseLineNumber(aCx, rootedScript);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!filename.IsEmpty() || functionName.isTwoByte()) {
|
|
|
|
const char16_t* functionNameChars = functionName.isTwoByte() ?
|
|
|
|
functionName.twoByteChars() : nullptr;
|
|
|
|
|
|
|
|
docShellForJSRunToCompletion->NotifyJSRunToCompletionStart(mReason,
|
|
|
|
functionNameChars,
|
|
|
|
filename.BeginReading(),
|
2015-11-05 10:31:00 +00:00
|
|
|
lineNumber, aAsyncStack,
|
2016-03-23 14:40:53 +00:00
|
|
|
aAsyncCause);
|
2015-05-20 09:28:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutoEntryScript::DocshellEntryMonitor::Exit(JSContext* aCx)
|
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> window =
|
2015-05-20 09:28:00 +00:00
|
|
|
do_QueryInterface(xpc::NativeGlobal(JS::CurrentGlobalOrNull(aCx)));
|
|
|
|
// Not really worth checking GetRecordProfileTimelineMarkers here.
|
|
|
|
if (window && window->GetDocShell()) {
|
|
|
|
nsCOMPtr<nsIDocShell> docShellForJSRunToCompletion = window->GetDocShell();
|
|
|
|
docShellForJSRunToCompletion->NotifyJSRunToCompletionStop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-12 01:51:57 +00:00
|
|
|
AutoIncumbentScript::AutoIncumbentScript(nsIGlobalObject* aGlobalObject)
|
2014-02-15 06:36:43 +00:00
|
|
|
: ScriptSettingsStackEntry(aGlobalObject, /* aCandidate = */ false)
|
2013-12-12 01:51:57 +00:00
|
|
|
, mCallerOverride(nsContentUtils::GetCurrentJSContextForThread())
|
2013-12-12 01:51:57 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-04-15 03:27:00 +00:00
|
|
|
AutoNoJSAPI::AutoNoJSAPI(bool aIsMainThread)
|
2014-06-13 06:24:13 +00:00
|
|
|
: ScriptSettingsStackEntry()
|
2013-12-12 01:51:57 +00:00
|
|
|
{
|
|
|
|
if (aIsMainThread) {
|
2014-08-13 22:39:41 +00:00
|
|
|
mCxPusher.emplace(static_cast<JSContext*>(nullptr),
|
|
|
|
/* aAllowNull = */ true);
|
2013-12-12 01:51:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-15 01:47:15 +00:00
|
|
|
danger::AutoCxPusher::AutoCxPusher(JSContext* cx, bool allowNull)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT_IF(!allowNull, cx);
|
|
|
|
|
|
|
|
XPCJSContextStack *stack = XPCJSRuntime::Get()->GetJSContextStack();
|
2016-05-27 13:53:32 +00:00
|
|
|
stack->Push(cx);
|
2014-08-15 01:47:15 +00:00
|
|
|
mStackDepthAfterPush = stack->Count();
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
mPushedContext = cx;
|
|
|
|
mCompartmentDepthOnEntry = cx ? js::GetEnterCompartmentDepth(cx) : 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Enter a request and a compartment for the duration that the cx is on the
|
|
|
|
// stack if non-null.
|
|
|
|
if (cx) {
|
|
|
|
mAutoRequest.emplace(cx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
danger::AutoCxPusher::~AutoCxPusher()
|
|
|
|
{
|
2014-08-22 00:13:50 +00:00
|
|
|
// Leave the request before popping.
|
2014-08-15 01:47:15 +00:00
|
|
|
mAutoRequest.reset();
|
|
|
|
|
|
|
|
// When we push a context, we may save the frame chain and pretend like we
|
|
|
|
// haven't entered any compartment. This gets restored on Pop(), but we can
|
|
|
|
// run into trouble if a Push/Pop are interleaved with a
|
|
|
|
// JSAutoEnterCompartment. Make sure the compartment depth right before we
|
|
|
|
// pop is the same as it was right after we pushed.
|
|
|
|
MOZ_ASSERT_IF(mPushedContext, mCompartmentDepthOnEntry ==
|
|
|
|
js::GetEnterCompartmentDepth(mPushedContext));
|
|
|
|
DebugOnly<JSContext*> stackTop;
|
|
|
|
MOZ_ASSERT(mPushedContext == nsXPConnect::XPConnect()->GetCurrentJSContext());
|
|
|
|
XPCJSRuntime::Get()->GetJSContextStack()->Pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
danger::AutoCxPusher::IsStackTop() const
|
|
|
|
{
|
|
|
|
uint32_t currentDepth = XPCJSRuntime::Get()->GetJSContextStack()->Count();
|
|
|
|
MOZ_ASSERT(currentDepth >= mStackDepthAfterPush);
|
|
|
|
return currentDepth == mStackDepthAfterPush;
|
|
|
|
}
|
|
|
|
|
2013-12-12 01:51:57 +00:00
|
|
|
} // namespace dom
|
2014-08-15 01:47:15 +00:00
|
|
|
|
|
|
|
AutoJSContext::AutoJSContext(MOZ_GUARD_OBJECT_NOTIFIER_ONLY_PARAM_IN_IMPL)
|
|
|
|
: mCx(nullptr)
|
|
|
|
{
|
|
|
|
JS::AutoSuppressGCAnalysis nogc;
|
|
|
|
MOZ_ASSERT(!mCx, "mCx should not be initialized!");
|
|
|
|
|
|
|
|
MOZ_GUARD_OBJECT_NOTIFIER_INIT;
|
|
|
|
|
|
|
|
nsXPConnect *xpc = nsXPConnect::XPConnect();
|
2016-03-18 03:23:55 +00:00
|
|
|
mCx = xpc->GetCurrentJSContext();
|
2014-08-15 01:47:15 +00:00
|
|
|
|
|
|
|
if (!mCx) {
|
2014-08-15 01:47:16 +00:00
|
|
|
mJSAPI.Init();
|
|
|
|
mCx = mJSAPI.cx();
|
2014-08-15 01:47:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoJSContext::operator JSContext*() const
|
|
|
|
{
|
|
|
|
return mCx;
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoSafeJSContext::AutoSafeJSContext(MOZ_GUARD_OBJECT_NOTIFIER_ONLY_PARAM_IN_IMPL)
|
2016-03-18 03:23:55 +00:00
|
|
|
: AutoJSAPI()
|
2014-08-15 01:47:15 +00:00
|
|
|
{
|
2016-03-18 03:23:55 +00:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
MOZ_GUARD_OBJECT_NOTIFIER_INIT;
|
|
|
|
|
|
|
|
DebugOnly<bool> ok = Init(xpc::UnprivilegedJunkScope());
|
|
|
|
MOZ_ASSERT(ok,
|
|
|
|
"This is quite odd. We should have crashed in the "
|
|
|
|
"xpc::NativeGlobal() call if xpc::UnprivilegedJunkScope() "
|
|
|
|
"returned null, and inited correctly otherwise!");
|
2014-08-15 01:47:15 +00:00
|
|
|
}
|
|
|
|
|
2013-12-12 01:51:57 +00:00
|
|
|
} // namespace mozilla
|