Start line:  
End line:  

Snippet Preview

Snippet HTML Code

Stack Overflow Questions
Does reflection breaks the idea of private methods, because private methods can be access outside of the class? (Maybe I dont understand the meaning of reflection or miss something else, please write) http://en.wikipedia.org/wiki/Reflection_%28computer_science%29 Edit: If relection breaks the idea of private methods - does we use private methods only for program logic and not for program secur...
In a simulation server environment where users are allowed to submit their own code to be run by the server, it would clearly be advantageous for any user-submitted code to be run in side a sandbox, not unlike Applets are within a browser. I wanted to be able to leverage the JVM itself, rather than adding another VM layer to isolate these submitted components. This kind of limitation appears ...
Does Java have a built-in Antivirus? One of my friends told me there is in the JVM itself - it's called the "sandbox". Is it true?
I want to make my application to run other people's code, aka plugins. However, what options do I have to make this secure so they don't write malicous code. How do I control what they can or can not do? I have stumbled around that JVM has a "built in sandbox" feature - what is it and is this the only way? Are there third-party Java libraries for making a sandbox? What options do I have? Link...
I'm programming a Java server that has to handle Python code given by the user using Jython. Obviously, I can't just execute it without some risk of a cracker accessing files and system commands that he/she shouldn't. I've been searching for some way to restrict file permissions for specific threads for hours now, and the closest I've gotten was restricting file permissions for the entire appli...
To my astonishment and horror, I've just encountered the line System.exit(1); in a library I use. I'm planning on contacting the library's authors and asking what gives, but meanwhile is there any way to prevent the library from killing my code (and worse, killing the application using my code)? Perhaps somehow force the library to throw a SecurityException, which I see that exit(int) may throw?
I need to call some semi-trustworthy Java code and want to disable the ability to use reflection for the duration of that code's execution. try{ // disable reflection somehow someObject.method(); } finally{ // enable reflection again } Can this be done with a SecurityManager, and if so, how? Clarification/Context: This is a follow-up to another question about restricting the pack...
In Java, whenever an inner class instance is created, it is associated with an instance of an outer class. Out of curiosity, is it possible to associate the inner class with another instance of an outer class instead?
I am writing web app for java learning. Using which users may compile their code on my serwer + run that code. Compiling is easy with JavaCompiler: JavaCompiler compiler = ToolProvider.getSystemJavaCompiler(); DiagnosticCollector<JavaFileObject> diagnostics = new DiagnosticCollector<JavaFileObject>(); CompilationTask task = compiler.getTask(null, null, diagnostics, nu...
This is a question I was asked in an interview: I have class A with private members and Class B extends A. I know private members of a class cannot be accessed, but the question is: I need to access private members of class A from class B, rather than create variables with the same value in class B. I hope I am clear with this question. Thanks.
Assume I have a singleton class in an external lib to my application. But still I can create instances of that particular class using reflection. Like this Class clas = Class.forName(Private.class.getName()); for(Constructor c : clas.getDeclaredConstructors()){ c.setAccessible(true); Private p = (Private) c.newInstance(); System.out.println(p); } How ca...
Consider this sample class, class TargetClass { private static String SENSITIVE_DATA = "sw0rdfish"; private static String getSensitiveData() { return SENSITIVE_DATA; } } When I do this, import java.lang.reflect.Method; public class ClassPiercing { public static void main(String... args) throws Exception { Class targetClass = Class.forName("TargetClass"); ...
My small utility application asks the user for an output directory via a GUI file selector. Then it creates a lot of files in this output directory after some processing. I need to check if the application has write access so that it informs the user and does not continue with the processing (which might take a long time) My first attempt was the canWrite() method of java.io.File. But this d...
I am writing a container framework that can dynamically deploy a Jar file containing user developed classes in the container, and then using a web interface execute certain classes from the Jar file. Everything else is well set, including the validations. However, a requirement is to only allow access to certain JDK and other library classes from the user developed class. Clearly, this is du...
How to restrict developers to use reflection to access private methods and constructors in Java? Using normal Java code we can't access private constructors or private methods outside of a class. But by using reflection we can access any private methods and constructors in a Java class. So how can we give security to our Java code?
In Java we use System.setProperty() method to set some system properties. According to this article the use of system properties is bit tricky. System.setProperty() can be an evil call. * It is 100% thread-hostile * It contains super-global variables * It is extremely difficult to debug when these variables mysteriously change at runtime My questions are as follows. How about the scop...
With the following settings: log4j.appender.file=org.apache.log4j.RollingFileAppender log4j.appender.file.maxFileSize=100KB log4j.appender.file.maxBackupIndex=5 log4j.appender.file.File=test.log log4j.appender.file.threshold=info log4j.appender.file.layout=org.apache.log4j.PatternLayout log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n Where does the test.log file...
I have a simple class in executable JAR file: public final class Main { public static void main(String[] args) { System.out.println("hello, world!"); System.exit(-1); } } Now I'm trying to test this class/method: public class MainTest { @Test public void testMain() { Main.main(new String[] { "something" }); } } Testing crashes on System.exit(0), and I can understand wh...
I've been enjoying a hefty process creation penalty on my Windows XP Home SP3 for about two months. The problem is most manifest and annoying with tasks that do create lots of processes, such as shell scripts (incidentally, bash scripts on Cygwin), Makefiles, or unpacking an IzPack package such as the SpringSource Tool Suite installer (lots of separate unpack200.exe JAR extractor processes). I'...
I'm looking to build a web service that can compile some entered code (probably C/Java) and can run some tests on it. What kind of design should I follow? What compiler can I place on my server to do the job? Recommendations? Pros? Cons?
I'm trying to do a simple program for RMI. But, I'm getting the following exception while running the line Naming.rebind("interfacename",Remoteserverobject); java.security.AccessControlException: access denied (java.net.SocketPermission 127.0.0.1:1099 connect,resolve) My Code is as follows: public static void main(String[] args) throws Exception { if(System.getSecurityM...
   /*
    * Copyright 1995-2006 Sun Microsystems, Inc.  All Rights Reserved.
    * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    *
    * This code is free software; you can redistribute it and/or modify it
    * under the terms of the GNU General Public License version 2 only, as
    * published by the Free Software Foundation.  Sun designates this
    * particular file as subject to the "Classpath" exception as provided
    * by Sun in the LICENSE file that accompanied this code.
   *
   * This code is distributed in the hope that it will be useful, but WITHOUT
   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
   * version 2 for more details (a copy is included in the LICENSE file that
   * accompanied this code).
   *
   * You should have received a copy of the GNU General Public License version
   * 2 along with this work; if not, write to the Free Software Foundation,
   * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
   *
   * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
   * CA 95054 USA or visit www.sun.com if you need additional information or
   * have any questions.
   */
  
  package java.lang;
  
  import java.security.*;
  import java.io.File;
  import java.net.URL;
  
The security manager is a class that allows applications to implement a security policy. It allows an application to determine, before performing a possibly unsafe or sensitive operation, what the operation is and whether it is being attempted in a security context that allows the operation to be performed. The application can allow or disallow the operation.

The SecurityManager class contains many methods with names that begin with the word check. These methods are called by various methods in the Java libraries before those methods perform certain potentially sensitive operations. The invocation of such a check method typically looks like this:

     SecurityManager security = System.getSecurityManager();
     if (security != null) {
         security.checkXXX(argument,  . . . );
     }
 

The security manager is thereby given an opportunity to prevent completion of the operation by throwing an exception. A security manager routine simply returns if the operation is permitted, but throws a SecurityException if the operation is not permitted. The only exception to this convention is checkTopLevelWindow, which returns a boolean value.

The current security manager is set by the setSecurityManager method in class System. The current security manager is obtained by the getSecurityManager method.

The special method checkPermission(java.security.Permission) determines whether an access request indicated by a specified permission should be granted or denied. The default implementation calls

   AccessController.checkPermission(perm);
 

If a requested access is allowed, checkPermission returns quietly. If denied, a SecurityException is thrown.

As of Java 2 SDK v1.2, the default implementation of each of the other check methods in SecurityManager is to call the SecurityManager checkPermission method to determine if the calling thread has permission to perform the requested operation.

Note that the checkPermission method with just a single permission argument always performs security checks within the context of the currently executing thread. Sometimes a security check that should be made within a given context will actually need to be done from within a different context (for example, from within a worker thread). The getSecurityContext method and the checkPermission method that includes a context argument are provided for this situation. The getSecurityContext method returns a "snapshot" of the current calling context. (The default implementation returns an AccessControlContext object.) A sample call is the following:

   Object context = null;
   SecurityManager sm = System.getSecurityManager();
   if (sm != null) context = sm.getSecurityContext();
 

The checkPermission method that takes a context object in addition to a permission makes access decisions based on that context, rather than on that of the current execution thread. Code within a different context can thus call that method, passing the permission and the previously-saved context object. A sample call, using the SecurityManager sm obtained as in the previous example, is the following:

   if (sm != null) sm.checkPermission(permission, context);
 

Permissions fall into these categories: File, Socket, Net, Security, Runtime, Property, AWT, Reflect, and Serializable. The classes managing these various permission categories are java.io.FilePermission, java.net.SocketPermission, java.net.NetPermission, java.security.SecurityPermission, java.lang.RuntimePermission, java.util.PropertyPermission, java.awt.AWTPermission, java.lang.reflect.ReflectPermission, and java.io.SerializablePermission.

All but the first two (FilePermission and SocketPermission) are subclasses of java.security.BasicPermission, which itself is an abstract subclass of the top-level class for permissions, which is java.security.Permission. BasicPermission defines the functionality needed for all permissions that contain a name that follows the hierarchical property naming convention (for example, "exitVM", "setFactory", "queuePrintJob", etc). An asterisk may appear at the end of the name, following a ".", or by itself, to signify a wildcard match. For example: "a.*" or "*" is valid, "*a" or "a*b" is not valid.

FilePermission and SocketPermission are subclasses of the top-level class for permissions (java.security.Permission). Classes like these that have a more complicated name syntax than that used by BasicPermission subclass directly from Permission rather than from BasicPermission. For example, for a java.io.FilePermission object, the permission name is the path name of a file (or directory).

Some of the permission classes have an "actions" list that tells the actions that are permitted for the object. For example, for a java.io.FilePermission object, the actions list (such as "read, write") specifies which actions are granted for the specified file (or for files in the specified directory).

Other permission classes are for "named" permissions - ones that contain a name but no actions list; you either have the named permission or you don't.

Note: There is also a java.security.AllPermission permission that implies all permissions. It exists to simplify the work of system administrators who might need to perform multiple tasks that require all (or numerous) permissions.

See Permissions in the JDK for permission-related information. This document includes, for example, a table listing the various SecurityManager check methods and the permission(s) the default implementation of each such method requires. It also contains a table of all the version 1.2 methods that require permissions, and for each such method tells which permission it requires.

For more information about SecurityManager changes made in the JDK and advice regarding porting of 1.1-style security managers, see the security documentation.

 
 public
 class SecurityManager {

    
This field is true if there is a security check in progress; false otherwise.

Deprecated:
This type of security checking is not recommended. It is recommended that the checkPermission call be used instead.
 
     @Deprecated
     protected boolean inCheck;
 
     /*
      * Have we been initialized. Effective against finalizer attacks.
      */
     private boolean initialized = false;


    
returns true if the current context has been granted AllPermission
 
     private boolean hasAllPermission()
     {
         try {
             return true;
         } catch (SecurityException se) {
             return false;
         }
     }

    
Tests if there is a security check in progress.

Deprecated:
This type of security checking is not recommended. It is recommended that the checkPermission call be used instead.
Returns:
the value of the inCheck field. This field should contain true if a security check is in progress, false otherwise.
See also:
inCheck
 
     @Deprecated
     public boolean getInCheck() {
         return ;
     }

    
Constructs a new SecurityManager.

If there is a security manager already installed, this method first calls the security manager's checkPermission method with the RuntimePermission("createSecurityManager") permission to ensure the calling thread has permission to create a new security manager. This may result in throwing a SecurityException.

Throws:
SecurityException if a security manager already exists and its checkPermission method doesn't allow creation of a new security manager.
See also:
System.getSecurityManager()
checkPermission(java.security.Permission) checkPermission
RuntimePermission
 
     public SecurityManager() {
         synchronized(SecurityManager.class) {
             SecurityManager sm = System.getSecurityManager();
             if (sm != null) {
                 // ask the currently installed security manager if we
                 // can create a new one.
                 sm.checkPermission(new RuntimePermission
                                    ("createSecurityManager"));
             }
              = true;
         }
     }

    
Returns the current execution stack as an array of classes.

The length of the array is the number of methods on the execution stack. The element at index 0 is the class of the currently executing method, the element at index 1 is the class of that method's caller, and so on.

Returns:
the execution stack.
 
     protected native Class[] getClassContext();

    
Returns the class loader of the most recently executing method from a class defined using a non-system class loader. A non-system class loader is defined as being a class loader that is not equal to the system class loader (as returned by ClassLoader.getSystemClassLoader()) or one of its ancestors.

This method will return null in the following three cases:

  1. All methods on the execution stack are from classes defined using the system class loader or one of its ancestors.
  2. All methods on the execution stack up to the first "privileged" caller (see java.security.AccessController.doPrivileged(java.security.PrivilegedAction)) are from classes defined using the system class loader or one of its ancestors.
  3. A call to checkPermission with java.security.AllPermission does not result in a SecurityException.

Deprecated:
This type of security checking is not recommended. It is recommended that the checkPermission call be used instead.
Returns:
the class loader of the most recent occurrence on the stack of a method from a class defined using a non-system class loader.
See also:
ClassLoader.getSystemClassLoader() getSystemClassLoader
checkPermission(java.security.Permission) checkPermission
 
     @Deprecated
     protected ClassLoader currentClassLoader()
     {
         ClassLoader cl = currentClassLoader0();
         if ((cl != null) && hasAllPermission())
             cl = null;
         return cl;
     }
 
     private native ClassLoader currentClassLoader0();

    
Returns the class of the most recently executing method from a class defined using a non-system class loader. A non-system class loader is defined as being a class loader that is not equal to the system class loader (as returned by ClassLoader.getSystemClassLoader()) or one of its ancestors.

This method will return null in the following three cases:

  1. All methods on the execution stack are from classes defined using the system class loader or one of its ancestors.
  2. All methods on the execution stack up to the first "privileged" caller (see java.security.AccessController.doPrivileged(java.security.PrivilegedAction)) are from classes defined using the system class loader or one of its ancestors.
  3. A call to checkPermission with java.security.AllPermission does not result in a SecurityException.

Deprecated:
This type of security checking is not recommended. It is recommended that the checkPermission call be used instead.
Returns:
the class of the most recent occurrence on the stack of a method from a class defined using a non-system class loader.
See also:
ClassLoader.getSystemClassLoader() getSystemClassLoader
checkPermission(java.security.Permission) checkPermission
 
     @Deprecated
     protected Class<?> currentLoadedClass() {
         Class c = currentLoadedClass0();
         if ((c != null) && hasAllPermission())
             c = null;
         return c;
     }

    
Returns the stack depth of the specified class.

Deprecated:
This type of security checking is not recommended. It is recommended that the checkPermission call be used instead.
Parameters:
name the fully qualified name of the class to search for.
Returns:
the depth on the stack frame of the first occurrence of a method from a class with the specified name; -1 if such a frame cannot be found.
 
     @Deprecated
     protected native int classDepth(String name);

    
Returns the stack depth of the most recently executing method from a class defined using a non-system class loader. A non-system class loader is defined as being a class loader that is not equal to the system class loader (as returned by ClassLoader.getSystemClassLoader()) or one of its ancestors.

This method will return -1 in the following three cases:

  1. All methods on the execution stack are from classes defined using the system class loader or one of its ancestors.
  2. All methods on the execution stack up to the first "privileged" caller (see java.security.AccessController.doPrivileged(java.security.PrivilegedAction)) are from classes defined using the system class loader or one of its ancestors.
  3. A call to checkPermission with java.security.AllPermission does not result in a SecurityException.

Deprecated:
This type of security checking is not recommended. It is recommended that the checkPermission call be used instead.
Returns:
the depth on the stack frame of the most recent occurrence of a method from a class defined using a non-system class loader.
See also:
ClassLoader.getSystemClassLoader() getSystemClassLoader
checkPermission(java.security.Permission) checkPermission
 
     @Deprecated
     protected int classLoaderDepth()
     {
         int depth = classLoaderDepth0();
         if (depth != -1) {
             if (hasAllPermission())
                 depth = -1;
             else
                 depth--; // make sure we don't include ourself
         }
         return depth;
     }
 
     private native int classLoaderDepth0();

    
Tests if a method from a class with the specified name is on the execution stack.

Deprecated:
This type of security checking is not recommended. It is recommended that the checkPermission call be used instead.
Parameters:
name the fully qualified name of the class.
Returns:
true if a method from a class with the specified name is on the execution stack; false otherwise.
 
     @Deprecated
     protected boolean inClass(String name) {
         return classDepth(name) >= 0;
     }

    
Basically, tests if a method from a class defined using a class loader is on the execution stack.

Deprecated:
This type of security checking is not recommended. It is recommended that the checkPermission call be used instead.
Returns:
true if a call to currentClassLoader has a non-null return value.
See also:
currentClassLoader() currentClassLoader
 
     @Deprecated
     protected boolean inClassLoader() {
         return currentClassLoader() != null;
     }

    
Creates an object that encapsulates the current execution environment. The result of this method is used, for example, by the three-argument checkConnect method and by the two-argument checkRead method. These methods are needed because a trusted method may be called on to read a file or open a socket on behalf of another method. The trusted method needs to determine if the other (possibly untrusted) method would be allowed to perform the operation on its own.

The default implementation of this method is to return an AccessControlContext object.

Returns:
an implementation-dependent object that encapsulates sufficient information about the current execution environment to perform some security checks later.
See also:
checkConnect(java.lang.String,int,java.lang.Object) checkConnect
checkRead(java.lang.String,java.lang.Object) checkRead
java.security.AccessControlContext AccessControlContext
 
     public Object getSecurityContext() {
         return AccessController.getContext();
     }

    
Throws a SecurityException if the requested access, specified by the given permission, is not permitted based on the security policy currently in effect.

This method calls AccessController.checkPermission with the given permission.

Parameters:
perm the requested permission.
Throws:
SecurityException if access is not permitted based on the current security policy.
NullPointerException if the permission argument is null.
Since:
1.2
 
     public void checkPermission(Permission perm) {
         java.security.AccessController.checkPermission(perm);
     }

    
Throws a SecurityException if the specified security context is denied access to the resource specified by the given permission. The context must be a security context returned by a previous call to getSecurityContext and the access control decision is based upon the configured security policy for that security context.

If context is an instance of AccessControlContext then the AccessControlContext.checkPermission method is invoked with the specified permission.

If context is not an instance of AccessControlContext then a SecurityException is thrown.

Parameters:
perm the specified permission
context a system-dependent security context.
Throws:
SecurityException if the specified security context is not an instance of AccessControlContext (e.g., is null), or is denied access to the resource specified by the given permission.
NullPointerException if the permission argument is null.
Since:
1.2
See also:
getSecurityContext()
java.security.AccessControlContext.checkPermission(java.security.Permission)
 
     public void checkPermission(Permission permObject context) {
         if (context instanceof AccessControlContext) {
             ((AccessControlContext)context).checkPermission(perm);
         } else {
             throw new SecurityException();
         }
     }

    
Throws a SecurityException if the calling thread is not allowed to create a new class loader.

This method calls checkPermission with the RuntimePermission("createClassLoader") permission.

If you override this method, then you should make a call to super.checkCreateClassLoader at the point the overridden method would normally throw an exception.

Throws:
SecurityException if the calling thread does not have permission to create a new class loader.
See also:
java.lang.ClassLoader.ClassLoader.()
checkPermission(java.security.Permission) checkPermission
 
     public void checkCreateClassLoader() {
     }

    
reference to the root thread group, used for the checkAccess methods.
 
 
     private static ThreadGroup rootGroup = getRootGroup();
 
     private static ThreadGroup getRootGroup() {
         ThreadGroup root =  Thread.currentThread().getThreadGroup();
         while (root.getParent() != null) {
             root = root.getParent();
         }
         return root;
     }

    
Throws a SecurityException if the calling thread is not allowed to modify the thread argument.

This method is invoked for the current security manager by the stop, suspend, resume, setPriority, setName, and setDaemon methods of class Thread.

If the thread argument is a system thread (belongs to the thread group with a null parent) then this method calls checkPermission with the RuntimePermission("modifyThread") permission. If the thread argument is not a system thread, this method just returns silently.

Applications that want a stricter policy should override this method. If this method is overridden, the method that overrides it should additionally check to see if the calling thread has the RuntimePermission("modifyThread") permission, and if so, return silently. This is to ensure that code granted that permission (such as the JDK itself) is allowed to manipulate any thread.

If this method is overridden, then super.checkAccess should be called by the first statement in the overridden method, or the equivalent security check should be placed in the overridden method.

Parameters:
t the thread to be checked.
Throws:
SecurityException if the calling thread does not have permission to modify the thread.
NullPointerException if the thread argument is null.
See also:
Thread.resume() resume
Thread.setDaemon(boolean) setDaemon
Thread.setName(java.lang.String) setName
Thread.setPriority(int) setPriority
Thread.stop() stop
Thread.suspend() suspend
checkPermission(java.security.Permission) checkPermission
 
     public void checkAccess(Thread t) {
         if (t == null) {
             throw new NullPointerException("thread can't be null");
         }
         if (t.getThreadGroup() == ) {
         } else {
             // just return
         }
     }
    
Throws a SecurityException if the calling thread is not allowed to modify the thread group argument.

This method is invoked for the current security manager when a new child thread or child thread group is created, and by the setDaemon, setMaxPriority, stop, suspend, resume, and destroy methods of class ThreadGroup.

If the thread group argument is the system thread group ( has a null parent) then this method calls checkPermission with the RuntimePermission("modifyThreadGroup") permission. If the thread group argument is not the system thread group, this method just returns silently.

Applications that want a stricter policy should override this method. If this method is overridden, the method that overrides it should additionally check to see if the calling thread has the RuntimePermission("modifyThreadGroup") permission, and if so, return silently. This is to ensure that code granted that permission (such as the JDK itself) is allowed to manipulate any thread.

If this method is overridden, then super.checkAccess should be called by the first statement in the overridden method, or the equivalent security check should be placed in the overridden method.

Parameters:
g the thread group to be checked.
Throws:
SecurityException if the calling thread does not have permission to modify the thread group.
NullPointerException if the thread group argument is null.
See also:
ThreadGroup.destroy() destroy
ThreadGroup.resume() resume
ThreadGroup.setDaemon(boolean) setDaemon
ThreadGroup.setMaxPriority(int) setMaxPriority
ThreadGroup.stop() stop
ThreadGroup.suspend() suspend
checkPermission(java.security.Permission) checkPermission
 
     public void checkAccess(ThreadGroup g) {
         if (g == null) {
             throw new NullPointerException("thread group can't be null");
         }
         if (g == ) {
         } else {
             // just return
         }
     }

    
Throws a SecurityException if the calling thread is not allowed to cause the Java Virtual Machine to halt with the specified status code.

This method is invoked for the current security manager by the exit method of class Runtime. A status of 0 indicates success; other values indicate various errors.

This method calls checkPermission with the RuntimePermission("exitVM."+status) permission.

If you override this method, then you should make a call to super.checkExit at the point the overridden method would normally throw an exception.

Parameters:
status the exit status.
Throws:
SecurityException if the calling thread does not have permission to halt the Java Virtual Machine with the specified status.
See also:
Runtime.exit(int) exit
checkPermission(java.security.Permission) checkPermission
 
     public void checkExit(int status) {
         checkPermission(new RuntimePermission("exitVM."+status));
     }

    
Throws a SecurityException if the calling thread is not allowed to create a subprocess.

This method is invoked for the current security manager by the exec methods of class Runtime.

This method calls checkPermission with the FilePermission(cmd,"execute") permission if cmd is an absolute path, otherwise it calls checkPermission with FilePermission("<<ALL FILES>>","execute").

If you override this method, then you should make a call to super.checkExec at the point the overridden method would normally throw an exception.

Parameters:
cmd the specified system command.
Throws:
SecurityException if the calling thread does not have permission to create a subprocess.
NullPointerException if the cmd argument is null.
See also:
Runtime.exec(java.lang.String)
Runtime.exec(java.lang.String,java.lang.String[])
Runtime.exec(java.lang.String[])
Runtime.exec(java.lang.String[],java.lang.String[])
checkPermission(java.security.Permission) checkPermission
 
     public void checkExec(String cmd) {
         File f = new File(cmd);
         if (f.isAbsolute()) {
             checkPermission(new FilePermission(cmd,
                 .));
         } else {
             checkPermission(new FilePermission("<<ALL FILES>>",
                 .));
         }
     }

    
Throws a SecurityException if the calling thread is not allowed to dynamic link the library code specified by the string argument file. The argument is either a simple library name or a complete filename.

This method is invoked for the current security manager by methods load and loadLibrary of class Runtime.

This method calls checkPermission with the RuntimePermission("loadLibrary."+lib) permission.

If you override this method, then you should make a call to super.checkLink at the point the overridden method would normally throw an exception.

Parameters:
lib the name of the library.
Throws:
SecurityException if the calling thread does not have permission to dynamically link the library.
NullPointerException if the lib argument is null.
See also:
Runtime.load(java.lang.String)
Runtime.loadLibrary(java.lang.String)
checkPermission(java.security.Permission) checkPermission
 
     public void checkLink(String lib) {
         if (lib == null) {
             throw new NullPointerException("library can't be null");
         }
         checkPermission(new RuntimePermission("loadLibrary."+lib));
     }

    
Throws a SecurityException if the calling thread is not allowed to read from the specified file descriptor.

This method calls checkPermission with the RuntimePermission("readFileDescriptor") permission.

If you override this method, then you should make a call to super.checkRead at the point the overridden method would normally throw an exception.

Parameters:
fd the system-dependent file descriptor.
Throws:
SecurityException if the calling thread does not have permission to access the specified file descriptor.
NullPointerException if the file descriptor argument is null.
See also:
java.io.FileDescriptor
checkPermission(java.security.Permission) checkPermission
 
     public void checkRead(FileDescriptor fd) {
         if (fd == null) {
             throw new NullPointerException("file descriptor can't be null");
         }
         checkPermission(new RuntimePermission("readFileDescriptor"));
     }

    
Throws a SecurityException if the calling thread is not allowed to read the file specified by the string argument.

This method calls checkPermission with the FilePermission(file,"read") permission.

If you override this method, then you should make a call to super.checkRead at the point the overridden method would normally throw an exception.

Parameters:
file the system-dependent file name.
Throws:
SecurityException if the calling thread does not have permission to access the specified file.
NullPointerException if the file argument is null.
See also:
checkPermission(java.security.Permission) checkPermission
 
     public void checkRead(String file) {
         checkPermission(new FilePermission(file,
             .));
     }

    
Throws a SecurityException if the specified security context is not allowed to read the file specified by the string argument. The context must be a security context returned by a previous call to getSecurityContext.

If context is an instance of AccessControlContext then the AccessControlContext.checkPermission method will be invoked with the FilePermission(file,"read") permission.

If context is not an instance of AccessControlContext then a SecurityException is thrown.

If you override this method, then you should make a call to super.checkRead at the point the overridden method would normally throw an exception.

Parameters:
file the system-dependent filename.
context a system-dependent security context.
Throws:
SecurityException if the specified security context is not an instance of AccessControlContext (e.g., is null), or does not have permission to read the specified file.
NullPointerException if the file argument is null.
See also:
getSecurityContext()
java.security.AccessControlContext.checkPermission(java.security.Permission)
 
     public void checkRead(String fileObject context) {
         checkPermission(
             new FilePermission(file.),
             context);
     }

    
Throws a SecurityException if the calling thread is not allowed to write to the specified file descriptor.

This method calls checkPermission with the RuntimePermission("writeFileDescriptor") permission.

If you override this method, then you should make a call to super.checkWrite at the point the overridden method would normally throw an exception.

Parameters:
fd the system-dependent file descriptor.
Throws:
SecurityException if the calling thread does not have permission to access the specified file descriptor.
NullPointerException if the file descriptor argument is null.
See also:
java.io.FileDescriptor
checkPermission(java.security.Permission) checkPermission
 
     public void checkWrite(FileDescriptor fd) {
         if (fd == null) {
             throw new NullPointerException("file descriptor can't be null");
         }
         checkPermission(new RuntimePermission("writeFileDescriptor"));
 
     }

    
Throws a SecurityException if the calling thread is not allowed to write to the file specified by the string argument.

This method calls checkPermission with the FilePermission(file,"write") permission.

If you override this method, then you should make a call to super.checkWrite at the point the overridden method would normally throw an exception.

Parameters:
file the system-dependent filename.
Throws:
SecurityException if the calling thread does not have permission to access the specified file.
NullPointerException if the file argument is null.
See also:
checkPermission(java.security.Permission) checkPermission
 
     public void checkWrite(String file) {
         checkPermission(new FilePermission(file,
             .));
     }

    
Throws a SecurityException if the calling thread is not allowed to delete the specified file.

This method is invoked for the current security manager by the delete method of class File.

This method calls checkPermission with the FilePermission(file,"delete") permission.

If you override this method, then you should make a call to super.checkDelete at the point the overridden method would normally throw an exception.

Parameters:
file the system-dependent filename.
Throws:
SecurityException if the calling thread does not have permission to delete the file.
NullPointerException if the file argument is null.
See also:
java.io.File.delete()
checkPermission(java.security.Permission) checkPermission
    public void checkDelete(String file) {
        checkPermission(new FilePermission(file,
            .));
    }

    
Throws a SecurityException if the calling thread is not allowed to open a socket connection to the specified host and port number.

A port number of -1 indicates that the calling method is attempting to determine the IP address of the specified host name.

This method calls checkPermission with the SocketPermission(host+":"+port,"connect") permission if the port is not equal to -1. If the port is equal to -1, then it calls checkPermission with the SocketPermission(host,"resolve") permission.

If you override this method, then you should make a call to super.checkConnect at the point the overridden method would normally throw an exception.

Parameters:
host the host name port to connect to.
port the protocol port to connect to.
Throws:
SecurityException if the calling thread does not have permission to open a socket connection to the specified host and port.
NullPointerException if the host argument is null.
See also:
checkPermission(java.security.Permission) checkPermission
    public void checkConnect(String hostint port) {
        if (host == null) {
            throw new NullPointerException("host can't be null");
        }
        if (!host.startsWith("[") && host.indexOf(':') != -1) {
            host = "[" + host + "]";
        }
        if (port == -1) {
            checkPermission(new SocketPermission(host,
                .));
        } else {
            checkPermission(new SocketPermission(host+":"+port,
                .));
        }
    }

    
Throws a SecurityException if the specified security context is not allowed to open a socket connection to the specified host and port number.

A port number of -1 indicates that the calling method is attempting to determine the IP address of the specified host name.

If context is not an instance of AccessControlContext then a SecurityException is thrown.

Otherwise, the port number is checked. If it is not equal to -1, the context's checkPermission method is called with a SocketPermission(host+":"+port,"connect") permission. If the port is equal to -1, then the context's checkPermission method is called with a SocketPermission(host,"resolve") permission.

If you override this method, then you should make a call to super.checkConnect at the point the overridden method would normally throw an exception.

Parameters:
host the host name port to connect to.
port the protocol port to connect to.
context a system-dependent security context.
Throws:
SecurityException if the specified security context is not an instance of AccessControlContext (e.g., is null), or does not have permission to open a socket connection to the specified host and port.
NullPointerException if the host argument is null.
See also:
getSecurityContext()
java.security.AccessControlContext.checkPermission(java.security.Permission)
    public void checkConnect(String hostint portObject context) {
        if (host == null) {
            throw new NullPointerException("host can't be null");
        }
        if (!host.startsWith("[") && host.indexOf(':') != -1) {
            host = "[" + host + "]";
        }
        if (port == -1)
            checkPermission(new SocketPermission(host,
                .),
                context);
        else
            checkPermission(new SocketPermission(host+":"+port,
                .),
                context);
    }

    
Throws a SecurityException if the calling thread is not allowed to wait for a connection request on the specified local port number.

If port is not 0, this method calls checkPermission with the SocketPermission("localhost:"+port,"listen"). If port is zero, this method calls checkPermission with SocketPermission("localhost:1024-","listen").

If you override this method, then you should make a call to super.checkListen at the point the overridden method would normally throw an exception.

Parameters:
port the local port.
Throws:
SecurityException if the calling thread does not have permission to listen on the specified port.
See also:
checkPermission(java.security.Permission) checkPermission
    public void checkListen(int port) {
        if (port == 0) {
        } else {
            checkPermission(new SocketPermission("localhost:"+port,
                .));
        }
    }

    
Throws a SecurityException if the calling thread is not permitted to accept a socket connection from the specified host and port number.

This method is invoked for the current security manager by the accept method of class ServerSocket.

This method calls checkPermission with the SocketPermission(host+":"+port,"accept") permission.

If you override this method, then you should make a call to super.checkAccept at the point the overridden method would normally throw an exception.

Parameters:
host the host name of the socket connection.
port the port number of the socket connection.
Throws:
SecurityException if the calling thread does not have permission to accept the connection.
NullPointerException if the host argument is null.
See also:
java.net.ServerSocket.accept()
checkPermission(java.security.Permission) checkPermission
    public void checkAccept(String hostint port) {
        if (host == null) {
            throw new NullPointerException("host can't be null");
        }
        if (!host.startsWith("[") && host.indexOf(':') != -1) {
            host = "[" + host + "]";
        }
        checkPermission(new SocketPermission(host+":"+port,
            .));
    }

    
Throws a SecurityException if the calling thread is not allowed to use (join/leave/send/receive) IP multicast.

This method calls checkPermission with the java.net.SocketPermission(maddr.getHostAddress(), "accept,connect") permission.

If you override this method, then you should make a call to super.checkMulticast at the point the overridden method would normally throw an exception.

Parameters:
maddr Internet group address to be used.
Throws:
SecurityException if the calling thread is not allowed to use (join/leave/send/receive) IP multicast.
NullPointerException if the address argument is null.
Since:
JDK1.1
See also:
checkPermission(java.security.Permission) checkPermission
    public void checkMulticast(InetAddress maddr) {
        String host = maddr.getHostAddress();
        if (!host.startsWith("[") && host.indexOf(':') != -1) {
            host = "[" + host + "]";
        }
        checkPermission(new SocketPermission(host,
    }

    
Throws a SecurityException if the calling thread is not allowed to use (join/leave/send/receive) IP multicast.

This method calls checkPermission with the java.net.SocketPermission(maddr.getHostAddress(), "accept,connect") permission.

If you override this method, then you should make a call to super.checkMulticast at the point the overridden method would normally throw an exception.

Deprecated:
Use .checkPermission(java.security.Permission) instead
Parameters:
maddr Internet group address to be used.
ttl value in use, if it is multicast send. Note: this particular implementation does not use the ttl parameter.
Throws:
SecurityException if the calling thread is not allowed to use (join/leave/send/receive) IP multicast.
NullPointerException if the address argument is null.
Since:
JDK1.1
See also:
checkPermission(java.security.Permission) checkPermission
    public void checkMulticast(InetAddress maddrbyte ttl) {
        String host = maddr.getHostAddress();
        if (!host.startsWith("[") && host.indexOf(':') != -1) {
            host = "[" + host + "]";
        }
        checkPermission(new SocketPermission(host,
    }

    
Throws a SecurityException if the calling thread is not allowed to access or modify the system properties.

This method is used by the getProperties and setProperties methods of class System.

This method calls checkPermission with the PropertyPermission("*", "read,write") permission.

If you override this method, then you should make a call to super.checkPropertiesAccess at the point the overridden method would normally throw an exception.

Throws:
SecurityException if the calling thread does not have permission to access or modify the system properties.
See also:
System.getProperties()
System.setProperties(java.util.Properties)
checkPermission(java.security.Permission) checkPermission
    public void checkPropertiesAccess() {
        checkPermission(new PropertyPermission("*",
            .));
    }

    
Throws a SecurityException if the calling thread is not allowed to access the system property with the specified key name.

This method is used by the getProperty method of class System.

This method calls checkPermission with the PropertyPermission(key, "read") permission.

If you override this method, then you should make a call to super.checkPropertyAccess at the point the overridden method would normally throw an exception.

Parameters:
key a system property key.
Throws:
SecurityException if the calling thread does not have permission to access the specified system property.
NullPointerException if the key argument is null.
IllegalArgumentException if key is empty.
See also:
System.getProperty(java.lang.String)
checkPermission(java.security.Permission) checkPermission
    public void checkPropertyAccess(String key) {
        checkPermission(new PropertyPermission(key,
            .));
    }

    
Returns false if the calling thread is not trusted to bring up the top-level window indicated by the window argument. In this case, the caller can still decide to show the window, but the window should include some sort of visual warning. If the method returns true, then the window can be shown without any special restrictions.

See class Window for more information on trusted and untrusted windows.

This method calls checkPermission with the AWTPermission("showWindowWithoutWarningBanner") permission, and returns true if a SecurityException is not thrown, otherwise it returns false.

If you override this method, then you should make a call to super.checkTopLevelWindow at the point the overridden method would normally return false, and the value of super.checkTopLevelWindow should be returned.

Parameters:
window the new window that is being created.
Returns:
true if the calling thread is trusted to put up top-level windows; false otherwise.
Throws:
NullPointerException if the window argument is null.
See also:
java.awt.Window
checkPermission(java.security.Permission) checkPermission
    public boolean checkTopLevelWindow(Object window) {
        if (window == null) {
            throw new NullPointerException("window can't be null");
        }
        try {
            return true;
        } catch (SecurityException se) {
            // just return false
        }
        return false;
    }

    
Throws a SecurityException if the calling thread is not allowed to initiate a print job request.

This method calls checkPermission with the RuntimePermission("queuePrintJob") permission.

If you override this method, then you should make a call to super.checkPrintJobAccess at the point the overridden method would normally throw an exception.

Throws:
SecurityException if the calling thread does not have permission to initiate a print job request.
Since:
JDK1.1
See also:
checkPermission(java.security.Permission) checkPermission
    public void checkPrintJobAccess() {
        checkPermission(new RuntimePermission("queuePrintJob"));
    }

    
Throws a SecurityException if the calling thread is not allowed to access the system clipboard.

This method calls checkPermission with the AWTPermission("accessClipboard") permission.

If you override this method, then you should make a call to super.checkSystemClipboardAccess at the point the overridden method would normally throw an exception.

Throws:
SecurityException if the calling thread does not have permission to access the system clipboard.
Since:
JDK1.1
See also:
checkPermission(java.security.Permission) checkPermission
    public void checkSystemClipboardAccess() {
    }

    
Throws a SecurityException if the calling thread is not allowed to access the AWT event queue.

This method calls checkPermission with the AWTPermission("accessEventQueue") permission.

If you override this method, then you should make a call to super.checkAwtEventQueueAccess at the point the overridden method would normally throw an exception.

Throws:
SecurityException if the calling thread does not have permission to access the AWT event queue.
Since:
JDK1.1
See also:
checkPermission(java.security.Permission) checkPermission
    public void checkAwtEventQueueAccess() {
    }
    /*
     * We have an initial invalid bit (initially false) for the class
     * variables which tell if the cache is valid.  If the underlying
     * java.security.Security property changes via setProperty(), the
     * Security class uses reflection to change the variable and thus
     * invalidate the cache.
     *
     * Locking is handled by synchronization to the
     * packageAccessLock/packageDefinitionLock objects.  They are only
     * used in this class.
     *
     * Note that cache invalidation as a result of the property change
     * happens without using these locks, so there may be a delay between
     * when a thread updates the property and when other threads updates
     * the cache.
     */
    private static boolean packageAccessValid = false;
    private static String[] packageAccess;
    private static final Object packageAccessLock = new Object();
    private static boolean packageDefinitionValid = false;
    private static String[] packageDefinition;
    private static final Object packageDefinitionLock = new Object();
    private static String[] getPackages(String p) {
        String packages[] = null;
        if (p != null && !p.equals("")) {
            java.util.StringTokenizer tok =
                new java.util.StringTokenizer(p",");
            int n = tok.countTokens();
            if (n > 0) {
                packages = new String[n];
                int i = 0;
                while (tok.hasMoreElements()) {
                    String s = tok.nextToken().trim();
                    packages[i++] = s;
                }
            }
        }
        if (packages == null)
            packages = new String[0];
        return packages;
    }

    
Throws a SecurityException if the calling thread is not allowed to access the package specified by the argument.

This method is used by the loadClass method of class loaders.

This method first gets a list of restricted packages by obtaining a comma-separated list from a call to java.security.Security.getProperty("package.access"), and checks to see if pkg starts with or equals any of the restricted packages. If it does, then checkPermission gets called with the RuntimePermission("accessClassInPackage."+pkg) permission.

If this method is overridden, then super.checkPackageAccess should be called as the first line in the overridden method.

Parameters:
pkg the package name.
Throws:
SecurityException if the calling thread does not have permission to access the specified package.
NullPointerException if the package name argument is null.
See also:
ClassLoader.loadClass(java.lang.String,boolean) loadClass
java.security.Security.getProperty(java.lang.String) getProperty
checkPermission(java.security.Permission) checkPermission
    public void checkPackageAccess(String pkg) {
        if (pkg == null) {
            throw new NullPointerException("package name can't be null");
        }
        String[] pkgs;
        synchronized () {
            /*
             * Do we need to update our property array?
             */
            if (!) {
                String tmpPropertyStr =
                    AccessController.doPrivileged(
                        new PrivilegedAction<String>() {
                            public String run() {
                                return java.security.Security.getProperty(
                                    "package.access");
                            }
                        }
                    );
                 = getPackages(tmpPropertyStr);
                 = true;
            }
            // Using a snapshot of packageAccess -- don't care if static field
            // changes afterwards; array contents won't change.
            pkgs = ;
        }
        /*
         * Traverse the list of packages, check for any matches.
         */
        for (int i = 0; i < pkgs.lengthi++) {
            if (pkg.startsWith(pkgs[i]) || pkgs[i].equals(pkg + ".")) {
                checkPermission(
                    new RuntimePermission("accessClassInPackage."+pkg));
                break;  // No need to continue; only need to check this once
            }
        }
    }

    
Throws a SecurityException if the calling thread is not allowed to define classes in the package specified by the argument.

This method is used by the loadClass method of some class loaders.

This method first gets a list of restricted packages by obtaining a comma-separated list from a call to java.security.Security.getProperty("package.definition"), and checks to see if pkg starts with or equals any of the restricted packages. If it does, then checkPermission gets called with the RuntimePermission("defineClassInPackage."+pkg) permission.

If this method is overridden, then super.checkPackageDefinition should be called as the first line in the overridden method.

Parameters:
pkg the package name.
Throws:
SecurityException if the calling thread does not have permission to define classes in the specified package.
See also:
ClassLoader.loadClass(java.lang.String,boolean)
java.security.Security.getProperty(java.lang.String) getProperty
checkPermission(java.security.Permission) checkPermission
    public void checkPackageDefinition(String pkg) {
        if (pkg == null) {
            throw new NullPointerException("package name can't be null");
        }
        String[] pkgs;
        synchronized () {
            /*
             * Do we need to update our property array?
             */
            if (!) {
                String tmpPropertyStr =
                    AccessController.doPrivileged(
                        new PrivilegedAction<String>() {
                            public String run() {
                                return java.security.Security.getProperty(
                                    "package.definition");
                            }
                        }
                    );
                 = getPackages(tmpPropertyStr);
                 = true;
            }
            // Using a snapshot of packageDefinition -- don't care if static
            // field changes afterwards; array contents won't change.
            pkgs = ;
        }
        /*
         * Traverse the list of packages, check for any matches.
         */
        for (int i = 0; i < pkgs.lengthi++) {
            if (pkg.startsWith(pkgs[i]) || pkgs[i].equals(pkg + ".")) {
                checkPermission(
                    new RuntimePermission("defineClassInPackage."+pkg));
                break// No need to continue; only need to check this once
            }
        }
    }

    
Throws a SecurityException if the calling thread is not allowed to set the socket factory used by ServerSocket or Socket, or the stream handler factory used by URL.

This method calls checkPermission with the RuntimePermission("setFactory") permission.

If you override this method, then you should make a call to super.checkSetFactory at the point the overridden method would normally throw an exception.

Throws:
SecurityException if the calling thread does not have permission to specify a socket factory or a stream handler factory.
See also:
java.net.ServerSocket.setSocketFactory(java.net.SocketImplFactory) setSocketFactory
java.net.Socket.setSocketImplFactory(java.net.SocketImplFactory) setSocketImplFactory
java.net.URL.setURLStreamHandlerFactory(java.net.URLStreamHandlerFactory) setURLStreamHandlerFactory
checkPermission(java.security.Permission) checkPermission
    public void checkSetFactory() {
        checkPermission(new RuntimePermission("setFactory"));
    }

    
Throws a SecurityException if the calling thread is not allowed to access members.

The default policy is to allow access to PUBLIC members, as well as access to classes that have the same class loader as the caller. In all other cases, this method calls checkPermission with the RuntimePermission("accessDeclaredMembers") permission.

If this method is overridden, then a call to super.checkMemberAccess cannot be made, as the default implementation of checkMemberAccess relies on the code being checked being at a stack depth of 4.

Parameters:
clazz the class that reflection is to be performed on.
which type of access, PUBLIC or DECLARED.
Throws:
SecurityException if the caller does not have permission to access members.
NullPointerException if the clazz argument is null.
Since:
JDK1.1
See also:
java.lang.reflect.Member
checkPermission(java.security.Permission) checkPermission
    public void checkMemberAccess(Class<?> clazzint which) {
        if (clazz == null) {
            throw new NullPointerException("class can't be null");
        }
        if (which != .) {
            Class stack[] = getClassContext();
            /*
             * stack depth of 4 should be the caller of one of the
             * methods in java.lang.Class that invoke checkMember
             * access. The stack should look like:
             *
             * someCaller                        [3]
             * java.lang.Class.someReflectionAPI [2]
             * java.lang.Class.checkMemberAccess [1]
             * SecurityManager.checkMemberAccess [0]
             *
             */
            if ((stack.length<4) ||
                (stack[3].getClassLoader() != clazz.getClassLoader())) {
            }
        }
    }

    
Determines whether the permission with the specified permission target name should be granted or denied.

If the requested permission is allowed, this method returns quietly. If denied, a SecurityException is raised.

This method creates a SecurityPermission object for the given permission target name and calls checkPermission with it.

See the documentation for java.security.SecurityPermission for a list of possible permission target names.

If you override this method, then you should make a call to super.checkSecurityAccess at the point the overridden method would normally throw an exception.

Parameters:
target the target name of the SecurityPermission.
Throws:
SecurityException if the calling thread does not have permission for the requested access.
NullPointerException if target is null.
IllegalArgumentException if target is empty.
Since:
JDK1.1
See also:
checkPermission(java.security.Permission) checkPermission
    public void checkSecurityAccess(String target) {
        checkPermission(new SecurityPermission(target));
    }
    private native Class currentLoadedClass0();

    
Returns the thread group into which to instantiate any new thread being created at the time this is being called. By default, it returns the thread group of the current thread. This should be overridden by a specific security manager to return the appropriate thread group.

Returns:
ThreadGroup that new threads are instantiated into
Since:
JDK1.1
See also:
ThreadGroup
    public ThreadGroup getThreadGroup() {
        return Thread.currentThread().getThreadGroup();
    }
New to GrepCode? Check out our FAQ X