I am using Form-based authentication provided by GlassFish v3 btw.

Most of the website, when the user about to provide the username and password to log into the system, it has a checkbox "Stay logged in", that if you check the box, if will always let you stay logged. How do I achieve that?

EDIT

@BalusC: Here is my web.xml, for some reason I have to take out the security constraint for my MyFilter to start logging the request. So weird

<filter>
    <filter-name>MyFilter</filter-name>
    <filter-class>com.scholar.servlet.MyFilter</filter-class>
</filter>
<filter-mapping>
    <filter-name>MyFilter</filter-name>
    <url-pattern>/CentralFeed.jsf</url-pattern>
</filter-mapping>
<security-constraint>
    <display-name>Student</display-name>
    <web-resource-collection>
        <web-resource-name>CentralFeed</web-resource-name>
        <description/>
        <url-pattern>/CentralFeed.jsf</url-pattern>
    </web-resource-collection>        
    <auth-constraint>
        <description/>
        <role-name>STUDENT</role-name>
        <role-name>ADMINISTRATOR</role-name>
    </auth-constraint>
</security-constraint>
 <login-config>
    <auth-method>FORM</auth-method>
    <realm-name>jdbc-realm-scholar</realm-name>
    <form-login-config>
        <form-login-page>/index.jsf</form-login-page>
        <form-error-page>/LoginError.jsf</form-error-page>
    </form-login-config>
</login-config>
<security-role>
    <description>Admin who has ultimate power over everything</description>
    <role-name>ADMINISTRATOR</role-name>
</security-role>    
<security-role>
    <description>Participants of the social networking Bridgeye.com</description>
    <role-name>STUDENT</role-name>
</security-role>
link|improve this question

feedback

2 Answers

up vote 15 down vote accepted

Use a long-living cookie to track the unique client and use the new Servlet 3.0 API provided programmatic login HttpServletRequest#login() when the user is not logged-in but the cookie is present.

This is the easiest to achieve if you manage the users in a database table which is provided to Glassfish by JDBCRealm and is the same table as where your User entity comes from. You could then create another table with a java.util.UUID value as PK and the ID of the user in question as FK.

Assume the following login form:

<form action="login" method="post">
    <input type="text" name="username" />
    <input type="password" name="password" />
    <input type="checkbox" name="remember" value="true" />
    <input type="submit" />
</form>

And the following in doPost() method of a Servlet which is mapped on /login:

String username = request.getParameter("username");
String password = hash(request.getParameter("password"));
boolean remember = "true".equals(request.getParameter("remember"));
User user = userDAO.find(username, password);

if (user != null) {
    request.login(user.getUsername(), user.getPassword()); // Password should already be the hashed variant.
    request.getSession().setAttribute("user", user);

    if (remember) {
        String uuid = UUID.randomUUID().toString();
        rememberDAO.save(uuid, user);
        addCookie(response, COOKIE_NAME, uuid, COOKIE_AGE);
    } else {
        rememberDAO.delete(user);
        removeCookie(response, COOKIE_NAME);
    }
}

(the COOKIE_NAME should be the unique cookie name, e.g. "remember" and the COOKIE_AGE should be the age in seconds, e.g. 2592000 for 30 days)

Here's how the doFilter() method of a Filter which is mapped on restricted pages could look like:

HttpServletRequest request = (HttpServletRequest) req;
HttpServletResponse response = (HttpServletResponse) res;
User user = request.getSession().getAttribute("user");

if (user == null) {
    String uuid = getCookieValue(request, COOKIE_NAME);

    if (uuid != null) {
        user = rememberDAO.find(uuid);

        if (user != null) {
            request.login(user.getUsername(), user.getPassword());
            request.getSession().setAttribute("user", user); // Login.
            addCookie(response, COOKIE_NAME, uuid, COOKIE_AGE); // Extends age.
        } else {
            removeCookie(response, COOKIE_NAME);
        }
    }
}

if (user == null) {
    response.sendRedirect("login");
} else {
    chain.doFilter(req, res);
}

In combination with those cookie helper methods (too bad they are missing in Servlet API):

public static String getCookieValue(HttpServletRequest request, String name) {
    Cookie[] cookies = request.getCookies();
    if (cookies != null) {
        for (Cookie cookie : cookies) {
            if (name.equals(cookie.getName())) {
                return cookie.getValue();
            }
        }
    }
    return null;
}

public static void addCookie(HttpServletResponse response, String name, String value, int maxAge) {
    Cookie cookie = new Cookie(name, value);
    cookie.setMaxAge(maxAge);
    response.addCookie(cookie);
}

public static void removeCookie(HttpServletResponse response, String name) {
    addCookie(response, name, null, 0);
}

Although the UUID is extremely hard to brute-force, you could provide the user an option to lock the "remember" option to user's IP address (request.getRemoteAddr()) and store/compare it in the database as well. This makes it a tad more robust.

It's also a good practice to replace the UUID value whenever the user has changed its password.

link|improve this answer
Fantastic, I will try to implement tonight. Thank you BalusC. – Thang Pham Feb 22 '11 at 22:05
1  
Yes, it is and it logs in the user the same way as j_security_check does. This is new in Servlet 3.0. See also "Programmatic login" in JEE6 tutorial: download.oracle.com/javaee/6/tutorial/doc/gjiie.html – BalusC Feb 24 '11 at 1:52
1  
Sorry for asking some many question. Just want to completely understand the code of yours. Assume that the new table the u suggest me to create call UserSession. Inside the else that indicate the user dont want to stay logged in, you have rememberDAO.delete(user);If the user dont want us to remember them, meaning we never put their entry(their userId and the uuid) inside UserSession, why do we need to remove them off the UserSession. And shouldnt rememberDAO.delete(user); be rememberDAO.delete(uuid); since uuid is the PK of the table – Thang Pham Feb 24 '11 at 17:32
2  
It's just for the case that the enduser's has any previous cookies, but decided to disable the "remember me" later on. And no, uuid is inappropriate here since it doesn't exist in the table. Just delete all entries associated with user ID. – BalusC Feb 24 '11 at 17:38
1  
@Marcio: cookies can be stolen, exposed or tampered by various means, either accidently or awarely. You should never store sensitive user-specific information like username and password in cookies. An UUID just ensures an unique and unguessable value which is at its own worthless information. – BalusC Apr 13 at 18:33
show 28 more comments
feedback

Normally this is done like this:

When you log in a user you also set a cookie on the client ( and store the cookie value in the database ) expiring after a certain time (1-2 weeks usually).

When a new request comes in you check that the certain cookie exists and if so look into the database to see if it matches a certain account. If it matches you will then "loosely" log in that account. When i say loosely i mean you only let that session read some info and not write information. You will need to request the password in order to allow the write options.

This is all that is. The trick is to make sure that a "loosely" login is not able to do a lot of harm to the client. This will somewhat protect the user from someone who grabs his remember me cookie and tries to log in as him.

link|improve this answer
+1 for the 'loose' login hint. – asgs Apr 29 '11 at 20:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.