/hg/release/icedtea6-1.7: Fix policy evaluation to match the pro...
dbhole at icedtea.classpath.org
dbhole at icedtea.classpath.org
Fri Jul 16 12:22:34 PDT 2010
changeset 02f558ca98d8 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=02f558ca98d8
author: Deepak Bhole <dbhole at redhat.com>
date: Fri Jul 16 15:19:55 2010 -0400
Fix policy evaluation to match the proprietary JDK.
diffstat:
3 files changed, 41 insertions(+)
ChangeLog | 5 ++++
Makefile.am | 1
patches/icedtea-policy-evaluation.patch | 35 +++++++++++++++++++++++++++++++
diffs (62 lines):
diff -r f84adc4b21cf -r 02f558ca98d8 ChangeLog
--- a/ChangeLog Fri Jul 16 17:12:55 2010 +0100
+++ b/ChangeLog Fri Jul 16 15:19:55 2010 -0400
@@ -1,3 +1,8 @@ 2010-07-15 Deepak Bhole <dbhole at redhat.
+2010-07-16 Deepak Bhole <dbhole at redhat.com>
+
+ * patches/icedtea-policy-evaluation.patch: New patch. Fixes policy
+ evaluation to match the proprietary JDK.
+
2010-07-15 Deepak Bhole <dbhole at redhat.com>
* patches/openjdk/6678385.patch: New file. Backpatched from jdk7 for
diff -r f84adc4b21cf -r 02f558ca98d8 Makefile.am
--- a/Makefile.am Fri Jul 16 17:12:55 2010 +0100
+++ b/Makefile.am Fri Jul 16 15:19:55 2010 -0400
@@ -308,6 +308,7 @@ ICEDTEA_PATCHES = \
patches/icedtea-linux-separate-debuginfo.patch \
patches/icedtea-parisc.patch \
patches/icedtea-sh4-support.patch \
+ patches/icedtea-policy-evaluation.patch \
patches/libpng.patch \
patches/icedtea-jtreg-httpTest.patch \
patches/security/20100330/hotspot/$(HSBUILD)/6626217.patch \
diff -r f84adc4b21cf -r 02f558ca98d8 patches/icedtea-policy-evaluation.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/icedtea-policy-evaluation.patch Fri Jul 16 15:19:55 2010 -0400
@@ -0,0 +1,35 @@
+# This patch aligns policy evaluation to be the same as the proprietary JDK.
+# http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2010-July/009658.html
+# https://bugs.openjdk.java.net/show_bug.cgi?id=100142
+
+diff -up ./openjdk/jdk/src/share/classes/sun/security/provider/PolicyFile.java.sav ./jdk/src/share/classes/sun/security/provider/PolicyFile.java
+--- ./openjdk.orig/jdk/src/share/classes/sun/security/provider/PolicyFile.java.sav 2010-04-20 14:49:13.000000000 -0400
++++ ./openjdk/jdk/src/share/classes/sun/security/provider/PolicyFile.java 2010-04-20 14:50:26.000000000 -0400
+@@ -1799,6 +1799,27 @@ public class PolicyFile extends java.sec
+
+ CodeSource canonCs = cs;
+ URL u = cs.getLocation();
++
++ // If this is a jar protocol url, collapse it to a
++ // file protocol to process it as per the javadocs
++ if (u != null && u.getProtocol().equals("jar")) {
++ try {
++ String fileURL = "";
++
++ // remove the initial jar:
++ fileURL = u.getPath();
++
++ // remove the part after the !
++ fileURL = fileURL.substring(0, fileURL.indexOf('!'));
++
++ u = new URL(fileURL);
++
++ } catch (Exception e) {
++ // Fail silently. In this case, url stays what it was above
++ }
++
++ }
++
+ if (u != null && u.getProtocol().equals("file")) {
+ boolean isLocalFile = false;
+ String host = u.getHost();
More information about the distro-pkg-dev
mailing list