[Bug 381] Stackoverflow error with security manager, signed jars and -Djava.security.debug set
bugzilla-daemon at icedtea.classpath.org
bugzilla-daemon at icedtea.classpath.org
Thu Aug 20 12:33:21 PDT 2009
http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=381
mark at klomp.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Stackoverflow error with |Stackoverflow error with
|security manager and signed |security manager, signed
|jars |jars and -
| |Djava.security.debug set
------- Comment #3 from mark at klomp.org 2009-08-20 19:33 -------
Nasty recursion. With -Djava.security.debug set the PolicyFile.getPermissions()
call will try to do a debug dump of the current CodeSource ProtectionDomain.
That ProtectionDomain is derived from the certificate that has signed the jar.
To print the x509.CertificateValidity of that certificate it needs to convert
it to a Date object (and then a String) which will end up in the
ZoneInfoFile.readZoneInfoFile() that needs to check a file for which there is a
checkPermission() which ends up in the same PolicyFile.getPermission() call
that will then try to print out the CodeSource ProtectionDomains again...
We need to somehow break this cycle to make this work.
--
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the distro-pkg-dev
mailing list