2010-06-25 15:58:09 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=4 sw=4 et tw=99 ft=cpp:
|
|
|
|
*
|
|
|
|
* ***** 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 ***** */
|
|
|
|
|
2010-07-02 13:54:53 -07:00
|
|
|
#include "AccessCheck.h"
|
2010-06-25 15:58:09 -07:00
|
|
|
|
|
|
|
#include "nsJSPrincipals.h"
|
2010-07-02 13:54:53 -07:00
|
|
|
#include "nsIDOMWindow.h"
|
|
|
|
#include "nsIDOMWindowCollection.h"
|
2010-09-17 14:54:40 -07:00
|
|
|
#include "nsContentUtils.h"
|
2010-06-25 15:58:09 -07:00
|
|
|
|
2010-07-02 13:54:53 -07:00
|
|
|
#include "XPCWrapper.h"
|
2010-09-17 14:54:40 -07:00
|
|
|
#include "XrayWrapper.h"
|
2010-10-10 15:39:08 -07:00
|
|
|
#include "FilteringWrapper.h"
|
|
|
|
#include "WrapperFactory.h"
|
2010-06-25 15:58:09 -07:00
|
|
|
|
2011-04-13 09:27:37 -07:00
|
|
|
#include "jsfriendapi.h"
|
2010-10-28 08:15:53 -07:00
|
|
|
#include "jsstr.h"
|
|
|
|
|
2010-06-25 15:58:09 -07:00
|
|
|
namespace xpc {
|
|
|
|
|
2010-07-02 13:54:53 -07:00
|
|
|
static nsIPrincipal *
|
2010-06-25 15:58:09 -07:00
|
|
|
GetCompartmentPrincipal(JSCompartment *compartment)
|
|
|
|
{
|
2010-09-29 10:00:52 -07:00
|
|
|
return compartment->principals ? static_cast<nsJSPrincipals *>(compartment->principals)->nsIPrincipalPtr : 0;
|
2010-06-25 15:58:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-07-02 13:54:53 -07:00
|
|
|
AccessCheck::isSameOrigin(JSCompartment *a, JSCompartment *b)
|
|
|
|
{
|
2010-10-13 11:37:25 -07:00
|
|
|
nsIPrincipal *aprin = GetCompartmentPrincipal(a);
|
|
|
|
nsIPrincipal *bprin = GetCompartmentPrincipal(b);
|
|
|
|
|
|
|
|
// If either a or b doesn't have principals, we don't have enough
|
|
|
|
// information to tell. Seeing as how this is Gecko, we are default-unsafe
|
|
|
|
// in this case.
|
|
|
|
if (!aprin || !bprin)
|
|
|
|
return true;
|
|
|
|
|
2011-02-02 22:05:07 -08:00
|
|
|
nsCOMPtr<nsIURI> auri;
|
|
|
|
aprin->GetURI(getter_AddRefs(auri));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIURI> buri;
|
|
|
|
bprin->GetURI(getter_AddRefs(buri));
|
|
|
|
|
|
|
|
if (!auri || !buri)
|
|
|
|
return aprin == bprin;
|
|
|
|
|
|
|
|
nsIScriptSecurityManager *ssm = XPCWrapper::GetSecurityManager();
|
|
|
|
return !ssm || NS_SUCCEEDED(ssm->CheckSameOriginURI(auri, buri, PR_FALSE));
|
2010-07-02 13:54:53 -07:00
|
|
|
}
|
|
|
|
|
2010-09-29 10:00:52 -07:00
|
|
|
bool
|
2010-10-10 15:36:41 -07:00
|
|
|
AccessCheck::isLocationObjectSameOrigin(JSContext *cx, JSObject *wrapper)
|
2010-09-29 10:00:52 -07:00
|
|
|
{
|
2010-10-10 15:36:41 -07:00
|
|
|
JSObject *obj = wrapper->unwrap()->getParent();
|
2010-09-29 10:00:52 -07:00
|
|
|
if (!obj->getClass()->ext.innerObject) {
|
|
|
|
obj = obj->unwrap();
|
|
|
|
JS_ASSERT(obj->getClass()->ext.innerObject);
|
|
|
|
}
|
|
|
|
OBJ_TO_INNER_OBJECT(cx, obj);
|
2011-02-23 22:13:17 -08:00
|
|
|
return obj &&
|
|
|
|
(isSameOrigin(wrapper->compartment(), obj->compartment()) ||
|
|
|
|
documentDomainMakesSameOrigin(cx, obj));
|
2010-09-29 10:00:52 -07:00
|
|
|
}
|
|
|
|
|
2010-07-02 13:54:53 -07:00
|
|
|
bool
|
|
|
|
AccessCheck::isChrome(JSCompartment *compartment)
|
2010-06-25 15:58:09 -07:00
|
|
|
{
|
|
|
|
nsIScriptSecurityManager *ssm = XPCWrapper::GetSecurityManager();
|
2010-07-02 13:54:53 -07:00
|
|
|
if (!ssm) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool privileged;
|
|
|
|
nsIPrincipal *principal = GetCompartmentPrincipal(compartment);
|
|
|
|
return NS_SUCCEEDED(ssm->IsSystemPrincipal(principal, &privileged)) && privileged;
|
|
|
|
}
|
|
|
|
|
2010-09-24 18:00:58 -07:00
|
|
|
nsIPrincipal *
|
|
|
|
AccessCheck::getPrincipal(JSCompartment *compartment)
|
|
|
|
{
|
|
|
|
return GetCompartmentPrincipal(compartment);
|
|
|
|
}
|
|
|
|
|
2010-10-28 08:15:53 -07:00
|
|
|
#define NAME(ch, str, cases) \
|
|
|
|
case ch: if (!strcmp(name, str)) switch (propChars[0]) { cases }; break;
|
2010-07-02 13:54:53 -07:00
|
|
|
#define PROP(ch, actions) case ch: { actions }; break;
|
2010-12-03 00:24:17 -08:00
|
|
|
#define RW(str) if (JS_FlatStringEqualsAscii(prop, str)) return true;
|
|
|
|
#define R(str) if (!set && JS_FlatStringEqualsAscii(prop, str)) return true;
|
|
|
|
#define W(str) if (set && JS_FlatStringEqualsAscii(prop, str)) return true;
|
2010-07-02 13:54:53 -07:00
|
|
|
|
|
|
|
// Hardcoded policy for cross origin property access. This was culled from the
|
|
|
|
// preferences file (all.js). We don't want users to overwrite highly sensitive
|
|
|
|
// security policies.
|
|
|
|
static bool
|
2010-12-03 00:24:17 -08:00
|
|
|
IsPermitted(const char *name, JSFlatString *prop, bool set)
|
2010-07-02 13:54:53 -07:00
|
|
|
{
|
2010-10-28 08:15:53 -07:00
|
|
|
size_t propLength;
|
2010-12-03 00:24:17 -08:00
|
|
|
const jschar *propChars = JS_GetInternedStringCharsAndLength(prop, &propLength);
|
2010-10-28 08:15:53 -07:00
|
|
|
if (!propLength)
|
|
|
|
return false;
|
2010-07-02 13:54:53 -07:00
|
|
|
switch(name[0]) {
|
|
|
|
NAME('D', "DOMException",
|
|
|
|
PROP('c', RW("code"))
|
|
|
|
PROP('m', RW("message"))
|
|
|
|
PROP('n', RW("name"))
|
2010-09-17 14:54:40 -07:00
|
|
|
PROP('r', RW("result"))
|
|
|
|
PROP('t', R("toString")))
|
2010-09-29 10:00:52 -07:00
|
|
|
NAME('E', "Error",
|
|
|
|
PROP('m', R("message")))
|
2010-07-02 13:54:53 -07:00
|
|
|
NAME('H', "History",
|
|
|
|
PROP('b', R("back"))
|
|
|
|
PROP('f', R("forward"))
|
|
|
|
PROP('g', R("go")))
|
2010-09-17 14:54:40 -07:00
|
|
|
NAME('L', "Location",
|
|
|
|
PROP('h', W("hash") W("href"))
|
|
|
|
PROP('r', R("replace")))
|
2010-07-02 13:54:53 -07:00
|
|
|
NAME('N', "Navigator",
|
|
|
|
PROP('p', RW("preference")))
|
|
|
|
NAME('W', "Window",
|
|
|
|
PROP('b', R("blur"))
|
|
|
|
PROP('c', R("close") R("closed"))
|
|
|
|
PROP('f', R("focus") R("frames"))
|
|
|
|
PROP('h', R("history"))
|
|
|
|
PROP('l', RW("location") R("length"))
|
|
|
|
PROP('o', R("opener"))
|
|
|
|
PROP('p', R("parent") R("postMessage"))
|
|
|
|
PROP('s', R("self"))
|
|
|
|
PROP('t', R("top"))
|
|
|
|
PROP('w', R("window")))
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef NAME
|
|
|
|
#undef RW
|
|
|
|
#undef R
|
|
|
|
#undef W
|
|
|
|
|
|
|
|
static bool
|
2010-09-17 14:54:40 -07:00
|
|
|
IsFrameId(JSContext *cx, JSObject *obj, jsid id)
|
2010-07-02 13:54:53 -07:00
|
|
|
{
|
2010-09-17 14:54:40 -07:00
|
|
|
XPCWrappedNative *wn = XPCWrappedNative::GetWrappedNativeOfJSObject(cx, obj);
|
|
|
|
if (!wn) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-07-02 13:54:53 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> domwin(do_QueryWrappedNative(wn));
|
|
|
|
if (!domwin) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindowCollection> col;
|
|
|
|
domwin->GetFrames(getter_AddRefs(col));
|
|
|
|
if (!col) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (JSID_IS_INT(id)) {
|
|
|
|
col->Item(JSID_TO_INT(id), getter_AddRefs(domwin));
|
|
|
|
} else if (JSID_IS_ATOM(id)) {
|
2010-12-03 00:24:17 -08:00
|
|
|
nsAutoString str(JS_GetInternedStringChars(JSID_TO_STRING(id)));
|
2010-07-02 13:54:53 -07:00
|
|
|
col->NamedItem(str, getter_AddRefs(domwin));
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return domwin != nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
IsWindow(const char *name)
|
|
|
|
{
|
|
|
|
return name[0] == 'W' && !strcmp(name, "Window");
|
|
|
|
}
|
|
|
|
|
2010-10-15 14:15:53 -07:00
|
|
|
static bool
|
|
|
|
IsLocation(const char *name)
|
|
|
|
{
|
|
|
|
return name[0] == 'L' && !strcmp(name, "Location");
|
|
|
|
}
|
|
|
|
|
2010-10-14 16:57:27 -07:00
|
|
|
static nsIPrincipal *
|
|
|
|
GetPrincipal(JSObject *obj)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!IS_SLIM_WRAPPER(obj), "global object is a slim wrapper?");
|
|
|
|
if (!IS_WN_WRAPPER(obj)) {
|
|
|
|
NS_ASSERTION(!(~obj->getClass()->flags &
|
|
|
|
(JSCLASS_PRIVATE_IS_NSISUPPORTS | JSCLASS_HAS_PRIVATE)),
|
|
|
|
"bad object");
|
|
|
|
nsCOMPtr<nsIScriptObjectPrincipal> objPrin =
|
|
|
|
do_QueryInterface((nsISupports*)xpc_GetJSPrivate(obj));
|
|
|
|
NS_ASSERTION(objPrin, "global isn't nsIScriptObjectPrincipal?");
|
|
|
|
return objPrin->GetPrincipal();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIXPConnect *xpc = nsXPConnect::GetRuntimeInstance()->GetXPConnect();
|
|
|
|
return xpc->GetPrincipal(obj, PR_TRUE);
|
|
|
|
}
|
|
|
|
|
2010-10-16 15:26:14 -07:00
|
|
|
bool
|
|
|
|
AccessCheck::documentDomainMakesSameOrigin(JSContext *cx, JSObject *obj)
|
|
|
|
{
|
2011-02-19 20:46:44 -08:00
|
|
|
JSObject *scope = nsnull;
|
|
|
|
JSStackFrame *fp = nsnull;
|
|
|
|
JS_FrameIterator(cx, &fp);
|
|
|
|
if (fp) {
|
2011-04-13 09:27:37 -07:00
|
|
|
while (!JS_IsScriptFrame(cx, fp)) {
|
2011-02-19 20:46:44 -08:00
|
|
|
if (!JS_FrameIterator(cx, &fp))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fp)
|
2011-04-13 09:27:37 -07:00
|
|
|
scope = JS_GetFrameScopeChainRaw(fp);
|
2010-10-16 15:26:14 -07:00
|
|
|
}
|
|
|
|
|
2011-02-19 20:46:44 -08:00
|
|
|
if (!scope)
|
|
|
|
scope = JS_GetScopeChain(cx);
|
|
|
|
|
2010-10-16 15:26:14 -07:00
|
|
|
nsIPrincipal *subject;
|
2011-02-19 20:46:44 -08:00
|
|
|
nsIPrincipal *object;
|
|
|
|
|
2010-10-16 15:26:14 -07:00
|
|
|
{
|
|
|
|
JSAutoEnterCompartment ac;
|
|
|
|
|
|
|
|
if (!ac.enter(cx, scope))
|
|
|
|
return false;
|
|
|
|
|
2011-02-19 20:46:44 -08:00
|
|
|
subject = GetPrincipal(JS_GetGlobalForObject(cx, scope));
|
2010-10-16 15:26:14 -07:00
|
|
|
}
|
2011-02-19 20:46:44 -08:00
|
|
|
|
2010-11-10 14:08:11 -08:00
|
|
|
if (!subject)
|
|
|
|
return false;
|
|
|
|
|
2010-10-16 15:26:14 -07:00
|
|
|
{
|
|
|
|
JSAutoEnterCompartment ac;
|
|
|
|
|
|
|
|
if (!ac.enter(cx, obj))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
object = GetPrincipal(JS_GetGlobalForObject(cx, obj));
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool subsumes;
|
|
|
|
return NS_SUCCEEDED(subject->Subsumes(object, &subsumes)) && subsumes;
|
|
|
|
}
|
|
|
|
|
2010-07-02 13:54:53 -07:00
|
|
|
bool
|
2010-09-17 14:54:40 -07:00
|
|
|
AccessCheck::isCrossOriginAccessPermitted(JSContext *cx, JSObject *wrapper, jsid id,
|
|
|
|
JSWrapper::Action act)
|
2010-07-02 13:54:53 -07:00
|
|
|
{
|
2010-09-17 14:54:40 -07:00
|
|
|
if (!XPCWrapper::GetSecurityManager())
|
|
|
|
return true;
|
2010-07-02 13:54:53 -07:00
|
|
|
|
2010-09-17 14:54:40 -07:00
|
|
|
if (act == JSWrapper::CALL)
|
|
|
|
return true;
|
|
|
|
|
2010-09-17 14:54:40 -07:00
|
|
|
JSObject *obj = JSWrapper::wrappedObject(wrapper);
|
2010-07-02 13:54:53 -07:00
|
|
|
|
2010-09-17 14:54:40 -07:00
|
|
|
const char *name;
|
|
|
|
js::Class *clasp = obj->getClass();
|
2010-09-23 15:56:28 -07:00
|
|
|
NS_ASSERTION(Jsvalify(clasp) != &XrayUtils::HolderClass, "shouldn't have a holder here");
|
2010-09-17 14:54:40 -07:00
|
|
|
if (clasp->ext.innerObject)
|
|
|
|
name = "Window";
|
|
|
|
else
|
|
|
|
name = clasp->name;
|
2010-07-02 13:54:53 -07:00
|
|
|
|
|
|
|
if (JSID_IS_ATOM(id)) {
|
2010-12-03 00:24:17 -08:00
|
|
|
if (IsPermitted(name, JSID_TO_FLAT_STRING(id), act == JSWrapper::SET))
|
2010-07-02 13:54:53 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-17 14:54:40 -07:00
|
|
|
if (IsWindow(name) && IsFrameId(cx, obj, id))
|
2010-07-02 13:54:53 -07:00
|
|
|
return true;
|
|
|
|
|
2010-10-15 14:15:53 -07:00
|
|
|
// We only reach this point for cross origin location objects (see
|
|
|
|
// SameOriginOrCrossOriginAccessiblePropertiesOnly::check).
|
2010-10-16 15:26:14 -07:00
|
|
|
if (!IsLocation(name) && documentDomainMakesSameOrigin(cx, obj))
|
|
|
|
return true;
|
2010-10-10 15:39:19 -07:00
|
|
|
|
2010-09-17 14:54:40 -07:00
|
|
|
return (act == JSWrapper::SET)
|
2010-09-17 14:54:40 -07:00
|
|
|
? nsContentUtils::IsCallerTrustedForWrite()
|
|
|
|
: nsContentUtils::IsCallerTrustedForRead();
|
2010-07-02 13:54:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AccessCheck::isSystemOnlyAccessPermitted(JSContext *cx)
|
|
|
|
{
|
|
|
|
nsIScriptSecurityManager *ssm = XPCWrapper::GetSecurityManager();
|
|
|
|
if (!ssm) {
|
2010-06-25 15:58:09 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-07-02 13:54:53 -07:00
|
|
|
JSStackFrame *fp;
|
|
|
|
nsIPrincipal *principal = ssm->GetCxSubjectPrincipalAndFrame(cx, &fp);
|
|
|
|
if (!principal) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!fp) {
|
|
|
|
if (!JS_FrameIterator(cx, &fp)) {
|
|
|
|
// No code at all is running. So we must be arriving here as the result
|
|
|
|
// of C++ code asking us to do something. Allow access.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Some code is running, we can't make the assumption, as above, but we
|
|
|
|
// can't use a native frame, so clear fp.
|
|
|
|
fp = NULL;
|
2010-08-09 22:43:33 -07:00
|
|
|
} else if (!JS_IsScriptFrame(cx, fp)) {
|
2010-07-02 13:54:53 -07:00
|
|
|
fp = NULL;
|
|
|
|
}
|
|
|
|
|
2010-06-25 15:58:09 -07:00
|
|
|
PRBool privileged;
|
2010-07-02 13:54:53 -07:00
|
|
|
if (NS_SUCCEEDED(ssm->IsSystemPrincipal(principal, &privileged)) &&
|
|
|
|
privileged) {
|
2010-06-25 15:58:09 -07:00
|
|
|
return true;
|
|
|
|
}
|
2010-07-02 13:54:53 -07:00
|
|
|
|
|
|
|
// Allow any code loaded from chrome://global/ to touch us, even if it was
|
|
|
|
// cloned into a less privileged context.
|
|
|
|
static const char prefix[] = "chrome://global/";
|
|
|
|
const char *filename;
|
|
|
|
if (fp &&
|
2010-08-09 22:43:33 -07:00
|
|
|
(filename = JS_GetFrameScript(cx, fp)->filename) &&
|
2010-07-02 13:54:53 -07:00
|
|
|
!strncmp(filename, prefix, NS_ARRAY_LENGTH(prefix) - 1)) {
|
2010-06-25 15:58:09 -07:00
|
|
|
return true;
|
|
|
|
}
|
2010-07-02 13:54:53 -07:00
|
|
|
|
|
|
|
return NS_SUCCEEDED(ssm->IsCapabilityEnabled("UniversalXPConnect", &privileged)) && privileged;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AccessCheck::needsSystemOnlyWrapper(JSObject *obj)
|
|
|
|
{
|
2010-09-17 14:54:40 -07:00
|
|
|
if (!IS_WN_WRAPPER(obj))
|
|
|
|
return false;
|
|
|
|
|
2010-07-02 13:54:53 -07:00
|
|
|
XPCWrappedNative *wn = static_cast<XPCWrappedNative *>(obj->getPrivate());
|
|
|
|
return wn->NeedsSOW();
|
2010-06-25 15:58:09 -07:00
|
|
|
}
|
|
|
|
|
2010-10-10 15:39:08 -07:00
|
|
|
bool
|
|
|
|
AccessCheck::isScriptAccessOnly(JSContext *cx, JSObject *wrapper)
|
|
|
|
{
|
|
|
|
JS_ASSERT(wrapper->isWrapper());
|
|
|
|
|
|
|
|
uintN flags;
|
|
|
|
JSObject *obj = wrapper->unwrap(&flags);
|
|
|
|
|
|
|
|
// If the wrapper indicates script-only access, we are done.
|
|
|
|
if (flags & WrapperFactory::SCRIPT_ACCESS_ONLY_FLAG) {
|
2010-10-10 15:48:55 -07:00
|
|
|
if (flags & WrapperFactory::SOW_FLAG)
|
|
|
|
return !isSystemOnlyAccessPermitted(cx);
|
|
|
|
|
2010-10-10 15:49:30 -07:00
|
|
|
if (flags & WrapperFactory::PARTIALLY_TRANSPARENT)
|
|
|
|
return !XrayUtils::IsTransparent(cx, wrapper);
|
|
|
|
|
2010-10-10 15:39:08 -07:00
|
|
|
nsIScriptSecurityManager *ssm = XPCWrapper::GetSecurityManager();
|
|
|
|
if (!ssm)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Bypass script-only status if UniversalXPConnect is enabled.
|
|
|
|
PRBool privileged;
|
|
|
|
return !NS_SUCCEEDED(ssm->IsCapabilityEnabled("UniversalXPConnect", &privileged)) ||
|
|
|
|
!privileged;
|
|
|
|
}
|
|
|
|
|
|
|
|
// In addition, chrome objects can explicitly opt-in by setting .scriptOnly to true.
|
|
|
|
if (wrapper->getProxyHandler() == &FilteringWrapper<JSCrossCompartmentWrapper,
|
|
|
|
CrossOriginAccessiblePropertiesOnly>::singleton) {
|
|
|
|
jsid scriptOnlyId = GetRTIdByIndex(cx, XPCJSRuntime::IDX_SCRIPTONLY);
|
|
|
|
jsval scriptOnly;
|
|
|
|
if (JS_LookupPropertyById(cx, obj, scriptOnlyId, &scriptOnly) &&
|
|
|
|
scriptOnly == JSVAL_TRUE)
|
|
|
|
return true; // script-only
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow non-script access to same-origin location objects and any other
|
|
|
|
// objects.
|
|
|
|
return WrapperFactory::IsLocationObject(obj) && !isLocationObjectSameOrigin(cx, wrapper);
|
|
|
|
}
|
|
|
|
|
2010-06-25 15:58:09 -07:00
|
|
|
void
|
|
|
|
AccessCheck::deny(JSContext *cx, jsid id)
|
|
|
|
{
|
2010-07-14 23:19:36 -07:00
|
|
|
if (id == JSID_VOID) {
|
2010-06-25 15:58:09 -07:00
|
|
|
JS_ReportError(cx, "Permission denied to access object");
|
|
|
|
} else {
|
2010-07-14 23:19:36 -07:00
|
|
|
jsval idval;
|
|
|
|
if (!JS_IdToValue(cx, id, &idval))
|
|
|
|
return;
|
|
|
|
JSString *str = JS_ValueToString(cx, idval);
|
|
|
|
if (!str)
|
|
|
|
return;
|
2010-12-03 00:24:17 -08:00
|
|
|
const jschar *chars = JS_GetStringCharsZ(cx, str);
|
|
|
|
if (chars)
|
|
|
|
JS_ReportError(cx, "Permission denied to access property '%hs'", chars);
|
2010-06-25 15:58:09 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 18:47:17 -08:00
|
|
|
enum Access { READ = (1<<0), WRITE = (1<<1), NO_ACCESS = 0 };
|
|
|
|
|
2011-01-29 18:48:30 -08:00
|
|
|
static bool
|
|
|
|
Deny(JSContext *cx, jsid id, JSWrapper::Action act)
|
|
|
|
{
|
|
|
|
// Refuse to perform the action and just return the default value.
|
|
|
|
if (act == JSWrapper::GET)
|
|
|
|
return true;
|
|
|
|
// If its a set, deny it and throw an exception.
|
|
|
|
AccessCheck::deny(cx, id);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-01-29 18:47:17 -08:00
|
|
|
bool
|
2011-01-29 18:48:30 -08:00
|
|
|
PermitIfUniversalXPConnect(JSContext *cx, jsid id, JSWrapper::Action act,
|
|
|
|
ExposedPropertiesOnly::Permission &perm)
|
2011-01-29 18:47:17 -08:00
|
|
|
{
|
|
|
|
// If UniversalXPConnect is enabled, allow access even if __exposedProps__ doesn't
|
|
|
|
// exists.
|
|
|
|
nsIScriptSecurityManager *ssm = XPCWrapper::GetSecurityManager();
|
|
|
|
if (!ssm) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
PRBool privileged;
|
|
|
|
if (NS_SUCCEEDED(ssm->IsCapabilityEnabled("UniversalXPConnect", &privileged)) &&
|
|
|
|
privileged) {
|
|
|
|
perm = ExposedPropertiesOnly::PermitPropertyAccess;
|
|
|
|
return true; // Allow
|
|
|
|
}
|
|
|
|
|
2011-01-29 18:48:30 -08:00
|
|
|
// Deny
|
|
|
|
return Deny(cx, id, act);
|
2011-01-29 18:47:17 -08:00
|
|
|
}
|
2010-07-02 13:54:53 -07:00
|
|
|
|
2010-06-25 15:58:09 -07:00
|
|
|
bool
|
2010-09-17 14:54:40 -07:00
|
|
|
ExposedPropertiesOnly::check(JSContext *cx, JSObject *wrapper, jsid id, JSWrapper::Action act,
|
|
|
|
Permission &perm)
|
2010-06-25 15:58:09 -07:00
|
|
|
{
|
2011-01-29 18:47:17 -08:00
|
|
|
JSObject *wrappedObject = JSWrapper::wrappedObject(wrapper);
|
|
|
|
|
|
|
|
if (act == JSWrapper::CALL) {
|
|
|
|
perm = PermitObjectAccess;
|
|
|
|
return true;
|
|
|
|
}
|
2010-07-02 13:54:53 -07:00
|
|
|
|
|
|
|
perm = DenyAccess;
|
|
|
|
|
|
|
|
jsid exposedPropsId = GetRTIdByIndex(cx, XPCJSRuntime::IDX_EXPOSEDPROPS);
|
|
|
|
|
|
|
|
JSBool found = JS_FALSE;
|
2010-09-22 17:34:20 -07:00
|
|
|
JSAutoEnterCompartment ac;
|
2011-01-29 18:47:17 -08:00
|
|
|
if (!ac.enter(cx, wrappedObject) ||
|
|
|
|
!JS_HasPropertyById(cx, wrappedObject, exposedPropsId, &found))
|
2010-07-02 13:54:53 -07:00
|
|
|
return false;
|
2011-01-29 18:47:17 -08:00
|
|
|
|
|
|
|
// Always permit access to "length" and indexed properties of arrays.
|
|
|
|
if (JS_IsArrayObject(cx, wrappedObject) &&
|
|
|
|
((JSID_IS_INT(id) && JSID_TO_INT(id) >= 0) ||
|
|
|
|
(JSID_IS_ATOM(id) && JS_FlatStringEqualsAscii(JSID_TO_FLAT_STRING(id), "length")))) {
|
|
|
|
perm = PermitPropertyAccess;
|
2010-07-02 13:54:53 -07:00
|
|
|
return true; // Allow
|
|
|
|
}
|
|
|
|
|
2011-01-29 18:47:17 -08:00
|
|
|
// If no __exposedProps__ existed, deny access.
|
|
|
|
if (!found) {
|
|
|
|
// For now, only do this on functions.
|
|
|
|
if (!JS_ObjectIsFunction(cx, wrappedObject)) {
|
|
|
|
perm = PermitPropertyAccess;
|
|
|
|
return true;
|
|
|
|
}
|
2011-01-29 18:48:30 -08:00
|
|
|
return PermitIfUniversalXPConnect(cx, id, act, perm); // Deny
|
2011-01-29 18:47:17 -08:00
|
|
|
}
|
|
|
|
|
2010-07-14 23:19:36 -07:00
|
|
|
if (id == JSID_VOID) {
|
2010-07-02 13:54:53 -07:00
|
|
|
// This will force the caller to call us back for individual property accesses.
|
|
|
|
perm = PermitPropertyAccess;
|
2010-06-25 15:58:09 -07:00
|
|
|
return true;
|
|
|
|
}
|
2010-07-02 13:54:53 -07:00
|
|
|
|
|
|
|
jsval exposedProps;
|
2011-01-29 18:47:17 -08:00
|
|
|
if (!JS_LookupPropertyById(cx, wrappedObject, exposedPropsId, &exposedProps))
|
2010-07-01 15:45:08 -07:00
|
|
|
return false;
|
2010-07-02 13:54:53 -07:00
|
|
|
|
|
|
|
if (JSVAL_IS_VOID(exposedProps) || JSVAL_IS_NULL(exposedProps)) {
|
2011-01-29 18:48:30 -08:00
|
|
|
return PermitIfUniversalXPConnect(cx, id, act, perm); // Deny
|
2010-07-01 15:45:08 -07:00
|
|
|
}
|
|
|
|
|
2010-07-02 13:54:53 -07:00
|
|
|
if (!JSVAL_IS_OBJECT(exposedProps)) {
|
|
|
|
JS_ReportError(cx, "__exposedProps__ must be undefined, null, or an Object");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject *hallpass = JSVAL_TO_OBJECT(exposedProps);
|
|
|
|
|
|
|
|
Access access = NO_ACCESS;
|
|
|
|
|
2010-10-10 15:41:56 -07:00
|
|
|
JSPropertyDescriptor desc;
|
|
|
|
if (!JS_GetPropertyDescriptorById(cx, hallpass, id, JSRESOLVE_QUALIFIED, &desc)) {
|
2010-07-02 13:54:53 -07:00
|
|
|
return false; // Error
|
2010-07-01 15:45:08 -07:00
|
|
|
}
|
2010-10-10 15:41:56 -07:00
|
|
|
if (desc.obj == NULL || !(desc.attrs & JSPROP_ENUMERATE)) {
|
2011-01-29 18:48:30 -08:00
|
|
|
return PermitIfUniversalXPConnect(cx, id, act, perm); // Deny
|
2010-10-10 15:41:56 -07:00
|
|
|
}
|
2010-07-02 13:54:53 -07:00
|
|
|
|
2010-10-10 15:41:56 -07:00
|
|
|
if (!JSVAL_IS_STRING(desc.value)) {
|
2010-07-02 13:54:53 -07:00
|
|
|
JS_ReportError(cx, "property must be a string");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-10-10 15:41:56 -07:00
|
|
|
JSString *str = JSVAL_TO_STRING(desc.value);
|
2010-12-03 00:24:17 -08:00
|
|
|
size_t length;
|
|
|
|
const jschar *chars = JS_GetStringCharsAndLength(cx, str, &length);
|
|
|
|
if (!chars)
|
|
|
|
return false;
|
|
|
|
|
2010-07-02 13:54:53 -07:00
|
|
|
for (size_t i = 0; i < length; ++i) {
|
|
|
|
switch (chars[i]) {
|
|
|
|
case 'r':
|
|
|
|
if (access & READ) {
|
|
|
|
JS_ReportError(cx, "duplicate 'readable' property flag");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
access = Access(access | READ);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'w':
|
|
|
|
if (access & WRITE) {
|
|
|
|
JS_ReportError(cx, "duplicate 'writable' property flag");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
access = Access(access | WRITE);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
JS_ReportError(cx, "properties can only be readable or read and writable");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (access == NO_ACCESS) {
|
|
|
|
JS_ReportError(cx, "specified properties must have a permission bit set");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-09-17 14:54:40 -07:00
|
|
|
if ((act == JSWrapper::SET && !(access & WRITE)) ||
|
|
|
|
(act != JSWrapper::SET && !(access & READ))) {
|
2011-01-29 18:48:30 -08:00
|
|
|
return PermitIfUniversalXPConnect(cx, id, act, perm); // Deny
|
2010-07-02 13:54:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
perm = PermitPropertyAccess;
|
|
|
|
return true; // Allow
|
2010-06-25 15:58:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|