Class SecurityController
- Direct Known Subclasses:
PolicySecurityController
Three main pieces of functionality are required to implement security for JavaScript. First, it must be possible to define classes with an associated security domain. (This security domain may be any object incorporating notion of access restrictions that has meaning to an embedding; for a client-side JavaScript embedding this would typically be java.security.ProtectionDomain or similar object depending on an origin URL and/or a digital certificate.) Next it must be possible to get a security domain object that allows a particular action only if all security domains associated with code on the current Java stack allows it. And finally, it must be possible to execute script code with associated security domain injected into Java stack.
These three pieces of functionality are encapsulated in the SecurityController class.
- Since:
- 1.5 Release 4
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncallWithDomain
(Object securityDomain, Context cx, Callable callable, Scriptable scope, Scriptable thisObj, Object[] args) CallCallable.call(Context cx, Scriptable scope, Scriptable thisObj, Object[] args)
of callable under restricted security domain where an action is allowed only if it is allowed according to the Java stack on the moment of the execWithDomain call and securityDomain.abstract GeneratedClassLoader
createClassLoader
(ClassLoader parentLoader, Object securityDomain) Get class loader-like object that can be used to define classes with the given security context.static GeneratedClassLoader
createLoader
(ClassLoader parent, Object staticDomain) CreateGeneratedClassLoader
with restrictions imposed by staticDomain and all current stack frames.execWithDomain
(Context cx, Scriptable scope, Script script, Object securityDomain) Deprecated.abstract Object
getDynamicSecurityDomain
(Object securityDomain) Get dynamic security domain that allows an action only if it is allowed by the current Java stack and securityDomain.static Class
<?> Class
<?> static boolean
Check if globalSecurityController
was already installed.static void
initGlobal
(SecurityController controller) Initialize global controller that will be used for all security-related operations.
-
Constructor Details
-
SecurityController
public SecurityController()
-
-
Method Details
-
hasGlobal
public static boolean hasGlobal()Check if globalSecurityController
was already installed.- See Also:
-
initGlobal
Initialize global controller that will be used for all security-related operations. The global controller takes precedence over already installedContext
-specific controllers and cause any subsequent call toContext.setSecurityController(SecurityController)
to throw an exception.The method can only be called once.
- See Also:
-
createClassLoader
public abstract GeneratedClassLoader createClassLoader(ClassLoader parentLoader, Object securityDomain) Get class loader-like object that can be used to define classes with the given security context.- Parameters:
parentLoader
- parent class loader to delegate search for classes not defined by the class loader itselfsecurityDomain
- some object specifying the security context of the code that is defined by the returned class loader.
-
createLoader
CreateGeneratedClassLoader
with restrictions imposed by staticDomain and all current stack frames. The method uses the SecurityController instance associated with the currentContext
to construct proper dynamic domain and create corresponding class loader.If no SecurityController is associated with the current
Context
, the method callsContext.createClassLoader(ClassLoader parent)
.- Parameters:
parent
- parent class loader. If null,Context.getApplicationClassLoader()
will be used.staticDomain
- static security domain.
-
getStaticSecurityDomainClass
-
getStaticSecurityDomainClassInternal
-
getDynamicSecurityDomain
Get dynamic security domain that allows an action only if it is allowed by the current Java stack and securityDomain. If securityDomain is null, return domain representing permissions allowed by the current stack. -
callWithDomain
public Object callWithDomain(Object securityDomain, Context cx, Callable callable, Scriptable scope, Scriptable thisObj, Object[] args) CallCallable.call(Context cx, Scriptable scope, Scriptable thisObj, Object[] args)
of callable under restricted security domain where an action is allowed only if it is allowed according to the Java stack on the moment of the execWithDomain call and securityDomain. Any call togetDynamicSecurityDomain(Object)
during execution ofcallable.call(cx, scope, thisObj, args)
should return a domain incorporate restrictions imposed by securityDomain and Java stack on the moment of callWithDomain invocation.The method should always be overridden, it is not declared abstract for compatibility reasons.
-
execWithDomain
@Deprecated public Object execWithDomain(Context cx, Scriptable scope, Script script, Object securityDomain) Deprecated.The application should not override this method and instead overridecallWithDomain(Object securityDomain, Context cx, Callable callable, Scriptable scope, Scriptable thisObj, Object[] args)
.
-
callWithDomain(Object securityDomain, Context cx, Callable callable, Scriptable scope, Scriptable thisObj, Object[] args)
.