Sebastian Probst Eide

less info
21 reputation
4
bio website
location
age
visits member for 7 months
seen May 17 at 13:54
stats profile views 7

Co-Founder at Aircloak.com


Dec
13
awarded  Scholar
Dec
13
awarded  Supporter
Dec
13
accepted AccessController not taking a class' ProtectionDomain into account [resolved]
Dec
12
revised AccessController not taking a class' ProtectionDomain into account [resolved]
can't spell OS name
Dec
12
answered AccessController not taking a class' ProtectionDomain into account [resolved]
Dec
12
comment AccessController not taking a class' ProtectionDomain into account [resolved]
Thank you for your answer. Unfortunately it does not work. The SecureClassLoader applies permissions it believes to be correct. Unfortunately these are not the same as the permissions required by my system. I need to be able to finely apply exactly the permissions I need for my code to run, and therefore need to use the defineClass method that allows me to set the PermissionDomain. I managed to solve the problem this morning. The issue was that the SecurityManager itself didn't have enough permissions. I'll write it up as a proper answer for future readers. Thanks again for all the help!
Dec
11
comment AccessController not taking a class' ProtectionDomain into account [resolved]
@fatfredyy I wonder if the issue might actually be that the SecurityManager itself doesn't have permissions, and it therefore eliminates the permissions otherwise granted the "query" through the doPrivileged block?
Dec
11
revised AccessController not taking a class' ProtectionDomain into account [resolved]
edited to include potential answer
Dec
11
comment AccessController not taking a class' ProtectionDomain into account [resolved]
For all intents and purposes I get the classes passed to me as byte arrays. Then, in my ClassLoader, I call defineClass(name, binary, protection-domain). The protection-domains are created by the class loader as well, and contain exactly the set of permissions I want that particular class to have.
Dec
11
comment AccessController not taking a class' ProtectionDomain into account [resolved]
Thanks @fatfredyy, I have now changed the question based on your comment. As it turns out, the question is now a completely different one.
Dec
11
revised AccessController not taking a class' ProtectionDomain into account [resolved]
some clarification of the language
Dec
11
revised AccessController not taking a class' ProtectionDomain into account [resolved]
changed question as a result of understanding the problem better
Dec
11
revised AccessController not taking a class' ProtectionDomain into account [resolved]
question has changed. Notice to readers while editing
Dec
11
comment AccessController not taking a class' ProtectionDomain into account [resolved]
@fatfredyy posted my java.policy file above. Very good catch with using SecurityManager.checkPermission instead of AccessController.checkPermission. I changed it, and now my check throws an AccessControlException as well. Seems like the permissions get lost when passing through the SecurityManager? That completely changes my question. I'll update it accordingly. Thanks!
Dec
11
revised AccessController not taking a class' ProtectionDomain into account [resolved]
added link to my java.policy file
Dec
11
revised AccessController not taking a class' ProtectionDomain into account [resolved]
Add context to exception trace
Dec
11
awarded  Student
Dec
11
awarded  Editor
Dec
11
revised AccessController not taking a class' ProtectionDomain into account [resolved]
Made title more explicit
Dec
11
asked AccessController not taking a class' ProtectionDomain into account [resolved]