| java.lang.Object org.apache.catalina.realm.RealmBase org.apache.catalina.realm.JAASRealm
JAASRealm | public class JAASRealm extends RealmBase (Code) | | Implmentation of Realm that authenticates users via the Java
Authentication and Authorization Service (JAAS). JAAS support requires
either JDK 1.4 (which includes it as part of the standard platform) or
JDK 1.3 (with the plug-in jaas.jar file).
The value configured for the appName property is passed to
the javax.security.auth.login.LoginContext constructor, to
specify the application name used to select the set of relevant
LoginModules required.
The JAAS Specification describes the result of a successful login as a
javax.security.auth.Subject instance, which can contain zero
or more java.security.Principal objects in the return value
of the Subject.getPrincipals() method. However, it provides
no guidance on how to distinguish Principals that describe the individual
user (and are thus appropriate to return as the value of
request.getUserPrincipal() in a web application) from the Principal(s)
that describe the authorized roles for this user. To maintain as much
independence as possible from the underlying LoginMethod
implementation executed by JAAS, the following policy is implemented by
this Realm:
- The JAAS
LoginModule is assumed to return a
Subject with at least one Principal instance
representing the user himself or herself, and zero or more separate
Principals representing the security roles authorized
for this user.
- On the
Principal representing the user, the Principal
name is an appropriate value to return via the Servlet API method
HttpServletRequest.getRemoteUser() .
- On the
Principals representing the security roles, the
name is the name of the authorized security role.
- This Realm will be configured with two lists of fully qualified Java
class names of classes that implement
java.security.Principal - one that identifies class(es)
representing a user, and one that identifies class(es) representing
a security role.
- As this Realm iterates over the
Principals returned by
Subject.getPrincipals() , it will identify the first
Principal that matches the "user classes" list as the
Principal for this user.
- As this Realm iterates over the
Princpals returned by
Subject.getPrincipals() , it will accumulate the set of
all Principals matching the "role classes" list as
identifying the security roles for this user.
- It is a configuration error for the JAAS login method to return a
validated
Subject without a Principal that
matches the "user classes" list.
- By default, the enclosing Container's name serves as the
application name used to obtain the JAAS LoginContext ("Catalina" in
a default installation). Tomcat must be able to find an application
with this name in the JAAS configuration file. Here is a hypothetical
JAAS configuration file entry for a database-oriented login module that uses
a Tomcat-managed JNDI database resource:
Catalina {
org.foobar.auth.DatabaseLoginModule REQUIRED
JNDI_RESOURCE=jdbc/AuthDB
USER_TABLE=users
USER_ID_COLUMN=id
USER_NAME_COLUMN=name
USER_CREDENTIAL_COLUMN=password
ROLE_TABLE=roles
ROLE_NAME_COLUMN=name
PRINCIPAL_FACTORY=org.foobar.auth.impl.SimplePrincipalFactory;
};
- To set the JAAS configuration file
location, set the
CATALINA_OPTS environment variable
similar to the following:
CATALINA_OPTS="-Djava.security.auth.login.config=$CATALINA_HOME/conf/jaas.config"
- As part of the login process, JAASRealm registers its own
CallbackHandler ,
called (unsurprisingly) JAASCallbackHandler . This handler supplies the
HTTP requests's username and credentials to the user-supplied LoginModule
- As with other
Realm implementations, digested passwords are supported if
the <Realm> element in server.xml contains a
digest attribute; JAASCallbackHandler will digest the password
prior to passing it back to the LoginModule
author: Craig R. McClanahan author: Yoav Shapira version: $Revision: 543691 $ $Date: 2007-06-02 03:37:08 +0200 (sam., 02 juin 2007) $ |
Field Summary | |
protected String | appName The application name passed to the JAAS LoginContext ,
which uses it to select the set of relevant LoginModule s. | final protected static String | info Descriptive information about this Realm implementation. | final protected static String | name Descriptive information about this Realm implementation. | protected String | roleClassNames Comma-delimited list of java.security.Principal classes
that represent security roles. | protected List<String> | roleClasses The list of role class names, split out for easy processing. | final protected static StringManager | sm The string manager for this package. | protected boolean | useContextClassLoader Whether to use context ClassLoader or default ClassLoader. | protected String | userClassNames Comma-delimited list of java.security.Principal classes
that represent individual users. | protected List<String> | userClasses The set of user class names, split out for easy processing. |
appName | protected String appName(Code) | | The application name passed to the JAAS LoginContext ,
which uses it to select the set of relevant LoginModule s.
|
info | final protected static String info(Code) | | Descriptive information about this Realm implementation.
|
name | final protected static String name(Code) | | Descriptive information about this Realm implementation.
|
roleClassNames | protected String roleClassNames(Code) | | Comma-delimited list of java.security.Principal classes
that represent security roles.
|
roleClasses | protected List<String> roleClasses(Code) | | The list of role class names, split out for easy processing.
|
useContextClassLoader | protected boolean useContextClassLoader(Code) | | Whether to use context ClassLoader or default ClassLoader.
True means use context ClassLoader, and True is the default
value.
|
userClassNames | protected String userClassNames(Code) | | Comma-delimited list of java.security.Principal classes
that represent individual users.
|
userClasses | protected List<String> userClasses(Code) | | The set of user class names, split out for easy processing.
|
authenticate | public Principal authenticate(String username, String credentials)(Code) | | Return the Principal associated with the specified username and
credentials, if there is one; otherwise return null .
If there are any errors with the JDBC connection, executing
the query or anything we return null (don't authenticate). This
event is also logged, and the connection will be closed so that
a subsequent request will automatically re-open it.
Parameters: username - Username of the Principal to look up Parameters: credentials - Password or other credentials to use inauthenticating this username |
createPrincipal | protected Principal createPrincipal(String username, Subject subject)(Code) | | Identify and return a java.security.Principal instance
representing the authenticated user for the specified Subject .
The Principal is constructed by scanning the list of Principals returned
by the JAASLoginModule. The first Principal object that matches
one of the class names supplied as a "user class" is the user Principal.
This object is returned to tha caller.
Any remaining principal objects returned by the LoginModules are mapped to
roles, but only if their respective classes match one of the "role class" classes.
If a user Principal cannot be constructed, return null .
Parameters: subject - The Subject representing the logged-in user |
getAppName | public String getAppName()(Code) | | getter for the appName member variable
|
getName | protected String getName()(Code) | | Return a short name for this Realm implementation.
|
getPassword | protected String getPassword(String username)(Code) | | Return the password associated with the given principal's user name.
|
getPrincipal | protected Principal getPrincipal(String username)(Code) | | Return the Principal associated with the given user name.
|
isUseContextClassLoader | public boolean isUseContextClassLoader()(Code) | | Returns whether to use the context or default ClassLoader.
True means to use the context ClassLoader.
The value of useContextClassLoader |
makeLegalForJAAS | protected String makeLegalForJAAS(String src)(Code) | | Ensure the given name is legal for JAAS configuration.
Added for Bugzilla 30869, made protected for easy customization
in case my implementation is insufficient, which I think is
very likely.
Parameters: src - The name to validate A string that's a valid JAAS realm name |
parseClassNames | protected void parseClassNames(String classNamesString, List<String> classNamesList)(Code) | | Parses a comma-delimited list of class names, and store the class names
in the provided List. Each class must implement .
Parameters: classNamesString - a comma-delimited list of fully qualified class names. Parameters: classNamesList - the list in which the class names will be stored.The list is cleared before being populated. |
setAppName | public void setAppName(String name)(Code) | | setter for the appName member variable
|
setRoleClassNames | public void setRoleClassNames(String roleClassNames)(Code) | | Sets the list of comma-delimited classes that represent
roles. The classes in the list must implement java.security.Principal .
When this accessor is called (for example, by a Digester
instance parsing the
configuration file), it will parse the class names and store the resulting
string(s) into the ArrayList field roleClasses.
|
setUseContextClassLoader | public void setUseContextClassLoader(boolean useContext)(Code) | | Sets whether to use the context or default ClassLoader.
True means use context ClassLoader.
Parameters: useContext - True means use context ClassLoader |
setUserClassNames | public void setUserClassNames(String userClassNames)(Code) | | Sets the list of comma-delimited classes that represent individual
users. The classes in the list must implement java.security.Principal .
When this accessor is called (for example, by a Digester
instance parsing the
configuration file), it will parse the class names and store the resulting
string(s) into the ArrayList field userClasses.
|
start | public void start() throws LifecycleException(Code) | | Prepare for active use of the public methods of this Component .
exception: LifecycleException - if this component detects a fatal errorthat prevents it from being started |
stop | public void stop() throws LifecycleException(Code) | | Gracefully shut down active use of the public methods of this Component .
exception: LifecycleException - if this component detects a fatal errorthat needs to be reported |
Methods inherited from org.apache.catalina.realm.RealmBase | final public static String Digest(String credentials, String algorithm, String encoding)(Code)(Java Doc) public void addLifecycleListener(LifecycleListener listener)(Code)(Java Doc) public void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public Principal authenticate(String username, String credentials)(Code)(Java Doc) public Principal authenticate(String username, byte[] credentials)(Code)(Java Doc) public Principal authenticate(String username, String clientDigest, String nOnce, String nc, String cnonce, String qop, String realm, String md5a2)(Code)(Java Doc) public Principal authenticate(X509Certificate certs)(Code)(Java Doc) public void backgroundProcess()(Code)(Java Doc) public void destroy()(Code)(Java Doc) protected String digest(String credentials)(Code)(Java Doc) public LifecycleListener[] findLifecycleListeners()(Code)(Java Doc) public SecurityConstraint[] findSecurityConstraints(Request request, Context context)(Code)(Java Doc) public String getAllRolesMode()(Code)(Java Doc) public Container getContainer()(Code)(Java Doc) public ObjectName getController()(Code)(Java Doc) public String getDigest()(Code)(Java Doc) protected String getDigest(String username, String realmName)(Code)(Java Doc) public String getDigestEncoding()(Code)(Java Doc) public String getDomain()(Code)(Java Doc) public String getInfo()(Code)(Java Doc) abstract protected String getName()(Code)(Java Doc) public ObjectName getObjectName()(Code)(Java Doc) abstract protected String getPassword(String username)(Code)(Java Doc) protected Principal getPrincipal(X509Certificate usercert)(Code)(Java Doc) abstract protected Principal getPrincipal(String username)(Code)(Java Doc) public String getType()(Code)(Java Doc) public boolean getValidate()(Code)(Java Doc) protected boolean hasMessageDigest()(Code)(Java Doc) public boolean hasResourcePermission(Request request, Response response, SecurityConstraint[] constraints, Context context) throws IOException(Code)(Java Doc) public boolean hasRole(Principal principal, String role)(Code)(Java Doc) public boolean hasUserDataPermission(Request request, Response response, SecurityConstraint[] constraints) throws IOException(Code)(Java Doc) public void init()(Code)(Java Doc) public static void main(String args)(Code)(Java Doc) public void postDeregister()(Code)(Java Doc) public void postRegister(Boolean registrationDone)(Code)(Java Doc) public void preDeregister() throws Exception(Code)(Java Doc) public ObjectName preRegister(MBeanServer server, ObjectName name) throws Exception(Code)(Java Doc) public void removeLifecycleListener(LifecycleListener listener)(Code)(Java Doc) public void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public void setAllRolesMode(String allRolesMode)(Code)(Java Doc) public void setContainer(Container container)(Code)(Java Doc) public void setController(ObjectName controller)(Code)(Java Doc) public void setDigest(String digest)(Code)(Java Doc) public void setDigestEncoding(String charset)(Code)(Java Doc) public void setValidate(boolean validate)(Code)(Java Doc) public void start() throws LifecycleException(Code)(Java Doc) public void stop() throws LifecycleException(Code)(Java Doc)
|
|
|