aboutsummaryrefslogtreecommitdiffstats
path: root/netx/net
diff options
context:
space:
mode:
authorJiri Vanek <[email protected]>2012-05-23 18:22:43 +0200
committerJiri Vanek <[email protected]>2012-05-23 18:22:43 +0200
commit2582f888083334cc50a7348efb2c4cada1f049b5 (patch)
tree09254cfbb13b2e51102b322e151a188e032ec623 /netx/net
parentdf975de76ce38f8a182e6cfe0c4050f6d17d839d (diff)
* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java: (getPermissions):
Any exception from this method is consumed somewhere. I have cough exception, reprint it in debug mode and re-throw (to be lost). Main condition in this method had several possible NullPointer exceptions. Separated and thrown before this condition.
Diffstat (limited to 'netx/net')
-rw-r--r--netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java80
1 files changed, 51 insertions, 29 deletions
diff --git a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
index 6fbc531..d2458af 100644
--- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
@@ -895,44 +895,66 @@ public class JNLPClassLoader extends URLClassLoader {
* Returns the permissions for the CodeSource.
*/
protected PermissionCollection getPermissions(CodeSource cs) {
- Permissions result = new Permissions();
+ try {
+ Permissions result = new Permissions();
- // should check for extensions or boot, automatically give all
- // access w/o security dialog once we actually check certificates.
+ // should check for extensions or boot, automatically give all
+ // access w/o security dialog once we actually check certificates.
- // copy security permissions from SecurityDesc element
- if (security != null) {
- // Security desc. is used only to track security settings for the
- // application. However, an application may comprise of multiple
- // jars, and as such, security must be evaluated on a per jar basis.
+ // copy security permissions from SecurityDesc element
+ if (security != null) {
+ // Security desc. is used only to track security settings for the
+ // application. However, an application may comprise of multiple
+ // jars, and as such, security must be evaluated on a per jar basis.
- // set default perms
- PermissionCollection permissions = security.getSandBoxPermissions();
+ // set default perms
+ PermissionCollection permissions = security.getSandBoxPermissions();
- // If more than default is needed:
- // 1. Code must be signed
- // 2. ALL or J2EE permissions must be requested (note: plugin requests ALL automatically)
- if (cs.getCodeSigners() != null &&
- (getCodeSourceSecurity(cs.getLocation()).getSecurityType().equals(SecurityDesc.ALL_PERMISSIONS) ||
- getCodeSourceSecurity(cs.getLocation()).getSecurityType().equals(SecurityDesc.J2EE_PERMISSIONS))) {
+ // If more than default is needed:
+ // 1. Code must be signed
+ // 2. ALL or J2EE permissions must be requested (note: plugin requests ALL automatically)
+ if (cs == null) {
+ throw new RuntimeException("Code source was null");
+ }
+ if (cs.getLocation() == null) {
+ throw new RuntimeException("Code source location was null");
+ }
+ if (getCodeSourceSecurity(cs.getLocation()) == null) {
+ throw new RuntimeException("Code source security was null");
+ }
+ if (getCodeSourceSecurity(cs.getLocation()).getSecurityType() == null) {
+ throw new RuntimeException("Code source security type was null");
+ }
+ if (cs.getCodeSigners() != null
+ && (getCodeSourceSecurity(cs.getLocation()).getSecurityType().equals(SecurityDesc.ALL_PERMISSIONS)
+ || getCodeSourceSecurity(cs.getLocation()).getSecurityType().equals(SecurityDesc.J2EE_PERMISSIONS))) {
- permissions = getCodeSourceSecurity(cs.getLocation()).getPermissions(cs);
- }
+ permissions = getCodeSourceSecurity(cs.getLocation()).getPermissions(cs);
+ }
- Enumeration<Permission> e = permissions.elements();
- while (e.hasMoreElements())
- result.add(e.nextElement());
- }
+ Enumeration<Permission> e = permissions.elements();
+ while (e.hasMoreElements()) {
+ result.add(e.nextElement());
+ }
+ }
- // add in permission to read the cached JAR files
- for (int i = 0; i < resourcePermissions.size(); i++)
- result.add(resourcePermissions.get(i));
+ // add in permission to read the cached JAR files
+ for (int i = 0; i < resourcePermissions.size(); i++) {
+ result.add(resourcePermissions.get(i));
+ }
- // add in the permissions that the user granted.
- for (int i = 0; i < runtimePermissions.size(); i++)
- result.add(runtimePermissions.get(i));
+ // add in the permissions that the user granted.
+ for (int i = 0; i < runtimePermissions.size(); i++) {
+ result.add(runtimePermissions.get(i));
+ }
- return result;
+ return result;
+ } catch (RuntimeException ex) {
+ if (JNLPRuntime.isDebug()) {
+ ex.printStackTrace();
+ }
+ throw ex;
+ }
}
protected void addPermission(Permission p) {