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"
|
|
|
|
|
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
|
|
|
|
|
|
|
namespace xpc {
|
|
|
|
|
2013-08-08 15:53:04 -07:00
|
|
|
bool
|
2013-06-21 06:12:46 -07:00
|
|
|
holder_get(JSContext *cx, JS::HandleObject holder, JS::HandleId id, JS::MutableHandleValue vp);
|
2013-08-08 15:53:04 -07:00
|
|
|
bool
|
|
|
|
holder_set(JSContext *cx, JS::HandleObject holder, JS::HandleId id, bool strict,
|
2013-06-21 06:12:46 -07:00
|
|
|
JS::MutableHandleValue vp);
|
2012-04-19 11:19:41 -07:00
|
|
|
|
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-02-25 13:54:17 -08:00
|
|
|
bool
|
2013-06-21 06:12:46 -07:00
|
|
|
IsXrayResolving(JSContext *cx, JS::HandleObject wrapper, JS::HandleId id);
|
2013-02-25 13:54:17 -08:00
|
|
|
|
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
|
|
|
class XrayTraits;
|
2012-03-27 16:31:37 -07:00
|
|
|
class XPCWrappedNativeXrayTraits;
|
2012-03-30 21:42:20 -07:00
|
|
|
class DOMXrayTraits;
|
2014-03-23 07:02:12 -07:00
|
|
|
class JSXrayTraits;
|
2012-03-27 16:31:37 -07:00
|
|
|
|
2012-10-05 09:59:23 -07:00
|
|
|
|
|
|
|
enum XrayType {
|
|
|
|
XrayForDOMObject,
|
|
|
|
XrayForWrappedNative,
|
2014-03-23 07:02:12 -07:00
|
|
|
XrayForJSObject,
|
2012-10-05 09:59:23 -07:00
|
|
|
NotXray
|
|
|
|
};
|
|
|
|
|
|
|
|
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:
|
2012-02-28 15:11:11 -08:00
|
|
|
XrayWrapper(unsigned flags);
|
2010-07-02 14:09:48 -07:00
|
|
|
virtual ~XrayWrapper();
|
|
|
|
|
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
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
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>
|
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:
|
2012-10-29 08:52:53 -07:00
|
|
|
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:
|
|
|
|
SandboxCallableProxyHandler() : js::Wrapper(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
class XPCWrappedNativeXrayTraits;
|
|
|
|
|
2013-04-24 02:45:41 -07:00
|
|
|
class MOZ_STACK_CLASS ResolvingId {
|
2012-08-27 06:06:34 -07:00
|
|
|
public:
|
2013-04-24 06:22:21 -07:00
|
|
|
ResolvingId(JSContext *cx, JS::HandleObject wrapper, JS::HandleId id);
|
2012-08-27 06:06:34 -07:00
|
|
|
~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;
|
|
|
|
|
2013-04-24 06:22:21 -07:00
|
|
|
JS::HandleId mId;
|
2013-04-24 02:45:41 -07:00
|
|
|
JS::RootedObject mHolder;
|
2012-08-27 06:06:34 -07:00
|
|
|
ResolvingId *mPrev;
|
|
|
|
bool mXrayShadowing;
|
|
|
|
};
|
|
|
|
|
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
|