/hg/icedtea-web: PR687: BasicService.getCodeBase() returns null ...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Wed Apr 20 12:34:37 PDT 2011
changeset 6528c988d538 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=6528c988d538
author: Omair Majid <omajid at redhat.com>
date: Wed Apr 20 15:34:10 2011 -0400
PR687: BasicService.getCodeBase() returns null for IcedTea6 1.9.7 +
OSGI
The patch modifies how we try to find the JNLPClassLoader (from
which we find the ApplicationInstance). We first search the Context
ClassLoader (and it's parents) and then we search the ClassLoader
for the classes on the stack (and their parents). The Launcher
always sets the Context ClassLoader of the applications/applets it
launches.
diffstat:
ChangeLog | 9 ++
netx/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java | 56 ++++++++++----
2 files changed, 49 insertions(+), 16 deletions(-)
diffs (103 lines):
diff -r a3cbdab9bd7a -r 6528c988d538 ChangeLog
--- a/ChangeLog Wed Apr 20 15:23:49 2011 -0400
+++ b/ChangeLog Wed Apr 20 15:34:10 2011 -0400
@@ -1,3 +1,12 @@
+2011-04-20 Omair Majid <omajid at redhat.com>
+
+ * netx/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java
+ (getApplication(Class[],int)): Renamed to ...
+ (getApplication(Thread,Class[],int)): New method. Check the thread's
+ context ClassLoader as well as parents of the classloader.
+ (getJnlpClassLoader): New method.
+ (getApplication, checkExit): Update to work with new method signatures.
+
2011-04-20 Omair Majid <omajid at redhat.com>
* plugin/icedteanp/java/sun/applet/PluginAppletSecurityContext.java
diff -r a3cbdab9bd7a -r 6528c988d538 netx/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java Wed Apr 20 15:23:49 2011 -0400
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java Wed Apr 20 15:34:10 2011 -0400
@@ -165,7 +165,7 @@
* determined.
*/
protected ApplicationInstance getApplication() {
- return getApplication(getClassContext(), 0);
+ return getApplication(Thread.currentThread(), getClassContext(), 0);
}
/**
@@ -190,27 +190,51 @@
/**
* Return the current Application, or null.
*/
- protected ApplicationInstance getApplication(Class stack[], int maxDepth) {
+ protected ApplicationInstance getApplication(Thread thread, Class<?> stack[], int maxDepth) {
+ ClassLoader cl;
+ JNLPClassLoader jnlpCl;
+
+ cl = thread.getContextClassLoader();
+ while (cl != null) {
+ jnlpCl = getJnlpClassLoader(cl);
+ if (jnlpCl != null && jnlpCl.getApplication() != null) {
+ return jnlpCl.getApplication();
+ }
+ cl = cl.getParent();
+ }
+
if (maxDepth <= 0)
maxDepth = stack.length;
// this needs to be tightened up
for (int i = 0; i < stack.length && i < maxDepth; i++) {
- ClassLoader cl = stack[i].getClassLoader();
-
- // Since we want to deal with JNLPClassLoader, extract it if this
- // is a codebase loader
- if (cl instanceof JNLPClassLoader.CodeBaseClassLoader)
- cl = ((JNLPClassLoader.CodeBaseClassLoader) cl).getParentJNLPClassLoader();
+ cl = stack[i].getClassLoader();
+ while (cl != null) {
+ jnlpCl = getJnlpClassLoader(cl);
+ if (jnlpCl != null && jnlpCl.getApplication() != null) {
+ return jnlpCl.getApplication();
+ }
+ cl = cl.getParent();
+ }
+ }
+ return null;
+ }
- if (cl instanceof JNLPClassLoader) {
+ /**
+ * Returns the JNLPClassLoader associated with the given ClassLoader, or
+ * null.
+ * @param cl a ClassLoader
+ * @return JNLPClassLoader or null
+ */
+ private JNLPClassLoader getJnlpClassLoader(ClassLoader cl) {
+ // Since we want to deal with JNLPClassLoader, extract it if this
+ // is a codebase loader
+ if (cl instanceof JNLPClassLoader.CodeBaseClassLoader)
+ cl = ((JNLPClassLoader.CodeBaseClassLoader) cl).getParentJNLPClassLoader();
- JNLPClassLoader loader = (JNLPClassLoader) cl;
-
- if (loader != null && loader.getApplication() != null) {
- return loader.getApplication();
- }
- }
+ if (cl instanceof JNLPClassLoader) {
+ JNLPClassLoader loader = (JNLPClassLoader) cl;
+ return loader;
}
return null;
@@ -444,7 +468,7 @@
}
// but when they really call, stop only the app instead of the JVM
- ApplicationInstance app = getApplication(stack, 0);
+ ApplicationInstance app = getApplication(Thread.currentThread(), stack, 0);
if (app == null) {
throw new SecurityException(R("RExitNoApp"));
}
More information about the distro-pkg-dev
mailing list