and efficiency. Tighten checks on document properties and node properties. Should resolve several bugs: 18965 document.firstChild vulnerability 19043 document.childNodes vulnerability 19044 document.lastChild vulnerability r=mstoltz git-svn-id: svn://10.0.0.236/trunk@54051 18797224-902f-48f8-a5cc-f745e15eee43
365 lines
10 KiB
C++
365 lines
10 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
/* AUTO-GENERATED. DO NOT EDIT!!! */
|
|
|
|
#include "jsapi.h"
|
|
#include "nsJSUtils.h"
|
|
#include "nsDOMError.h"
|
|
#include "nscore.h"
|
|
#include "nsIScriptContext.h"
|
|
#include "nsIScriptSecurityManager.h"
|
|
#include "nsIJSScriptObject.h"
|
|
#include "nsIScriptObjectOwner.h"
|
|
#include "nsIScriptGlobalObject.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsDOMPropEnums.h"
|
|
#include "nsIPtr.h"
|
|
#include "nsString.h"
|
|
#include "nsIDOMCSSStyleDeclaration.h"
|
|
#include "nsIDOMCSSStyleRule.h"
|
|
|
|
|
|
static NS_DEFINE_IID(kIScriptObjectOwnerIID, NS_ISCRIPTOBJECTOWNER_IID);
|
|
static NS_DEFINE_IID(kIJSScriptObjectIID, NS_IJSSCRIPTOBJECT_IID);
|
|
static NS_DEFINE_IID(kIScriptGlobalObjectIID, NS_ISCRIPTGLOBALOBJECT_IID);
|
|
static NS_DEFINE_IID(kICSSStyleDeclarationIID, NS_IDOMCSSSTYLEDECLARATION_IID);
|
|
static NS_DEFINE_IID(kICSSStyleRuleIID, NS_IDOMCSSSTYLERULE_IID);
|
|
|
|
NS_DEF_PTR(nsIDOMCSSStyleDeclaration);
|
|
NS_DEF_PTR(nsIDOMCSSStyleRule);
|
|
|
|
//
|
|
// CSSStyleRule property ids
|
|
//
|
|
enum CSSStyleRule_slots {
|
|
CSSSTYLERULE_SELECTORTEXT = -1,
|
|
CSSSTYLERULE_STYLE = -2
|
|
};
|
|
|
|
/***********************************************************************/
|
|
//
|
|
// CSSStyleRule Properties Getter
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
GetCSSStyleRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
|
|
{
|
|
nsIDOMCSSStyleRule *a = (nsIDOMCSSStyleRule*)nsJSUtils::nsGetNativeThis(cx, obj);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == a) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if (JSVAL_IS_INT(id)) {
|
|
nsIScriptContext *scriptCX = (nsIScriptContext *)JS_GetContextPrivate(cx);
|
|
nsCOMPtr<nsIScriptSecurityManager> secMan;
|
|
if (NS_OK != scriptCX->GetSecurityManager(getter_AddRefs(secMan))) {
|
|
return nsJSUtils::nsReportError(cx, NS_ERROR_DOM_SECMAN_ERR);
|
|
}
|
|
switch(JSVAL_TO_INT(id)) {
|
|
case CSSSTYLERULE_SELECTORTEXT:
|
|
{
|
|
PRBool ok = PR_FALSE;
|
|
secMan->CheckScriptAccess(scriptCX, obj, NS_DOM_PROP_CSSSTYLERULE_SELECTORTEXT, PR_FALSE, &ok);
|
|
if (!ok) {
|
|
return nsJSUtils::nsReportError(cx, NS_ERROR_DOM_SECURITY_ERR);
|
|
}
|
|
nsAutoString prop;
|
|
nsresult result = NS_OK;
|
|
result = a->GetSelectorText(prop);
|
|
if (NS_SUCCEEDED(result)) {
|
|
nsJSUtils::nsConvertStringToJSVal(prop, cx, vp);
|
|
}
|
|
else {
|
|
return nsJSUtils::nsReportError(cx, result);
|
|
}
|
|
break;
|
|
}
|
|
case CSSSTYLERULE_STYLE:
|
|
{
|
|
PRBool ok = PR_FALSE;
|
|
secMan->CheckScriptAccess(scriptCX, obj, NS_DOM_PROP_CSSSTYLERULE_STYLE, PR_FALSE, &ok);
|
|
if (!ok) {
|
|
return nsJSUtils::nsReportError(cx, NS_ERROR_DOM_SECURITY_ERR);
|
|
}
|
|
nsIDOMCSSStyleDeclaration* prop;
|
|
nsresult result = NS_OK;
|
|
result = a->GetStyle(&prop);
|
|
if (NS_SUCCEEDED(result)) {
|
|
// get the js object
|
|
nsJSUtils::nsConvertObjectToJSVal((nsISupports *)prop, cx, vp);
|
|
}
|
|
else {
|
|
return nsJSUtils::nsReportError(cx, result);
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
return nsJSUtils::nsCallJSScriptObjectGetProperty(a, cx, id, vp);
|
|
}
|
|
}
|
|
else {
|
|
return nsJSUtils::nsCallJSScriptObjectGetProperty(a, cx, id, vp);
|
|
}
|
|
|
|
return PR_TRUE;
|
|
}
|
|
|
|
/***********************************************************************/
|
|
//
|
|
// CSSStyleRule Properties Setter
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
SetCSSStyleRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
|
|
{
|
|
nsIDOMCSSStyleRule *a = (nsIDOMCSSStyleRule*)nsJSUtils::nsGetNativeThis(cx, obj);
|
|
|
|
// If there's no private data, this must be the prototype, so ignore
|
|
if (nsnull == a) {
|
|
return JS_TRUE;
|
|
}
|
|
|
|
if (JSVAL_IS_INT(id)) {
|
|
nsIScriptContext *scriptCX = (nsIScriptContext *)JS_GetContextPrivate(cx);
|
|
nsCOMPtr<nsIScriptSecurityManager> secMan;
|
|
if (NS_OK != scriptCX->GetSecurityManager(getter_AddRefs(secMan))) {
|
|
return nsJSUtils::nsReportError(cx, NS_ERROR_DOM_SECMAN_ERR);
|
|
}
|
|
switch(JSVAL_TO_INT(id)) {
|
|
case CSSSTYLERULE_SELECTORTEXT:
|
|
{
|
|
PRBool ok = PR_FALSE;
|
|
secMan->CheckScriptAccess(scriptCX, obj, NS_DOM_PROP_CSSSTYLERULE_SELECTORTEXT, PR_TRUE, &ok);
|
|
if (!ok) {
|
|
return nsJSUtils::nsReportError(cx, NS_ERROR_DOM_SECURITY_ERR);
|
|
}
|
|
nsAutoString prop;
|
|
nsJSUtils::nsConvertJSValToString(prop, cx, *vp);
|
|
|
|
a->SetSelectorText(prop);
|
|
|
|
break;
|
|
}
|
|
case CSSSTYLERULE_STYLE:
|
|
{
|
|
PRBool ok = PR_FALSE;
|
|
secMan->CheckScriptAccess(scriptCX, obj, NS_DOM_PROP_CSSSTYLERULE_STYLE, PR_TRUE, &ok);
|
|
if (!ok) {
|
|
return nsJSUtils::nsReportError(cx, NS_ERROR_DOM_SECURITY_ERR);
|
|
}
|
|
nsIDOMCSSStyleDeclaration* prop;
|
|
if (PR_FALSE == nsJSUtils::nsConvertJSValToObject((nsISupports **)&prop,
|
|
kICSSStyleDeclarationIID, "CSSStyleDeclaration",
|
|
cx, *vp)) {
|
|
return nsJSUtils::nsReportError(cx, NS_ERROR_DOM_NOT_OBJECT_ERR);
|
|
}
|
|
|
|
a->SetStyle(prop);
|
|
NS_IF_RELEASE(prop);
|
|
break;
|
|
}
|
|
default:
|
|
return nsJSUtils::nsCallJSScriptObjectSetProperty(a, cx, id, vp);
|
|
}
|
|
}
|
|
else {
|
|
return nsJSUtils::nsCallJSScriptObjectSetProperty(a, cx, id, vp);
|
|
}
|
|
|
|
return PR_TRUE;
|
|
}
|
|
|
|
|
|
//
|
|
// CSSStyleRule finalizer
|
|
//
|
|
PR_STATIC_CALLBACK(void)
|
|
FinalizeCSSStyleRule(JSContext *cx, JSObject *obj)
|
|
{
|
|
nsJSUtils::nsGenericFinalize(cx, obj);
|
|
}
|
|
|
|
|
|
//
|
|
// CSSStyleRule enumerate
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
EnumerateCSSStyleRule(JSContext *cx, JSObject *obj)
|
|
{
|
|
return nsJSUtils::nsGenericEnumerate(cx, obj);
|
|
}
|
|
|
|
|
|
//
|
|
// CSSStyleRule resolve
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
ResolveCSSStyleRule(JSContext *cx, JSObject *obj, jsval id)
|
|
{
|
|
return nsJSUtils::nsGenericResolve(cx, obj, id);
|
|
}
|
|
|
|
|
|
/***********************************************************************/
|
|
//
|
|
// class for CSSStyleRule
|
|
//
|
|
JSClass CSSStyleRuleClass = {
|
|
"CSSStyleRule",
|
|
JSCLASS_HAS_PRIVATE | JSCLASS_PRIVATE_IS_NSISUPPORTS,
|
|
JS_PropertyStub,
|
|
JS_PropertyStub,
|
|
GetCSSStyleRuleProperty,
|
|
SetCSSStyleRuleProperty,
|
|
EnumerateCSSStyleRule,
|
|
ResolveCSSStyleRule,
|
|
JS_ConvertStub,
|
|
FinalizeCSSStyleRule
|
|
};
|
|
|
|
|
|
//
|
|
// CSSStyleRule class properties
|
|
//
|
|
static JSPropertySpec CSSStyleRuleProperties[] =
|
|
{
|
|
{"selectorText", CSSSTYLERULE_SELECTORTEXT, JSPROP_ENUMERATE},
|
|
{"style", CSSSTYLERULE_STYLE, JSPROP_ENUMERATE},
|
|
{0}
|
|
};
|
|
|
|
|
|
//
|
|
// CSSStyleRule class methods
|
|
//
|
|
static JSFunctionSpec CSSStyleRuleMethods[] =
|
|
{
|
|
{0}
|
|
};
|
|
|
|
|
|
//
|
|
// CSSStyleRule constructor
|
|
//
|
|
PR_STATIC_CALLBACK(JSBool)
|
|
CSSStyleRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
|
|
{
|
|
return JS_FALSE;
|
|
}
|
|
|
|
|
|
//
|
|
// CSSStyleRule class initialization
|
|
//
|
|
extern "C" NS_DOM nsresult NS_InitCSSStyleRuleClass(nsIScriptContext *aContext, void **aPrototype)
|
|
{
|
|
JSContext *jscontext = (JSContext *)aContext->GetNativeContext();
|
|
JSObject *proto = nsnull;
|
|
JSObject *constructor = nsnull;
|
|
JSObject *parent_proto = nsnull;
|
|
JSObject *global = JS_GetGlobalObject(jscontext);
|
|
jsval vp;
|
|
|
|
if ((PR_TRUE != JS_LookupProperty(jscontext, global, "CSSStyleRule", &vp)) ||
|
|
!JSVAL_IS_OBJECT(vp) ||
|
|
((constructor = JSVAL_TO_OBJECT(vp)) == nsnull) ||
|
|
(PR_TRUE != JS_LookupProperty(jscontext, JSVAL_TO_OBJECT(vp), "prototype", &vp)) ||
|
|
!JSVAL_IS_OBJECT(vp)) {
|
|
|
|
if (NS_OK != NS_InitCSSRuleClass(aContext, (void **)&parent_proto)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
proto = JS_InitClass(jscontext, // context
|
|
global, // global object
|
|
parent_proto, // parent proto
|
|
&CSSStyleRuleClass, // JSClass
|
|
CSSStyleRule, // JSNative ctor
|
|
0, // ctor args
|
|
CSSStyleRuleProperties, // proto props
|
|
CSSStyleRuleMethods, // proto funcs
|
|
nsnull, // ctor props (static)
|
|
nsnull); // ctor funcs (static)
|
|
if (nsnull == proto) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
}
|
|
else if ((nsnull != constructor) && JSVAL_IS_OBJECT(vp)) {
|
|
proto = JSVAL_TO_OBJECT(vp);
|
|
}
|
|
else {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
if (aPrototype) {
|
|
*aPrototype = proto;
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
//
|
|
// Method for creating a new CSSStyleRule JavaScript object
|
|
//
|
|
extern "C" NS_DOM nsresult NS_NewScriptCSSStyleRule(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn)
|
|
{
|
|
NS_PRECONDITION(nsnull != aContext && nsnull != aSupports && nsnull != aReturn, "null argument to NS_NewScriptCSSStyleRule");
|
|
JSObject *proto;
|
|
JSObject *parent;
|
|
nsIScriptObjectOwner *owner;
|
|
JSContext *jscontext = (JSContext *)aContext->GetNativeContext();
|
|
nsresult result = NS_OK;
|
|
nsIDOMCSSStyleRule *aCSSStyleRule;
|
|
|
|
if (nsnull == aParent) {
|
|
parent = nsnull;
|
|
}
|
|
else if (NS_OK == aParent->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) {
|
|
if (NS_OK != owner->GetScriptObject(aContext, (void **)&parent)) {
|
|
NS_RELEASE(owner);
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
NS_RELEASE(owner);
|
|
}
|
|
else {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
if (NS_OK != NS_InitCSSStyleRuleClass(aContext, (void **)&proto)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
result = aSupports->QueryInterface(kICSSStyleRuleIID, (void **)&aCSSStyleRule);
|
|
if (NS_OK != result) {
|
|
return result;
|
|
}
|
|
|
|
// create a js object for this class
|
|
*aReturn = JS_NewObject(jscontext, &CSSStyleRuleClass, proto, parent);
|
|
if (nsnull != *aReturn) {
|
|
// connect the native object to the js object
|
|
JS_SetPrivate(jscontext, (JSObject *)*aReturn, aCSSStyleRule);
|
|
}
|
|
else {
|
|
NS_RELEASE(aCSSStyleRule);
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|