2012-03-30 21:42:20 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-*/
|
|
|
|
/* vim: set ts=2 sw=2 et tw=79: */
|
|
|
|
/* 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/. */
|
|
|
|
|
2012-07-18 03:36:08 -07:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2012-05-02 21:35:38 -07:00
|
|
|
#include "BindingUtils.h"
|
2012-03-30 21:42:20 -07:00
|
|
|
|
2012-10-09 11:50:05 -07:00
|
|
|
#include "AccessCheck.h"
|
2012-05-22 06:46:20 -07:00
|
|
|
#include "WrapperFactory.h"
|
2012-05-18 01:29:40 -07:00
|
|
|
#include "xpcprivate.h"
|
|
|
|
#include "XPCQuickStubs.h"
|
2012-10-10 12:57:57 -07:00
|
|
|
#include "nsIXPConnect.h"
|
2012-05-18 01:29:40 -07:00
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2012-07-18 03:36:08 -07:00
|
|
|
JSErrorFormatString ErrorFormatString[] = {
|
|
|
|
#define MSG_DEF(_name, _argc, _str) \
|
|
|
|
{ _str, _argc, JSEXN_TYPEERR },
|
|
|
|
#include "mozilla/dom/Errors.msg"
|
|
|
|
#undef MSG_DEF
|
|
|
|
};
|
|
|
|
|
|
|
|
const JSErrorFormatString*
|
|
|
|
GetErrorMessage(void* aUserRef, const char* aLocale,
|
|
|
|
const unsigned aErrorNumber)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aErrorNumber < ArrayLength(ErrorFormatString));
|
|
|
|
return &ErrorFormatString[aErrorNumber];
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ThrowErrorMessage(JSContext* aCx, const ErrNum aErrorNumber, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, aErrorNumber);
|
|
|
|
JS_ReportErrorNumberVA(aCx, GetErrorMessage, NULL,
|
|
|
|
static_cast<const unsigned>(aErrorNumber), ap);
|
|
|
|
va_end(ap);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-05-09 03:00:48 -07:00
|
|
|
bool
|
2012-03-30 21:42:20 -07:00
|
|
|
DefineConstants(JSContext* cx, JSObject* obj, ConstantSpec* cs)
|
|
|
|
{
|
|
|
|
for (; cs->name; ++cs) {
|
|
|
|
JSBool ok =
|
|
|
|
JS_DefineProperty(cx, obj, cs->name, cs->value, NULL, NULL,
|
|
|
|
JSPROP_ENUMERATE | JSPROP_READONLY | JSPROP_PERMANENT);
|
|
|
|
if (!ok) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-23 09:44:48 -07:00
|
|
|
static inline bool
|
|
|
|
Define(JSContext* cx, JSObject* obj, JSFunctionSpec* spec) {
|
|
|
|
return JS_DefineFunctions(cx, obj, spec);
|
|
|
|
}
|
|
|
|
static inline bool
|
|
|
|
Define(JSContext* cx, JSObject* obj, JSPropertySpec* spec) {
|
|
|
|
return JS_DefineProperties(cx, obj, spec);
|
|
|
|
}
|
|
|
|
static inline bool
|
|
|
|
Define(JSContext* cx, JSObject* obj, ConstantSpec* spec) {
|
|
|
|
return DefineConstants(cx, obj, spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
bool
|
|
|
|
DefinePrefable(JSContext* cx, JSObject* obj, Prefable<T>* props)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(props);
|
|
|
|
MOZ_ASSERT(props->specs);
|
|
|
|
do {
|
|
|
|
// Define if enabled
|
|
|
|
if (props->enabled) {
|
|
|
|
if (!Define(cx, obj, props->specs)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while ((++props)->specs);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-02 06:28:17 -07:00
|
|
|
// We should use JSFunction objects for interface objects, but we need a custom
|
|
|
|
// hasInstance hook because we have new interface objects on prototype chains of
|
|
|
|
// old (XPConnect-based) bindings. Because Function.prototype.toString throws if
|
|
|
|
// passed a non-Function object we also need to provide our own toString method
|
|
|
|
// for interface objects.
|
|
|
|
|
|
|
|
enum {
|
|
|
|
TOSTRING_CLASS_RESERVED_SLOT = 0,
|
|
|
|
TOSTRING_NAME_RESERVED_SLOT = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
JSBool
|
|
|
|
InterfaceObjectToString(JSContext* cx, unsigned argc, JS::Value *vp)
|
|
|
|
{
|
|
|
|
JSObject* callee = JSVAL_TO_OBJECT(JS_CALLEE(cx, vp));
|
|
|
|
|
|
|
|
JSObject* obj = JS_THIS_OBJECT(cx, vp);
|
|
|
|
if (!obj) {
|
|
|
|
JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL, JSMSG_CANT_CONVERT_TO,
|
|
|
|
"null", "object");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval v = js::GetFunctionNativeReserved(callee, TOSTRING_CLASS_RESERVED_SLOT);
|
|
|
|
JSClass* clasp = static_cast<JSClass*>(JSVAL_TO_PRIVATE(v));
|
|
|
|
|
|
|
|
v = js::GetFunctionNativeReserved(callee, TOSTRING_NAME_RESERVED_SLOT);
|
|
|
|
JSString* jsname = static_cast<JSString*>(JSVAL_TO_STRING(v));
|
|
|
|
size_t length;
|
|
|
|
const jschar* name = JS_GetInternedStringCharsAndLength(jsname, &length);
|
|
|
|
|
|
|
|
if (js::GetObjectJSClass(obj) != clasp) {
|
|
|
|
JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL, JSMSG_INCOMPATIBLE_PROTO,
|
|
|
|
NS_ConvertUTF16toUTF8(name).get(), "toString",
|
|
|
|
"object");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsString str;
|
|
|
|
str.AppendLiteral("function ");
|
|
|
|
str.Append(name, length);
|
|
|
|
str.AppendLiteral("() {");
|
|
|
|
str.Append('\n');
|
|
|
|
str.AppendLiteral(" [native code]");
|
|
|
|
str.Append('\n');
|
|
|
|
str.AppendLiteral("}");
|
|
|
|
|
|
|
|
return xpc::NonVoidStringToJsval(cx, str, vp);
|
|
|
|
}
|
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
static JSObject*
|
2012-04-23 07:10:56 -07:00
|
|
|
CreateInterfaceObject(JSContext* cx, JSObject* global, JSObject* receiver,
|
2012-05-02 21:35:38 -07:00
|
|
|
JSClass* constructorClass, JSNative constructorNative,
|
|
|
|
unsigned ctorNargs, JSObject* proto,
|
2012-10-09 11:50:05 -07:00
|
|
|
const NativeProperties* properties,
|
|
|
|
const NativeProperties* chromeOnlyProperties,
|
2012-03-30 21:42:20 -07:00
|
|
|
const char* name)
|
|
|
|
{
|
2012-05-02 21:35:38 -07:00
|
|
|
JSObject* constructor;
|
|
|
|
if (constructorClass) {
|
|
|
|
JSObject* functionProto = JS_GetFunctionPrototype(cx, global);
|
|
|
|
if (!functionProto) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
constructor = JS_NewObject(cx, constructorClass, functionProto, global);
|
|
|
|
} else {
|
|
|
|
MOZ_ASSERT(constructorNative);
|
|
|
|
JSFunction* fun = JS_NewFunction(cx, constructorNative, ctorNargs,
|
|
|
|
JSFUN_CONSTRUCTOR, global, name);
|
|
|
|
if (!fun) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
constructor = JS_GetFunctionObject(fun);
|
2012-03-30 21:42:20 -07:00
|
|
|
}
|
|
|
|
if (!constructor) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-05-02 06:28:17 -07:00
|
|
|
if (constructorClass) {
|
|
|
|
JSFunction* toString = js::DefineFunctionWithReserved(cx, constructor,
|
|
|
|
"toString",
|
|
|
|
InterfaceObjectToString,
|
|
|
|
0, 0);
|
|
|
|
if (!toString) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject* toStringObj = JS_GetFunctionObject(toString);
|
|
|
|
js::SetFunctionNativeReserved(toStringObj, TOSTRING_CLASS_RESERVED_SLOT,
|
|
|
|
PRIVATE_TO_JSVAL(constructorClass));
|
|
|
|
|
|
|
|
JSString *str = ::JS_InternString(cx, name);
|
|
|
|
if (!str) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
js::SetFunctionNativeReserved(toStringObj, TOSTRING_NAME_RESERVED_SLOT,
|
|
|
|
STRING_TO_JSVAL(str));
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:50:05 -07:00
|
|
|
if (properties) {
|
|
|
|
if (properties->staticMethods &&
|
|
|
|
!DefinePrefable(cx, constructor, properties->staticMethods)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (properties->constants &&
|
|
|
|
!DefinePrefable(cx, constructor, properties->constants)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chromeOnlyProperties) {
|
|
|
|
if (chromeOnlyProperties->staticMethods &&
|
|
|
|
!DefinePrefable(cx, constructor, chromeOnlyProperties->staticMethods)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chromeOnlyProperties->constants &&
|
|
|
|
!DefinePrefable(cx, constructor, chromeOnlyProperties->constants)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2012-03-30 21:42:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (proto && !JS_LinkConstructorAndPrototype(cx, constructor, proto)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-04-27 00:57:09 -07:00
|
|
|
JSBool alreadyDefined;
|
|
|
|
if (!JS_AlreadyHasOwnProperty(cx, receiver, name, &alreadyDefined)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
// This is Enumerable: False per spec.
|
2012-04-27 00:57:09 -07:00
|
|
|
if (!alreadyDefined &&
|
|
|
|
!JS_DefineProperty(cx, receiver, name, OBJECT_TO_JSVAL(constructor), NULL,
|
2012-03-30 21:42:20 -07:00
|
|
|
NULL, 0)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return constructor;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSObject*
|
|
|
|
CreateInterfacePrototypeObject(JSContext* cx, JSObject* global,
|
|
|
|
JSObject* parentProto, JSClass* protoClass,
|
2012-10-09 11:50:05 -07:00
|
|
|
const NativeProperties* properties,
|
|
|
|
const NativeProperties* chromeOnlyProperties)
|
2012-03-30 21:42:20 -07:00
|
|
|
{
|
2012-04-18 09:11:55 -07:00
|
|
|
JSObject* ourProto = JS_NewObjectWithUniqueType(cx, protoClass, parentProto,
|
|
|
|
global);
|
2012-03-30 21:42:20 -07:00
|
|
|
if (!ourProto) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:50:05 -07:00
|
|
|
if (properties) {
|
|
|
|
if (properties->methods &&
|
|
|
|
!DefinePrefable(cx, ourProto, properties->methods)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2012-03-30 21:42:20 -07:00
|
|
|
|
2012-10-09 11:50:05 -07:00
|
|
|
if (properties->attributes &&
|
|
|
|
!DefinePrefable(cx, ourProto, properties->attributes)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (properties->constants &&
|
|
|
|
!DefinePrefable(cx, ourProto, properties->constants)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2012-03-30 21:42:20 -07:00
|
|
|
}
|
|
|
|
|
2012-10-09 11:50:05 -07:00
|
|
|
if (chromeOnlyProperties) {
|
|
|
|
if (chromeOnlyProperties->methods &&
|
|
|
|
!DefinePrefable(cx, ourProto, chromeOnlyProperties->methods)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chromeOnlyProperties->attributes &&
|
|
|
|
!DefinePrefable(cx, ourProto, chromeOnlyProperties->attributes)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chromeOnlyProperties->constants &&
|
|
|
|
!DefinePrefable(cx, ourProto, chromeOnlyProperties->constants)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2012-03-30 21:42:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return ourProto;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject*
|
2012-04-23 07:10:56 -07:00
|
|
|
CreateInterfaceObjects(JSContext* cx, JSObject* global, JSObject *receiver,
|
|
|
|
JSObject* protoProto, JSClass* protoClass,
|
2012-05-02 21:35:38 -07:00
|
|
|
JSClass* constructorClass, JSNative constructor,
|
2012-05-22 06:46:20 -07:00
|
|
|
unsigned ctorNargs, const DOMClass* domClass,
|
2012-10-09 11:50:05 -07:00
|
|
|
const NativeProperties* properties,
|
|
|
|
const NativeProperties* chromeOnlyProperties,
|
|
|
|
const char* name)
|
2012-03-30 21:42:20 -07:00
|
|
|
{
|
2012-05-02 21:35:38 -07:00
|
|
|
MOZ_ASSERT(protoClass || constructorClass || constructor,
|
|
|
|
"Need at least one class or a constructor!");
|
2012-10-09 11:50:05 -07:00
|
|
|
MOZ_ASSERT(!((properties &&
|
|
|
|
(properties->methods || properties->attributes)) ||
|
|
|
|
(chromeOnlyProperties &&
|
|
|
|
(chromeOnlyProperties->methods ||
|
|
|
|
chromeOnlyProperties->attributes))) || protoClass,
|
2012-03-30 21:42:20 -07:00
|
|
|
"Methods or properties but no protoClass!");
|
2012-10-09 11:50:05 -07:00
|
|
|
MOZ_ASSERT(!((properties && properties->staticMethods) ||
|
|
|
|
(chromeOnlyProperties && chromeOnlyProperties->staticMethods)) ||
|
|
|
|
constructorClass || constructor,
|
2012-05-02 21:35:38 -07:00
|
|
|
"Static methods but no constructorClass or constructor!");
|
|
|
|
MOZ_ASSERT(bool(name) == bool(constructorClass || constructor),
|
2012-03-30 21:42:20 -07:00
|
|
|
"Must have name precisely when we have an interface object");
|
2012-05-02 21:35:38 -07:00
|
|
|
MOZ_ASSERT(!constructorClass || !constructor);
|
2012-03-30 21:42:20 -07:00
|
|
|
|
|
|
|
JSObject* proto;
|
|
|
|
if (protoClass) {
|
2012-04-23 07:10:56 -07:00
|
|
|
proto = CreateInterfacePrototypeObject(cx, global, protoProto, protoClass,
|
2012-10-09 11:50:05 -07:00
|
|
|
properties, chromeOnlyProperties);
|
2012-03-30 21:42:20 -07:00
|
|
|
if (!proto) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-08-07 22:26:18 -07:00
|
|
|
|
|
|
|
js::SetReservedSlot(proto, DOM_PROTO_INSTANCE_CLASS_SLOT,
|
2012-05-22 06:46:20 -07:00
|
|
|
JS::PrivateValue(const_cast<DOMClass*>(domClass)));
|
2012-03-30 21:42:20 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
proto = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject* interface;
|
2012-05-02 21:35:38 -07:00
|
|
|
if (constructorClass || constructor) {
|
2012-04-23 07:10:56 -07:00
|
|
|
interface = CreateInterfaceObject(cx, global, receiver, constructorClass,
|
2012-05-02 21:35:38 -07:00
|
|
|
constructor, ctorNargs, proto,
|
2012-10-09 11:50:05 -07:00
|
|
|
properties, chromeOnlyProperties, name);
|
2012-03-30 21:42:20 -07:00
|
|
|
if (!interface) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return protoClass ? proto : interface;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
NativeInterface2JSObjectAndThrowIfFailed(XPCLazyCallContext& aLccx,
|
|
|
|
JSContext* aCx,
|
|
|
|
JS::Value* aRetval,
|
|
|
|
xpcObjectHelper& aHelper,
|
|
|
|
const nsIID* aIID,
|
|
|
|
bool aAllowNativeWrapper)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
if (!XPCConvert::NativeInterface2JSObject(aLccx, aRetval, NULL, aHelper, aIID,
|
|
|
|
NULL, aAllowNativeWrapper, &rv)) {
|
|
|
|
// I can't tell if NativeInterface2JSObject throws JS exceptions
|
|
|
|
// or not. This is a sloppy stab at the right semantics; the
|
|
|
|
// method really ought to be fixed to behave consistently.
|
|
|
|
if (!JS_IsExceptionPending(aCx)) {
|
|
|
|
Throw<true>(aCx, NS_FAILED(rv) ? rv : NS_ERROR_UNEXPECTED);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
DoHandleNewBindingWrappingFailure(JSContext* cx, JSObject* scope,
|
|
|
|
nsISupports* value, JS::Value* vp)
|
|
|
|
{
|
|
|
|
if (JS_IsExceptionPending(cx)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
XPCLazyCallContext lccx(JS_CALLER, cx, scope);
|
|
|
|
|
|
|
|
if (value) {
|
|
|
|
xpcObjectHelper helper(value);
|
|
|
|
return NativeInterface2JSObjectAndThrowIfFailed(lccx, cx, vp, helper, NULL,
|
|
|
|
true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Throw<true>(cx, NS_ERROR_XPC_BAD_CONVERT_JS);
|
|
|
|
}
|
|
|
|
|
2012-08-07 22:26:18 -07:00
|
|
|
// Can only be called with the immediate prototype of the instance object. Can
|
|
|
|
// only be called on the prototype of an object known to be a DOM instance.
|
|
|
|
JSBool
|
|
|
|
InstanceClassHasProtoAtDepth(JSHandleObject protoObject, uint32_t protoID,
|
|
|
|
uint32_t depth)
|
|
|
|
{
|
2012-05-22 06:46:20 -07:00
|
|
|
const DOMClass* domClass = static_cast<DOMClass*>(
|
2012-08-07 22:26:18 -07:00
|
|
|
js::GetReservedSlot(protoObject, DOM_PROTO_INSTANCE_CLASS_SLOT).toPrivate());
|
2012-08-07 22:57:07 -07:00
|
|
|
return (uint32_t)domClass->mInterfaceChain[depth] == protoID;
|
2012-08-07 22:26:18 -07:00
|
|
|
}
|
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
// Only set allowNativeWrapper to false if you really know you need it, if in
|
|
|
|
// doubt use true. Setting it to false disables security wrappers.
|
|
|
|
bool
|
|
|
|
XPCOMObjectToJsval(JSContext* cx, JSObject* scope, xpcObjectHelper &helper,
|
|
|
|
const nsIID* iid, bool allowNativeWrapper, JS::Value* rval)
|
|
|
|
{
|
|
|
|
XPCLazyCallContext lccx(JS_CALLER, cx, scope);
|
|
|
|
|
|
|
|
if (!NativeInterface2JSObjectAndThrowIfFailed(lccx, cx, rval, helper, iid,
|
|
|
|
allowNativeWrapper)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
JSObject* jsobj = JSVAL_TO_OBJECT(*rval);
|
|
|
|
if (jsobj && !js::GetObjectParent(jsobj))
|
|
|
|
NS_ASSERTION(js::GetObjectClass(jsobj)->flags & JSCLASS_IS_GLOBAL,
|
|
|
|
"Why did we recreate this wrapper?");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSBool
|
|
|
|
QueryInterface(JSContext* cx, unsigned argc, JS::Value* vp)
|
|
|
|
{
|
|
|
|
JS::Value thisv = JS_THIS(cx, vp);
|
|
|
|
if (thisv == JSVAL_NULL)
|
|
|
|
return false;
|
|
|
|
|
2012-06-12 06:44:21 -07:00
|
|
|
// Get the object. It might be a security wrapper, in which case we do a checked
|
|
|
|
// unwrap.
|
|
|
|
JSObject* origObj = JSVAL_TO_OBJECT(thisv);
|
|
|
|
JSObject* obj = js::UnwrapObjectChecked(cx, origObj);
|
|
|
|
if (!obj)
|
|
|
|
return false;
|
|
|
|
|
2012-05-22 06:46:20 -07:00
|
|
|
nsISupports* native;
|
|
|
|
if (!UnwrapDOMObjectToISupports(obj, native)) {
|
2012-03-30 21:42:20 -07:00
|
|
|
return Throw<true>(cx, NS_ERROR_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc < 1) {
|
|
|
|
return Throw<true>(cx, NS_ERROR_XPC_NOT_ENOUGH_ARGS);
|
|
|
|
}
|
|
|
|
|
|
|
|
JS::Value* argv = JS_ARGV(cx, vp);
|
|
|
|
if (!argv[0].isObject()) {
|
|
|
|
return Throw<true>(cx, NS_ERROR_XPC_BAD_CONVERT_JS);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIJSIID* iid;
|
|
|
|
xpc_qsSelfRef iidRef;
|
|
|
|
if (NS_FAILED(xpc_qsUnwrapArg<nsIJSIID>(cx, argv[0], &iid, &iidRef.ptr,
|
|
|
|
&argv[0]))) {
|
|
|
|
return Throw<true>(cx, NS_ERROR_XPC_BAD_CONVERT_JS);
|
|
|
|
}
|
|
|
|
MOZ_ASSERT(iid);
|
|
|
|
|
|
|
|
if (iid->GetID()->Equals(NS_GET_IID(nsIClassInfo))) {
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIClassInfo> ci = do_QueryInterface(native, &rv);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return Throw<true>(cx, rv);
|
|
|
|
}
|
|
|
|
|
2012-06-12 06:44:21 -07:00
|
|
|
return WrapObject(cx, origObj, ci, &NS_GET_IID(nsIClassInfo), vp);
|
2012-03-30 21:42:20 -07:00
|
|
|
}
|
2012-06-12 06:44:21 -07:00
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
// Lie, otherwise we need to check classinfo or QI
|
|
|
|
*vp = thisv;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-02 21:35:38 -07:00
|
|
|
JSBool
|
|
|
|
ThrowingConstructor(JSContext* cx, unsigned argc, JS::Value* vp)
|
|
|
|
{
|
2012-08-04 00:44:00 -07:00
|
|
|
return ThrowErrorMessage(cx, MSG_ILLEGAL_CONSTRUCTOR);
|
2012-05-02 21:35:38 -07:00
|
|
|
}
|
|
|
|
|
2012-10-09 11:50:05 -07:00
|
|
|
static bool
|
2012-07-18 04:52:07 -07:00
|
|
|
XrayResolveProperty(JSContext* cx, JSObject* wrapper, jsid id,
|
|
|
|
JSPropertyDescriptor* desc,
|
2012-10-09 11:50:05 -07:00
|
|
|
const NativeProperties* nativeProperties)
|
2012-07-18 04:52:07 -07:00
|
|
|
{
|
2012-10-09 11:50:05 -07:00
|
|
|
if (nativeProperties->methods) {
|
|
|
|
Prefable<JSFunctionSpec>* method;
|
|
|
|
for (method = nativeProperties->methods; method->specs; ++method) {
|
|
|
|
if (method->enabled) {
|
|
|
|
// Set i to be the index into our full list of ids/specs that we're
|
|
|
|
// looking at now.
|
|
|
|
size_t i = method->specs - nativeProperties->methodsSpecs;
|
|
|
|
for ( ; nativeProperties->methodIds[i] != JSID_VOID; ++i) {
|
|
|
|
if (id == nativeProperties->methodIds[i]) {
|
|
|
|
JSFunctionSpec& methodSpec = nativeProperties->methodsSpecs[i];
|
|
|
|
JSFunction *fun = JS_NewFunctionById(cx, methodSpec.call.op,
|
|
|
|
methodSpec.nargs, 0,
|
|
|
|
wrapper, id);
|
|
|
|
if (!fun) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
SET_JITINFO(fun, methodSpec.call.info);
|
|
|
|
JSObject *funobj = JS_GetFunctionObject(fun);
|
|
|
|
desc->value.setObject(*funobj);
|
|
|
|
desc->attrs = methodSpec.flags;
|
|
|
|
desc->obj = wrapper;
|
|
|
|
desc->setter = nullptr;
|
|
|
|
desc->getter = nullptr;
|
|
|
|
return true;
|
2012-05-22 06:46:20 -07:00
|
|
|
}
|
2012-07-18 04:52:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:50:05 -07:00
|
|
|
if (nativeProperties->attributes) {
|
|
|
|
Prefable<JSPropertySpec>* attr;
|
|
|
|
for (attr = nativeProperties->attributes; attr->specs; ++attr) {
|
|
|
|
if (attr->enabled) {
|
|
|
|
// Set i to be the index into our full list of ids/specs that we're
|
|
|
|
// looking at now.
|
|
|
|
size_t i = attr->specs - nativeProperties->attributeSpecs;
|
|
|
|
for ( ; nativeProperties->attributeIds[i] != JSID_VOID; ++i) {
|
|
|
|
if (id == nativeProperties->attributeIds[i]) {
|
|
|
|
JSPropertySpec& attrSpec = nativeProperties->attributeSpecs[i];
|
|
|
|
// Because of centralization, we need to make sure we fault in the
|
|
|
|
// JitInfos as well. At present, until the JSAPI changes, the easiest
|
|
|
|
// way to do this is wrap them up as functions ourselves.
|
|
|
|
desc->attrs = attrSpec.flags & ~JSPROP_NATIVE_ACCESSORS;
|
|
|
|
// They all have getters, so we can just make it.
|
|
|
|
JSObject *global = JS_GetGlobalForObject(cx, wrapper);
|
|
|
|
JSFunction *fun = JS_NewFunction(cx, (JSNative)attrSpec.getter.op,
|
|
|
|
0, 0, global, nullptr);
|
2012-08-07 22:26:19 -07:00
|
|
|
if (!fun)
|
|
|
|
return false;
|
2012-10-09 11:50:05 -07:00
|
|
|
SET_JITINFO(fun, attrSpec.getter.info);
|
|
|
|
JSObject *funobj = JS_GetFunctionObject(fun);
|
|
|
|
desc->getter = js::CastAsJSPropertyOp(funobj);
|
|
|
|
desc->attrs |= JSPROP_GETTER;
|
|
|
|
if (attrSpec.setter.op) {
|
|
|
|
// We have a setter! Make it.
|
|
|
|
fun = JS_NewFunction(cx, (JSNative)attrSpec.setter.op, 1, 0,
|
|
|
|
global, nullptr);
|
|
|
|
if (!fun)
|
|
|
|
return false;
|
|
|
|
SET_JITINFO(fun, attrSpec.setter.info);
|
|
|
|
funobj = JS_GetFunctionObject(fun);
|
|
|
|
desc->setter = js::CastAsJSStrictPropertyOp(funobj);
|
|
|
|
desc->attrs |= JSPROP_SETTER;
|
|
|
|
} else {
|
|
|
|
desc->setter = nullptr;
|
|
|
|
}
|
|
|
|
desc->obj = wrapper;
|
|
|
|
return true;
|
2012-08-07 22:26:19 -07:00
|
|
|
}
|
2012-07-18 04:52:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:50:05 -07:00
|
|
|
if (nativeProperties->constants) {
|
|
|
|
Prefable<ConstantSpec>* constant;
|
|
|
|
for (constant = nativeProperties->constants; constant->specs; ++constant) {
|
|
|
|
if (constant->enabled) {
|
|
|
|
// Set i to be the index into our full list of ids/specs that we're
|
|
|
|
// looking at now.
|
|
|
|
size_t i = constant->specs - nativeProperties->constantSpecs;
|
|
|
|
for ( ; nativeProperties->constantIds[i] != JSID_VOID; ++i) {
|
|
|
|
if (id == nativeProperties->constantIds[i]) {
|
|
|
|
desc->attrs = JSPROP_ENUMERATE | JSPROP_READONLY | JSPROP_PERMANENT;
|
|
|
|
desc->obj = wrapper;
|
|
|
|
desc->value = nativeProperties->constantSpecs[i].value;
|
|
|
|
return true;
|
|
|
|
}
|
2012-07-18 04:52:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:50:05 -07:00
|
|
|
bool
|
|
|
|
XrayResolveProperty(JSContext* cx, JSObject* wrapper, jsid id,
|
|
|
|
JSPropertyDescriptor* desc,
|
|
|
|
const NativeProperties* nativeProperties,
|
|
|
|
const NativeProperties* chromeOnlyNativeProperties)
|
|
|
|
{
|
|
|
|
if (nativeProperties &&
|
|
|
|
!XrayResolveProperty(cx, wrapper, id, desc, nativeProperties)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!desc->obj &&
|
|
|
|
chromeOnlyNativeProperties &&
|
|
|
|
xpc::AccessCheck::isChrome(js::GetObjectCompartment(wrapper)) &&
|
|
|
|
!XrayResolveProperty(cx, wrapper, id, desc, chromeOnlyNativeProperties)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-18 04:52:07 -07:00
|
|
|
bool
|
|
|
|
XrayEnumerateProperties(JS::AutoIdVector& props,
|
2012-10-09 11:50:05 -07:00
|
|
|
const NativeProperties* nativeProperties)
|
2012-07-18 04:52:07 -07:00
|
|
|
{
|
2012-10-09 11:50:05 -07:00
|
|
|
if (nativeProperties->methods) {
|
|
|
|
Prefable<JSFunctionSpec>* method;
|
|
|
|
for (method = nativeProperties->methods; method->specs; ++method) {
|
|
|
|
if (method->enabled) {
|
|
|
|
// Set i to be the index into our full list of ids/specs that we're
|
|
|
|
// looking at now.
|
|
|
|
size_t i = method->specs - nativeProperties->methodsSpecs;
|
|
|
|
for ( ; nativeProperties->methodIds[i] != JSID_VOID; ++i) {
|
|
|
|
if ((nativeProperties->methodsSpecs[i].flags & JSPROP_ENUMERATE) &&
|
|
|
|
!props.append(nativeProperties->methodIds[i])) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-18 04:52:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:50:05 -07:00
|
|
|
if (nativeProperties->attributes) {
|
|
|
|
Prefable<JSPropertySpec>* attr;
|
|
|
|
for (attr = nativeProperties->attributes; attr->specs; ++attr) {
|
|
|
|
if (attr->enabled) {
|
|
|
|
// Set i to be the index into our full list of ids/specs that we're
|
|
|
|
// looking at now.
|
|
|
|
size_t i = attr->specs - nativeProperties->attributeSpecs;
|
|
|
|
for ( ; nativeProperties->attributeIds[i] != JSID_VOID; ++i) {
|
|
|
|
if ((nativeProperties->attributeSpecs[i].flags & JSPROP_ENUMERATE) &&
|
|
|
|
!props.append(nativeProperties->attributeIds[i])) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-18 04:52:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:50:05 -07:00
|
|
|
if (nativeProperties->constants) {
|
|
|
|
Prefable<ConstantSpec>* constant;
|
|
|
|
for (constant = nativeProperties->constants; constant->specs; ++constant) {
|
|
|
|
if (constant->enabled) {
|
|
|
|
// Set i to be the index into our full list of ids/specs that we're
|
|
|
|
// looking at now.
|
|
|
|
size_t i = constant->specs - nativeProperties->constantSpecs;
|
|
|
|
for ( ; nativeProperties->constantIds[i] != JSID_VOID; ++i) {
|
|
|
|
if (!props.append(nativeProperties->constantIds[i])) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-18 04:52:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:50:05 -07:00
|
|
|
bool
|
|
|
|
XrayEnumerateProperties(JSObject* wrapper,
|
|
|
|
JS::AutoIdVector& props,
|
|
|
|
const NativeProperties* nativeProperties,
|
|
|
|
const NativeProperties* chromeOnlyNativeProperties)
|
|
|
|
{
|
|
|
|
if (nativeProperties &&
|
|
|
|
!XrayEnumerateProperties(props, nativeProperties)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chromeOnlyNativeProperties &&
|
|
|
|
xpc::AccessCheck::isChrome(js::GetObjectCompartment(wrapper)) &&
|
|
|
|
!XrayEnumerateProperties(props, chromeOnlyNativeProperties)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-22 06:46:20 -07:00
|
|
|
bool
|
|
|
|
GetPropertyOnPrototype(JSContext* cx, JSObject* proxy, jsid id, bool* found,
|
|
|
|
JS::Value* vp)
|
|
|
|
{
|
2012-09-03 16:42:10 -07:00
|
|
|
JSObject* proto;
|
|
|
|
if (!js::GetObjectProto(cx, proxy, &proto)) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-05-22 06:46:20 -07:00
|
|
|
if (!proto) {
|
|
|
|
*found = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSBool hasProp;
|
|
|
|
if (!JS_HasPropertyById(cx, proto, id, &hasProp)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*found = hasProp;
|
|
|
|
if (!hasProp || !vp) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return JS_ForwardGetPropertyTo(cx, proto, id, proxy, vp);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
HasPropertyOnPrototype(JSContext* cx, JSObject* proxy, DOMProxyHandler* handler,
|
|
|
|
jsid id)
|
|
|
|
{
|
2012-08-21 18:42:53 -07:00
|
|
|
Maybe<JSAutoCompartment> ac;
|
2012-05-22 06:46:20 -07:00
|
|
|
if (xpc::WrapperFactory::IsXrayWrapper(proxy)) {
|
|
|
|
proxy = js::UnwrapObject(proxy);
|
2012-08-21 18:42:53 -07:00
|
|
|
ac.construct(cx, proxy);
|
2012-05-22 06:46:20 -07:00
|
|
|
}
|
|
|
|
MOZ_ASSERT(js::IsProxy(proxy) && js::GetProxyHandler(proxy) == handler);
|
|
|
|
|
|
|
|
bool found;
|
|
|
|
// We ignore an error from GetPropertyOnPrototype.
|
|
|
|
return !GetPropertyOnPrototype(cx, proxy, id, &found, NULL) || found;
|
|
|
|
}
|
|
|
|
|
2012-10-10 12:57:57 -07:00
|
|
|
bool
|
|
|
|
WrapCallbackInterface(JSContext *cx, JSObject *scope, nsISupports* callback,
|
|
|
|
JS::Value* vp)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIXPConnectWrappedJS> wrappedJS = do_QueryInterface(callback);
|
|
|
|
MOZ_ASSERT(wrappedJS, "How can we not have an XPCWrappedJS here?");
|
|
|
|
JSObject* obj;
|
|
|
|
DebugOnly<nsresult> rv = wrappedJS->GetJSObject(&obj);
|
|
|
|
MOZ_ASSERT(NS_SUCCEEDED(rv) && obj, "What are we wrapping?");
|
|
|
|
*vp = JS::ObjectValue(*obj);
|
|
|
|
return JS_WrapValue(cx, vp);
|
|
|
|
}
|
|
|
|
|
2012-10-05 09:59:23 -07:00
|
|
|
JSObject*
|
|
|
|
GetXrayExpandoChain(JSObject* obj)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(IsDOMObject(obj));
|
|
|
|
JS::Value v = IsDOMProxy(obj) ? js::GetProxyExtra(obj, JSPROXYSLOT_XRAY_EXPANDO)
|
|
|
|
: js::GetReservedSlot(obj, DOM_XRAY_EXPANDO_SLOT);
|
|
|
|
return v.isUndefined() ? nullptr : &v.toObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SetXrayExpandoChain(JSObject* obj, JSObject* chain)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(IsDOMObject(obj));
|
|
|
|
JS::Value v = chain ? JS::ObjectValue(*chain) : JSVAL_VOID;
|
|
|
|
if (IsDOMProxy(obj)) {
|
|
|
|
js::SetProxyExtra(obj, JSPROXYSLOT_XRAY_EXPANDO, v);
|
|
|
|
} else {
|
|
|
|
js::SetReservedSlot(obj, DOM_XRAY_EXPANDO_SLOT, v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|