2013-04-16 13:47:10 -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:
|
2012-05-21 04:12:37 -07: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-05-18 19:21:43 -07:00
|
|
|
|
2013-06-19 17:59:46 -07:00
|
|
|
#ifndef jsproxy_h
|
|
|
|
#define jsproxy_h
|
2010-05-18 19:21:43 -07:00
|
|
|
|
2013-08-27 15:10:28 -07:00
|
|
|
#include "mozilla/Maybe.h"
|
|
|
|
|
2011-10-04 07:06:54 -07:00
|
|
|
#include "jsfriendapi.h"
|
2010-05-18 19:21:43 -07:00
|
|
|
|
2013-08-26 21:39:38 -07:00
|
|
|
#include "js/CallNonGenericMethod.h"
|
2013-08-28 17:20:24 -07:00
|
|
|
#include "js/Class.h"
|
2013-08-26 21:39:38 -07:00
|
|
|
|
2010-05-24 14:33:03 -07:00
|
|
|
namespace js {
|
|
|
|
|
2013-08-28 17:20:24 -07:00
|
|
|
using JS::AutoIdVector;
|
|
|
|
using JS::CallArgs;
|
|
|
|
using JS::HandleId;
|
|
|
|
using JS::HandleObject;
|
|
|
|
using JS::HandleValue;
|
|
|
|
using JS::IsAcceptableThis;
|
|
|
|
using JS::MutableHandle;
|
|
|
|
using JS::MutableHandleObject;
|
|
|
|
using JS::MutableHandleValue;
|
|
|
|
using JS::NativeImpl;
|
|
|
|
using JS::PrivateValue;
|
|
|
|
using JS::Value;
|
|
|
|
|
2013-07-25 21:23:14 -07:00
|
|
|
class RegExpGuard;
|
2012-07-17 09:54:41 -07:00
|
|
|
class JS_FRIEND_API(Wrapper);
|
2012-06-27 19:10:37 -07:00
|
|
|
|
2012-07-08 10:04:14 -07:00
|
|
|
/*
|
|
|
|
* A proxy is a JSObject that implements generic behavior by providing custom
|
|
|
|
* implementations for each object trap. The implementation for each trap is
|
|
|
|
* provided by a C++ object stored on the proxy, known as its handler.
|
|
|
|
*
|
|
|
|
* A major use case for proxies is to forward each trap to another object,
|
|
|
|
* known as its target. The target can be an arbitrary C++ object. Not every
|
|
|
|
* proxy has the notion of a target, however.
|
|
|
|
*
|
|
|
|
* Proxy traps are grouped into fundamental and derived traps. Every proxy has
|
|
|
|
* to at least provide implementations for the fundamental traps, but the
|
2012-10-29 08:52:53 -07:00
|
|
|
* derived traps can be implemented in terms of the fundamental ones
|
|
|
|
* BaseProxyHandler provides implementations of the derived traps in terms of
|
|
|
|
* the (pure virtual) fundamental traps.
|
2012-07-08 10:04:14 -07:00
|
|
|
*
|
2013-12-13 12:01:30 -08:00
|
|
|
* In addition to the normal traps, there are two models for proxy prototype
|
|
|
|
* chains. First, proxies may opt to use the standard prototype mechanism used
|
|
|
|
* throughout the engine. To do so, simply pass a prototype to NewProxyObject()
|
|
|
|
* at creation time. All prototype accesses will then "just work" to treat the
|
|
|
|
* proxy as a "normal" object. Alternatively, if instead the proxy wishes to
|
|
|
|
* implement more complicated prototype semantics (if, for example, it wants to
|
|
|
|
* delegate the prototype lookup to a wrapped object), it may pass Proxy::LazyProto
|
|
|
|
* as the prototype at create time and opt in to the trapped prototype system,
|
|
|
|
* which guarantees that their trap will be called on any and every prototype
|
|
|
|
* chain access of the object.
|
|
|
|
*
|
|
|
|
* This system is implemented with two traps: {get,set}PrototypeOf. The default
|
|
|
|
* implementation of setPrototypeOf throws a TypeError. Since it is not possible
|
|
|
|
* to create an object without a sense of prototype chain, handler implementors
|
|
|
|
* must provide a getPrototypeOf trap if opting in to the dynamic prototype system.
|
|
|
|
*
|
2012-07-08 10:04:14 -07:00
|
|
|
* To minimize code duplication, a set of abstract proxy handler classes is
|
|
|
|
* provided, from which other handlers may inherit. These abstract classes
|
|
|
|
* are organized in the following hierarchy:
|
|
|
|
*
|
|
|
|
* BaseProxyHandler
|
|
|
|
* |
|
|
|
|
* DirectProxyHandler
|
2012-10-29 08:52:53 -07:00
|
|
|
* |
|
|
|
|
* Wrapper
|
2012-07-08 10:04:14 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* BaseProxyHandler is the most generic kind of proxy handler. It does not make
|
|
|
|
* any assumptions about the target. Consequently, it does not provide any
|
|
|
|
* default implementation for the fundamental traps. It does, however, implement
|
|
|
|
* the derived traps in terms of the fundamental ones. This allows consumers of
|
|
|
|
* this class to define any custom behavior they want.
|
2013-12-05 12:58:20 -08:00
|
|
|
*
|
|
|
|
* Important: If you add a trap here, you should probably also add a Proxy::foo
|
|
|
|
* entry point with an AutoEnterPolicy. If you don't, you need an explicit
|
|
|
|
* override for the trap in SecurityWrapper. See bug 945826 comment 0.
|
2012-07-08 10:04:14 -07:00
|
|
|
*/
|
2013-03-22 19:43:03 -07:00
|
|
|
class JS_FRIEND_API(BaseProxyHandler)
|
|
|
|
{
|
2013-09-24 08:21:22 -07:00
|
|
|
const void *mFamily;
|
2012-08-10 04:55:55 -07:00
|
|
|
bool mHasPrototype;
|
2013-02-25 13:54:18 -08:00
|
|
|
bool mHasPolicy;
|
2012-08-10 04:55:55 -07:00
|
|
|
protected:
|
|
|
|
// Subclasses may set this in their constructor.
|
2013-02-17 22:56:32 -08:00
|
|
|
void setHasPrototype(bool aHasPrototype) { mHasPrototype = aHasPrototype; }
|
2013-02-25 13:54:18 -08:00
|
|
|
void setHasPolicy(bool aHasPolicy) { mHasPolicy = aHasPolicy; }
|
2012-08-10 04:55:55 -07:00
|
|
|
|
2010-05-18 19:21:43 -07:00
|
|
|
public:
|
2013-09-24 08:21:22 -07:00
|
|
|
explicit BaseProxyHandler(const void *family);
|
2012-05-17 04:19:37 -07:00
|
|
|
virtual ~BaseProxyHandler();
|
2010-05-18 19:21:43 -07:00
|
|
|
|
2012-08-10 04:55:55 -07:00
|
|
|
bool hasPrototype() {
|
|
|
|
return mHasPrototype;
|
|
|
|
}
|
|
|
|
|
2013-02-25 13:54:18 -08:00
|
|
|
bool hasPolicy() {
|
|
|
|
return mHasPolicy;
|
|
|
|
}
|
|
|
|
|
2013-09-24 08:21:22 -07:00
|
|
|
inline const void *family() {
|
2012-06-27 19:10:37 -07:00
|
|
|
return mFamily;
|
2012-06-29 15:59:42 -07:00
|
|
|
}
|
2013-08-10 22:20:36 -07:00
|
|
|
static size_t offsetOfFamily() {
|
|
|
|
return offsetof(BaseProxyHandler, mFamily);
|
|
|
|
}
|
2012-06-27 19:10:37 -07:00
|
|
|
|
|
|
|
virtual bool isOuterWindow() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-02-14 14:51:07 -08:00
|
|
|
virtual bool finalizeInBackground(Value priv) {
|
2013-02-21 02:19:17 -08:00
|
|
|
/*
|
|
|
|
* Called on creation of a proxy to determine whether its finalize
|
|
|
|
* method can be finalized on the background thread.
|
|
|
|
*/
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-02-25 13:54:18 -08:00
|
|
|
/* Policy enforcement traps.
|
|
|
|
*
|
|
|
|
* enter() allows the policy to specify whether the caller may perform |act|
|
|
|
|
* on the proxy's |id| property. In the case when |act| is CALL, |id| is
|
2013-12-16 18:27:43 -08:00
|
|
|
* generally JSID_VOID.
|
2013-02-25 13:54:18 -08:00
|
|
|
*
|
|
|
|
* The |act| parameter to enter() specifies the action being performed.
|
2013-02-25 13:54:18 -08:00
|
|
|
* If |bp| is false, the trap suggests that the caller throw (though it
|
|
|
|
* may still decide to squelch the error).
|
2013-02-25 13:54:18 -08:00
|
|
|
*/
|
|
|
|
enum Action {
|
|
|
|
GET,
|
|
|
|
SET,
|
|
|
|
CALL
|
|
|
|
};
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool enter(JSContext *cx, HandleObject wrapper, HandleId id, Action act,
|
2013-02-25 13:54:18 -08:00
|
|
|
bool *bp);
|
|
|
|
|
2010-05-18 19:21:43 -07:00
|
|
|
/* ES5 Harmony fundamental proxy traps. */
|
2013-03-22 19:43:03 -07:00
|
|
|
virtual bool preventExtensions(JSContext *cx, HandleObject proxy) = 0;
|
2013-03-21 15:23:47 -07:00
|
|
|
virtual bool getPropertyDescriptor(JSContext *cx, HandleObject proxy, HandleId id,
|
2013-07-25 22:52:59 -07:00
|
|
|
MutableHandle<JSPropertyDescriptor> desc,
|
2013-04-30 10:29:40 -07:00
|
|
|
unsigned flags) = 0;
|
2013-03-21 15:23:47 -07:00
|
|
|
virtual bool getOwnPropertyDescriptor(JSContext *cx, HandleObject proxy,
|
2013-07-25 22:52:59 -07:00
|
|
|
HandleId id, MutableHandle<JSPropertyDescriptor> desc,
|
2013-03-21 15:23:47 -07:00
|
|
|
unsigned flags) = 0;
|
2013-03-21 15:23:47 -07:00
|
|
|
virtual bool defineProperty(JSContext *cx, HandleObject proxy, HandleId id,
|
2013-07-25 22:52:59 -07:00
|
|
|
MutableHandle<JSPropertyDescriptor> desc) = 0;
|
2013-03-21 15:23:47 -07:00
|
|
|
virtual bool getOwnPropertyNames(JSContext *cx, HandleObject proxy,
|
2012-07-08 10:04:14 -07:00
|
|
|
AutoIdVector &props) = 0;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool delete_(JSContext *cx, HandleObject proxy, HandleId id, bool *bp) = 0;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool enumerate(JSContext *cx, HandleObject proxy, AutoIdVector &props) = 0;
|
2010-05-18 19:21:43 -07:00
|
|
|
|
|
|
|
/* ES5 Harmony derived proxy traps. */
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool has(JSContext *cx, HandleObject proxy, HandleId id, bool *bp);
|
|
|
|
virtual bool hasOwn(JSContext *cx, HandleObject proxy, HandleId id, bool *bp);
|
|
|
|
virtual bool get(JSContext *cx, HandleObject proxy, HandleObject receiver,
|
|
|
|
HandleId id, MutableHandleValue vp);
|
|
|
|
virtual bool set(JSContext *cx, HandleObject proxy, HandleObject receiver,
|
|
|
|
HandleId id, bool strict, MutableHandleValue vp);
|
2013-03-21 15:23:47 -07:00
|
|
|
virtual bool keys(JSContext *cx, HandleObject proxy, AutoIdVector &props);
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool iterate(JSContext *cx, HandleObject proxy, unsigned flags,
|
|
|
|
MutableHandleValue vp);
|
2010-05-18 19:21:43 -07:00
|
|
|
|
|
|
|
/* Spidermonkey extensions. */
|
2013-06-28 14:01:09 -07:00
|
|
|
virtual bool isExtensible(JSContext *cx, HandleObject proxy, bool *extensible) = 0;
|
2013-04-04 00:02:24 -07:00
|
|
|
virtual bool call(JSContext *cx, HandleObject proxy, const CallArgs &args);
|
|
|
|
virtual bool construct(JSContext *cx, HandleObject proxy, const CallArgs &args);
|
2012-07-03 17:44:22 -07:00
|
|
|
virtual bool nativeCall(JSContext *cx, IsAcceptableThis test, NativeImpl impl, CallArgs args);
|
2012-09-04 16:40:12 -07:00
|
|
|
virtual bool hasInstance(JSContext *cx, HandleObject proxy, MutableHandleValue v, bool *bp);
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool objectClassIs(HandleObject obj, ESClassValue classValue, JSContext *cx);
|
2013-04-30 14:44:50 -07:00
|
|
|
virtual const char *className(JSContext *cx, HandleObject proxy);
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual JSString *fun_toString(JSContext *cx, HandleObject proxy, unsigned indent);
|
|
|
|
virtual bool regexp_toShared(JSContext *cx, HandleObject proxy, RegExpGuard *g);
|
|
|
|
virtual bool defaultValue(JSContext *cx, HandleObject obj, JSType hint, MutableHandleValue vp);
|
2012-03-19 07:34:55 -07:00
|
|
|
virtual void finalize(JSFreeOp *fop, JSObject *proxy);
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool getPrototypeOf(JSContext *cx, HandleObject proxy, MutableHandleObject protop);
|
2013-12-13 12:01:30 -08:00
|
|
|
virtual bool setPrototypeOf(JSContext *cx, HandleObject proxy, HandleObject proto, bool *bp);
|
2012-10-08 18:22:47 -07:00
|
|
|
|
2013-10-29 16:39:09 -07:00
|
|
|
// These two hooks must be overridden, or not overridden, in tandem -- no
|
|
|
|
// overriding just one!
|
|
|
|
virtual bool watch(JSContext *cx, JS::HandleObject proxy, JS::HandleId id,
|
|
|
|
JS::HandleObject callable);
|
|
|
|
virtual bool unwatch(JSContext *cx, JS::HandleObject proxy, JS::HandleId id);
|
|
|
|
|
2013-12-05 11:07:24 -08:00
|
|
|
virtual bool slice(JSContext *cx, HandleObject proxy, uint32_t begin, uint32_t end,
|
|
|
|
HandleObject result);
|
|
|
|
|
2013-08-21 22:26:57 -07:00
|
|
|
/* See comment for weakmapKeyDelegateOp in js/Class.h. */
|
2012-10-08 18:22:47 -07:00
|
|
|
virtual JSObject *weakmapKeyDelegate(JSObject *proxy);
|
2013-11-26 05:53:20 -08:00
|
|
|
virtual bool isScripted() { return false; }
|
2010-05-18 19:21:43 -07:00
|
|
|
};
|
|
|
|
|
2012-07-08 10:04:14 -07:00
|
|
|
/*
|
2012-10-29 08:52:53 -07:00
|
|
|
* DirectProxyHandler includes a notion of a target object. All traps are
|
|
|
|
* reimplemented such that they forward their behavior to the target. This
|
|
|
|
* allows consumers of this class to forward to another object as transparently
|
|
|
|
* and efficiently as possible.
|
2013-12-05 12:58:20 -08:00
|
|
|
*
|
|
|
|
* Important: If you add a trap implementation here, you probably also need to
|
|
|
|
* add an override in CrossCompartmentWrapper. If you don't, you risk
|
|
|
|
* compartment mismatches. See bug 945826 comment 0.
|
2012-07-08 10:04:14 -07:00
|
|
|
*/
|
2013-03-22 19:43:03 -07:00
|
|
|
class JS_PUBLIC_API(DirectProxyHandler) : public BaseProxyHandler
|
|
|
|
{
|
|
|
|
public:
|
2013-09-24 08:21:22 -07:00
|
|
|
explicit DirectProxyHandler(const void *family);
|
2012-05-17 04:19:37 -07:00
|
|
|
|
|
|
|
/* ES5 Harmony fundamental proxy traps. */
|
2013-03-22 19:43:03 -07:00
|
|
|
virtual bool preventExtensions(JSContext *cx, HandleObject proxy) MOZ_OVERRIDE;
|
2013-03-21 15:23:47 -07:00
|
|
|
virtual bool getPropertyDescriptor(JSContext *cx, HandleObject proxy, HandleId id,
|
2013-07-25 22:52:59 -07:00
|
|
|
MutableHandle<JSPropertyDescriptor> desc, unsigned flags) MOZ_OVERRIDE;
|
2013-03-21 15:23:47 -07:00
|
|
|
virtual bool getOwnPropertyDescriptor(JSContext *cx, HandleObject proxy,
|
2013-07-25 22:52:59 -07:00
|
|
|
HandleId id, MutableHandle<JSPropertyDescriptor> desc,
|
2013-01-03 13:31:36 -08:00
|
|
|
unsigned flags) MOZ_OVERRIDE;
|
2013-03-21 15:23:47 -07:00
|
|
|
virtual bool defineProperty(JSContext *cx, HandleObject proxy, HandleId id,
|
2013-07-25 22:52:59 -07:00
|
|
|
MutableHandle<JSPropertyDescriptor> desc) MOZ_OVERRIDE;
|
2013-03-21 15:23:47 -07:00
|
|
|
virtual bool getOwnPropertyNames(JSContext *cx, HandleObject proxy,
|
2012-05-17 04:19:37 -07:00
|
|
|
AutoIdVector &props) MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool delete_(JSContext *cx, HandleObject proxy, HandleId id,
|
2012-05-17 04:19:37 -07:00
|
|
|
bool *bp) MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool enumerate(JSContext *cx, HandleObject proxy,
|
2012-05-17 04:19:37 -07:00
|
|
|
AutoIdVector &props) MOZ_OVERRIDE;
|
|
|
|
|
2012-10-29 08:52:53 -07:00
|
|
|
/* ES5 Harmony derived proxy traps. */
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool has(JSContext *cx, HandleObject proxy, HandleId id,
|
2012-10-29 08:52:53 -07:00
|
|
|
bool *bp) MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool hasOwn(JSContext *cx, HandleObject proxy, HandleId id,
|
2012-10-29 08:52:53 -07:00
|
|
|
bool *bp) MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool get(JSContext *cx, HandleObject proxy, HandleObject receiver,
|
|
|
|
HandleId id, MutableHandleValue vp) MOZ_OVERRIDE;
|
|
|
|
virtual bool set(JSContext *cx, HandleObject proxy, HandleObject receiver,
|
|
|
|
HandleId id, bool strict, MutableHandleValue vp) MOZ_OVERRIDE;
|
2013-03-21 15:23:47 -07:00
|
|
|
virtual bool keys(JSContext *cx, HandleObject proxy,
|
2012-10-29 08:52:53 -07:00
|
|
|
AutoIdVector &props) MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool iterate(JSContext *cx, HandleObject proxy, unsigned flags,
|
|
|
|
MutableHandleValue vp) MOZ_OVERRIDE;
|
2012-10-29 08:52:53 -07:00
|
|
|
|
2012-05-17 04:19:37 -07:00
|
|
|
/* Spidermonkey extensions. */
|
2013-06-28 14:01:09 -07:00
|
|
|
virtual bool isExtensible(JSContext *cx, HandleObject proxy, bool *extensible) MOZ_OVERRIDE;
|
2013-04-04 00:02:24 -07:00
|
|
|
virtual bool call(JSContext *cx, HandleObject proxy, const CallArgs &args) MOZ_OVERRIDE;
|
|
|
|
virtual bool construct(JSContext *cx, HandleObject proxy, const CallArgs &args) MOZ_OVERRIDE;
|
2012-07-03 17:44:22 -07:00
|
|
|
virtual bool nativeCall(JSContext *cx, IsAcceptableThis test, NativeImpl impl,
|
|
|
|
CallArgs args) MOZ_OVERRIDE;
|
2012-09-04 16:40:12 -07:00
|
|
|
virtual bool hasInstance(JSContext *cx, HandleObject proxy, MutableHandleValue v,
|
2012-05-17 04:19:37 -07:00
|
|
|
bool *bp) MOZ_OVERRIDE;
|
2013-12-13 12:01:30 -08:00
|
|
|
virtual bool getPrototypeOf(JSContext *cx, HandleObject proxy, MutableHandleObject protop);
|
|
|
|
virtual bool setPrototypeOf(JSContext *cx, HandleObject proxy, HandleObject proto, bool *bp);
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool objectClassIs(HandleObject obj, ESClassValue classValue,
|
2012-05-17 04:19:37 -07:00
|
|
|
JSContext *cx) MOZ_OVERRIDE;
|
2013-04-30 14:44:50 -07:00
|
|
|
virtual const char *className(JSContext *cx, HandleObject proxy) MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual JSString *fun_toString(JSContext *cx, HandleObject proxy,
|
2012-05-17 04:19:37 -07:00
|
|
|
unsigned indent) MOZ_OVERRIDE;
|
2013-03-21 15:23:48 -07:00
|
|
|
virtual bool regexp_toShared(JSContext *cx, HandleObject proxy,
|
2012-05-17 04:19:37 -07:00
|
|
|
RegExpGuard *g) MOZ_OVERRIDE;
|
2012-10-08 18:22:47 -07:00
|
|
|
virtual JSObject *weakmapKeyDelegate(JSObject *proxy);
|
2012-05-17 04:19:37 -07:00
|
|
|
};
|
|
|
|
|
2013-12-05 12:58:20 -08:00
|
|
|
/*
|
|
|
|
* Dispatch point for handlers that executes the appropriate C++ or scripted traps.
|
|
|
|
*
|
|
|
|
* Important: All proxy traps need either (a) an AutoEnterPolicy in their
|
|
|
|
* Proxy::foo entry point below or (b) an override in SecurityWrapper. See bug
|
|
|
|
* 945826 comment 0.
|
|
|
|
*/
|
2013-03-22 19:43:03 -07:00
|
|
|
class Proxy
|
|
|
|
{
|
2010-05-18 19:21:43 -07:00
|
|
|
public:
|
|
|
|
/* ES5 Harmony fundamental proxy traps. */
|
2013-03-22 19:43:03 -07:00
|
|
|
static bool preventExtensions(JSContext *cx, HandleObject proxy);
|
2013-03-21 15:23:47 -07:00
|
|
|
static bool getPropertyDescriptor(JSContext *cx, HandleObject proxy, HandleId id,
|
2013-07-25 22:52:59 -07:00
|
|
|
MutableHandle<JSPropertyDescriptor> desc, unsigned flags);
|
2013-03-21 15:23:47 -07:00
|
|
|
static bool getPropertyDescriptor(JSContext *cx, HandleObject proxy, unsigned flags, HandleId id,
|
|
|
|
MutableHandleValue vp);
|
|
|
|
static bool getOwnPropertyDescriptor(JSContext *cx, HandleObject proxy, HandleId id,
|
2013-07-25 22:52:59 -07:00
|
|
|
MutableHandle<JSPropertyDescriptor> desc, unsigned flags);
|
2013-03-21 15:23:47 -07:00
|
|
|
static bool getOwnPropertyDescriptor(JSContext *cx, HandleObject proxy, unsigned flags, HandleId id,
|
|
|
|
MutableHandleValue vp);
|
2013-04-30 10:29:40 -07:00
|
|
|
static bool defineProperty(JSContext *cx, HandleObject proxy, HandleId id,
|
2013-07-25 22:52:59 -07:00
|
|
|
MutableHandle<JSPropertyDescriptor> desc);
|
2013-03-21 15:23:47 -07:00
|
|
|
static bool defineProperty(JSContext *cx, HandleObject proxy, HandleId id, HandleValue v);
|
2013-03-21 15:23:47 -07:00
|
|
|
static bool getOwnPropertyNames(JSContext *cx, HandleObject proxy, AutoIdVector &props);
|
2013-03-21 15:23:48 -07:00
|
|
|
static bool delete_(JSContext *cx, HandleObject proxy, HandleId id, bool *bp);
|
2013-03-21 15:23:48 -07:00
|
|
|
static bool enumerate(JSContext *cx, HandleObject proxy, AutoIdVector &props);
|
2010-05-18 19:21:43 -07:00
|
|
|
|
|
|
|
/* ES5 Harmony derived proxy traps. */
|
2013-03-21 15:23:48 -07:00
|
|
|
static bool has(JSContext *cx, HandleObject proxy, HandleId id, bool *bp);
|
|
|
|
static bool hasOwn(JSContext *cx, HandleObject proxy, HandleId id, bool *bp);
|
|
|
|
static bool get(JSContext *cx, HandleObject proxy, HandleObject receiver, HandleId id,
|
|
|
|
MutableHandleValue vp);
|
|
|
|
static bool set(JSContext *cx, HandleObject proxy, HandleObject receiver, HandleId id,
|
|
|
|
bool strict, MutableHandleValue vp);
|
2013-03-21 15:23:47 -07:00
|
|
|
static bool keys(JSContext *cx, HandleObject proxy, AutoIdVector &props);
|
2012-08-10 04:55:55 -07:00
|
|
|
static bool iterate(JSContext *cx, HandleObject proxy, unsigned flags, MutableHandleValue vp);
|
2010-06-23 14:35:10 -07:00
|
|
|
|
|
|
|
/* Spidermonkey extensions. */
|
2013-06-28 14:01:09 -07:00
|
|
|
static bool isExtensible(JSContext *cx, HandleObject proxy, bool *extensible);
|
2013-04-04 00:02:24 -07:00
|
|
|
static bool call(JSContext *cx, HandleObject proxy, const CallArgs &args);
|
|
|
|
static bool construct(JSContext *cx, HandleObject proxy, const CallArgs &args);
|
2012-07-03 17:44:22 -07:00
|
|
|
static bool nativeCall(JSContext *cx, IsAcceptableThis test, NativeImpl impl, CallArgs args);
|
2012-09-04 16:40:12 -07:00
|
|
|
static bool hasInstance(JSContext *cx, HandleObject proxy, MutableHandleValue v, bool *bp);
|
2013-03-21 15:23:48 -07:00
|
|
|
static bool objectClassIs(HandleObject obj, ESClassValue classValue, JSContext *cx);
|
2013-04-30 14:44:50 -07:00
|
|
|
static const char *className(JSContext *cx, HandleObject proxy);
|
2013-03-21 15:23:48 -07:00
|
|
|
static JSString *fun_toString(JSContext *cx, HandleObject proxy, unsigned indent);
|
|
|
|
static bool regexp_toShared(JSContext *cx, HandleObject proxy, RegExpGuard *g);
|
|
|
|
static bool defaultValue(JSContext *cx, HandleObject obj, JSType hint, MutableHandleValue vp);
|
|
|
|
static bool getPrototypeOf(JSContext *cx, HandleObject proxy, MutableHandleObject protop);
|
2013-12-13 12:01:30 -08:00
|
|
|
static bool setPrototypeOf(JSContext *cx, HandleObject proxy, HandleObject proto, bool *bp);
|
2012-09-26 09:49:20 -07:00
|
|
|
|
2013-12-05 11:07:24 -08:00
|
|
|
static bool watch(JSContext *cx, HandleObject proxy, HandleId id, HandleObject callable);
|
|
|
|
static bool unwatch(JSContext *cx, HandleObject proxy, HandleId id);
|
|
|
|
|
|
|
|
static bool slice(JSContext *cx, HandleObject obj, uint32_t begin, uint32_t end,
|
|
|
|
HandleObject result);
|
2013-10-29 16:39:09 -07:00
|
|
|
|
2013-10-17 18:13:43 -07:00
|
|
|
/* IC entry path for handling __noSuchMethod__ on access. */
|
|
|
|
static bool callProp(JSContext *cx, HandleObject proxy, HandleObject reveiver, HandleId id,
|
|
|
|
MutableHandleValue vp);
|
2010-05-18 19:21:43 -07:00
|
|
|
};
|
|
|
|
|
2013-10-04 04:29:34 -07:00
|
|
|
// Use these in places where you don't want to #include vm/ProxyObject.h.
|
|
|
|
extern JS_FRIEND_DATA(const js::Class* const) CallableProxyClassPtr;
|
|
|
|
extern JS_FRIEND_DATA(const js::Class* const) UncallableProxyClassPtr;
|
2013-09-11 05:49:05 -07:00
|
|
|
extern JS_FRIEND_DATA(const js::Class* const) OuterWindowProxyClassPtr;
|
2013-08-26 21:39:37 -07:00
|
|
|
|
2013-06-20 21:27:28 -07:00
|
|
|
inline bool IsProxyClass(const Class *clasp)
|
|
|
|
{
|
2013-10-04 04:29:34 -07:00
|
|
|
return clasp == CallableProxyClassPtr ||
|
|
|
|
clasp == UncallableProxyClassPtr ||
|
|
|
|
clasp == OuterWindowProxyClassPtr;
|
2012-02-21 10:31:27 -08:00
|
|
|
}
|
|
|
|
|
2013-04-30 15:41:12 -07:00
|
|
|
inline bool IsProxy(JSObject *obj)
|
2011-10-04 07:06:54 -07:00
|
|
|
{
|
2013-06-20 21:27:28 -07:00
|
|
|
return IsProxyClass(GetObjectClass(obj));
|
2011-10-04 07:06:54 -07:00
|
|
|
}
|
|
|
|
|
2013-11-26 05:53:20 -08:00
|
|
|
BaseProxyHandler *
|
|
|
|
GetProxyHandler(JSObject *obj);
|
|
|
|
|
|
|
|
inline bool IsScriptedProxy(JSObject *obj)
|
|
|
|
{
|
|
|
|
if (!IsProxy(obj))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return GetProxyHandler(obj)->isScripted();
|
|
|
|
}
|
|
|
|
|
2012-12-06 12:21:19 -08:00
|
|
|
/*
|
2013-06-20 22:39:22 -07:00
|
|
|
* These are part of the API.
|
|
|
|
*
|
|
|
|
* NOTE: PROXY_PRIVATE_SLOT is 0 because that way slot 0 is usable by API
|
2012-12-06 12:21:19 -08:00
|
|
|
* clients for both proxy and non-proxy objects. So an API client that only
|
|
|
|
* needs to store one slot's worth of data doesn't need to branch on what sort
|
|
|
|
* of object it has.
|
|
|
|
*/
|
2013-06-20 22:39:22 -07:00
|
|
|
const uint32_t PROXY_PRIVATE_SLOT = 0;
|
|
|
|
const uint32_t PROXY_HANDLER_SLOT = 1;
|
|
|
|
const uint32_t PROXY_EXTRA_SLOT = 2;
|
2010-05-18 19:21:43 -07:00
|
|
|
|
2012-05-17 04:19:37 -07:00
|
|
|
inline BaseProxyHandler *
|
2013-04-30 15:41:12 -07:00
|
|
|
GetProxyHandler(JSObject *obj)
|
2010-05-18 19:21:43 -07:00
|
|
|
{
|
2011-10-04 07:06:54 -07:00
|
|
|
JS_ASSERT(IsProxy(obj));
|
2013-06-20 22:39:22 -07:00
|
|
|
return (BaseProxyHandler *) GetReservedSlot(obj, PROXY_HANDLER_SLOT).toPrivate();
|
2010-05-18 19:21:43 -07:00
|
|
|
}
|
|
|
|
|
2011-10-04 07:06:54 -07:00
|
|
|
inline const Value &
|
2013-04-30 15:41:12 -07:00
|
|
|
GetProxyPrivate(JSObject *obj)
|
2010-05-18 19:21:43 -07:00
|
|
|
{
|
2011-10-04 07:06:54 -07:00
|
|
|
JS_ASSERT(IsProxy(obj));
|
2013-06-20 22:39:22 -07:00
|
|
|
return GetReservedSlot(obj, PROXY_PRIVATE_SLOT);
|
2010-05-18 19:21:43 -07:00
|
|
|
}
|
|
|
|
|
2012-05-17 04:19:37 -07:00
|
|
|
inline JSObject *
|
2013-04-30 15:41:12 -07:00
|
|
|
GetProxyTargetObject(JSObject *obj)
|
2012-05-17 04:19:37 -07:00
|
|
|
{
|
|
|
|
JS_ASSERT(IsProxy(obj));
|
|
|
|
return GetProxyPrivate(obj).toObjectOrNull();
|
|
|
|
}
|
|
|
|
|
2012-05-23 16:31:26 -07:00
|
|
|
inline const Value &
|
2013-04-30 15:41:12 -07:00
|
|
|
GetProxyExtra(JSObject *obj, size_t n)
|
2010-09-20 14:48:01 -07:00
|
|
|
{
|
2011-10-04 07:06:54 -07:00
|
|
|
JS_ASSERT(IsProxy(obj));
|
2013-06-20 22:39:22 -07:00
|
|
|
return GetReservedSlot(obj, PROXY_EXTRA_SLOT + n);
|
2010-09-20 14:48:01 -07:00
|
|
|
}
|
|
|
|
|
2012-04-25 21:03:53 -07:00
|
|
|
inline void
|
2013-04-30 15:41:12 -07:00
|
|
|
SetProxyHandler(JSObject *obj, BaseProxyHandler *handler)
|
2012-04-25 21:03:53 -07:00
|
|
|
{
|
|
|
|
JS_ASSERT(IsProxy(obj));
|
2013-06-20 22:39:22 -07:00
|
|
|
SetReservedSlot(obj, PROXY_HANDLER_SLOT, PrivateValue(handler));
|
2012-04-25 21:03:53 -07:00
|
|
|
}
|
|
|
|
|
2010-09-20 14:48:01 -07:00
|
|
|
inline void
|
2013-04-30 15:41:12 -07:00
|
|
|
SetProxyExtra(JSObject *obj, size_t n, const Value &extra)
|
2010-09-20 14:48:01 -07:00
|
|
|
{
|
2011-10-04 07:06:54 -07:00
|
|
|
JS_ASSERT(IsProxy(obj));
|
2011-05-23 08:39:25 -07:00
|
|
|
JS_ASSERT(n <= 1);
|
2013-06-20 22:39:22 -07:00
|
|
|
SetReservedSlot(obj, PROXY_EXTRA_SLOT + n, extra);
|
2010-09-20 14:48:01 -07:00
|
|
|
}
|
|
|
|
|
2013-10-04 04:29:35 -07:00
|
|
|
class MOZ_STACK_CLASS ProxyOptions {
|
|
|
|
public:
|
|
|
|
ProxyOptions() : callable_(false),
|
2013-11-05 02:15:40 -08:00
|
|
|
singleton_(false)
|
2013-10-04 04:29:35 -07:00
|
|
|
{}
|
|
|
|
|
|
|
|
bool callable() const { return callable_; }
|
|
|
|
ProxyOptions &setCallable(bool flag) {
|
|
|
|
callable_ = flag;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool singleton() const { return singleton_; }
|
|
|
|
ProxyOptions &setSingleton(bool flag) {
|
|
|
|
singleton_ = flag;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool callable_;
|
|
|
|
bool singleton_;
|
2013-03-26 17:51:55 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
JS_FRIEND_API(JSObject *)
|
2013-05-24 10:03:13 -07:00
|
|
|
NewProxyObject(JSContext *cx, BaseProxyHandler *handler, HandleValue priv,
|
2013-10-04 04:29:35 -07:00
|
|
|
JSObject *proto, JSObject *parent, const ProxyOptions &options = ProxyOptions());
|
2013-03-26 17:51:55 -07:00
|
|
|
|
2012-09-11 17:14:24 -07:00
|
|
|
JSObject *
|
|
|
|
RenewProxyObject(JSContext *cx, JSObject *obj, BaseProxyHandler *handler, Value priv);
|
|
|
|
|
2013-02-25 13:54:18 -08:00
|
|
|
class JS_FRIEND_API(AutoEnterPolicy)
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef BaseProxyHandler::Action Action;
|
|
|
|
AutoEnterPolicy(JSContext *cx, BaseProxyHandler *handler,
|
2013-03-21 05:56:58 -07:00
|
|
|
HandleObject wrapper, HandleId id, Action act, bool mayThrow)
|
2013-12-06 15:03:08 -08:00
|
|
|
#ifdef JS_DEBUG
|
2013-10-07 09:44:15 -07:00
|
|
|
: context(nullptr)
|
2013-02-25 13:54:18 -08:00
|
|
|
#endif
|
2013-02-25 13:54:18 -08:00
|
|
|
{
|
|
|
|
allow = handler->hasPolicy() ? handler->enter(cx, wrapper, id, act, &rv)
|
|
|
|
: true;
|
2013-02-25 13:54:18 -08:00
|
|
|
recordEnter(cx, wrapper, id);
|
2013-03-17 21:44:41 -07:00
|
|
|
// We want to throw an exception if all of the following are true:
|
|
|
|
// * The policy disallowed access.
|
|
|
|
// * The policy set rv to false, indicating that we should throw.
|
|
|
|
// * The caller did not instruct us to ignore exceptions.
|
|
|
|
// * The policy did not throw itself.
|
2013-08-28 17:20:24 -07:00
|
|
|
if (!allow && !rv && mayThrow)
|
|
|
|
reportErrorIfExceptionIsNotPending(cx, id);
|
2013-02-25 13:54:18 -08:00
|
|
|
}
|
|
|
|
|
2013-02-25 13:54:18 -08:00
|
|
|
virtual ~AutoEnterPolicy() { recordLeave(); }
|
2013-02-25 13:54:18 -08:00
|
|
|
inline bool allowed() { return allow; }
|
|
|
|
inline bool returnValue() { JS_ASSERT(!allowed()); return rv; }
|
|
|
|
|
|
|
|
protected:
|
2013-02-25 13:54:18 -08:00
|
|
|
// no-op constructor for subclass
|
|
|
|
AutoEnterPolicy()
|
2013-12-06 15:03:08 -08:00
|
|
|
#ifdef JS_DEBUG
|
2013-10-07 09:44:15 -07:00
|
|
|
: context(nullptr)
|
2013-02-25 13:54:18 -08:00
|
|
|
#endif
|
|
|
|
{};
|
2013-08-28 17:20:24 -07:00
|
|
|
void reportErrorIfExceptionIsNotPending(JSContext *cx, jsid id);
|
2013-02-25 13:54:18 -08:00
|
|
|
bool allow;
|
|
|
|
bool rv;
|
2013-02-25 13:54:18 -08:00
|
|
|
|
2013-12-06 15:03:08 -08:00
|
|
|
#ifdef JS_DEBUG
|
2013-02-25 13:54:18 -08:00
|
|
|
JSContext *context;
|
2013-03-21 05:56:58 -07:00
|
|
|
mozilla::Maybe<HandleObject> enteredProxy;
|
|
|
|
mozilla::Maybe<HandleId> enteredId;
|
2013-02-25 13:54:18 -08:00
|
|
|
// NB: We explicitly don't track the entered action here, because sometimes
|
|
|
|
// SET traps do an implicit GET during their implementation, leading to
|
|
|
|
// spurious assertions.
|
|
|
|
AutoEnterPolicy *prev;
|
2013-03-21 05:56:58 -07:00
|
|
|
void recordEnter(JSContext *cx, HandleObject proxy, HandleId id);
|
2013-02-25 13:54:18 -08:00
|
|
|
void recordLeave();
|
|
|
|
|
|
|
|
friend JS_FRIEND_API(void) assertEnteredPolicy(JSContext *cx, JSObject *proxy, jsid id);
|
|
|
|
#else
|
|
|
|
inline void recordEnter(JSContext *cx, JSObject *proxy, jsid id) {}
|
|
|
|
inline void recordLeave() {}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-12-06 15:03:08 -08:00
|
|
|
#ifdef JS_DEBUG
|
2013-02-25 13:54:18 -08:00
|
|
|
class JS_FRIEND_API(AutoWaivePolicy) : public AutoEnterPolicy {
|
|
|
|
public:
|
2013-03-21 05:56:58 -07:00
|
|
|
AutoWaivePolicy(JSContext *cx, HandleObject proxy, HandleId id)
|
2013-02-25 13:54:18 -08:00
|
|
|
{
|
|
|
|
allow = true;
|
|
|
|
recordEnter(cx, proxy, id);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
#else
|
|
|
|
class JS_FRIEND_API(AutoWaivePolicy) {
|
2013-03-21 05:56:58 -07:00
|
|
|
public: AutoWaivePolicy(JSContext *cx, HandleObject proxy, HandleId id) {};
|
2013-02-25 13:54:18 -08:00
|
|
|
};
|
2013-02-25 13:54:18 -08:00
|
|
|
#endif
|
2013-02-25 13:54:18 -08:00
|
|
|
|
2011-10-04 07:06:54 -07:00
|
|
|
} /* namespace js */
|
2010-05-24 14:33:03 -07:00
|
|
|
|
2010-05-18 19:21:43 -07:00
|
|
|
extern JS_FRIEND_API(JSObject *)
|
2013-06-21 06:12:46 -07:00
|
|
|
js_InitProxyClass(JSContext *cx, JS::HandleObject obj);
|
2010-05-18 19:21:43 -07:00
|
|
|
|
2013-06-19 17:59:46 -07:00
|
|
|
#endif /* jsproxy_h */
|