2010-07-03 01:09:48 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=4 sw=4 et tw=99 ft=cpp:
|
|
|
|
*
|
2012-05-21 15:12:37 +04: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/. */
|
2010-07-03 01:09:48 +04:00
|
|
|
|
|
|
|
#include "jsapi.h"
|
|
|
|
#include "jswrapper.h"
|
2012-08-27 17:06:34 +04:00
|
|
|
#include "mozilla/GuardObjects.h"
|
2010-07-03 01:09:48 +04:00
|
|
|
|
|
|
|
// Xray wrappers re-resolve the original native properties on the native
|
|
|
|
// object and always directly access to those properties.
|
2010-09-21 01:48:01 +04:00
|
|
|
// Because they work so differently from the rest of the wrapper hierarchy,
|
2011-09-09 07:29:15 +04:00
|
|
|
// we pull them out of the Wrapper inheritance hierarchy and create a
|
2010-09-21 01:48:01 +04:00
|
|
|
// little world around them.
|
2010-07-03 01:09:48 +04:00
|
|
|
|
2012-03-28 03:31:37 +04:00
|
|
|
class XPCWrappedNative;
|
|
|
|
|
2010-07-03 01:09:48 +04:00
|
|
|
namespace xpc {
|
|
|
|
|
2012-04-19 22:19:41 +04:00
|
|
|
JSBool
|
2012-07-30 15:19:09 +04:00
|
|
|
holder_get(JSContext *cx, JSHandleObject holder, JSHandleId id, JSMutableHandleValue vp);
|
2012-04-19 22:19:41 +04:00
|
|
|
JSBool
|
2012-07-30 15:19:09 +04:00
|
|
|
holder_set(JSContext *cx, JSHandleObject holder, JSHandleId id, JSBool strict, JSMutableHandleValue vp);
|
2012-04-19 22:19:41 +04:00
|
|
|
|
2010-09-24 02:56:28 +04:00
|
|
|
namespace XrayUtils {
|
|
|
|
|
2010-07-03 01:09:48 +04:00
|
|
|
extern JSClass HolderClass;
|
2010-09-24 02:56:28 +04:00
|
|
|
|
2012-06-05 21:07:37 +04:00
|
|
|
bool CloneExpandoChain(JSContext *cx, JSObject *src, JSObject *dst);
|
|
|
|
|
2010-10-11 02:49:30 +04:00
|
|
|
bool
|
|
|
|
IsTransparent(JSContext *cx, JSObject *wrapper);
|
|
|
|
|
2011-09-22 06:16:50 +04:00
|
|
|
JSObject *
|
|
|
|
GetNativePropertiesObject(JSContext *cx, JSObject *wrapper);
|
|
|
|
|
2010-09-24 02:56:28 +04:00
|
|
|
}
|
2010-07-03 01:09:48 +04:00
|
|
|
|
2012-10-05 20:59:23 +04:00
|
|
|
class XrayTraits;
|
2012-03-28 03:31:37 +04:00
|
|
|
class XPCWrappedNativeXrayTraits;
|
|
|
|
class ProxyXrayTraits;
|
2012-03-31 08:42:20 +04:00
|
|
|
class DOMXrayTraits;
|
2012-03-28 03:31:37 +04:00
|
|
|
|
2012-10-05 20:59:23 +04:00
|
|
|
|
|
|
|
enum XrayType {
|
|
|
|
XrayForDOMObject,
|
|
|
|
XrayForWrappedNative,
|
|
|
|
NotXray
|
|
|
|
};
|
|
|
|
|
|
|
|
XrayType GetXrayType(JSObject *obj);
|
|
|
|
XrayTraits* GetXrayTraits(JSObject *obj);
|
|
|
|
|
2010-09-21 01:48:01 +04:00
|
|
|
// NB: Base *must* derive from JSProxyHandler
|
2012-03-28 03:31:37 +04:00
|
|
|
template <typename Base, typename Traits = XPCWrappedNativeXrayTraits >
|
2010-07-03 01:09:48 +04:00
|
|
|
class XrayWrapper : public Base {
|
|
|
|
public:
|
2012-02-29 03:11:11 +04:00
|
|
|
XrayWrapper(unsigned flags);
|
2010-07-03 01:09:48 +04:00
|
|
|
virtual ~XrayWrapper();
|
|
|
|
|
2010-09-21 01:48:01 +04:00
|
|
|
/* Fundamental proxy traps. */
|
2010-07-03 01:09:48 +04:00
|
|
|
virtual bool getPropertyDescriptor(JSContext *cx, JSObject *wrapper, jsid id,
|
2010-09-18 01:54:41 +04:00
|
|
|
bool set, js::PropertyDescriptor *desc);
|
2010-07-03 01:09:48 +04:00
|
|
|
virtual bool getOwnPropertyDescriptor(JSContext *cx, JSObject *wrapper, jsid id,
|
2010-09-18 01:54:41 +04:00
|
|
|
bool set, js::PropertyDescriptor *desc);
|
2010-09-21 01:48:01 +04:00
|
|
|
virtual bool defineProperty(JSContext *cx, JSObject *wrapper, jsid id,
|
|
|
|
js::PropertyDescriptor *desc);
|
|
|
|
virtual bool getOwnPropertyNames(JSContext *cx, JSObject *wrapper,
|
|
|
|
js::AutoIdVector &props);
|
|
|
|
virtual bool delete_(JSContext *cx, JSObject *wrapper, jsid id, bool *bp);
|
|
|
|
virtual bool enumerate(JSContext *cx, JSObject *wrapper, js::AutoIdVector &props);
|
|
|
|
|
|
|
|
/* Derived proxy traps. */
|
|
|
|
virtual bool get(JSContext *cx, JSObject *wrapper, JSObject *receiver, jsid id,
|
|
|
|
js::Value *vp);
|
|
|
|
virtual bool set(JSContext *cx, JSObject *wrapper, JSObject *receiver, jsid id,
|
2011-02-09 22:31:40 +03:00
|
|
|
bool strict, js::Value *vp);
|
2010-07-03 01:09:48 +04:00
|
|
|
virtual bool has(JSContext *cx, JSObject *wrapper, jsid id, bool *bp);
|
|
|
|
virtual bool hasOwn(JSContext *cx, JSObject *wrapper, jsid id, bool *bp);
|
2011-01-10 22:42:11 +03:00
|
|
|
virtual bool keys(JSContext *cx, JSObject *wrapper, js::AutoIdVector &props);
|
2012-02-29 03:11:11 +04:00
|
|
|
virtual bool iterate(JSContext *cx, JSObject *wrapper, unsigned flags, js::Value *vp);
|
2010-07-03 01:09:48 +04:00
|
|
|
|
2012-02-29 03:11:11 +04:00
|
|
|
virtual bool call(JSContext *cx, JSObject *wrapper, unsigned argc, js::Value *vp);
|
2011-01-26 02:06:45 +03:00
|
|
|
virtual bool construct(JSContext *cx, JSObject *wrapper,
|
2012-02-29 03:11:11 +04:00
|
|
|
unsigned argc, js::Value *argv, js::Value *rval);
|
2011-01-26 02:06:45 +03:00
|
|
|
|
2010-07-03 01:09:48 +04:00
|
|
|
static XrayWrapper singleton;
|
2010-11-11 01:08:44 +03:00
|
|
|
|
|
|
|
private:
|
2012-03-28 03:31:37 +04:00
|
|
|
bool enumerate(JSContext *cx, JSObject *wrapper, unsigned flags,
|
|
|
|
JS::AutoIdVector &props);
|
2010-07-03 01:09:48 +04:00
|
|
|
};
|
|
|
|
|
2012-03-31 08:42:20 +04:00
|
|
|
typedef XrayWrapper<js::CrossCompartmentWrapper, DOMXrayTraits > XrayDOM;
|
2011-05-25 19:30:50 +04:00
|
|
|
|
2012-07-08 21:04:14 +04:00
|
|
|
class SandboxProxyHandler : public js::IndirectWrapper {
|
2012-04-19 22:19:41 +04:00
|
|
|
public:
|
2012-07-08 21:04:14 +04:00
|
|
|
SandboxProxyHandler() : js::IndirectWrapper(0)
|
2012-04-19 22:19:41 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool getPropertyDescriptor(JSContext *cx, JSObject *proxy, jsid id,
|
|
|
|
bool set, js::PropertyDescriptor *desc);
|
|
|
|
virtual bool getOwnPropertyDescriptor(JSContext *cx, JSObject *proxy,
|
|
|
|
jsid id, bool set,
|
|
|
|
js::PropertyDescriptor *desc);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern SandboxProxyHandler sandboxProxyHandler;
|
2012-08-27 17:06:34 +04:00
|
|
|
|
|
|
|
class AutoSetWrapperNotShadowing;
|
|
|
|
class XPCWrappedNativeXrayTraits;
|
|
|
|
|
|
|
|
class ResolvingId {
|
|
|
|
public:
|
|
|
|
ResolvingId(JSObject *wrapper, jsid id);
|
|
|
|
~ResolvingId();
|
|
|
|
|
|
|
|
bool isXrayShadowing(jsid id);
|
|
|
|
bool isResolving(jsid id);
|
|
|
|
static ResolvingId* getResolvingId(JSObject *holder);
|
|
|
|
static JSObject* getHolderObject(JSObject *wrapper);
|
|
|
|
static ResolvingId *getResolvingIdFromWrapper(JSObject *wrapper);
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class AutoSetWrapperNotShadowing;
|
|
|
|
friend class XPCWrappedNativeXrayTraits;
|
|
|
|
|
|
|
|
jsid mId;
|
|
|
|
JSObject *mHolder;
|
|
|
|
ResolvingId *mPrev;
|
|
|
|
bool mXrayShadowing;
|
|
|
|
};
|
|
|
|
|
2010-07-03 01:09:48 +04:00
|
|
|
}
|
2012-08-27 17:06:34 +04:00
|
|
|
|