1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
|
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(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.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.untrusted.script;
import java.awt.AWTPermission;
import java.io.FilePermission;
import java.io.SerializablePermission;
import java.lang.reflect.ReflectPermission;
import java.net.NetPermission;
import java.net.SocketPermission;
import java.net.URL;
import java.security.AllPermission;
import java.security.Permission;
import java.sql.SQLPermission;
import java.util.PropertyPermission;
import javax.sound.sampled.AudioPermission;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.events.Event;
import org.w3c.dom.events.EventListener;
import org.w3c.dom.events.EventTarget;
import org.apache.batik.anim.dom.SVGOMDocument;
import org.apache.batik.bridge.ScriptHandler;
import org.apache.batik.w3c.dom.Window;
/**
* This class implements the ScriptHandler interface and represents an
* example of untrusted code.
*
* It creates a number of Java Permissions and checks that access is denied.
* the tests fail if the Permissions are granted.
*
* The only thing that the class should be allowed to make is a connection
* back to the server that served the document containing this script.
*
* @author <a href="mailto:vhardy@apache.org">Vincent Hardy</a>
* @version $Id$
*/
public class UntrustedScriptHandler implements ScriptHandler {
public static final String svgNS = "http://www.w3.org/2000/svg";
/**
* Path for the file tested with FilePermission
*/
public static final String testedPath = "build.sh";
/**
* Host which is used for testing
*/
public static final String testedHost = "nagoya.apache.org:8080";
/**
* Table of Permissions which will be tested.
*/
protected static Object[][] 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")},
// 1.4 {"ServicePermission", new ServicePermission("krbtgt/EXAMPLE.COM@EXAMPLE.COM", "initiate")},
{"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")},
// 1.4 {"DelegationPermission", new DelegationPermission()},
// 1.4 {"LoggingPermission", new LoggingPermission("control")},
{"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")},
// 1.4 {"SSLPermission setHostnameVerifier", new SSLPermission("setHostnameVerifier")}
// 1.4{"SSLPermission getSSLSessionContext", new SSLPermission("getSSLSessionContext")}
};
/**
* Set of Permissions to test. One is added if the Document is loaded from a host
*/
private Object[][] permissions;
/**
* Reference to the rectangles which show the test status
*/
private Element[] statusRects;
/**
* Runs this handler. This method is called by the SVG viewer
* when the scripts are loaded.
* @param doc The current document.
* @param win An object which represents the current viewer.
*/
public void run(final Document doc, final Window win){
int nGrantedTmp = 0;
//
// If the document is loaded over the network, check that the
// class has permission to access the server
//
URL docURL = ((SVGOMDocument)doc).getURLObject();
if (docURL != null && docURL.getHost() != null && !"".equals(docURL.getHost())) {
permissions = new Object[basePermissions.length + 3][2];
System.arraycopy(basePermissions, 0,
permissions, 3, basePermissions.length);
String docHost = docURL.getHost();
if (docURL.getPort() != -1) {
docHost += ":" + docURL.getPort();
}
permissions[0][0] = "SocketPermission accept " + docHost;
permissions[0][1] = new SocketPermission(docHost, "accept");
permissions[1][0] = "SocketPermission connect " + docHost;
permissions[1][1] = new SocketPermission(docHost, "connect");
permissions[2][0] = "SocketPermission resolve " + docHost;
permissions[2][1] = new SocketPermission(docHost, "resolve");
nGrantedTmp = 3;
} else {
permissions = basePermissions;
}
// Captures the number of permissions which should be
// granted to this code.
final int nGranted = nGrantedTmp;
//
// Build a table in the scrollable area of the document
//
Element securityResults = doc.getElementById("securityResults");
statusRects = new Element[permissions.length];
for (int i=0; i<permissions.length; i++){
Element textElt = doc.createElementNS(svgNS, "text");
textElt.setAttributeNS(null, "x", "55");
textElt.setAttributeNS(null, "y", "" + (85 + i*20));
textElt.appendChild(doc.createTextNode(permissions[i][0].toString()));
securityResults.appendChild(textElt);
Element rectElt = doc.createElementNS(svgNS, "rect");
rectElt.setAttributeNS(null, "x", "50");
rectElt.setAttributeNS(null, "y", "" + (70 + i*20));
rectElt.setAttributeNS(null, "width", "330");
rectElt.setAttributeNS(null, "height", "20" );
rectElt.setAttributeNS(null, "class", "tableCell");
securityResults.appendChild(rectElt);
rectElt = doc.createElementNS(svgNS, "rect");
rectElt.setAttributeNS(null, "x", "380");
rectElt.setAttributeNS(null, "y", "" + (70 + i*20));
rectElt.setAttributeNS(null, "width", "20");
rectElt.setAttributeNS(null, "height", "20" );
rectElt.setAttributeNS(null, "class", "tableCell");
securityResults.appendChild(rectElt);
rectElt = doc.createElementNS(svgNS, "rect");
rectElt.setAttributeNS(null, "x", "383");
rectElt.setAttributeNS(null, "y", "" + (73 + i*20));
rectElt.setAttributeNS(null, "width", "14");
rectElt.setAttributeNS(null, "height", "14" );
rectElt.setAttributeNS(null, "class", "untested");
securityResults.appendChild(rectElt);
statusRects[i] = rectElt;
}
EventTarget testButton = (EventTarget)doc.getElementById("runTest");
testButton.addEventListener("click", new EventListener() {
public void handleEvent(Event evt){
SecurityManager sm = System.getSecurityManager();
int successCnt = 0;
if (sm == null){
for (int i=0; i<nGranted; i++) {
statusRects[i].setAttributeNS(null, "class", "passedTest");
successCnt++;
}
for (int i=nGranted; i<permissions.length; i++) {
statusRects[i].setAttributeNS(null, "class", "failedTest");
}
}
else {
for (int i=0; i<nGranted; i++) {
Permission p = (Permission)permissions[i][1];
boolean success = true;
try {
sm.checkPermission(p);
statusRects[i].setAttributeNS(null, "class", "passedTest");
successCnt++;
} catch (SecurityException se){
statusRects[i].setAttributeNS(null, "class", "failedTest");
System.out.println("*********************************************");
se.printStackTrace();
}
}
for (int i=nGranted; i<permissions.length; i++) {
Permission p = (Permission)permissions[i][1];
boolean success = true;
try {
sm.checkPermission(p);
statusRects[i].setAttributeNS(null, "class", "failedTest");
} catch (SecurityException se){
statusRects[i].setAttributeNS(null, "class", "passedTest");
successCnt++;
}
}
}
// Update the global status
Element globalStatus = doc.getElementById("globalStatus");
if ( successCnt == (statusRects.length) ) {
globalStatus.setAttributeNS(null, "class", "passedTest");
} else {
globalStatus.setAttributeNS(null, "class", "failedTest");
}
String successRatioString = "Test Result: " + successCnt + " / " + statusRects.length;
Element successRatio = doc.getElementById("successRatio");
successRatio.replaceChild(doc.createTextNode(successRatioString),
successRatio.getFirstChild());
}
}, false);
}
@Override
public void run(Document doc, org.apache.batik.bridge.Window win) {
// TODO Auto-generated method stub
}
}
|