You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Paulex Yang (JIRA)" <ji...@apache.org> on 2006/10/26 16:10:18 UTC

[jira] Resolved: (HARMONY-1963) [classlib][security] Harmony cannot read security policy file correctly

     [ http://issues.apache.org/jira/browse/HARMONY-1963?page=all ]

Paulex Yang resolved HARMONY-1963.
----------------------------------

    Resolution: Fixed
      Assignee: Paulex Yang

Boris, it works! Thank you very much for this enhancement, please verify the patch is applied as you expected.

> [classlib][security] Harmony cannot read security policy file correctly
> -----------------------------------------------------------------------
>
>                 Key: HARMONY-1963
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1963
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: Harmony classlib + IBM VME, windows XP+sp2
>            Reporter: Paulex Yang
>         Assigned To: Paulex Yang
>         Attachments: patch.txt
>
>
> I created simple a java.policy file[1], and try to run SecurityManagerTest with argument:
> -Djava.security.manager -Dtest.bin.dir=<path to test bin directory> -Djava.security.policy=<path to policy file>
> public class SecurityManagerTest {
>     public static void main(String[] args) throws Exception{
>         System.out.println(System.getProperty("os.name")); //read access for this property has been granted by default policy
>         System.out.println(System.getProperty("notexist")); // no access for this property has been granted by default policy
>       }
> }
> RI prints:
> Windows XP
> null
> Harmony prints:
> Windows XP
> K0319java.security.AccessControlException: Access denied (java.util.PropertyPermission notexist read)
> 	at java.security.AccessController.checkPermission(AccessController.java:94)
> 	at java.lang.SecurityManager.checkPermission(SecurityManager.java:739)
> 	at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:374)
> 	at java.lang.System.getProperty(System.java:675)
> 	at java.lang.System.getProperty(System.java:660)
> 	at SecurityManagerTest.main(Unknown Source)
> I got same results if add the content customized java.policy to default policy file without specifying policy file in cmd line.
> [1]
> grant codeBase "file:${test.bin.dir}/-" {
>   permission java.security.AllPermission;
> };

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira