aboutsummaryrefslogtreecommitdiffstats
path: root/netx/net/sourceforge/jnlp/runtime/JNLPPolicy.java
diff options
context:
space:
mode:
authorOmair Majid <[email protected]>2011-01-04 15:22:41 -0500
committerOmair Majid <[email protected]>2011-01-04 15:22:41 -0500
commit9f4b352fd18d153c83c90a3b2af447e5df8cb8c9 (patch)
tree9fb34d883c6a73d20d185a6d5515656573e89719 /netx/net/sourceforge/jnlp/runtime/JNLPPolicy.java
parent6144e5cba6ef2e89096e6a74b74dd0d5ebf996b1 (diff)
use deployment-specific user and system level policy files to grant additional permissions
2011-01-04 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/runtime/JNLPPolicy.java: Add systemJnlpPolicy and userJnlpPolicy. (JNLPPolicy): Initialize the new policies. (getPermissions): Consult the extra policies as well to determine the resulting permissions to be granted. (getPolicyFromConfig): New method. Create a new Policy instance to delegate to for system- and user-level policies.
Diffstat (limited to 'netx/net/sourceforge/jnlp/runtime/JNLPPolicy.java')
-rw-r--r--netx/net/sourceforge/jnlp/runtime/JNLPPolicy.java60
1 files changed, 57 insertions, 3 deletions
diff --git a/netx/net/sourceforge/jnlp/runtime/JNLPPolicy.java b/netx/net/sourceforge/jnlp/runtime/JNLPPolicy.java
index 62b6967..ea96022 100644
--- a/netx/net/sourceforge/jnlp/runtime/JNLPPolicy.java
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPPolicy.java
@@ -16,9 +16,13 @@
package net.sourceforge.jnlp.runtime;
+import java.net.URI;
+import java.net.URISyntaxException;
import java.security.*;
import java.util.Enumeration;
+import net.sourceforge.jnlp.config.DeploymentConfiguration;
+
/**
* Policy for JNLP environment. This class delegates to the
* system policy but always grants permissions to the JNLP code
@@ -40,10 +44,19 @@ public class JNLPPolicy extends Policy {
/** the previous policy */
private static Policy systemPolicy;
+ /** the system level policy for jnlps */
+ private Policy systemJnlpPolicy = null;
+
+ /** the user-level policy for jnlps */
+ private Policy userJnlpPolicy = null;
+
protected JNLPPolicy() {
shellSource = JNLPPolicy.class.getProtectionDomain().getCodeSource();
systemSource = Policy.class.getProtectionDomain().getCodeSource();
systemPolicy = Policy.getPolicy();
+
+ systemJnlpPolicy = getPolicyFromConfig(DeploymentConfiguration.KEY_SYSTEM_SECURITY_POLICY);
+ userJnlpPolicy = getPolicyFromConfig(DeploymentConfiguration.KEY_USER_SECURITY_POLICY);
}
/**
@@ -62,11 +75,27 @@ public class JNLPPolicy extends Policy {
PermissionCollection clPermissions = cl.getPermissions(source);
- // systempolicy permissions need to be accounted for as well
+ Enumeration<Permission> e;
CodeSource appletCS = new CodeSource(JNLPRuntime.getApplication().getJNLPFile().getSourceLocation(), (java.security.cert.Certificate[]) null);
- Enumeration e = systemPolicy.getPermissions(appletCS).elements();
+
+ // systempolicy permissions need to be accounted for as well
+ e = systemPolicy.getPermissions(appletCS).elements();
while (e.hasMoreElements())
- clPermissions.add((Permission) e.nextElement());
+ clPermissions.add(e.nextElement());
+
+ // and so do permissions from the jnlp-specific system policy
+ if (systemJnlpPolicy != null) {
+ e = systemJnlpPolicy.getPermissions(appletCS).elements();
+ while (e.hasMoreElements())
+ clPermissions.add(e.nextElement());
+ }
+
+ // and permissiosn from jnlp-specific user policy too
+ if (userJnlpPolicy != null) {
+ e = userJnlpPolicy.getPermissions(appletCS).elements();
+ while (e.hasMoreElements())
+ clPermissions.add(e.nextElement());
+ }
return clPermissions;
}
@@ -93,6 +122,31 @@ public class JNLPPolicy extends Policy {
return result;
}
+ /**
+ * Constructs a delegate policy based on a config setting
+ * @param key a KEY_* in DeploymentConfiguration
+ * @return a policy based on the configuration set by the user
+ */
+ private Policy getPolicyFromConfig(String key) {
+ Policy policy = null;
+ String policyLocation = null;
+ DeploymentConfiguration config = JNLPRuntime.getConfiguration();
+ policyLocation = config.getProperty(key);
+ if (policyLocation != null) {
+ try {
+ URI policyUri = new URI(policyLocation);
+ policy = getInstance("JavaPolicy", new URIParameter(policyUri));
+ } catch (IllegalArgumentException e) {
+ e.printStackTrace();
+ } catch (NoSuchAlgorithmException e) {
+ e.printStackTrace();
+ } catch (URISyntaxException e) {
+ e.printStackTrace();
+ }
+ }
+ return policy;
+ }
+
public boolean implies(ProtectionDomain domain, Permission permission) {
//Include the permissions that may be added during runtime.
PermissionCollection pc = getPermissions(domain.getCodeSource());