mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Missing files for bug 574924.
This commit is contained in:
parent
38966949eb
commit
eb1fce2bf5
89
js/src/xpconnect/src/wrappers/CrossOriginWrapper.cpp
Normal file
89
js/src/xpconnect/src/wrappers/CrossOriginWrapper.cpp
Normal file
@ -0,0 +1,89 @@
|
||||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
* vim: set ts=4 sw=4 et tw=99 ft=cpp:
|
||||
*
|
||||
* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is mozilla.org code, released
|
||||
* June 24, 2010.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* The Mozilla Foundation
|
||||
*
|
||||
* Contributor(s):
|
||||
* Andreas Gal <gal@mozilla.com>
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
||||
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#include "CrossOriginWrapper.h"
|
||||
|
||||
#include "nsJSPrincipals.h"
|
||||
|
||||
#include "XPCWrapper.h"
|
||||
|
||||
namespace xpc {
|
||||
|
||||
CrossOriginWrapper::CrossOriginWrapper(uintN flags) : JSCrossCompartmentWrapper(flags)
|
||||
{
|
||||
}
|
||||
|
||||
CrossOriginWrapper::~CrossOriginWrapper()
|
||||
{
|
||||
}
|
||||
|
||||
static nsIPrincipal *
|
||||
GetCompartmentPrincipal(JSCompartment *compartment)
|
||||
{
|
||||
return static_cast<nsJSPrincipals *>(compartment->principals)->nsIPrincipalPtr;
|
||||
}
|
||||
|
||||
bool
|
||||
CrossOriginWrapper::enter(JSContext *cx, JSObject *wrapper, jsid id, bool set)
|
||||
{
|
||||
nsIScriptSecurityManager *ssm = XPCWrapper::GetSecurityManager();
|
||||
if (!ssm) {
|
||||
return true;
|
||||
}
|
||||
JSStackFrame *fp = NULL;
|
||||
nsIPrincipal *principal = GetCompartmentPrincipal(wrappedObject(wrapper)->getCompartment(cx));
|
||||
nsresult rv = ssm->PushContextPrincipal(cx, JS_FrameIterator(cx, &fp), principal);
|
||||
if (NS_FAILED(rv)) {
|
||||
NS_WARNING("Not allowing call because we're out of memory");
|
||||
JS_ReportOutOfMemory(cx);
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
CrossOriginWrapper::leave(JSContext *cx, JSObject *wrapper)
|
||||
{
|
||||
nsIScriptSecurityManager *ssm = XPCWrapper::GetSecurityManager();
|
||||
if (ssm) {
|
||||
ssm->PopContextPrincipal(cx);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
61
js/src/xpconnect/src/wrappers/CrossOriginWrapper.h
Normal file
61
js/src/xpconnect/src/wrappers/CrossOriginWrapper.h
Normal file
@ -0,0 +1,61 @@
|
||||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
* vim: set ts=4 sw=4 et tw=99 ft=cpp:
|
||||
*
|
||||
* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is mozilla.org code, released
|
||||
* June 24, 2010.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* The Mozilla Foundation
|
||||
*
|
||||
* Contributor(s):
|
||||
* Andreas Gal <gal@mozilla.com>
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
||||
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#ifndef __CrossOriginWrapper_h__
|
||||
#define __CrossOriginWrapper_h__
|
||||
|
||||
#include "jsapi.h"
|
||||
#include "jswrapper.h"
|
||||
|
||||
namespace xpc {
|
||||
|
||||
class CrossOriginWrapper : public JSCrossCompartmentWrapper {
|
||||
public:
|
||||
CrossOriginWrapper(uintN flags);
|
||||
virtual ~CrossOriginWrapper();
|
||||
|
||||
virtual bool enter(JSContext *cx, JSObject *wrapper, jsid id, bool set);
|
||||
virtual void leave(JSContext *cx, JSObject *wrapper);
|
||||
|
||||
static CrossOriginWrapper singleton;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
155
js/src/xpconnect/src/wrappers/FilteringWrapper.cpp
Normal file
155
js/src/xpconnect/src/wrappers/FilteringWrapper.cpp
Normal file
@ -0,0 +1,155 @@
|
||||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
* vim: set ts=4 sw=4 et tw=99 ft=cpp:
|
||||
*
|
||||
* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is mozilla.org code, released
|
||||
* June 24, 2010.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* The Mozilla Foundation
|
||||
*
|
||||
* Contributor(s):
|
||||
* Andreas Gal <gal@mozilla.com>
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
||||
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#include "FilteringWrapper.h"
|
||||
#include "AccessCheck.h"
|
||||
#include "CrossOriginWrapper.h"
|
||||
#include "XrayWrapper.h"
|
||||
|
||||
#include "XPCWrapper.h"
|
||||
|
||||
using namespace js;
|
||||
|
||||
namespace xpc {
|
||||
|
||||
template <typename Base, typename Policy>
|
||||
FilteringWrapper<Base, Policy>::FilteringWrapper(uintN flags) : Base(flags)
|
||||
{
|
||||
}
|
||||
|
||||
template <typename Base, typename Policy>
|
||||
FilteringWrapper<Base, Policy>::~FilteringWrapper()
|
||||
{
|
||||
}
|
||||
|
||||
typedef JSWrapper::Permission Permission;
|
||||
|
||||
static const Permission PermitObjectAccess = JSWrapper::PermitObjectAccess;
|
||||
static const Permission PermitPropertyAccess = JSWrapper::PermitPropertyAccess;
|
||||
static const Permission DenyAccess = JSWrapper::DenyAccess;
|
||||
|
||||
template <typename Policy>
|
||||
static bool
|
||||
Filter(JSContext *cx, JSObject *wrapper, AutoValueVector &props)
|
||||
{
|
||||
size_t w = 0;
|
||||
for (size_t n = 0; n < props.length(); ++n) {
|
||||
jsid id = props[n];
|
||||
Permission perm;
|
||||
if (perm != PermitObjectAccess && !Policy::check(cx, wrapper, id, false, perm))
|
||||
return false; // Error
|
||||
if (perm != DenyAccess) {
|
||||
props[w++] = id;
|
||||
}
|
||||
}
|
||||
props.resize(w);
|
||||
return true;
|
||||
}
|
||||
|
||||
template <typename Policy>
|
||||
static bool
|
||||
CheckAndReport(JSContext *cx, JSObject *wrapper, jsid id, bool set, Permission &perm)
|
||||
{
|
||||
if (!Policy::check(cx, wrapper, id, set, perm)) {
|
||||
return false;
|
||||
}
|
||||
if (perm == DenyAccess) {
|
||||
AccessCheck::deny(cx, id);
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
template <typename Base, typename Policy>
|
||||
bool
|
||||
FilteringWrapper<Base, Policy>::getOwnPropertyNames(JSContext *cx, JSObject *wrapper, AutoValueVector &props)
|
||||
{
|
||||
return Base::getOwnPropertyNames(cx, wrapper, props) &&
|
||||
Filter<Policy>(cx, wrapper, props);
|
||||
}
|
||||
|
||||
template <typename Base, typename Policy>
|
||||
bool
|
||||
FilteringWrapper<Base, Policy>::enumerate(JSContext *cx, JSObject *wrapper, AutoValueVector &props)
|
||||
{
|
||||
return Base::enumerate(cx, wrapper, props) &&
|
||||
Filter<Policy>(cx, wrapper, props);
|
||||
}
|
||||
|
||||
template <typename Base, typename Policy>
|
||||
bool
|
||||
FilteringWrapper<Base, Policy>::enumerateOwn(JSContext *cx, JSObject *wrapper, AutoValueVector &props)
|
||||
{
|
||||
return Base::enumerateOwn(cx, wrapper, props) &&
|
||||
Filter<Policy>(cx, wrapper, props);
|
||||
}
|
||||
|
||||
template <typename Base, typename Policy>
|
||||
bool
|
||||
FilteringWrapper<Base, Policy>::iterate(JSContext *cx, JSObject *wrapper, uintN flags, jsval *vp)
|
||||
{
|
||||
// We refuse to trigger the iterator hook across chrome wrappers because
|
||||
// we don't know how to censor custom iterator objects. Instead we trigger
|
||||
// the default proxy iterate trap, which will ask enumerate() for the list
|
||||
// of (consored) ids.
|
||||
return JSProxyHandler::iterate(cx, wrapper, flags, vp);
|
||||
}
|
||||
|
||||
template <typename Base, typename Policy>
|
||||
bool
|
||||
FilteringWrapper<Base, Policy>::enter(JSContext *cx, JSObject *wrapper, jsid id, bool set)
|
||||
{
|
||||
Permission perm;
|
||||
return CheckAndReport<Policy>(cx, wrapper, JSVAL_VOID, set, perm) &&
|
||||
Base::enter(cx, wrapper, id, set);
|
||||
}
|
||||
|
||||
#define SOW FilteringWrapper<JSCrossCompartmentWrapper, OnlyIfSubjectIsSystem>
|
||||
#define COW FilteringWrapper<JSCrossCompartmentWrapper, ExposedPropertiesOnly>
|
||||
#define XOW FilteringWrapper<XrayWrapper<CrossOriginWrapper>, CrossOriginAccessiblePropertiesOnly>
|
||||
|
||||
template<> SOW SOW::singleton(0);
|
||||
template<> COW COW::singleton(0);
|
||||
template<> XOW XOW::singleton(0);
|
||||
|
||||
template class SOW;
|
||||
template class COW;
|
||||
template class XOW;
|
||||
|
||||
}
|
61
js/src/xpconnect/src/wrappers/FilteringWrapper.h
Normal file
61
js/src/xpconnect/src/wrappers/FilteringWrapper.h
Normal file
@ -0,0 +1,61 @@
|
||||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
* vim: set ts=4 sw=4 et tw=99 ft=cpp:
|
||||
*
|
||||
* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is mozilla.org code, released
|
||||
* June 24, 2010.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* The Mozilla Foundation
|
||||
*
|
||||
* Contributor(s):
|
||||
* Andreas Gal <gal@mozilla.com>
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
||||
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#include <jsapi.h>
|
||||
#include <jswrapper.h>
|
||||
|
||||
namespace xpc {
|
||||
|
||||
template <typename Base, typename Policy>
|
||||
class FilteringWrapper : public Base {
|
||||
public:
|
||||
FilteringWrapper(uintN flags);
|
||||
virtual ~FilteringWrapper();
|
||||
|
||||
virtual bool getOwnPropertyNames(JSContext *cx, JSObject *wrapper, js::AutoValueVector &props);
|
||||
virtual bool enumerate(JSContext *cx, JSObject *wrapper, js::AutoValueVector &props);
|
||||
virtual bool enumerateOwn(JSContext *cx, JSObject *wrapper, js::AutoValueVector &props);
|
||||
virtual bool iterate(JSContext *cx, JSObject *proxy, uintN flags, jsval *vp);
|
||||
|
||||
virtual bool enter(JSContext *cx, JSObject *wrapper, jsid id, bool set);
|
||||
|
||||
static FilteringWrapper singleton;
|
||||
};
|
||||
|
||||
}
|
323
js/src/xpconnect/src/wrappers/XrayWrapper.cpp
Normal file
323
js/src/xpconnect/src/wrappers/XrayWrapper.cpp
Normal file
@ -0,0 +1,323 @@
|
||||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
* vim: set ts=4 sw=4 et tw=99 ft=cpp:
|
||||
*
|
||||
* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is mozilla.org code, released
|
||||
* June 24, 2010.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* The Mozilla Foundation
|
||||
*
|
||||
* Contributor(s):
|
||||
* Andreas Gal <gal@mozilla.com>
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
||||
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#include "XrayWrapper.h"
|
||||
#include "AccessCheck.h"
|
||||
#include "FilteringWrapper.h"
|
||||
#include "CrossOriginWrapper.h"
|
||||
#include "WrapperFactory.h"
|
||||
|
||||
#include "jscntxt.h"
|
||||
|
||||
#include "XPCWrapper.h"
|
||||
#include "xpcprivate.h"
|
||||
|
||||
namespace xpc {
|
||||
|
||||
using namespace js;
|
||||
|
||||
static const uint32 JSSLOT_WN_OBJ = JSSLOT_PRIVATE;
|
||||
|
||||
static JSBool
|
||||
holder_get(JSContext *cx, JSObject *holder, jsid id, jsval *vp);
|
||||
|
||||
static JSBool
|
||||
holder_set(JSContext *cx, JSObject *holder, jsid id, jsval *vp);
|
||||
|
||||
static JSBool
|
||||
holder_enumerate(JSContext *cx, JSObject *holder);
|
||||
|
||||
JSClass HolderClass = {
|
||||
"NativePropertyHolder",
|
||||
JSCLASS_HAS_RESERVED_SLOTS(1),
|
||||
JS_PropertyStub, JS_PropertyStub, holder_get, holder_set,
|
||||
holder_enumerate, JS_ResolveStub, JS_ConvertStub, NULL,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL, NULL, NULL, NULL
|
||||
};
|
||||
|
||||
template <typename Base>
|
||||
XrayWrapper<Base>::XrayWrapper(uintN flags) : Base(flags)
|
||||
{
|
||||
}
|
||||
|
||||
template <typename Base>
|
||||
XrayWrapper<Base>::~XrayWrapper()
|
||||
{
|
||||
}
|
||||
|
||||
static XPCWrappedNative *
|
||||
GetWrappedNative(JSObject *obj)
|
||||
{
|
||||
NS_ASSERTION(IS_WN_WRAPPER_OBJECT(obj), "expected a wrapped native here");
|
||||
return static_cast<XPCWrappedNative *>(obj->getPrivate());
|
||||
}
|
||||
|
||||
static JSObject *
|
||||
GetWrappedNativeObjectFromHolder(JSObject *holder)
|
||||
{
|
||||
NS_ASSERTION(holder->getClass() == &HolderClass, "expected a native property holder object");
|
||||
return JSVAL_TO_OBJECT(holder->getSlot(JSSLOT_WN_OBJ));
|
||||
}
|
||||
|
||||
// Some DOM objects have shared properties that don't have an explicit
|
||||
// getter/setter and rely on the class getter/setter. We install a
|
||||
// class getter/setter on the holder object to trigger them.
|
||||
static JSBool
|
||||
holder_get(JSContext *cx, JSObject *obj, jsid id, jsval *vp)
|
||||
{
|
||||
JSObject *wnObject = GetWrappedNativeObjectFromHolder(obj);
|
||||
XPCWrappedNative *wn = GetWrappedNative(wnObject);
|
||||
if (NATIVE_HAS_FLAG(wn, WantGetProperty)) {
|
||||
JSBool retval = true;
|
||||
nsresult rv = wn->GetScriptableCallback()->GetProperty(wn, cx, obj, id, vp, &retval);
|
||||
if (NS_FAILED(rv)) {
|
||||
if (retval) {
|
||||
XPCThrower::Throw(rv, cx);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static JSBool
|
||||
holder_set(JSContext *cx, JSObject *obj, jsid id, jsval *vp)
|
||||
{
|
||||
JSObject *wnObject = GetWrappedNativeObjectFromHolder(obj);
|
||||
XPCWrappedNative *wn = GetWrappedNative(wnObject);
|
||||
if (NATIVE_HAS_FLAG(wn, WantSetProperty)) {
|
||||
JSBool retval = true;
|
||||
nsresult rv = wn->GetScriptableCallback()->SetProperty(wn, cx, obj, id, vp, &retval);
|
||||
if (NS_FAILED(rv)) {
|
||||
if (retval) {
|
||||
XPCThrower::Throw(rv, cx);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool
|
||||
ResolveNativeProperty(JSContext *cx, JSObject *holder, jsval id, bool set, JSPropertyDescriptor *desc)
|
||||
{
|
||||
desc->obj = NULL;
|
||||
|
||||
NS_ASSERTION(holder->getClass() == &HolderClass, "expected a native property holder object");
|
||||
JSObject *wnObject = GetWrappedNativeObjectFromHolder(holder);
|
||||
XPCWrappedNative *wn = GetWrappedNative(wnObject);
|
||||
|
||||
// This will do verification and the method lookup for us.
|
||||
XPCCallContext ccx(JS_CALLER, cx, holder, nsnull, id);
|
||||
|
||||
// Run the resolve hook of the wrapped native.
|
||||
JSBool retval = true;
|
||||
JSObject *pobj = NULL;
|
||||
uintN flags = cx->resolveFlags | (set ? JSRESOLVE_ASSIGNING : 0);
|
||||
nsresult rv = wn->GetScriptableInfo()->GetCallback()->NewResolve(wn, cx, holder, id, flags,
|
||||
&pobj, &retval);
|
||||
if (NS_FAILED(rv)) {
|
||||
if (retval) {
|
||||
XPCThrower::Throw(rv, cx);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
if (pobj) {
|
||||
return JS_GetPropertyDescriptorById(cx, pobj, id, cx->resolveFlags, desc);
|
||||
}
|
||||
|
||||
// There are no native numeric properties, so we can shortcut here. We will not
|
||||
// find the property.
|
||||
if (!JSID_IS_ATOM(id)) {
|
||||
/* Not found */
|
||||
return true;
|
||||
}
|
||||
|
||||
XPCNativeInterface *iface;
|
||||
XPCNativeMember *member;
|
||||
if (ccx.GetWrapper() != wn ||
|
||||
!wn->IsValid() ||
|
||||
!(iface = ccx.GetInterface()) ||
|
||||
!(member = ccx.GetMember())) {
|
||||
/* Not found */
|
||||
return true;
|
||||
}
|
||||
|
||||
desc->obj = holder;
|
||||
desc->attrs = JSPROP_ENUMERATE;
|
||||
desc->getter = NULL;
|
||||
desc->setter = NULL;
|
||||
desc->shortid = NULL;
|
||||
desc->value = JSVAL_VOID;
|
||||
|
||||
if (member->IsConstant()) {
|
||||
if (!member->GetConstantValue(ccx, iface, &desc->value)) {
|
||||
JS_ReportError(cx, "Failed to convert constant native property to JS value");
|
||||
return false;
|
||||
}
|
||||
} else if (member->IsAttribute()) {
|
||||
// This is a getter/setter. Clone a function for it.
|
||||
jsval fval;
|
||||
if (!member->NewFunctionObject(ccx, iface, wnObject, &fval)) {
|
||||
JS_ReportError(cx, "Failed to clone function object for native getter/setter");
|
||||
return false;
|
||||
}
|
||||
desc->getter = CastAsPropertyOp(JSVAL_TO_OBJECT(fval));
|
||||
desc->attrs |= JSPROP_GETTER;
|
||||
if (member->IsWritableAttribute()) {
|
||||
desc->setter = desc->getter;;
|
||||
desc->attrs |= JSPROP_SETTER;
|
||||
}
|
||||
|
||||
// Make the property shared on the holder so no slot is allocated
|
||||
// for it. This avoids keeping garbage alive through that slot.
|
||||
desc->attrs |= JSPROP_SHARED;
|
||||
} else {
|
||||
// This is a method. Clone a function for it.
|
||||
if (!member->NewFunctionObject(ccx, iface, wnObject, &desc->value)) {
|
||||
JS_ReportError(cx, "Failed to clone function object for native function");
|
||||
return false;
|
||||
}
|
||||
|
||||
// Without a wrapper the function would live on the prototype. Since we
|
||||
// don't have one, we have to avoid calling the scriptable helper's
|
||||
// GetProperty method for this property, so stub out the getter and
|
||||
// setter here explicitly.
|
||||
desc->getter = desc->setter = JS_PropertyStub;
|
||||
}
|
||||
|
||||
// Define the property.
|
||||
return JS_DefinePropertyById(cx, holder, id, desc->value,
|
||||
desc->getter, desc->setter, desc->attrs);
|
||||
}
|
||||
|
||||
static JSBool
|
||||
holder_enumerate(JSContext *cx, JSObject *holder)
|
||||
{
|
||||
// Ask the native wrapper for all its ids
|
||||
JSIdArray *ida = JS_Enumerate(cx, GetWrappedNativeObjectFromHolder(holder));
|
||||
if (!ida)
|
||||
return false;
|
||||
jsid *idp = ida->vector;
|
||||
size_t length = ida->length;
|
||||
// Resolve the underlyign native properties onto the holder object
|
||||
while (length-- > 0) {
|
||||
JSPropertyDescriptor dummy;
|
||||
if (!ResolveNativeProperty(cx, holder, *idp++, false, &dummy))
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
struct NativePropertiesOnly : public Policy {
|
||||
static bool check(JSContext *cx, JSObject *obj, jsid id, bool set, Permission &perm);
|
||||
};
|
||||
|
||||
extern JSWrapper WaiveXrayWrapperWrapper;
|
||||
|
||||
static JSBool
|
||||
wrappedJSObject_getter(JSContext *cx, JSObject *holder, jsid id, jsval *vp)
|
||||
{
|
||||
// If the caller intentionally waives the X-ray wrapper we usually
|
||||
// apply for wrapped natives, use a special wrapper to make sure the
|
||||
// membrane will not automatically apply an X-ray wrapper.
|
||||
JSObject *wn = GetWrappedNativeObjectFromHolder(holder);
|
||||
JSObject *obj = JSWrapper::New(cx, wn, NULL, wn->getParent(), &WaiveXrayWrapperWrapper);
|
||||
if (!obj)
|
||||
return false;
|
||||
*vp = OBJECT_TO_JSVAL(obj);
|
||||
return true;
|
||||
}
|
||||
|
||||
template <typename Base>
|
||||
bool
|
||||
XrayWrapper<Base>::getPropertyDescriptor(JSContext *cx, JSObject *wrapper, jsid id, JSPropertyDescriptor *desc)
|
||||
{
|
||||
if (id == XPCJSRuntime::IDX_WRAPPED_JSOBJECT) {
|
||||
desc->obj = wrapper;
|
||||
desc->attrs = JSPROP_ENUMERATE|JSPROP_SHARED;
|
||||
desc->getter = wrappedJSObject_getter;
|
||||
desc->setter = NULL;
|
||||
desc->shortid = NULL;
|
||||
desc->value = JSVAL_VOID;
|
||||
return true;
|
||||
}
|
||||
if (!Base::getPropertyDescriptor(cx, wrapper, id, desc)) {
|
||||
return false;
|
||||
}
|
||||
if (desc->obj)
|
||||
return true;
|
||||
return ResolveNativeProperty(cx, Base::wrappedObject(wrapper), id, false, desc);
|
||||
}
|
||||
|
||||
template <typename Base>
|
||||
bool
|
||||
XrayWrapper<Base>::getOwnPropertyDescriptor(JSContext *cx, JSObject *wrapper, jsid id, JSPropertyDescriptor *desc)
|
||||
{
|
||||
return getPropertyDescriptor(cx, wrapper, id, desc);
|
||||
}
|
||||
|
||||
template <typename Base>
|
||||
bool
|
||||
XrayWrapper<Base>::has(JSContext *cx, JSObject *wrapper, jsid id, bool *bp)
|
||||
{
|
||||
// Use the default implementation, which forwards to getPropertyDescriptor.
|
||||
return JSProxyHandler::has(cx, wrapper, id, bp);
|
||||
}
|
||||
|
||||
template <typename Base>
|
||||
bool
|
||||
XrayWrapper<Base>::hasOwn(JSContext *cx, JSObject *wrapper, jsid id, bool *bp)
|
||||
{
|
||||
// Use the default implementation, which forwards to getOwnPropertyDescriptor.
|
||||
return JSProxyHandler::hasOwn(cx, wrapper, id, bp);
|
||||
}
|
||||
|
||||
#define SJOW XrayWrapper<JSCrossCompartmentWrapper>
|
||||
#define XOSJOW XrayWrapper<CrossOriginWrapper>
|
||||
|
||||
template <> SJOW SJOW::singleton(0);
|
||||
template <> XOSJOW XOSJOW::singleton(0);
|
||||
|
||||
template class SJOW;
|
||||
template class XOSJOW;
|
||||
|
||||
}
|
66
js/src/xpconnect/src/wrappers/XrayWrapper.h
Normal file
66
js/src/xpconnect/src/wrappers/XrayWrapper.h
Normal file
@ -0,0 +1,66 @@
|
||||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
* vim: set ts=4 sw=4 et tw=99 ft=cpp:
|
||||
*
|
||||
* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is mozilla.org code, released
|
||||
* June 24, 2010.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* The Mozilla Foundation
|
||||
*
|
||||
* Contributor(s):
|
||||
* Andreas Gal <gal@mozilla.com>
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
||||
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#include "jsapi.h"
|
||||
#include "jswrapper.h"
|
||||
|
||||
// Xray wrappers re-resolve the original native properties on the native
|
||||
// object and always directly access to those properties.
|
||||
|
||||
namespace xpc {
|
||||
|
||||
extern JSClass HolderClass;
|
||||
|
||||
template <typename Base>
|
||||
class XrayWrapper : public Base {
|
||||
public:
|
||||
XrayWrapper(uintN flags);
|
||||
virtual ~XrayWrapper();
|
||||
|
||||
virtual bool getPropertyDescriptor(JSContext *cx, JSObject *wrapper, jsid id,
|
||||
JSPropertyDescriptor *desc);
|
||||
virtual bool getOwnPropertyDescriptor(JSContext *cx, JSObject *wrapper, jsid id,
|
||||
JSPropertyDescriptor *desc);
|
||||
virtual bool has(JSContext *cx, JSObject *wrapper, jsid id, bool *bp);
|
||||
virtual bool hasOwn(JSContext *cx, JSObject *wrapper, jsid id, bool *bp);
|
||||
|
||||
static XrayWrapper singleton;
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user