gecko-dev/js/src/jscntxtinlines.h
Steve Fink 9a54469366 Bug 1406570 - "Root" compartment while entering it, r=jonco
--HG--
extra : rebase_source : 71cf95cb8dc7c561787a9d93162bcc63c610ef88
2017-10-11 17:19:24 -07:00

601 lines
16 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
* 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/. */
#ifndef jscntxtinlines_h
#define jscntxtinlines_h
#include "jscntxt.h"
#include "jscompartment.h"
#include "jsiter.h"
#include "builtin/Object.h"
#include "jit/JitFrames.h"
#include "proxy/Proxy.h"
#include "vm/HelperThreads.h"
#include "vm/Interpreter.h"
#include "vm/Symbol.h"
namespace js {
class CompartmentChecker
{
JSCompartment* compartment;
public:
explicit CompartmentChecker(JSContext* cx)
: compartment(cx->compartment())
{
}
/*
* Set a breakpoint here (break js::CompartmentChecker::fail) to debug
* compartment mismatches.
*/
static void fail(JSCompartment* c1, JSCompartment* c2) {
printf("*** Compartment mismatch %p vs. %p\n", (void*) c1, (void*) c2);
MOZ_CRASH();
}
static void fail(JS::Zone* z1, JS::Zone* z2) {
printf("*** Zone mismatch %p vs. %p\n", (void*) z1, (void*) z2);
MOZ_CRASH();
}
/* Note: should only be used when neither c1 nor c2 may be the atoms compartment. */
static void check(JSCompartment* c1, JSCompartment* c2) {
MOZ_ASSERT(!c1->runtimeFromAnyThread()->isAtomsCompartment(c1));
MOZ_ASSERT(!c2->runtimeFromAnyThread()->isAtomsCompartment(c2));
if (c1 != c2)
fail(c1, c2);
}
void check(JSCompartment* c) {
if (c && !compartment->runtimeFromAnyThread()->isAtomsCompartment(c)) {
if (c != compartment)
fail(compartment, c);
}
}
void checkZone(JS::Zone* z) {
if (compartment && z != compartment->zone())
fail(compartment->zone(), z);
}
void check(JSObject* obj) {
if (obj) {
MOZ_ASSERT(JS::ObjectIsNotGray(obj));
MOZ_ASSERT(!js::gc::IsAboutToBeFinalizedUnbarriered(&obj));
check(obj->compartment());
}
}
template<typename T>
void check(const Rooted<T>& rooted) {
check(rooted.get());
}
template<typename T>
void check(Handle<T> handle) {
check(handle.get());
}
template<typename T>
void check(MutableHandle<T> handle) {
check(handle.get());
}
template <typename T>
void checkAtom(T* thing) {
static_assert(mozilla::IsSame<T, JSAtom>::value ||
mozilla::IsSame<T, JS::Symbol>::value,
"Should only be called with JSAtom* or JS::Symbol* argument");
#ifdef DEBUG
// Atoms which move across zone boundaries need to be marked in the new
// zone, see JS_MarkCrossZoneId.
if (compartment) {
JSRuntime* rt = compartment->runtimeFromAnyThread();
MOZ_ASSERT(rt->gc.atomMarking.atomIsMarked(compartment->zone(), thing));
}
#endif
}
void check(JSString* str) {
MOZ_ASSERT(JS::CellIsNotGray(str));
if (str->isAtom()) {
checkAtom(&str->asAtom());
} else {
checkZone(str->zone());
}
}
void check(JS::Symbol* symbol) {
checkAtom(symbol);
}
void check(const js::Value& v) {
if (v.isObject())
check(&v.toObject());
else if (v.isString())
check(v.toString());
else if (v.isSymbol())
check(v.toSymbol());
}
// Check the contents of any container class that supports the C++
// iteration protocol, eg GCVector<jsid>.
template <typename Container>
typename mozilla::EnableIf<
mozilla::IsSame<
decltype(((Container*)nullptr)->begin()),
decltype(((Container*)nullptr)->end())
>::value
>::Type
check(const Container& container) {
for (auto i : container)
check(i);
}
void check(const ValueArray& arr) {
for (size_t i = 0; i < arr.length; i++)
check(arr.array[i]);
}
void check(const JSValueArray& arr) {
for (size_t i = 0; i < arr.length; i++)
check(arr.array[i]);
}
void check(const JS::HandleValueArray& arr) {
for (size_t i = 0; i < arr.length(); i++)
check(arr[i]);
}
void check(const CallArgs& args) {
for (Value* p = args.base(); p != args.end(); ++p)
check(*p);
}
void check(jsid id) {
if (JSID_IS_ATOM(id))
checkAtom(JSID_TO_ATOM(id));
else if (JSID_IS_SYMBOL(id))
checkAtom(JSID_TO_SYMBOL(id));
else
MOZ_ASSERT(!JSID_IS_GCTHING(id));
}
void check(JSScript* script) {
MOZ_ASSERT(JS::CellIsNotGray(script));
if (script)
check(script->compartment());
}
void check(InterpreterFrame* fp);
void check(AbstractFramePtr frame);
void check(SavedStacks* stacks);
void check(Handle<PropertyDescriptor> desc) {
check(desc.object());
if (desc.hasGetterObject())
check(desc.getterObject());
if (desc.hasSetterObject())
check(desc.setterObject());
check(desc.value());
}
void check(TypeSet::Type type) {
check(type.maybeCompartment());
}
};
/*
* Don't perform these checks when called from a finalizer. The checking
* depends on other objects not having been swept yet.
*/
#define START_ASSERT_SAME_COMPARTMENT() \
if (cx->heapState != JS::HeapState::Idle) \
return; \
CompartmentChecker c(cx)
template <class T1> inline void
releaseAssertSameCompartment(JSContext* cx, const T1& t1)
{
START_ASSERT_SAME_COMPARTMENT();
c.check(t1);
}
template <class T1> inline void
assertSameCompartment(JSContext* cx, const T1& t1)
{
#ifdef JS_CRASH_DIAGNOSTICS
START_ASSERT_SAME_COMPARTMENT();
c.check(t1);
#endif
}
template <class T1> inline void
assertSameCompartmentDebugOnly(JSContext* cx, const T1& t1)
{
#if defined(DEBUG) && defined(JS_CRASH_DIAGNOSTICS)
START_ASSERT_SAME_COMPARTMENT();
c.check(t1);
#endif
}
template <class T1, class T2> inline void
assertSameCompartment(JSContext* cx, const T1& t1, const T2& t2)
{
#ifdef JS_CRASH_DIAGNOSTICS
START_ASSERT_SAME_COMPARTMENT();
c.check(t1);
c.check(t2);
#endif
}
template <class T1, class T2, class T3> inline void
assertSameCompartment(JSContext* cx, const T1& t1, const T2& t2, const T3& t3)
{
#ifdef JS_CRASH_DIAGNOSTICS
START_ASSERT_SAME_COMPARTMENT();
c.check(t1);
c.check(t2);
c.check(t3);
#endif
}
template <class T1, class T2, class T3, class T4> inline void
assertSameCompartment(JSContext* cx,
const T1& t1, const T2& t2, const T3& t3, const T4& t4)
{
#ifdef JS_CRASH_DIAGNOSTICS
START_ASSERT_SAME_COMPARTMENT();
c.check(t1);
c.check(t2);
c.check(t3);
c.check(t4);
#endif
}
template <class T1, class T2, class T3, class T4, class T5> inline void
assertSameCompartment(JSContext* cx,
const T1& t1, const T2& t2, const T3& t3, const T4& t4, const T5& t5)
{
#ifdef JS_CRASH_DIAGNOSTICS
START_ASSERT_SAME_COMPARTMENT();
c.check(t1);
c.check(t2);
c.check(t3);
c.check(t4);
c.check(t5);
#endif
}
#undef START_ASSERT_SAME_COMPARTMENT
STATIC_PRECONDITION_ASSUME(ubound(args.argv_) >= argc)
MOZ_ALWAYS_INLINE bool
CallJSNative(JSContext* cx, Native native, const CallArgs& args)
{
if (!CheckRecursionLimit(cx))
return false;
#ifdef DEBUG
bool alreadyThrowing = cx->isExceptionPending();
#endif
assertSameCompartment(cx, args);
bool ok = native(cx, args.length(), args.base());
if (ok) {
assertSameCompartment(cx, args.rval());
MOZ_ASSERT_IF(!alreadyThrowing, !cx->isExceptionPending());
}
return ok;
}
STATIC_PRECONDITION_ASSUME(ubound(args.argv_) >= argc)
MOZ_ALWAYS_INLINE bool
CallNativeImpl(JSContext* cx, NativeImpl impl, const CallArgs& args)
{
#ifdef DEBUG
bool alreadyThrowing = cx->isExceptionPending();
#endif
assertSameCompartment(cx, args);
bool ok = impl(cx, args);
if (ok) {
assertSameCompartment(cx, args.rval());
MOZ_ASSERT_IF(!alreadyThrowing, !cx->isExceptionPending());
}
return ok;
}
STATIC_PRECONDITION(ubound(args.argv_) >= argc)
MOZ_ALWAYS_INLINE bool
CallJSNativeConstructor(JSContext* cx, Native native, const CallArgs& args)
{
#ifdef DEBUG
RootedObject callee(cx, &args.callee());
#endif
MOZ_ASSERT(args.thisv().isMagic());
if (!CallJSNative(cx, native, args))
return false;
/*
* Native constructors must return non-primitive values on success.
* Although it is legal, if a constructor returns the callee, there is a
* 99.9999% chance it is a bug. If any valid code actually wants the
* constructor to return the callee, the assertion can be removed or
* (another) conjunct can be added to the antecedent.
*
* Exceptions:
*
* - Proxies are exceptions to both rules: they can return primitives and
* they allow content to return the callee.
*
* - CallOrConstructBoundFunction is an exception as well because we might
* have used bind on a proxy function.
*
* - (new Object(Object)) returns the callee.
*/
MOZ_ASSERT_IF(native != js::proxy_Construct &&
(!callee->is<JSFunction>() || callee->as<JSFunction>().native() != obj_construct),
args.rval().isObject() && callee != &args.rval().toObject());
return true;
}
MOZ_ALWAYS_INLINE bool
CallJSGetterOp(JSContext* cx, GetterOp op, HandleObject obj, HandleId id,
MutableHandleValue vp)
{
if (!CheckRecursionLimit(cx))
return false;
assertSameCompartment(cx, obj, id, vp);
bool ok = op(cx, obj, id, vp);
if (ok)
assertSameCompartment(cx, vp);
return ok;
}
MOZ_ALWAYS_INLINE bool
CallJSSetterOp(JSContext* cx, SetterOp op, HandleObject obj, HandleId id, HandleValue v,
ObjectOpResult& result)
{
if (!CheckRecursionLimit(cx))
return false;
assertSameCompartment(cx, obj, id, v);
return op(cx, obj, id, v, result);
}
inline bool
CallJSAddPropertyOp(JSContext* cx, JSAddPropertyOp op, HandleObject obj, HandleId id,
HandleValue v)
{
if (!CheckRecursionLimit(cx))
return false;
assertSameCompartment(cx, obj, id, v);
return op(cx, obj, id, v);
}
inline bool
CallJSDeletePropertyOp(JSContext* cx, JSDeletePropertyOp op, HandleObject receiver, HandleId id,
ObjectOpResult& result)
{
if (!CheckRecursionLimit(cx))
return false;
assertSameCompartment(cx, receiver, id);
if (op)
return op(cx, receiver, id, result);
return result.succeed();
}
MOZ_ALWAYS_INLINE bool
CheckForInterrupt(JSContext* cx)
{
MOZ_ASSERT(!cx->isExceptionPending());
// Add an inline fast-path since we have to check for interrupts in some hot
// C++ loops of library builtins.
if (MOZ_UNLIKELY(cx->hasPendingInterrupt()))
return cx->handleInterrupt();
JS_INTERRUPT_POSSIBLY_FAIL();
return true;
}
} /* namespace js */
inline js::LifoAlloc&
JSContext::typeLifoAlloc()
{
return zone()->types.typeLifoAlloc();
}
inline js::Nursery&
JSContext::nursery()
{
return runtime()->gc.nursery();
}
inline void
JSContext::minorGC(JS::gcreason::Reason reason)
{
runtime()->gc.minorGC(reason);
}
inline void
JSContext::setPendingException(const js::Value& v)
{
// overRecursed_ is set after the fact by ReportOverRecursed.
this->overRecursed_ = false;
this->throwing = true;
this->unwrappedException() = v;
// We don't use assertSameCompartment here to allow
// js::SetPendingExceptionCrossContext to work.
MOZ_ASSERT_IF(v.isObject(), v.toObject().compartment() == compartment());
}
inline bool
JSContext::runningWithTrustedPrincipals()
{
return !compartment() || compartment()->principals() == runtime()->trustedPrincipals();
}
inline void
JSContext::enterNonAtomsCompartment(JSCompartment* c)
{
enterCompartmentDepth_++;
MOZ_ASSERT(!c->zone()->isAtomsZone());
c->holdGlobal();
enterZoneGroup(c->zone()->group());
c->releaseGlobal();
c->enter();
setCompartment(c, nullptr);
}
inline void
JSContext::enterAtomsCompartment(JSCompartment* c,
const js::AutoLockForExclusiveAccess& lock)
{
enterCompartmentDepth_++;
MOZ_ASSERT(c->zone()->isAtomsZone());
c->enter();
setCompartment(c, &lock);
}
template <typename T>
inline void
JSContext::enterCompartmentOf(const T& target)
{
MOZ_ASSERT(JS::CellIsNotGray(target));
enterNonAtomsCompartment(target->compartment());
}
inline void
JSContext::enterNullCompartment()
{
enterCompartmentDepth_++;
setCompartment(nullptr);
}
inline void
JSContext::leaveCompartment(
JSCompartment* oldCompartment,
const js::AutoLockForExclusiveAccess* maybeLock /* = nullptr */)
{
MOZ_ASSERT(hasEnteredCompartment());
enterCompartmentDepth_--;
// Only call leave() after we've setCompartment()-ed away from the current
// compartment.
JSCompartment* startingCompartment = compartment_;
setCompartment(oldCompartment, maybeLock);
if (startingCompartment) {
startingCompartment->leave();
if (!startingCompartment->zone()->isAtomsZone())
leaveZoneGroup(startingCompartment->zone()->group());
}
}
inline void
JSContext::setCompartment(JSCompartment* comp,
const js::AutoLockForExclusiveAccess* maybeLock /* = nullptr */)
{
// Only one thread can be in the atoms compartment at a time.
MOZ_ASSERT_IF(runtime_->isAtomsCompartment(comp), maybeLock != nullptr);
MOZ_ASSERT_IF(runtime_->isAtomsCompartment(comp) || runtime_->isAtomsCompartment(compartment_),
runtime_->currentThreadHasExclusiveAccess());
// Make sure that the atoms compartment has its own zone.
MOZ_ASSERT_IF(comp && !runtime_->isAtomsCompartment(comp),
!comp->zone()->isAtomsZone());
// Both the current and the new compartment should be properly marked as
// entered at this point.
MOZ_ASSERT_IF(compartment_, compartment_->hasBeenEntered());
MOZ_ASSERT_IF(comp, comp->hasBeenEntered());
// This context must have exclusive access to the zone's group.
MOZ_ASSERT_IF(comp && !comp->zone()->isAtomsZone(),
comp->zone()->group()->ownedByCurrentThread());
compartment_ = comp;
zone_ = comp ? comp->zone() : nullptr;
arenas_ = zone_ ? &zone_->arenas : nullptr;
}
inline void
JSContext::enterZoneGroup(js::ZoneGroup* group)
{
MOZ_ASSERT(this == js::TlsContext.get());
group->enter(this);
}
inline void
JSContext::leaveZoneGroup(js::ZoneGroup* group)
{
MOZ_ASSERT(this == js::TlsContext.get());
group->leave();
}
inline JSScript*
JSContext::currentScript(jsbytecode** ppc,
MaybeAllowCrossCompartment allowCrossCompartment) const
{
if (ppc)
*ppc = nullptr;
js::Activation* act = activation();
if (!act)
return nullptr;
MOZ_ASSERT(act->cx() == this);
if (!allowCrossCompartment && act->compartment() != compartment())
return nullptr;
if (act->isJit()) {
if (act->hasWasmExitFP())
return nullptr;
JSScript* script = nullptr;
js::jit::GetPcScript(const_cast<JSContext*>(this), &script, ppc);
MOZ_ASSERT(allowCrossCompartment || script->compartment() == compartment());
return script;
}
MOZ_ASSERT(act->isInterpreter());
js::InterpreterFrame* fp = act->asInterpreter()->current();
MOZ_ASSERT(!fp->runningInJit());
JSScript* script = fp->script();
MOZ_ASSERT(allowCrossCompartment || script->compartment() == compartment());
if (ppc) {
*ppc = act->asInterpreter()->regs().pc;
MOZ_ASSERT(script->containsPC(*ppc));
}
return script;
}
inline js::RuntimeCaches&
JSContext::caches()
{
return runtime()->caches();
}
#endif /* jscntxtinlines_h */