permission : Java Glossary

*0-9ABCDEFGHIJKLMNOPQRSTUVWXYZ (all)

permission
Even when you are not doing something particularly dangerous, you often must have permission first if you are running in an Applet. The AccessController then studies the site’s security policy in the policyfile decides based on where the code came from, whether it was signed, who it was signed by, how dangerous the thing requested is, etc. etc. whether to grant permission. Even to do something as mild as ask what the default lineseparator is, requires permission, since the policy file could declare this dangerous.

The policyfile controls what every program can and cannot do. It is a global file that sets overall security policy, not a file per program. It is thus difficult to get changed. Normally a system administrator installs the same policyfile on nearly every desk in the institution.

The most important thing to understand is that nothing you put in your code grants you any additional privilege. It is all decided by the policyfile.

I have not used Oracle’s code signing scheme extensively. It seems though that, unlike Netscape’s scheme, you don’t pepper your application code with permission requests. You just go ahead and do what you want to do and deal with any permission failure exceptions. You may do checks to ensure you have sufficient permission before you start some complex action, but that is not required. You, as application programmer, don’t have to ask for permission first the way you with the Netscape and Microsoft schemes.

However, if you want to know in advance just what will succeed, you can use Permissions.

In contrast, Oracle’s library code is boobytrapped all over with code of the form You cannot continue unless you have permission X. If you examine the code for FileInputStream or URLConnection, you can see them checking with the SecurityManager if the actions the plan are allowed before they continue. If not they throw a SecurityException.

// Code from URLConnection checking that user has the right to
// modify the factory that produces Socket Objects.
// It throws a SecurityException if you don't have sufficient privilege.
SecurityManager security = System.getSecurityManager();
if ( security != null )
   {
   security.checkSetFactory();
   }
A more generic check is SecurityManager.checkPermission. AccessController.checkPermission appears to have the identical function.

Oracle’s code, may have privilege, even though the caller of the code may not. Oracle’s code can say in effect, it does not matter if the caller has sufficient privilege, I do and I vouch that what I am doing on the caller’s behalf is safe. If you trust me, trust that this is safe, even if you don’t trust the caller. Here is an example in Oracle’s code in PrintWriter of checking permission to look at the line.separator system property. It permits the operation if the PrintWriter code has permission even if the caller does not.

You need permission to peek at the clipboard, (but not to set it ) in an Applet. To check if you have that permission use code like this:

With Java Web Start, you can check your permissions even before your code loads with XML (extensible Markup Language) statements in the JNLP (Java Network Launching Protocol) file.

There is detailed documentation on the various security classes such as Permission and SecurityManager but I have not found anything that gives a bird’s eye introduction to how it all fits together. You have to piece it together from the class documentation. This whole area could desperately use a tutorial. All I have done is give you some clues. If find out how this all works, please let me know.

Learning More

Oracle’s Javadoc on AWTPermission class : available:


This page is posted
on the web at:

http://mindprod.com/jgloss/permission.html

Optional Replicator mirror
of mindprod.com
on local hard disk J:

J:\mindprod\jgloss\permission.html
Canadian Mind Products
Please the feedback from other visitors, or your own feedback about the site.
Contact Roedy. Please feel free to link to this page without explicit permission.

IP:[65.110.21.43]
Your face IP:[3.95.2.54]
You are visitor number