/projects/jre-1.6.0/src/java/lang/SecurityManager.java
https://gitlab.com/essere.lab.public/qualitas.class-corpus · Java · 1203 lines · 231 code · 43 blank · 929 comment · 60 complexity · 22b64a725fcc0117e5ee3e3bed45ce56 MD5 · raw file
- /*
- * %W% %E%
- *
- * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
- * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
- */
- package java.lang;
- import java.security.*;
- import java.io.FileDescriptor;
- import java.io.File;
- import java.io.FilePermission;
- import java.awt.AWTPermission;
- import java.util.PropertyPermission;
- import java.lang.RuntimePermission;
- import java.net.SocketPermission;
- import java.net.NetPermission;
- import java.util.Hashtable;
- import java.net.InetAddress;
- import java.lang.reflect.Member;
- import java.lang.reflect.*;
- import java.net.URL;
- import sun.security.util.SecurityConstants;
- /**
- * 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.
- * <p>
- * The <code>SecurityManager</code> class contains many methods with
- * names that begin with the word <code>check</code>. These methods
- * are called by various methods in the Java libraries before those
- * methods perform certain potentially sensitive operations. The
- * invocation of such a <code>check</code> method typically looks like this:
- * <p><blockquote><pre>
- * SecurityManager security = System.getSecurityManager();
- * if (security != null) {
- * security.check<i>XXX</i>(argument, . . . );
- * }
- * </pre></blockquote>
- * <p>
- * 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 <code>SecurityException</code> if the operation is not
- * permitted. The only exception to this convention is
- * <code>checkTopLevelWindow</code>, which returns a
- * <code>boolean</code> value.
- * <p>
- * The current security manager is set by the
- * <code>setSecurityManager</code> method in class
- * <code>System</code>. The current security manager is obtained
- * by the <code>getSecurityManager</code> method.
- * <p>
- * The special method
- * {@link SecurityManager#checkPermission(java.security.Permission)}
- * determines whether an access request indicated by a specified
- * permission should be granted or denied. The
- * default implementation calls
- *
- * <pre>
- * AccessController.checkPermission(perm);
- * </pre>
- *
- * <p>
- * If a requested access is allowed,
- * <code>checkPermission</code> returns quietly. If denied, a
- * <code>SecurityException</code> is thrown.
- * <p>
- * As of Java 2 SDK v1.2, the default implementation of each of the other
- * <code>check</code> methods in <code>SecurityManager</code> is to
- * call the <code>SecurityManager checkPermission</code> method
- * to determine if the calling thread has permission to perform the requested
- * operation.
- * <p>
- * Note that the <code>checkPermission</code> 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
- * <i>different</i> context (for example, from within a worker thread).
- * The {@link SecurityManager#getSecurityContext getSecurityContext} method
- * and the {@link SecurityManager#checkPermission(java.security.Permission,
- * java.lang.Object) checkPermission}
- * method that includes a context argument are provided
- * for this situation. The
- * <code>getSecurityContext</code> method returns a "snapshot"
- * of the current calling context. (The default implementation
- * returns an AccessControlContext object.) A sample call is
- * the following:
- *
- * <pre>
- * Object context = null;
- * SecurityManager sm = System.getSecurityManager();
- * if (sm != null) context = sm.getSecurityContext();
- * </pre>
- *
- * <p>
- * The <code>checkPermission</code> 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 <code>sm</code> obtained as in the previous example,
- * is the following:
- *
- * <pre>
- * if (sm != null) sm.checkPermission(permission, context);
- * </pre>
- *
- * <p>Permissions fall into these categories: File, Socket, Net,
- * Security, Runtime, Property, AWT, Reflect, and Serializable.
- * The classes managing these various
- * permission categories are <code>java.io.FilePermission</code>,
- * <code>java.net.SocketPermission</code>,
- * <code>java.net.NetPermission</code>,
- * <code>java.security.SecurityPermission</code>,
- * <code>java.lang.RuntimePermission</code>,
- * <code>java.util.PropertyPermission</code>,
- * <code>java.awt.AWTPermission</code>,
- * <code>java.lang.reflect.ReflectPermission</code>, and
- * <code>java.io.SerializablePermission</code>.
- *
- * <p>All but the first two (FilePermission and SocketPermission) are
- * subclasses of <code>java.security.BasicPermission</code>, which itself
- * is an abstract subclass of the
- * top-level class for permissions, which is
- * <code>java.security.Permission</code>. 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.
- *
- * <p>FilePermission and SocketPermission are subclasses of the
- * top-level class for permissions
- * (<code>java.security.Permission</code>). 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 <code>java.io.FilePermission</code> object, the permission name is
- * the path name of a file (or directory).
- *
- * <p>Some of the permission classes have an "actions" list that tells
- * the actions that are permitted for the object. For example,
- * for a <code>java.io.FilePermission</code> object, the actions list
- * (such as "read, write") specifies which actions are granted for the
- * specified file (or for files in the specified directory).
- *
- * <p>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.
- *
- * <p>Note: There is also a <code>java.security.AllPermission</code>
- * 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.
- * <p>
- * See <a href ="../../../technotes/guides/security/permissions.html">
- * Permissions in the JDK</a> for permission-related information.
- * This document includes, for example, a table listing the various SecurityManager
- * <code>check</code> 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.
- * <p>
- * For more information about <code>SecurityManager</code> changes made in
- * the JDK and advice regarding porting of 1.1-style security managers,
- * see the <a href="../../../technotes/guides/security/index.html">security documentation</a>.
- *
- * @author Arthur van Hoff
- * @author Roland Schemers
- *
- * @version %I%, %G%
- * @see java.lang.ClassLoader
- * @see java.lang.SecurityException
- * @see java.lang.SecurityManager#checkTopLevelWindow(java.lang.Object)
- * checkTopLevelWindow
- * @see java.lang.System#getSecurityManager() getSecurityManager
- * @see java.lang.System#setSecurityManager(java.lang.SecurityManager)
- * setSecurityManager
- * @see java.security.AccessController AccessController
- * @see java.security.AccessControlContext AccessControlContext
- * @see java.security.AccessControlException AccessControlException
- * @see java.security.Permission
- * @see java.security.BasicPermission
- * @see java.io.FilePermission
- * @see java.net.SocketPermission
- * @see java.util.PropertyPermission
- * @see java.lang.RuntimePermission
- * @see java.awt.AWTPermission
- * @see java.security.Policy Policy
- * @see java.security.SecurityPermission SecurityPermission
- * @see java.security.ProtectionDomain
- *
- * @since JDK1.0
- */
- public
- class SecurityManager {
- /**
- * This field is <code>true</code> if there is a security check in
- * progress; <code>false</code> otherwise.
- *
- * @deprecated This type of security checking is not recommended.
- * It is recommended that the <code>checkPermission</code>
- * 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 {
- checkPermission(SecurityConstants.ALL_PERMISSION);
- return true;
- } catch (SecurityException se) {
- return false;
- }
- }
- /**
- * Tests if there is a security check in progress.
- *
- * @return the value of the <code>inCheck</code> field. This field
- * should contain <code>true</code> if a security check is
- * in progress,
- * <code>false</code> otherwise.
- * @see java.lang.SecurityManager#inCheck
- * @deprecated This type of security checking is not recommended.
- * It is recommended that the <code>checkPermission</code>
- * call be used instead.
- */
- @Deprecated
- public boolean getInCheck() {
- return inCheck;
- }
- /**
- * Constructs a new <code>SecurityManager</code>.
- *
- * <p> If there is a security manager already installed, this method first
- * calls the security manager's <code>checkPermission</code> method
- * with the <code>RuntimePermission("createSecurityManager")</code>
- * permission to ensure the calling thread has permission to create a new
- * security manager.
- * This may result in throwing a <code>SecurityException</code>.
- *
- * @exception java.lang.SecurityException if a security manager already
- * exists and its <code>checkPermission</code> method
- * doesn't allow creation of a new security manager.
- * @see java.lang.System#getSecurityManager()
- * @see #checkPermission(java.security.Permission) checkPermission
- * @see java.lang.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"));
- }
- initialized = true;
- }
- }
- /**
- * Returns the current execution stack as an array of classes.
- * <p>
- * The length of the array is the number of methods on the execution
- * stack. The element at index <code>0</code> is the class of the
- * currently executing method, the element at index <code>1</code> is
- * the class of that method's caller, and so on.
- *
- * @return 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 {@link ClassLoader#getSystemClassLoader}) or one of its ancestors.
- * <p>
- * This method will return
- * <code>null</code> in the following three cases:<p>
- * <ol>
- * <li>All methods on the execution stack are from classes
- * defined using the system class loader or one of its ancestors.
- *
- * <li>All methods on the execution stack up to the first
- * "privileged" caller
- * (see {@link java.security.AccessController#doPrivileged})
- * are from classes
- * defined using the system class loader or one of its ancestors.
- *
- * <li> A call to <code>checkPermission</code> with
- * <code>java.security.AllPermission</code> does not
- * result in a SecurityException.
- *
- * </ol>
- *
- * @return the class loader of the most recent occurrence on the stack
- * of a method from a class defined using a non-system class
- * loader.
- *
- * @deprecated This type of security checking is not recommended.
- * It is recommended that the <code>checkPermission</code>
- * call be used instead.
- *
- * @see java.lang.ClassLoader#getSystemClassLoader() getSystemClassLoader
- * @see #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 {@link ClassLoader#getSystemClassLoader}) or one of its ancestors.
- * <p>
- * This method will return
- * <code>null</code> in the following three cases:<p>
- * <ol>
- * <li>All methods on the execution stack are from classes
- * defined using the system class loader or one of its ancestors.
- *
- * <li>All methods on the execution stack up to the first
- * "privileged" caller
- * (see {@link java.security.AccessController#doPrivileged})
- * are from classes
- * defined using the system class loader or one of its ancestors.
- *
- * <li> A call to <code>checkPermission</code> with
- * <code>java.security.AllPermission</code> does not
- * result in a SecurityException.
- *
- * </ol>
- *
- * @return the class of the most recent occurrence on the stack
- * of a method from a class defined using a non-system class
- * loader.
- *
- * @deprecated This type of security checking is not recommended.
- * It is recommended that the <code>checkPermission</code>
- * call be used instead.
- *
- * @see java.lang.ClassLoader#getSystemClassLoader() getSystemClassLoader
- * @see #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.
- *
- * @param name the fully qualified name of the class to search for.
- * @return the depth on the stack frame of the first occurrence of a
- * method from a class with the specified name;
- * <code>-1</code> if such a frame cannot be found.
- * @deprecated This type of security checking is not recommended.
- * It is recommended that the <code>checkPermission</code>
- * call be used instead.
- *
- */
- @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 {@link ClassLoader#getSystemClassLoader}) or one of its ancestors.
- * <p>
- * This method will return
- * -1 in the following three cases:<p>
- * <ol>
- * <li>All methods on the execution stack are from classes
- * defined using the system class loader or one of its ancestors.
- *
- * <li>All methods on the execution stack up to the first
- * "privileged" caller
- * (see {@link java.security.AccessController#doPrivileged})
- * are from classes
- * defined using the system class loader or one of its ancestors.
- *
- * <li> A call to <code>checkPermission</code> with
- * <code>java.security.AllPermission</code> does not
- * result in a SecurityException.
- *
- * </ol>
- *
- * @return the depth on the stack frame of the most recent occurrence of
- * a method from a class defined using a non-system class loader.
- *
- * @deprecated This type of security checking is not recommended.
- * It is recommended that the <code>checkPermission</code>
- * call be used instead.
- *
- * @see java.lang.ClassLoader#getSystemClassLoader() getSystemClassLoader
- * @see #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.
- *
- * @param name the fully qualified name of the class.
- * @return <code>true</code> if a method from a class with the specified
- * name is on the execution stack; <code>false</code> otherwise.
- * @deprecated This type of security checking is not recommended.
- * It is recommended that the <code>checkPermission</code>
- * call be used instead.
- */
- @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.
- *
- * @return <code>true</code> if a call to <code>currentClassLoader</code>
- * has a non-null return value.
- *
- * @deprecated This type of security checking is not recommended.
- * It is recommended that the <code>checkPermission</code>
- * call be used instead.
- * @see #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 <code>checkConnect</code> method and by the
- * two-argument <code>checkRead</code> 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.
- * <p> The default implementation of this method is to return
- * an <code>AccessControlContext</code> object.
- *
- * @return an implementation-dependent object that encapsulates
- * sufficient information about the current execution environment
- * to perform some security checks later.
- * @see java.lang.SecurityManager#checkConnect(java.lang.String, int,
- * java.lang.Object) checkConnect
- * @see java.lang.SecurityManager#checkRead(java.lang.String,
- * java.lang.Object) checkRead
- * @see java.security.AccessControlContext AccessControlContext
- */
- public Object getSecurityContext() {
- return AccessController.getContext();
- }
- /**
- * Throws a <code>SecurityException</code> if the requested
- * access, specified by the given permission, is not permitted based
- * on the security policy currently in effect.
- * <p>
- * This method calls <code>AccessController.checkPermission</code>
- * with the given permission.
- *
- * @param perm the requested permission.
- * @exception SecurityException if access is not permitted based on
- * the current security policy.
- * @exception NullPointerException if the permission argument is
- * <code>null</code>.
- * @since 1.2
- */
- public void checkPermission(Permission perm) {
- java.security.AccessController.checkPermission(perm);
- }
- /**
- * Throws a <code>SecurityException</code> 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
- * <code>getSecurityContext</code> and the access control
- * decision is based upon the configured security policy for
- * that security context.
- * <p>
- * If <code>context</code> is an instance of
- * <code>AccessControlContext</code> then the
- * <code>AccessControlContext.checkPermission</code> method is
- * invoked with the specified permission.
- * <p>
- * If <code>context</code> is not an instance of
- * <code>AccessControlContext</code> then a
- * <code>SecurityException</code> is thrown.
- *
- * @param perm the specified permission
- * @param context a system-dependent security context.
- * @exception SecurityException if the specified security context
- * is not an instance of <code>AccessControlContext</code>
- * (e.g., is <code>null</code>), or is denied access to the
- * resource specified by the given permission.
- * @exception NullPointerException if the permission argument is
- * <code>null</code>.
- * @see java.lang.SecurityManager#getSecurityContext()
- * @see java.security.AccessControlContext#checkPermission(java.security.Permission)
- * @since 1.2
- */
- public void checkPermission(Permission perm, Object context) {
- if (context instanceof AccessControlContext) {
- ((AccessControlContext)context).checkPermission(perm);
- } else {
- throw new SecurityException();
- }
- }
- /**
- * Throws a <code>SecurityException</code> if the
- * calling thread is not allowed to create a new class loader.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>RuntimePermission("createClassLoader")</code>
- * permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkCreateClassLoader</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @exception SecurityException if the calling thread does not
- * have permission
- * to create a new class loader.
- * @see java.lang.ClassLoader#ClassLoader()
- * @see #checkPermission(java.security.Permission) checkPermission
- */
- public void checkCreateClassLoader() {
- checkPermission(SecurityConstants.CREATE_CLASSLOADER_PERMISSION);
- }
- /**
- * 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 <code>SecurityException</code> if the
- * calling thread is not allowed to modify the thread argument.
- * <p>
- * This method is invoked for the current security manager by the
- * <code>stop</code>, <code>suspend</code>, <code>resume</code>,
- * <code>setPriority</code>, <code>setName</code>, and
- * <code>setDaemon</code> methods of class <code>Thread</code>.
- * <p>
- * If the thread argument is a system thread (belongs to
- * the thread group with a <code>null</code> parent) then
- * this method calls <code>checkPermission</code> with the
- * <code>RuntimePermission("modifyThread")</code> permission.
- * If the thread argument is <i>not</i> a system thread,
- * this method just returns silently.
- * <p>
- * 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
- * <code>RuntimePermission("modifyThread")</code> 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.
- * <p>
- * If this method is overridden, then
- * <code>super.checkAccess</code> should
- * be called by the first statement in the overridden method, or the
- * equivalent security check should be placed in the overridden method.
- *
- * @param t the thread to be checked.
- * @exception SecurityException if the calling thread does not have
- * permission to modify the thread.
- * @exception NullPointerException if the thread argument is
- * <code>null</code>.
- * @see java.lang.Thread#resume() resume
- * @see java.lang.Thread#setDaemon(boolean) setDaemon
- * @see java.lang.Thread#setName(java.lang.String) setName
- * @see java.lang.Thread#setPriority(int) setPriority
- * @see java.lang.Thread#stop() stop
- * @see java.lang.Thread#suspend() suspend
- * @see #checkPermission(java.security.Permission) checkPermission
- */
- public void checkAccess(Thread t) {
- if (t == null) {
- throw new NullPointerException("thread can't be null");
- }
- if (t.getThreadGroup() == rootGroup) {
- checkPermission(SecurityConstants.MODIFY_THREAD_PERMISSION);
- } else {
- // just return
- }
- }
- /**
- * Throws a <code>SecurityException</code> if the
- * calling thread is not allowed to modify the thread group argument.
- * <p>
- * This method is invoked for the current security manager when a
- * new child thread or child thread group is created, and by the
- * <code>setDaemon</code>, <code>setMaxPriority</code>,
- * <code>stop</code>, <code>suspend</code>, <code>resume</code>, and
- * <code>destroy</code> methods of class <code>ThreadGroup</code>.
- * <p>
- * If the thread group argument is the system thread group (
- * has a <code>null</code> parent) then
- * this method calls <code>checkPermission</code> with the
- * <code>RuntimePermission("modifyThreadGroup")</code> permission.
- * If the thread group argument is <i>not</i> the system thread group,
- * this method just returns silently.
- * <p>
- * 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
- * <code>RuntimePermission("modifyThreadGroup")</code> 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.
- * <p>
- * If this method is overridden, then
- * <code>super.checkAccess</code> should
- * be called by the first statement in the overridden method, or the
- * equivalent security check should be placed in the overridden method.
- *
- * @param g the thread group to be checked.
- * @exception SecurityException if the calling thread does not have
- * permission to modify the thread group.
- * @exception NullPointerException if the thread group argument is
- * <code>null</code>.
- * @see java.lang.ThreadGroup#destroy() destroy
- * @see java.lang.ThreadGroup#resume() resume
- * @see java.lang.ThreadGroup#setDaemon(boolean) setDaemon
- * @see java.lang.ThreadGroup#setMaxPriority(int) setMaxPriority
- * @see java.lang.ThreadGroup#stop() stop
- * @see java.lang.ThreadGroup#suspend() suspend
- * @see #checkPermission(java.security.Permission) checkPermission
- */
- public void checkAccess(ThreadGroup g) {
- if (g == null) {
- throw new NullPointerException("thread group can't be null");
- }
- if (g == rootGroup) {
- checkPermission(SecurityConstants.MODIFY_THREADGROUP_PERMISSION);
- } else {
- // just return
- }
- }
- /**
- * Throws a <code>SecurityException</code> if the
- * calling thread is not allowed to cause the Java Virtual Machine to
- * halt with the specified status code.
- * <p>
- * This method is invoked for the current security manager by the
- * <code>exit</code> method of class <code>Runtime</code>. A status
- * of <code>0</code> indicates success; other values indicate various
- * errors.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>RuntimePermission("exitVM."+status)</code> permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkExit</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param status the exit status.
- * @exception SecurityException if the calling thread does not have
- * permission to halt the Java Virtual Machine with
- * the specified status.
- * @see java.lang.Runtime#exit(int) exit
- * @see #checkPermission(java.security.Permission) checkPermission
- */
- public void checkExit(int status) {
- checkPermission(new RuntimePermission("exitVM."+status));
- }
- /**
- * Throws a <code>SecurityException</code> if the
- * calling thread is not allowed to create a subprocess.
- * <p>
- * This method is invoked for the current security manager by the
- * <code>exec</code> methods of class <code>Runtime</code>.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>FilePermission(cmd,"execute")</code> permission
- * if cmd is an absolute path, otherwise it calls
- * <code>checkPermission</code> with
- * <code>FilePermission("<<ALL FILES>>","execute")</code>.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkExec</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param cmd the specified system command.
- * @exception SecurityException if the calling thread does not have
- * permission to create a subprocess.
- * @exception NullPointerException if the <code>cmd</code> argument is
- * <code>null</code>.
- * @see java.lang.Runtime#exec(java.lang.String)
- * @see java.lang.Runtime#exec(java.lang.String, java.lang.String[])
- * @see java.lang.Runtime#exec(java.lang.String[])
- * @see java.lang.Runtime#exec(java.lang.String[], java.lang.String[])
- * @see #checkPermission(java.security.Permission) checkPermission
- */
- public void checkExec(String cmd) {
- File f = new File(cmd);
- if (f.isAbsolute()) {
- checkPermission(new FilePermission(cmd,
- SecurityConstants.FILE_EXECUTE_ACTION));
- } else {
- checkPermission(new FilePermission("<<ALL FILES>>",
- SecurityConstants.FILE_EXECUTE_ACTION));
- }
- }
- /**
- * Throws a <code>SecurityException</code> 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.
- * <p>
- * This method is invoked for the current security manager by
- * methods <code>load</code> and <code>loadLibrary</code> of class
- * <code>Runtime</code>.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>RuntimePermission("loadLibrary."+lib)</code> permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkLink</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param lib the name of the library.
- * @exception SecurityException if the calling thread does not have
- * permission to dynamically link the library.
- * @exception NullPointerException if the <code>lib</code> argument is
- * <code>null</code>.
- * @see java.lang.Runtime#load(java.lang.String)
- * @see java.lang.Runtime#loadLibrary(java.lang.String)
- * @see #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 <code>SecurityException</code> if the
- * calling thread is not allowed to read from the specified file
- * descriptor.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>RuntimePermission("readFileDescriptor")</code>
- * permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkRead</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param fd the system-dependent file descriptor.
- * @exception SecurityException if the calling thread does not have
- * permission to access the specified file descriptor.
- * @exception NullPointerException if the file descriptor argument is
- * <code>null</code>.
- * @see java.io.FileDescriptor
- * @see #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 <code>SecurityException</code> if the
- * calling thread is not allowed to read the file specified by the
- * string argument.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>FilePermission(file,"read")</code> permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkRead</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param file the system-dependent file name.
- * @exception SecurityException if the calling thread does not have
- * permission to access the specified file.
- * @exception NullPointerException if the <code>file</code> argument is
- * <code>null</code>.
- * @see #checkPermission(java.security.Permission) checkPermission
- */
- public void checkRead(String file) {
- checkPermission(new FilePermission(file,
- SecurityConstants.FILE_READ_ACTION));
- }
- /**
- * Throws a <code>SecurityException</code> 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
- * <code>getSecurityContext</code>.
- * <p> If <code>context</code> is an instance of
- * <code>AccessControlContext</code> then the
- * <code>AccessControlContext.checkPermission</code> method will
- * be invoked with the <code>FilePermission(file,"read")</code> permission.
- * <p> If <code>context</code> is not an instance of
- * <code>AccessControlContext</code> then a
- * <code>SecurityException</code> is thrown.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkRead</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param file the system-dependent filename.
- * @param context a system-dependent security context.
- * @exception SecurityException if the specified security context
- * is not an instance of <code>AccessControlContext</code>
- * (e.g., is <code>null</code>), or does not have permission
- * to read the specified file.
- * @exception NullPointerException if the <code>file</code> argument is
- * <code>null</code>.
- * @see java.lang.SecurityManager#getSecurityContext()
- * @see java.security.AccessControlContext#checkPermission(java.security.Permission)
- */
- public void checkRead(String file, Object context) {
- checkPermission(
- new FilePermission(file, SecurityConstants.FILE_READ_ACTION),
- context);
- }
- /**
- * Throws a <code>SecurityException</code> if the
- * calling thread is not allowed to write to the specified file
- * descriptor.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>RuntimePermission("writeFileDescriptor")</code>
- * permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkWrite</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param fd the system-dependent file descriptor.
- * @exception SecurityException if the calling thread does not have
- * permission to access the specified file descriptor.
- * @exception NullPointerException if the file descriptor argument is
- * <code>null</code>.
- * @see java.io.FileDescriptor
- * @see #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 <code>SecurityException</code> if the
- * calling thread is not allowed to write to the file specified by
- * the string argument.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>FilePermission(file,"write")</code> permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkWrite</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param file the system-dependent filename.
- * @exception SecurityException if the calling thread does not
- * have permission to access the specified file.
- * @exception NullPointerException if the <code>file</code> argument is
- * <code>null</code>.
- * @see #checkPermission(java.security.Permission) checkPermission
- */
- public void checkWrite(String file) {
- checkPermission(new FilePermission(file,
- SecurityConstants.FILE_WRITE_ACTION));
- }
- /**
- * Throws a <code>SecurityException</code> if the
- * calling thread is not allowed to delete the specified file.
- * <p>
- * This method is invoked for the current security manager by the
- * <code>delete</code> method of class <code>File</code>.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>FilePermission(file,"delete")</code> permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkDelete</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param file the system-dependent filename.
- * @exception SecurityException if the calling thread does not
- * have permission to delete the file.
- * @exception NullPointerException if the <code>file</code> argument is
- * <code>null</code>.
- * @see java.io.File#delete()
- * @see #checkPermission(java.security.Permission) checkPermission
- */
- public void checkDelete(String file) {
- checkPermission(new FilePermission(file,
- SecurityConstants.FILE_DELETE_ACTION));
- }
- /**
- * Throws a <code>SecurityException</code> if the
- * calling thread is not allowed to open a socket connection to the
- * specified host and port number.
- * <p>
- * A port number of <code>-1</code> indicates that the calling
- * method is attempting to determine the IP address of the specified
- * host name.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>SocketPermission(host+":"+port,"connect")</code> permission if
- * the port is not equal to -1. If the port is equal to -1, then
- * it calls <code>checkPermission</code> with the
- * <code>SocketPermission(host,"resolve")</code> permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkConnect</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param host the host name port to connect to.
- * @param port the protocol port to connect to.
- * @exception SecurityException if the calling thread does not have
- * permission to open a socket connection to the specified
- * <code>host</code> and <code>port</code>.
- * @exception NullPointerException if the <code>host</code> argument is
- * <code>null</code>.
- * @see #checkPermission(java.security.Permission) checkPermission
- */
- public void checkConnect(String host, int 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,
- SecurityConstants.SOCKET_RESOLVE_ACTION));
- } else {
- checkPermission(new SocketPermission(host+":"+port,
- SecurityConstants.SOCKET_CONNECT_ACTION));
- }
- }
- /**
- * Throws a <code>SecurityException</code> if the
- * specified security context is not allowed to open a socket
- * connection to the specified host and port number.
- * <p>
- * A port number of <code>-1</code> indicates that the calling
- * method is attempting to determine the IP address of the specified
- * host name.
- * <p> If <code>context</code> is not an instance of
- * <code>AccessControlContext</code> then a
- * <code>SecurityException</code> is thrown.
- * <p>
- * Otherwise, the port number is checked. If it is not equal
- * to -1, the <code>context</code>'s <code>checkPermission</code>
- * method is called with a
- * <code>SocketPermission(host+":"+port,"connect")</code> permission.
- * If the port is equal to -1, then
- * the <code>context</code>'s <code>checkPermission</code> method
- * is called with a
- * <code>SocketPermission(host,"resolve")</code> permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkConnect</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param host the host name port to connect to.
- * @param port the protocol port to connect to.
- * @param context a system-dependent security context.
- * @exception SecurityException if the specified security context
- * is not an instance of <code>AccessControlContext</code>
- * (e.g., is <code>null</code>), or does not have permission
- * to open a socket connection to the specified
- * <code>host</code> and <code>port</code>.
- * @exception NullPointerException if the <code>host</code> argument is
- * <code>null</code>.
- * @see java.lang.SecurityManager#getSecurityContext()
- * @see java.security.AccessControlContext#checkPermission(java.security.Permission)
- */
- public void checkConnect(String host, int port, Object 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,
- SecurityConstants.SOCKET_RESOLVE_ACTION),
- context);
- else
- checkPermission(new SocketPermission(host+":"+port,
- SecurityConstants.SOCKET_CONNECT_ACTION),
- context);
- }
- /**
- * Throws a <code>SecurityException</code> if the
- * calling thread is not allowed to wait for a connection request on
- * the specified local port number.
- * <p>
- * If port is not 0, this method calls
- * <code>checkPermission</code> with the
- * <code>SocketPermission("localhost:"+port,"listen")</code>.
- * If port is zero, this method calls <code>checkPermission</code>
- * with <code>SocketPermission("localhost:1024-","listen").</code>
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkListen</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param port the local port.
- * @exception SecurityException if the calling thread does not have
- * permission to listen on the specified port.
- * @see #checkPermission(java.security.Permission) checkPermission
- */
- public void checkListen(int port) {
- if (port == 0) {
- checkPermission(SecurityConstants.LOCAL_LISTEN_PERMISSION);
- } else {
- checkPermission(new SocketPermission("localhost:"+port,
- SecurityConstants.SOCKET_LISTEN_ACTION));
- }
- }
- /**
- * Throws a <code>SecurityException</code> if the
- * calling thread is not permitted to accept a socket connection from
- * the specified host and port number.
- * <p>
- * This method is invoked for the current security manager by the
- * <code>accept</code> method of class <code>ServerSocket</code>.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>SocketPermission(host+":"+port,"accept")</code> permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkAccept</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param host the host name of the socket connection.
- * @param port the port number of the socket connection.
- * @exception SecurityException if the calling thread does not have
- * permission to accept the connection.
- * @exception NullPointerException if the <code>host</code> argument is
- * <code>null</code>.
- * @see java.net.ServerSocket#accept()
- * @see #checkPermission(java.security.Permission) checkPermission
- */
- public void checkAccept(String host, int 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,
- SecurityConstants.SOCKET_ACCEPT_ACTION));
- }
- /**
- * Throws a <code>SecurityException</code> if the
- * calling thread is not allowed to use
- * (join/leave/send/receive) IP multicast.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>java.net.SocketPermission(maddr.getHostAddress(),
- * "accept,connect")</code> permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkMulticast</code>
- * at the point the overridden method would normally throw an
- * exception.
- *
- * @param maddr Internet group address to be used.
- * @exception SecurityException if the calling thread is not allowed to
- * use (join/leave/send/receive) IP multicast.
- * @exception NullPointerException if the address argument is
- * <code>null</code>.
- * @since JDK1.1
- * @see #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,
- SecurityConstants.SOCKET_CONNECT_ACCEPT_ACTION));
- }
- /**
- * Throws a <code>SecurityException</code> if the
- * calling thread is not allowed to use
- * (join/leave/send/receive) IP multicast.
- * <p>
- * This method calls <code>checkPermission</code> with the
- * <code>java.net.SocketPermission(maddr.getHostAddress(),
- * "accept,connect")</code> permission.
- * <p>
- * If you override this method, then you should make a call to
- * <code>super.checkMulticast</code>
- * a