You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Andrew Zhang (JIRA)" <ji...@apache.org> on 2006/08/21 11:51:13 UTC

[jira] Created: (HARMONY-1242) [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.

[classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception. 
------------------------------------------------------------------------------------------------------

                 Key: HARMONY-1242
                 URL: http://issues.apache.org/jira/browse/HARMONY-1242
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Andrew Zhang


Following test reproduces the bug:

public void test_checkPropertyAccess() throws Exception {
      SecurityManager manager = new SecurityManager();
      manager.checkPropertyAccess("java.version");
    }

The test passes against RI while fails against Harmony. 
I have checked  "java.policy" security file, which also allows "permission java.util.PropertyPermission "java.version","read";" by default. 

Would any security guys help investigate this issue? Thanks a lot!

Best regards,
Andrew


-- 
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

        

[jira] Commented: (HARMONY-1242) [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.

Posted by "Mikhail Loenko (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-1242?page=comments#action_12430200 ] 
            
Mikhail Loenko commented on HARMONY-1242:
-----------------------------------------

Andrew, please check that it works

> [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.
> -----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1242
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1242
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Andrew Zhang
>         Assigned To: Mikhail Loenko
>
> Following test reproduces the bug:
> public void test_checkPropertyAccess() throws Exception {
>       SecurityManager manager = new SecurityManager();
>       manager.checkPropertyAccess("java.version");
>     }
> The test passes against RI while fails against Harmony. 
> I have checked  "java.policy" security file, which also allows "permission java.util.PropertyPermission "java.version","read";" by default. 
> Would any security guys help investigate this issue? Thanks a lot!
> Best regards,
> Andrew

-- 
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

        

[jira] Resolved: (HARMONY-1242) [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.

Posted by "Mikhail Loenko (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1242?page=all ]

Mikhail Loenko resolved HARMONY-1242.
-------------------------------------

    Resolution: Fixed

fixed in revision 433575
I'm going to add regression test also

> [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.
> -----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1242
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1242
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Andrew Zhang
>         Assigned To: Mikhail Loenko
>
> Following test reproduces the bug:
> public void test_checkPropertyAccess() throws Exception {
>       SecurityManager manager = new SecurityManager();
>       manager.checkPropertyAccess("java.version");
>     }
> The test passes against RI while fails against Harmony. 
> I have checked  "java.policy" security file, which also allows "permission java.util.PropertyPermission "java.version","read";" by default. 
> Would any security guys help investigate this issue? Thanks a lot!
> Best regards,
> Andrew

-- 
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

        

[jira] Commented: (HARMONY-1242) [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.

Posted by "Andrew Zhang (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-1242?page=comments#action_12436722 ] 
            
Andrew Zhang commented on HARMONY-1242:
---------------------------------------

Thanks Mikhail,

The fix looks good. 

Best regards,
Andrew

> [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.
> -----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1242
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1242
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Andrew Zhang
>         Assigned To: Mikhail Loenko
>
> Following test reproduces the bug:
> public void test_checkPropertyAccess() throws Exception {
>       SecurityManager manager = new SecurityManager();
>       manager.checkPropertyAccess("java.version");
>     }
> The test passes against RI while fails against Harmony. 
> I have checked  "java.policy" security file, which also allows "permission java.util.PropertyPermission "java.version","read";" by default. 
> Would any security guys help investigate this issue? Thanks a lot!
> Best regards,
> Andrew

-- 
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

        

[jira] Closed: (HARMONY-1242) [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.

Posted by "Mikhail Loenko (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1242?page=all ]

Mikhail Loenko closed HARMONY-1242.
-----------------------------------


> [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.
> -----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1242
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1242
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Andrew Zhang
>         Assigned To: Mikhail Loenko
>
> Following test reproduces the bug:
> public void test_checkPropertyAccess() throws Exception {
>       SecurityManager manager = new SecurityManager();
>       manager.checkPropertyAccess("java.version");
>     }
> The test passes against RI while fails against Harmony. 
> I have checked  "java.policy" security file, which also allows "permission java.util.PropertyPermission "java.version","read";" by default. 
> Would any security guys help investigate this issue? Thanks a lot!
> Best regards,
> Andrew

-- 
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

        

[jira] Resolved: (HARMONY-1242) [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.

Posted by "Mikhail Loenko (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1242?page=all ]

Mikhail Loenko resolved HARMONY-1242.
-------------------------------------

    Resolution: Fixed

the root cause bug was fixed - block comment was returned back

> [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.
> -----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1242
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1242
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Andrew Zhang
>         Assigned To: Mikhail Loenko
>
> Following test reproduces the bug:
> public void test_checkPropertyAccess() throws Exception {
>       SecurityManager manager = new SecurityManager();
>       manager.checkPropertyAccess("java.version");
>     }
> The test passes against RI while fails against Harmony. 
> I have checked  "java.policy" security file, which also allows "permission java.util.PropertyPermission "java.version","read";" by default. 
> Would any security guys help investigate this issue? Thanks a lot!
> Best regards,
> Andrew

-- 
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

        

[jira] Reopened: (HARMONY-1242) [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.

Posted by "Mikhail Loenko (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1242?page=all ]

Mikhail Loenko reopened HARMONY-1242:
-------------------------------------

             
should be able to accept block comments in the policy file

> [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.
> -----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1242
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1242
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Andrew Zhang
>         Assigned To: Mikhail Loenko
>
> Following test reproduces the bug:
> public void test_checkPropertyAccess() throws Exception {
>       SecurityManager manager = new SecurityManager();
>       manager.checkPropertyAccess("java.version");
>     }
> The test passes against RI while fails against Harmony. 
> I have checked  "java.policy" security file, which also allows "permission java.util.PropertyPermission "java.version","read";" by default. 
> Would any security guys help investigate this issue? Thanks a lot!
> Best regards,
> Andrew

-- 
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

        

[jira] Assigned: (HARMONY-1242) [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.

Posted by "Mikhail Loenko (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1242?page=all ]

Mikhail Loenko reassigned HARMONY-1242:
---------------------------------------

    Assignee: Mikhail Loenko

> [classlib][security] SecurityManager.checkPropertyAccess("java.version") throws unexpected exception.
> -----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1242
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1242
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Andrew Zhang
>         Assigned To: Mikhail Loenko
>
> Following test reproduces the bug:
> public void test_checkPropertyAccess() throws Exception {
>       SecurityManager manager = new SecurityManager();
>       manager.checkPropertyAccess("java.version");
>     }
> The test passes against RI while fails against Harmony. 
> I have checked  "java.policy" security file, which also allows "permission java.util.PropertyPermission "java.version","read";" by default. 
> Would any security guys help investigate this issue? Thanks a lot!
> Best regards,
> Andrew

-- 
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