vhardy 2004/02/19 09:09:31
Added: test-resources/org/apache/batik/bridge
ecmaCheckPermissionsDenied2.svg
Log:
New security regression tests
Revision Changes Path
1.1
xml-batik/test-resources/org/apache/batik/bridge/ecmaCheckPermissionsDenied2.svg
Index: ecmaCheckPermissionsDenied2.svg
===================================================================
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<!--
============================================================================
The Apache Software License, Version 1.1
============================================================================
Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without modifica-
tion, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. The end-user documentation included with the redistribution, if any, must
include the following acknowledgment: "This product includes software
developed by the Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
4. The names "Batik" and "Apache Software Foundation" must not be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
5. Products derived from this software may not be called "Apache", nor may
"Apache" appear in their name, without prior written permission of the
Apache Software Foundation.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This software consists of voluntary contributions made by many individuals
on behalf of the Apache Software Foundation. For more information on the
Apache Software Foundation, please see <http://www.apache.org/>.
-->
<!-- ========================================================================= -->
<!-- This test checks that ECMAScript code run from a "Function" instance does -->
<!-- not have unexpected access to VM features. -->
<!-- -->
<!-- @author [EMAIL PROTECTED] -->
<!-- @version $Id: ecmaCheckPermissionsDenied2.svg,v 1.1 2004/02/19 17:09:31 vhardy
Exp $ -->
<!-- ========================================================================= -->
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:test="http://xml.apache.org/batik/test"
id="body" width="640" height="480" viewBox="0 0 640 480">
<test:testResult id="testResult" />
<title>Check Security Settings on Load</title>
<!-- ============================================================= -->
<!-- Test content -->
<!-- ============================================================= -->
<rect x="5" y="5" width="630" height="470" stroke="black" fill="none" />
<g id="testContent">
<text x="320" y="30" class="title" text-anchor="middle">
ECMA Script Security Check - Function() usage
</text>
<!-- ============================================ -->
<!-- Text string where result is displayed. -->
<!-- ============================================ -->
<text id="successRatio" x="50%" y="60%" text-anchor="middle">not run</text>
</g>
<desc id="dynamicEval"><![CDATA[
importPackage(Packages.java.awt);
importPackage(Packages.java.io);
importPackage(Packages.java.lang.reflect);
importPackage(Packages.java.net);
importPackage(Packages.java.security);
importPackage(Packages.java.sql);
importPackage(Packages.java.util);
importPackage(Packages.javax.sound.sampled);
var svgNS = "http://www.w3.org/2000/svg";
var testNS = "http://xml.apache.org/batik/test";
var testedPath = "build.sh";
var testedHost = "nagoya.apache.org:8080";
var basePermissions = [
["AllPermission", new AllPermission()],
["FilePermission read", new FilePermission(testedPath, "read")],
["FilePermission write", new FilePermission(testedPath, "write")],
["FilePermission execute", new FilePermission(testedPath, "execute")],
["FilePermission delete", new FilePermission(testedPath, "delete")],
["SocketPermission accept", new SocketPermission(testedHost, "accept")],
["SocketPermission connect", new SocketPermission(testedHost, "connect")],
["SocketPermission listen", new SocketPermission(testedHost, "listen")],
["SocketPermission resolve", new SocketPermission(testedHost, "resolve")],
["AudioPermission play", new AudioPermission("play")],
["AudioPermission record", new AudioPermission("record")],
["AWTPermission accessClipboard", new AWTPermission("accessClipboard")],
["AWTPermission accessEventQueue", new AWTPermission("accessEventQueue")],
["AWTPermission listenToAllAWTEvents", new
AWTPermission("listenToAllAWTEvents")],
["AWTPermission showWindowWithoutWarningBanner", new
AWTPermission("showWindowWithoutWarningBanner")],
["AWTPermission readDisplayPixels", new AWTPermission("readDisplayPixels")],
["AWTPermission createRobot", new AWTPermission("createRobot")],
["AWTPermission fullScreenExclusive", new
AWTPermission("fullScreenExclusive")],
["NetPermission setDefaultAuthenticator", new
NetPermission("setDefaultAuthenticator")],
["NetPermission requestPasswordAuthentication", new
NetPermission("requestPasswordAuthentication")],
["NetPermission specifyStreamHandler", new
NetPermission("specifyStreamHandler")],
["PropertyPermission java.home read", new PropertyPermission("java.home",
"read")],
["PropertyPermission java.home write", new PropertyPermission("java.home",
"write")],
["ReflectPermission", new ReflectPermission("suppressAccessChecks")],
["RuntimePermission createClassLoader", new
RuntimePermission("createClassLoader")],
["RuntimePermission getClassLoader", new
RuntimePermission("getClassLoader")],
["RuntimePermission setContextClassLoader", new
RuntimePermission("setContextClassLoader")],
["RuntimePermission setSecurityManager", new
RuntimePermission("setSecurityManager")],
["RuntimePermission createSecurityManager", new
RuntimePermission("createSecurityManager")],
["RuntimePermission exitVM", new RuntimePermission("exitVM")],
["RuntimePermission shutdownHooks", new RuntimePermission("shutdownHooks")],
["RuntimePermission setFactory", new RuntimePermission("setFactory")],
["RuntimePermission setIO", new RuntimePermission("setIO")],
["RuntimePermission modifyThread", new RuntimePermission("modifyThread")],
["RuntimePermission stopThread", new RuntimePermission("stopThread")],
["RuntimePermission modifyThreadGroup", new
RuntimePermission("modifyThreadGroup")],
["RuntimePermission getProtectionDomain", new
RuntimePermission("getProtectionDomain")],
["RuntimePermission readFileDescriptor", new
RuntimePermission("readFileDescriptor")],
["RuntimePermission writeFileDescriptor", new
RuntimePermission("writeFileDescriptor")],
["RuntimePermission loadLibrary.{library name}", new
RuntimePermission("loadLibrary.{library name}")],
["RuntimePermission accessClassInPackage.java.security", new
RuntimePermission("accessClassInPackage.java.security")],
["RuntimePermission defineClassInPackage.java.lang", new
RuntimePermission("defineClassInPackage.java.lang")],
["RuntimePermission accessDeclaredMembers", new
RuntimePermission("accessDeclaredMembers")],
["RuntimePermission queuePrintJob", new RuntimePermission("queuePrintJob")],
["SecurityPermission createAccessControlContext", new
SerializablePermission("createAccessControlContext")],
["SecurityPermission getDomainCombiner", new
SerializablePermission("getDomainCombiner")],
["SecurityPermission getPolicy", new SerializablePermission("getPolicy")],
["SecurityPermission setPolicy", new SerializablePermission("setPolicy")],
["SecurityPermission setSystemScope", new
SerializablePermission("setSystemScope")],
["SecurityPermission setIdentityPublicKey", new
SerializablePermission("setIdentityPublicKey")],
["SecurityPermission setIdentityInfo", new
SerializablePermission("setIdentityInfo")],
["SecurityPermission addIdentityCertificate", new
SerializablePermission("addIdentityCertificate")],
["SecurityPermission removeIdentityCertificate", new
SerializablePermission("removeIdentityCertificate")],
["SecurityPermission printIdentity", new
SerializablePermission("printIdentity")],
["SecurityPermission getSignerPrivateKey", new
SerializablePermission("getSignerPrivateKey")],
["SecurityPermission setSignerKeyPair", new
SerializablePermission("setSignerKeyPair")],
["SerializablePermission enableSubclassImplementation", new
SerializablePermission("enableSubclassImplementation")],
["SerializablePermission enableSubstitution", new
SerializablePermission("enableSubstitution")],
["SQLPermission", new SQLPermission("setLog")],
];
var permissions = null;
var statusRects = null;
var nGranted = 0;
function init(){
var docURL = document.getURLObject();
if (docURL != null
&& (docURL.getHost() != null)
&& !( "" == docURL.getHost())
) {
permissions = new Array();
var docHost = docURL.getHost();
if (docURL.getPort() != -1) {
docHost += ":" + docURL.getPort();
}
permissions[0] = ["SocketPermission accept " + docHost,
new SocketPermission(docHost, "accept")];
permissions[1] = ["SocketPermission connect " + docHost,
new SocketPermission(docHost, "connect")];
permissions[2] = ["SocketPermission resolve " + docHost,
new SocketPermission(docHost, "resolve")];
// permissions.concat(basePermissions);
for (var i=0; i<basePermissions.length; i++){
permissions[3+i] = basePermissions[i];
}
nGranted = 3;
} else {
permissions = basePermissions;
}
}
init();
function runTest(){
var sm = System.getSecurityManager();
var successCnt = 0;
var unexpectedGrants = new Array();
var unexpectedDenial = new Array();
var unexpectedDenialCnt = 0;
var unexpectedGrantsCnt = 0;
if (sm == null){
for (var i=0; i<nGranted; i++) {
successCnt++;
}
for (var i=nGranted; i<permissions.length; i++) {
unexpectedGrants[unexpectedGrantsCnt] = permissions[i][0];
unexpectedGrantsCnt++;
}
}
else {
for (var i=0; i<nGranted; i++) {
var p = permissions[i][1];
var success = true;
try {
sm.checkPermission(p);
successCnt++;
} catch (se){
unexpectedDenial[unexpectedDenialCnt] = permissions[i][0];
unexpectedDenialCnt++;
}
}
for (var i=nGranted; i<permissions.length; i++) {
var p = permissions[i][1];
var success = true;
try {
sm.checkPermission(p);
unexpectedGrants[unexpectedGrantsCnt] = permissions[i][0];
unexpectedGrantsCnt++;
} catch (se){
successCnt++;
}
}
}
// Update the test's metadata
var result = document.getElementById("testResult");
if ( successCnt == permissions.length ) {
result.setAttributeNS(null, "result", "passed");
} else {
System.out.println("test failed: " + unexpectedGrantsCnt + " / " +
unexpectedDenialCnt);
result.setAttributeNS(null, "result", "failed");
result.setAttributeNS(null, "errorCode", "unexpected.grants.or.denials");
var unexpectedGrantsString = "";
var unexpectedDenialString = "";
for (var i=0; i<unexpectedGrantsCnt; i++) {
unexpectedGrantsString += unexpectedGrants[i];
}
for (var i=0; i<unexpectedDenialCnt; i++) {
unexpectedDenialString += unexpectedDenial[i];
}
System.out.println("unexpected.grants : " + unexpectedGrantsString);
var entry = null;
entry = document.createElementNS(testNS, "errorDescriptiongEntry");
entry.setAttributeNS(null, "id", "unexpected.grants.count");
entry.setAttributeNS(null, "value", "" + unexpectedGrantsCnt);
result.appendChild(entry);
entry = document.createElementNS(testNS, "errorDescriptionEntry");
entry.setAttributeNS(null, "id", "unexpected.grants");
entry.setAttributeNS(null, "value", unexpectedGrantsString);
result.appendChild(entry);
entry = document.createElementNS(testNS, "errorDescriptiongEntry");
entry.setAttributeNS(null, "id", "unexpected.denials.count");
entry.setAttributeNS(null, "value", "" + unexpectedDenialCnt);
result.appendChild(entry);
System.out.println("unexpected.denials : " + unexpectedDenialString);
entry = document.createElementNS(testNS, "errorDescriptionEntry");
entry.setAttributeNS(null, "id", "unexpected.denials");
entry.setAttributeNS(null, "value", unexpectedDenialString);
result.appendChild(entry);
}
}
runTest();
/*
var successRatioString = "Test Result: " + successCnt + " / " +
permissions.length;
System.err.println("Success Ratio : " + successRatioString);
var successRatio = document.getElementById("successRatio");
if (successRatio == null) {
alert("Error : no 'successRatio' element");
} else {
if (successCnt == permissions.length) {
successRatio.firstChild.data = "Success: " + successRatioString;
} else {
successRatio.firstChild.data = "Failed: " + successRatioString;
}
}
*/
]]></desc>
<script type="text/ecmascript"><![CDATA[
System.err.println(">>>>>>>>>>>>>> Evaluating embeded script ");
var scriptContent = document.getElementById("dynamicEval").firstChild.data;
var f = new Function(scriptContent);
document.documentElement.addEventListener('SVGLoad', f, false);
]]></script>
</svg>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]