/hg/icedtea-web: Fixed classloader sharing rules for applets
dbhole at icedtea.classpath.org
dbhole at icedtea.classpath.org
Mon Mar 28 10:41:15 PDT 2011
changeset 331d5d580cc4 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=331d5d580cc4
author: Deepak Bhole <dbhole at redhat.com>
date: Mon Mar 28 13:41:16 2011 -0400
Fixed classloader sharing rules for applets
diffstat:
ChangeLog | 7 ++++++
netx/net/sourceforge/jnlp/PluginBridge.java | 31 +++++++++++++++++++++++++---
2 files changed, 34 insertions(+), 4 deletions(-)
diffs (55 lines):
diff -r d94fc0fb8a53 -r 331d5d580cc4 ChangeLog
--- a/ChangeLog Fri Mar 25 14:23:28 2011 -0400
+++ b/ChangeLog Mon Mar 28 13:41:16 2011 -0400
@@ -1,3 +1,10 @@
+2011-03-28 Deepak Bhole <dbhole at redhat.com>
+
+ * netx/net/sourceforge/jnlp/PluginBridge.java
+ (PluginBridge): Construct unique key based on a combination of
+ codebase, cache_archive, java_archive, and archive. This automatically
+ ensures are loaders are shared only when appropriate.
+
2011-03-25 Denis Lila <dlila at redhat.com>
* netx/net/sourceforge/jnlp/PluginBridge.java
diff -r d94fc0fb8a53 -r 331d5d580cc4 netx/net/sourceforge/jnlp/PluginBridge.java
--- a/netx/net/sourceforge/jnlp/PluginBridge.java Fri Mar 25 14:23:28 2011 -0400
+++ b/netx/net/sourceforge/jnlp/PluginBridge.java Mon Mar 28 13:41:16 2011 -0400
@@ -132,10 +132,33 @@
else
security = null;
- // Plugin needs to share classloaders so that applet instances from
- // same page can communicate (there are applets known to require
- // such communication for proper functionality)
- this.uniqueKey = documentBase.toString();
+ /* According to http://download.oracle.com/javase/6/docs/technotes/guides/deployment/deployment-guide/applet-compatibility.html,
+ * classloaders are shared iff these properties match:
+ * codebase, cache_archive, java_archive, archive
+ *
+ * To achieve this, we create the uniquekey based on those 4 values,
+ * always in the same order. The initial "<NAME>=" parts ensure a
+ * bad tag cannot trick the loader into getting shared with another.
+ */
+
+ // Firefox sometimes skips the codebase if it is default -- ".",
+ // so set it that way if absent
+ String codebaseAttr = atts.get("codebase") != null ?
+ atts.get("codebase") : ".";
+
+ String cache_archiveAttr = atts.get("cache_archive") != null ?
+ atts.get("cache_archive") : "";
+
+ String java_archiveAttr = atts.get("java_archive") != null ?
+ atts.get("java_archive") : "";
+
+ String archiveAttr = atts.get("archive") != null ?
+ atts.get("archive") : "";
+
+ this.uniqueKey = "codebase=" + codebaseAttr +
+ "cache_archive=" + cache_archiveAttr +
+ "java_archive=" + java_archiveAttr +
+ "archive=" + archiveAttr;
usePack = false;
useVersion = false;
More information about the distro-pkg-dev
mailing list