Basic Security and Resin's XmlAuthenticatorResin 3.0
Resin 3.0

Features
Installation
Configuration
Web Applications
IOC/AOP
Resources
JSP
Quercus
Servlets and Filters
Databases
Admin (JMX)
CMP
EJB
Amber
EJB 3.0
Security
XML and XSLT
XTP
JMS
Performance
Protocols
Third-party
Troubleshooting/FAQ

Authentication
Digest Passwords
Authorization
SSL
Security Manager
Malicious Attacks
Tutorials
FAQ
Scrapbook

Basic Security
Tutorials
Tutorials
FAQ

Find this tutorial in: /usr/local/resin/webapps/resin-doc/security/tutorial/security-basic
Try the Tutorial
This tutorial covers the basics of JSP and Servlet security and the use of Resin's XmlAuthenticator.

  1. Files in this example
  2. Specifying roles
  3. Specifying secure areas
  4. Making a login form
  5. Causing a login to occur
  6. Determining if the user is authenticated
  7. Getting the current username
  8. Doing different things for different roles
  9. Stop the browser from caching pages
  10. Causing a logout
  11. Using XmlAuthenticator

Files in this example

WEB-INF/web.xml The main JSP/Servlet configuration file
index.jsp The home page for the website
login.jsp The JSP page containing the login form
logout.jsp A JSP page that causes a logout
home.jsp The home page for authenticated users.
professors/index.jsp The more specific home page for Professor's, available only to users in role 'professor'
students/index.jsp The more specific home page for Student's, available to users in role 'student' or in role 'professor'
staff/index.jsp The more specific home page for Staff, available to users in role 'staff' or in role 'professor'
inc/buttonbar.jspf An include file to render a button bar
inc/footer.jspf An include file to render a footer
inc/nobrowsercache.jspf An include file to stop the browser from caching pages

Specifying roles

Each user belongs to one or more roles. These roles are similar to groups in Unix. The possible roles are specified in web.xml.

In this example, a user is either a professor, a student, or a staff. They can also optionally have an additional role of gryffindor, slytherin, hufflepuf, or ravenclaw, indicating which house they belong to (or none at all).

See it in: WEB-INF/web.xml
<security-role>
  <role-name>professor</role-name>
</security-role>

Specifying secure areas

You can limit areas of the website to users in a certain role. You specify url patterns in web.xml and the role that is required. In JSP/Servlet terminology, this is called Declarative Security.

Declarative Security in web.xml
See it in: WEB-INF/web.xml
<security-constraint>
  <web-resource-collection>
    <web-resource-name>Professors</web-resource-name>
    <url-pattern>/professors/*</url-pattern>
  </web-resource-collection>
  <auth-constraint>
    <role-name>professor</role-name>
  </auth-constraint>
</security-constraint>

Making a login form

A login form can be used to retrieve the username and password from the user. The same form or a seperate form can be used when the login fails.

In this example the login form and the error form are in the same JSP file. If the form is being redisplayed because of an error the login_error request parameter is set to '1'.

login-config: Getting Resin to use the login form
See it in: WEB-INF/web.xml
<login-config>
  <auth-method>form</auth-method>
    <form-login-config>
      <form-login-page>/login.jsp</form-login-page> 
      <form-error-page>/login.jsp?login_error=1</form-error-page>
    </form-login-config>
    ...
</login-config>

An example login form
See it in: login.jsp
<form action='j_security_check' method='POST'>
  <table>
    <tr><td>User:</td><td><input type='text' name='j_username'></td></tr>
    <tr><td>Password:</td><td><input type='password' name='j_password'></td></tr>

    <tr><td colspan='2'><input type=submit></td></tr>
  </table>

  <!--
    -  In case the user got here without a session, redirect
    -  successful requests to the home page for authenticated
    -  users.  (This is a non-standard, but useful field.)
    -->
  <input type='hidden' name='j_uri' value='/home.jsp'/>
</form>

Causing a login to occur

Resin will cause a login to occur when a url that points to a secure area is used. You do not make a url directly to the jsp page that contains the login form.

In this example, home.jsp is in a secure area, so an unauthenticated user trying to access it will first be presented with the login form.

Accessing a jsp in a secure area causes the login to occur
See it in: WEB-INF/web.xml
<security-constraint>
  <web-resource-collection>
    <web-resource-name>Home</web-resource-name>
    <url-pattern>/home.jsp</url-pattern>
  </web-resource-collection>
  <auth-constraint>
    <!-- 
      '*' for a <role-name> means "authenticated user with any role"
      The user must be logged in with some kind of role to access
      the home page.  
    -->
    <role-name>*</role-name>
  </auth-constraint>
</security-constraint>

Making a link to cause a login
See it in: index.jsp
<a href="<c:url value='/home.jsp'/>">login</a>

Determining if the user is authenticated

If the user has done a successfull login, we say that they have been authenticated. request.getUserPrincipal() returns null if the user has not been authenticated.

In this example it is used to determine whether a 'login' or a 'logout' link should be presented.

Determining if the user is authenticated
See it in: index.jsp
<c:choose>
  <c:when test="${'${'}empty pageContext.request.userPrincipal}">
    <a href="<c:url value='home.jsp'/>">login</a>
  </c:when>
  <c:otherwise>
    <a href="<c:url value='logout.jsp'/>">logout</a>
  </c:otherwise>
</c:choose>

Getting the current username

Getting the current username
See it in: home.jsp
Welcome <c:out value="${'${'}pageContext.request.remoteUser}"/>.

Doing different things for different roles

You can also determine if a user is in a certain role in the body of the page using request.isUserInRole("role"). In JSP/Servlet terminology, this is called Programmatic Security.

In this example, the home.jsp redirects the user to a more specific home page if the user is a professor, student, or staff.

Programmatic Security using Java code
See it in: home.jsp
<%
  /** redirect to a more specific homepage if one is available */

  String home_url = null;

  if (request.isUserInRole("professor")) {
      home_url = "professors/";
  } else if (request.isUserInRole("staff")) {
      home_url = "staff/";
  } else if (request.isUserInRole("student")) {
      home_url = "students/";
  }

  if (home_url != null) {
      home_url = response.encodeRedirectUrl(home_url);
      response.sendRedirect(home_url);
      return; // don't do any more of the page
  }
%>

Stop the browser from caching pages

Pages with information that changes depending on whether or not there is a known user should not be cached by the browser.

In this example an include file inc/nobrowsercache.jspf is used to send the HTTP headers that stop the browser from caching the page. It is used for each page that shows the button bar at the top, because the button bar changes depending on whether or not the user is logged in.

Java code to stop the browser from caching the page
See it in: inc/nobrowsercache.jspf
<%-- stop the browser from caching the page --%>

<%
  response.setHeader("Cache-Control","no-cache,post-check=0,pre-check=0");
  response.setHeader("Pragma","no-cache");
  response.setHeader("Expires","Thu,01Dec199416:00:00GMT");
%>

Using inc/nobrowsercache.jsp
See it in: index.jsp
<%@ include file="/inc/nobrowsercache.jspf" %>

Causing a logout

A user can be logged out by invalidating the session. This causes all of the information stored in the session to be lost. It is especially important to make sure that the logout page is not cached by the browser.

Causing a logout with session.invalidate()
See it in: logout.jsp
<%@ include file="/inc/nobrowsercache.jspf" %>

<%-- invalidating the session causes a loss of all session
     information, including the identity of the user
     --%>

<% session.invalidate(); %>

Using XmlAuthenticator

Resin provides an authenticator class com.caucho.http.security.XmlAuthenticator which is useful for sites which have minimal security requirements. The developer places entries for users in the authenticator configuration, or in an xml file, or both.

The example below uses digest passwords. Digest passwords avoid the storage of passwords in cleartext, and are discussed under the security section of the Resin documentation.

Specifying the XmlAuthenticator as the authenticator to use
See it in: WEB-INF/web.xml
  <!-- Resin-specific XmlAuthenticator configuration -->
  <authenticator>
    <type>com.caucho.server.security.XmlAuthenticator</type>

    <init>
      <!-- Optionally put user information here.  -->
      <user>pince:Txpd1jQc/xwhISIqodEjfw==:staff,website</user>
      <user>filch:KmZIq2RKXAHV4BaoNHfupQ==:staff</user>

      <!-- You can also use an external file --> 
      <path>WEB-INF/password.xml</path>
    </init>
  </authenticator>
  

An XML file with usernames, passwords, and roles
See it in: WEB-INF/password.xml
<!-- password.xml -->
<authenticator>
  <!-- professors -->
  <user name='snape' password='I7HdZr7CTM6hZLlSd2o+CA==' roles='professor,slytherin'/>
  <user name='mcgonagall' password='4slsTREVeTo0sv5hGkZWag==' roles='professor,gryffindor'/>

  <!-- students -->
  <user name='harry' password='uTOZTGaB6pooMDvqvl2Lbg==' roles='student,gryffindor'/>
  <user name='dmalfoy' password='yI2uN1l97Rv5E6mdRnDFwQ==' roles='student,slytherin'/>

  <!-- alumni -->
  <user name='lmalfoy' password='sj/yhtU1h4LZPw7/Uy9IVA==' roles='alumni,gryffindor'/>
</authenticator>

Try the Tutorial


Tutorials
Tutorials
FAQ
Copyright © 1998-2006 Caucho Technology, Inc. All rights reserved.
Resin® is a registered trademark, and HardCoretm and Quercustm are trademarks of Caucho Technology, Inc.