2014-04-03 04:58:00 -07:00
|
|
|
/* -*- 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
|
2012-05-21 04:12:37 -07:00
|
|
|
* 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/. */
|
2010-07-02 14:09:48 -07:00
|
|
|
|
2013-11-19 12:03:40 -08:00
|
|
|
#ifndef XrayWrapper_h
|
|
|
|
#define XrayWrapper_h
|
|
|
|
|
2013-01-03 13:31:36 -08:00
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
2014-08-28 13:47:16 -07:00
|
|
|
#include "WrapperFactory.h"
|
|
|
|
|
2010-07-02 14:09:48 -07:00
|
|
|
#include "jswrapper.h"
|
|
|
|
|
|
|
|
// Xray wrappers re-resolve the original native properties on the native
|
|
|
|
// object and always directly access to those properties.
|
2010-09-20 14:48:01 -07:00
|
|
|
// Because they work so differently from the rest of the wrapper hierarchy,
|
2011-09-08 20:29:15 -07:00
|
|
|
// we pull them out of the Wrapper inheritance hierarchy and create a
|
2010-09-20 14:48:01 -07:00
|
|
|
// little world around them.
|
2010-07-02 14:09:48 -07:00
|
|
|
|
2014-08-28 13:47:16 -07:00
|
|
|
class nsIPrincipal;
|
|
|
|
class XPCWrappedNative;
|
|
|
|
|
2010-07-02 14:09:48 -07:00
|
|
|
namespace xpc {
|
|
|
|
|
2010-09-23 15:56:28 -07:00
|
|
|
namespace XrayUtils {
|
|
|
|
|
2014-02-21 15:55:31 -08:00
|
|
|
bool IsXPCWNHolderClass(const JSClass *clasp);
|
2010-09-23 15:56:28 -07:00
|
|
|
|
2012-06-05 10:07:37 -07:00
|
|
|
bool CloneExpandoChain(JSContext *cx, JSObject *src, JSObject *dst);
|
|
|
|
|
2010-10-10 15:49:30 -07:00
|
|
|
bool
|
2013-06-21 06:12:46 -07:00
|
|
|
IsTransparent(JSContext *cx, JS::HandleObject wrapper, JS::HandleId id);
|
2010-10-10 15:49:30 -07:00
|
|
|
|
2011-09-21 19:16:50 -07:00
|
|
|
JSObject *
|
|
|
|
GetNativePropertiesObject(JSContext *cx, JSObject *wrapper);
|
|
|
|
|
2013-04-23 09:50:17 -07:00
|
|
|
bool
|
2013-06-21 06:12:46 -07:00
|
|
|
HasNativeProperty(JSContext *cx, JS::HandleObject wrapper, JS::HandleId id,
|
2013-04-23 09:50:17 -07:00
|
|
|
bool *hasProp);
|
2010-09-23 15:56:28 -07:00
|
|
|
}
|
2010-07-02 14:09:48 -07:00
|
|
|
|
2012-10-05 09:59:23 -07:00
|
|
|
enum XrayType {
|
|
|
|
XrayForDOMObject,
|
|
|
|
XrayForWrappedNative,
|
2014-03-23 07:02:12 -07:00
|
|
|
XrayForJSObject,
|
2014-07-10 09:31:37 -07:00
|
|
|
XrayForOpaqueObject,
|
2012-10-05 09:59:23 -07:00
|
|
|
NotXray
|
|
|
|
};
|
|
|
|
|
2014-08-28 13:47:16 -07:00
|
|
|
class XrayTraits
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
XrayTraits() {}
|
|
|
|
|
|
|
|
static JSObject* getTargetObject(JSObject *wrapper) {
|
|
|
|
return js::UncheckedUnwrap(wrapper, /* stopAtOuter = */ false);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool resolveNativeProperty(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject holder, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) = 0;
|
|
|
|
// NB: resolveOwnProperty may decide whether or not to cache what it finds
|
|
|
|
// on the holder. If the result is not cached, the lookup will happen afresh
|
|
|
|
// for each access, which is the right thing for things like dynamic NodeList
|
|
|
|
// properties.
|
|
|
|
virtual bool resolveOwnProperty(JSContext *cx, const js::Wrapper &jsWrapper,
|
|
|
|
JS::HandleObject wrapper, JS::HandleObject holder,
|
|
|
|
JS::HandleId id, JS::MutableHandle<JSPropertyDescriptor> desc);
|
|
|
|
|
|
|
|
bool delete_(JSContext *cx, JS::HandleObject wrapper, JS::HandleId id, bool *bp) {
|
|
|
|
*bp = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *className(JSContext *cx, JS::HandleObject wrapper, const js::Wrapper& baseInstance) {
|
|
|
|
return baseInstance.className(cx, wrapper);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void preserveWrapper(JSObject *target) = 0;
|
|
|
|
|
|
|
|
JSObject* getExpandoObject(JSContext *cx, JS::HandleObject target,
|
|
|
|
JS::HandleObject consumer);
|
|
|
|
JSObject* ensureExpandoObject(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject target);
|
|
|
|
|
|
|
|
JSObject* getHolder(JSObject *wrapper);
|
|
|
|
JSObject* ensureHolder(JSContext *cx, JS::HandleObject wrapper);
|
|
|
|
virtual JSObject* createHolder(JSContext *cx, JSObject *wrapper) = 0;
|
|
|
|
|
|
|
|
JSObject* getExpandoChain(JS::HandleObject obj);
|
|
|
|
bool setExpandoChain(JSContext *cx, JS::HandleObject obj, JS::HandleObject chain);
|
|
|
|
bool cloneExpandoChain(JSContext *cx, JS::HandleObject dst, JS::HandleObject src);
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool expandoObjectMatchesConsumer(JSContext *cx, JS::HandleObject expandoObject,
|
|
|
|
nsIPrincipal *consumerOrigin,
|
|
|
|
JS::HandleObject exclusiveGlobal);
|
|
|
|
JSObject* getExpandoObjectInternal(JSContext *cx, JS::HandleObject target,
|
|
|
|
nsIPrincipal *origin,
|
|
|
|
JSObject *exclusiveGlobal);
|
|
|
|
JSObject* attachExpandoObject(JSContext *cx, JS::HandleObject target,
|
|
|
|
nsIPrincipal *origin,
|
|
|
|
JS::HandleObject exclusiveGlobal);
|
|
|
|
|
|
|
|
XrayTraits(XrayTraits &) MOZ_DELETE;
|
|
|
|
const XrayTraits& operator=(XrayTraits &) MOZ_DELETE;
|
|
|
|
};
|
|
|
|
|
|
|
|
class XPCWrappedNativeXrayTraits : public XrayTraits
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
HasPrototype = 0
|
|
|
|
};
|
|
|
|
|
|
|
|
static const XrayType Type = XrayForWrappedNative;
|
|
|
|
|
|
|
|
virtual bool resolveNativeProperty(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject holder, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) MOZ_OVERRIDE;
|
|
|
|
virtual bool resolveOwnProperty(JSContext *cx, const js::Wrapper &jsWrapper, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject holder, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) MOZ_OVERRIDE;
|
|
|
|
bool defineProperty(JSContext *cx, JS::HandleObject wrapper, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc,
|
|
|
|
JS::Handle<JSPropertyDescriptor> existingDesc, bool *defined);
|
|
|
|
virtual bool enumerateNames(JSContext *cx, JS::HandleObject wrapper, unsigned flags,
|
|
|
|
JS::AutoIdVector &props);
|
|
|
|
static bool call(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
const JS::CallArgs &args, const js::Wrapper& baseInstance);
|
|
|
|
static bool construct(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
const JS::CallArgs &args, const js::Wrapper& baseInstance);
|
|
|
|
|
|
|
|
static bool resolveDOMCollectionProperty(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject holder, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc);
|
|
|
|
|
|
|
|
static XPCWrappedNative* getWN(JSObject *wrapper);
|
|
|
|
|
|
|
|
virtual void preserveWrapper(JSObject *target) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
virtual JSObject* createHolder(JSContext *cx, JSObject *wrapper) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
static const JSClass HolderClass;
|
|
|
|
static XPCWrappedNativeXrayTraits singleton;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DOMXrayTraits : public XrayTraits
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum {
|
2014-09-15 07:51:40 -07:00
|
|
|
HasPrototype = 1
|
2014-08-28 13:47:16 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
static const XrayType Type = XrayForDOMObject;
|
|
|
|
|
|
|
|
virtual bool resolveNativeProperty(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject holder, JS::HandleId id,
|
2014-09-15 07:51:40 -07:00
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
// Xrays for DOM binding objects have a prototype chain that consists of
|
|
|
|
// Xrays for the prototypes of the DOM binding object (ignoring changes
|
|
|
|
// in the prototype chain made by script, plugins or XBL). All properties for
|
|
|
|
// these Xrays are really own properties, either of the instance object or
|
|
|
|
// of the prototypes.
|
|
|
|
// FIXME https://bugzilla.mozilla.org/show_bug.cgi?id=1072482
|
|
|
|
// This should really be:
|
|
|
|
// MOZ_CRASH("resolveNativeProperty hook should never be called with HasPrototype = 1");
|
|
|
|
// but we can't do that yet because XrayUtils::HasNativeProperty calls this.
|
|
|
|
return true;
|
|
|
|
}
|
2014-08-28 13:47:16 -07:00
|
|
|
virtual bool resolveOwnProperty(JSContext *cx, const js::Wrapper &jsWrapper, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject holder, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) MOZ_OVERRIDE;
|
|
|
|
bool defineProperty(JSContext *cx, JS::HandleObject wrapper, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc,
|
|
|
|
JS::Handle<JSPropertyDescriptor> existingDesc, bool *defined);
|
|
|
|
virtual bool enumerateNames(JSContext *cx, JS::HandleObject wrapper, unsigned flags,
|
|
|
|
JS::AutoIdVector &props);
|
|
|
|
static bool call(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
const JS::CallArgs &args, const js::Wrapper& baseInstance);
|
|
|
|
static bool construct(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
const JS::CallArgs &args, const js::Wrapper& baseInstance);
|
|
|
|
|
2014-09-15 07:51:40 -07:00
|
|
|
static bool getPrototypeOf(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject target,
|
|
|
|
JS::MutableHandleObject protop);
|
|
|
|
|
2014-08-28 13:47:16 -07:00
|
|
|
virtual void preserveWrapper(JSObject *target) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
virtual JSObject* createHolder(JSContext *cx, JSObject *wrapper) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
static DOMXrayTraits singleton;
|
|
|
|
};
|
|
|
|
|
|
|
|
class JSXrayTraits : public XrayTraits
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
HasPrototype = 1
|
|
|
|
};
|
|
|
|
static const XrayType Type = XrayForJSObject;
|
|
|
|
|
|
|
|
virtual bool resolveNativeProperty(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject holder, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
MOZ_CRASH("resolveNativeProperty hook should never be called with HasPrototype = 1");
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool resolveOwnProperty(JSContext *cx, const js::Wrapper &jsWrapper, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject holder, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
bool delete_(JSContext *cx, JS::HandleObject wrapper, JS::HandleId id, bool *bp);
|
|
|
|
|
|
|
|
bool defineProperty(JSContext *cx, JS::HandleObject wrapper, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc,
|
|
|
|
JS::Handle<JSPropertyDescriptor> existingDesc, bool *defined);
|
|
|
|
|
|
|
|
virtual bool enumerateNames(JSContext *cx, JS::HandleObject wrapper, unsigned flags,
|
|
|
|
JS::AutoIdVector &props);
|
|
|
|
|
|
|
|
static bool call(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
const JS::CallArgs &args, const js::Wrapper& baseInstance)
|
|
|
|
{
|
|
|
|
JSXrayTraits &self = JSXrayTraits::singleton;
|
|
|
|
JS::RootedObject holder(cx, self.ensureHolder(cx, wrapper));
|
|
|
|
if (self.getProtoKey(holder) == JSProto_Function)
|
|
|
|
return baseInstance.call(cx, wrapper, args);
|
|
|
|
|
|
|
|
JS::RootedValue v(cx, JS::ObjectValue(*wrapper));
|
|
|
|
js_ReportIsNotFunction(cx, v);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool construct(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
const JS::CallArgs &args, const js::Wrapper& baseInstance)
|
|
|
|
{
|
|
|
|
JSXrayTraits &self = JSXrayTraits::singleton;
|
|
|
|
JS::RootedObject holder(cx, self.ensureHolder(cx, wrapper));
|
|
|
|
if (self.getProtoKey(holder) == JSProto_Function)
|
|
|
|
return baseInstance.construct(cx, wrapper, args);
|
|
|
|
|
|
|
|
JS::RootedValue v(cx, JS::ObjectValue(*wrapper));
|
|
|
|
js_ReportIsNotFunction(cx, v);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool getPrototypeOf(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject target,
|
|
|
|
JS::MutableHandleObject protop)
|
|
|
|
{
|
|
|
|
JS::RootedObject holder(cx, ensureHolder(cx, wrapper));
|
|
|
|
JSProtoKey key = getProtoKey(holder);
|
|
|
|
if (isPrototype(holder)) {
|
|
|
|
JSProtoKey parentKey = js::ParentKeyForStandardClass(key);
|
|
|
|
if (parentKey == JSProto_Null) {
|
|
|
|
protop.set(nullptr);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
key = parentKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
JSAutoCompartment ac(cx, target);
|
|
|
|
if (!JS_GetClassPrototype(cx, key, protop))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return JS_WrapObject(cx, protop);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void preserveWrapper(JSObject *target) MOZ_OVERRIDE {
|
|
|
|
// In the case of pure JS objects, there is no underlying object, and
|
|
|
|
// the target is the canonical representation of state. If it gets
|
|
|
|
// collected, then expandos and such should be collected too. So there's
|
|
|
|
// nothing to do here.
|
|
|
|
}
|
|
|
|
|
|
|
|
enum {
|
|
|
|
SLOT_PROTOKEY = 0,
|
|
|
|
SLOT_ISPROTOTYPE,
|
|
|
|
SLOT_CONSTRUCTOR_FOR,
|
|
|
|
SLOT_COUNT
|
|
|
|
};
|
|
|
|
virtual JSObject* createHolder(JSContext *cx, JSObject *wrapper) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
static JSProtoKey getProtoKey(JSObject *holder) {
|
|
|
|
int32_t key = js::GetReservedSlot(holder, SLOT_PROTOKEY).toInt32();
|
|
|
|
return static_cast<JSProtoKey>(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isPrototype(JSObject *holder) {
|
|
|
|
return js::GetReservedSlot(holder, SLOT_ISPROTOTYPE).toBoolean();
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSProtoKey constructorFor(JSObject *holder) {
|
|
|
|
int32_t key = js::GetReservedSlot(holder, SLOT_CONSTRUCTOR_FOR).toInt32();
|
|
|
|
return static_cast<JSProtoKey>(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool getOwnPropertyFromTargetIfSafe(JSContext *cx,
|
|
|
|
JS::HandleObject target,
|
|
|
|
JS::HandleObject wrapper,
|
|
|
|
JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc);
|
|
|
|
|
|
|
|
static const JSClass HolderClass;
|
|
|
|
static JSXrayTraits singleton;
|
|
|
|
};
|
|
|
|
|
|
|
|
// These traits are used when the target is not Xrayable and we therefore want
|
|
|
|
// to make it opaque modulo the usual Xray machinery (like expandos and
|
|
|
|
// .wrappedJSObject).
|
|
|
|
class OpaqueXrayTraits : public XrayTraits
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
HasPrototype = 1
|
|
|
|
};
|
|
|
|
static const XrayType Type = XrayForOpaqueObject;
|
|
|
|
|
|
|
|
virtual bool resolveNativeProperty(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject holder, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
MOZ_CRASH("resolveNativeProperty hook should never be called with HasPrototype = 1");
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool resolveOwnProperty(JSContext *cx, const js::Wrapper &jsWrapper, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject holder, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
bool defineProperty(JSContext *cx, JS::HandleObject wrapper, JS::HandleId id,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc,
|
|
|
|
JS::Handle<JSPropertyDescriptor> existingDesc, bool *defined)
|
|
|
|
{
|
|
|
|
*defined = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool enumerateNames(JSContext *cx, JS::HandleObject wrapper, unsigned flags,
|
|
|
|
JS::AutoIdVector &props)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool call(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
const JS::CallArgs &args, const js::Wrapper& baseInstance)
|
|
|
|
{
|
|
|
|
JS::RootedValue v(cx, JS::ObjectValue(*wrapper));
|
|
|
|
js_ReportIsNotFunction(cx, v);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool construct(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
const JS::CallArgs &args, const js::Wrapper& baseInstance)
|
|
|
|
{
|
|
|
|
JS::RootedValue v(cx, JS::ObjectValue(*wrapper));
|
|
|
|
js_ReportIsNotFunction(cx, v);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool getPrototypeOf(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
JS::HandleObject target,
|
|
|
|
JS::MutableHandleObject protop)
|
|
|
|
{
|
|
|
|
// Opaque wrappers just get targetGlobal.Object.prototype as their
|
|
|
|
// prototype. This is preferable to using a null prototype because it
|
|
|
|
// lets things like |toString| and |__proto__| work.
|
|
|
|
{
|
|
|
|
JSAutoCompartment ac(cx, target);
|
|
|
|
if (!JS_GetClassPrototype(cx, JSProto_Object, protop))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return JS_WrapObject(cx, protop);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *className(JSContext *cx, JS::HandleObject wrapper, const js::Wrapper& baseInstance) {
|
|
|
|
return "Opaque";
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void preserveWrapper(JSObject *target) MOZ_OVERRIDE { }
|
|
|
|
|
|
|
|
virtual JSObject* createHolder(JSContext *cx, JSObject *wrapper) MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
JS::RootedObject global(cx, JS_GetGlobalForObject(cx, wrapper));
|
|
|
|
return JS_NewObjectWithGivenProto(cx, nullptr, JS::NullPtr(), global);
|
|
|
|
}
|
|
|
|
|
|
|
|
static OpaqueXrayTraits singleton;
|
|
|
|
};
|
|
|
|
|
2012-10-05 09:59:23 -07:00
|
|
|
XrayType GetXrayType(JSObject *obj);
|
|
|
|
XrayTraits* GetXrayTraits(JSObject *obj);
|
|
|
|
|
2010-09-20 14:48:01 -07:00
|
|
|
// NB: Base *must* derive from JSProxyHandler
|
2012-03-27 16:31:37 -07:00
|
|
|
template <typename Base, typename Traits = XPCWrappedNativeXrayTraits >
|
2010-07-02 14:09:48 -07:00
|
|
|
class XrayWrapper : public Base {
|
|
|
|
public:
|
2014-08-31 18:06:35 -07:00
|
|
|
MOZ_CONSTEXPR explicit XrayWrapper(unsigned flags)
|
2014-08-28 13:47:16 -07:00
|
|
|
: Base(flags | WrapperFactory::IS_XRAY_WRAPPER_FLAG, Traits::HasPrototype)
|
|
|
|
{ };
|
2010-07-02 14:09:48 -07:00
|
|
|
|
2010-09-20 14:48:01 -07:00
|
|
|
/* Fundamental proxy traps. */
|
2014-06-27 04:44:06 -07:00
|
|
|
virtual bool isExtensible(JSContext *cx, JS::Handle<JSObject*> wrapper, bool *extensible) const MOZ_OVERRIDE;
|
|
|
|
virtual bool preventExtensions(JSContext *cx, JS::Handle<JSObject*> wrapper) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool getPropertyDescriptor(JSContext *cx, JS::Handle<JSObject*> wrapper, JS::Handle<jsid> id,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool getOwnPropertyDescriptor(JSContext *cx, JS::Handle<JSObject*> wrapper, JS::Handle<jsid> id,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool defineProperty(JSContext *cx, JS::Handle<JSObject*> wrapper, JS::Handle<jsid> id,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool getOwnPropertyNames(JSContext *cx, JS::Handle<JSObject*> wrapper,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::AutoIdVector &props) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool delete_(JSContext *cx, JS::Handle<JSObject*> wrapper,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::Handle<jsid> id, bool *bp) const MOZ_OVERRIDE;
|
|
|
|
virtual bool enumerate(JSContext *cx, JS::Handle<JSObject*> wrapper, JS::AutoIdVector &props) const MOZ_OVERRIDE;
|
2010-09-20 14:48:01 -07:00
|
|
|
|
|
|
|
/* Derived proxy traps. */
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool get(JSContext *cx, JS::Handle<JSObject*> wrapper, JS::Handle<JSObject*> receiver,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::Handle<jsid> id, JS::MutableHandle<JS::Value> vp) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool set(JSContext *cx, JS::Handle<JSObject*> wrapper, JS::Handle<JSObject*> receiver,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::Handle<jsid> id, bool strict, JS::MutableHandle<JS::Value> vp) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool has(JSContext *cx, JS::Handle<JSObject*> wrapper, JS::Handle<jsid> id,
|
2014-06-27 04:44:06 -07:00
|
|
|
bool *bp) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool hasOwn(JSContext *cx, JS::Handle<JSObject*> wrapper, JS::Handle<jsid> id,
|
2014-06-27 04:44:06 -07:00
|
|
|
bool *bp) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool keys(JSContext *cx, JS::Handle<JSObject*> wrapper,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::AutoIdVector &props) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool iterate(JSContext *cx, JS::Handle<JSObject*> wrapper, unsigned flags,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::MutableHandle<JS::Value> vp) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
|
2013-04-04 00:02:24 -07:00
|
|
|
virtual bool call(JSContext *cx, JS::Handle<JSObject*> wrapper,
|
2014-06-27 04:44:06 -07:00
|
|
|
const JS::CallArgs &args) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool construct(JSContext *cx, JS::Handle<JSObject*> wrapper,
|
2014-06-27 04:44:06 -07:00
|
|
|
const JS::CallArgs &args) const MOZ_OVERRIDE;
|
2011-01-25 15:06:45 -08:00
|
|
|
|
2014-07-10 09:31:37 -07:00
|
|
|
virtual const char *className(JSContext *cx, JS::HandleObject proxy) const MOZ_OVERRIDE;
|
2013-05-31 10:36:01 -07:00
|
|
|
virtual bool defaultValue(JSContext *cx, JS::HandleObject wrapper,
|
|
|
|
JSType hint, JS::MutableHandleValue vp)
|
2014-06-27 04:44:06 -07:00
|
|
|
const MOZ_OVERRIDE;
|
2013-05-31 10:36:01 -07:00
|
|
|
|
2013-12-13 12:01:30 -08:00
|
|
|
virtual bool getPrototypeOf(JSContext *cx, JS::HandleObject wrapper,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::MutableHandleObject protop) const MOZ_OVERRIDE;
|
2013-12-13 12:01:30 -08:00
|
|
|
virtual bool setPrototypeOf(JSContext *cx, JS::HandleObject wrapper,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::HandleObject proto, bool *bp) const MOZ_OVERRIDE;
|
2013-12-13 12:01:30 -08:00
|
|
|
|
2014-06-27 04:44:04 -07:00
|
|
|
static const XrayWrapper singleton;
|
2010-11-10 14:08:44 -08:00
|
|
|
|
|
|
|
private:
|
2014-02-21 15:55:30 -08:00
|
|
|
template <bool HasPrototype>
|
|
|
|
typename mozilla::EnableIf<HasPrototype, bool>::Type
|
|
|
|
getPrototypeOfHelper(JSContext *cx, JS::HandleObject wrapper,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::HandleObject target, JS::MutableHandleObject protop) const
|
2014-02-21 15:55:30 -08:00
|
|
|
{
|
|
|
|
return Traits::singleton.getPrototypeOf(cx, wrapper, target, protop);
|
|
|
|
}
|
|
|
|
template <bool HasPrototype>
|
|
|
|
typename mozilla::EnableIf<!HasPrototype, bool>::Type
|
|
|
|
getPrototypeOfHelper(JSContext *cx, JS::HandleObject wrapper,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::HandleObject target, JS::MutableHandleObject protop) const
|
2014-02-21 15:55:30 -08:00
|
|
|
{
|
|
|
|
return Base::getPrototypeOf(cx, wrapper, protop);
|
|
|
|
}
|
|
|
|
bool getPrototypeOfHelper(JSContext *cx, JS::HandleObject wrapper,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::HandleObject target, JS::MutableHandleObject protop) const
|
2014-02-21 15:55:30 -08:00
|
|
|
{
|
|
|
|
return getPrototypeOfHelper<Traits::HasPrototype>(cx, wrapper, target,
|
|
|
|
protop);
|
|
|
|
}
|
|
|
|
|
2014-07-30 12:23:02 -07:00
|
|
|
protected:
|
2013-03-21 15:23:48 -07:00
|
|
|
bool enumerate(JSContext *cx, JS::Handle<JSObject*> wrapper, unsigned flags,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::AutoIdVector &props) const;
|
2010-07-02 14:09:48 -07:00
|
|
|
};
|
|
|
|
|
2012-11-14 09:56:25 -08:00
|
|
|
#define PermissiveXrayXPCWN xpc::XrayWrapper<js::CrossCompartmentWrapper, xpc::XPCWrappedNativeXrayTraits>
|
|
|
|
#define SecurityXrayXPCWN xpc::XrayWrapper<js::CrossCompartmentSecurityWrapper, xpc::XPCWrappedNativeXrayTraits>
|
|
|
|
#define PermissiveXrayDOM xpc::XrayWrapper<js::CrossCompartmentWrapper, xpc::DOMXrayTraits>
|
|
|
|
#define SecurityXrayDOM xpc::XrayWrapper<js::CrossCompartmentSecurityWrapper, xpc::DOMXrayTraits>
|
2014-03-23 07:02:12 -07:00
|
|
|
#define PermissiveXrayJS xpc::XrayWrapper<js::CrossCompartmentWrapper, xpc::JSXrayTraits>
|
2014-07-10 09:31:37 -07:00
|
|
|
#define PermissiveXrayOpaque xpc::XrayWrapper<js::CrossCompartmentWrapper, xpc::OpaqueXrayTraits>
|
2012-11-14 09:56:25 -08:00
|
|
|
#define SCSecurityXrayXPCWN xpc::XrayWrapper<js::SameCompartmentSecurityWrapper, xpc::XPCWrappedNativeXrayTraits>
|
2011-05-25 08:30:50 -07:00
|
|
|
|
2012-10-29 08:52:53 -07:00
|
|
|
class SandboxProxyHandler : public js::Wrapper {
|
2012-04-19 11:19:41 -07:00
|
|
|
public:
|
2014-08-28 13:47:16 -07:00
|
|
|
MOZ_CONSTEXPR SandboxProxyHandler() : js::Wrapper(0)
|
2012-04-19 11:19:41 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool getPropertyDescriptor(JSContext *cx, JS::Handle<JSObject*> proxy,
|
2013-04-30 10:29:40 -07:00
|
|
|
JS::Handle<jsid> id,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool getOwnPropertyDescriptor(JSContext *cx, JS::Handle<JSObject*> proxy,
|
2013-04-30 10:29:40 -07:00
|
|
|
JS::Handle<jsid> id,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::MutableHandle<JSPropertyDescriptor> desc) const MOZ_OVERRIDE;
|
2012-10-29 08:52:53 -07:00
|
|
|
|
|
|
|
// We just forward the derived traps to the BaseProxyHandler versions which
|
|
|
|
// implement them in terms of the fundamental traps.
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool has(JSContext *cx, JS::Handle<JSObject*> proxy, JS::Handle<jsid> id,
|
2014-06-27 04:44:06 -07:00
|
|
|
bool *bp) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool hasOwn(JSContext *cx, JS::Handle<JSObject*> proxy, JS::Handle<jsid> id,
|
2014-06-27 04:44:06 -07:00
|
|
|
bool *bp) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool get(JSContext *cx, JS::Handle<JSObject*> proxy, JS::Handle<JSObject*> receiver,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::Handle<jsid> id, JS::MutableHandle<JS::Value> vp) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool set(JSContext *cx, JS::Handle<JSObject*> proxy, JS::Handle<JSObject*> receiver,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::Handle<jsid> id, bool strict, JS::MutableHandle<JS::Value> vp) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool keys(JSContext *cx, JS::Handle<JSObject*> proxy,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::AutoIdVector &props) const MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool iterate(JSContext *cx, JS::Handle<JSObject*> proxy, unsigned flags,
|
2014-06-27 04:44:06 -07:00
|
|
|
JS::MutableHandle<JS::Value> vp) const MOZ_OVERRIDE;
|
2012-04-19 11:19:41 -07:00
|
|
|
};
|
|
|
|
|
2014-06-27 04:44:04 -07:00
|
|
|
extern const SandboxProxyHandler sandboxProxyHandler;
|
2012-08-27 06:06:34 -07:00
|
|
|
|
2012-10-09 11:50:27 -07:00
|
|
|
// A proxy handler that lets us wrap callables and invoke them with
|
|
|
|
// the correct this object, while forwarding all other operations down
|
|
|
|
// to them directly.
|
|
|
|
class SandboxCallableProxyHandler : public js::Wrapper {
|
|
|
|
public:
|
2014-08-28 13:47:16 -07:00
|
|
|
MOZ_CONSTEXPR SandboxCallableProxyHandler() : js::Wrapper(0)
|
2012-10-09 11:50:27 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-04-04 00:02:24 -07:00
|
|
|
virtual bool call(JSContext *cx, JS::Handle<JSObject*> proxy,
|
2014-06-27 04:44:06 -07:00
|
|
|
const JS::CallArgs &args) const MOZ_OVERRIDE;
|
2012-10-09 11:50:27 -07:00
|
|
|
};
|
|
|
|
|
2014-06-27 04:44:04 -07:00
|
|
|
extern const SandboxCallableProxyHandler sandboxCallableProxyHandler;
|
2012-10-09 11:50:27 -07:00
|
|
|
|
2012-08-27 06:06:34 -07:00
|
|
|
class AutoSetWrapperNotShadowing;
|
|
|
|
|
2010-07-02 14:09:48 -07:00
|
|
|
}
|
2012-08-27 06:06:34 -07:00
|
|
|
|
2013-11-19 12:03:40 -08:00
|
|
|
#endif
|