The Artima Developer Community
Sponsored Link

Weblogs Forum
Seeking Scalable Web Authentication

8 replies on 1 page. Most recent reply: Dec 19, 2009 2:32 AM by Janick Reynders

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 8 replies on 1 page
Bill Venners

Posts: 2284
Nickname: bv
Registered: Jan, 2002

Seeking Scalable Web Authentication (View in Weblogs)
Posted: May 13, 2006 5:39 PM
Reply to this message Reply
Summary
The traditional J2EE approach to authentication sessions is placing identity information in the servlets Session object. The memory used by the Sessions, and potential need to replicate them, places a drag on scalability. In this article, I propose a different approach that is more scalable because it requires less shared state.
Advertisement

Many web applications require giving users the ability log in, after which their identity will be recognized on subsequent requests. In the J2EE world, this has traditionally been implemented by placing some identity data, such as a user ID or JAAS Subject, in the servlets Session object. When asked to create a new Session, the servlets framework creates a hopefully hard-to-guess string to serve as the session ID, and sends this ID back to the client in the response, either as a cookie or via URL-rewriting. (In the URL-rewriting approach, the session ID is embedded into any URL on the page that links to other pages of the same application.) On a subsequent request, the servlets framework grabs the session ID from the URL or cookie, and makes the corresponding Session available to the servlet handling the request. To figure out which user is responsible for a given request, the servlet can simply look at the identity data in the Session.

Using a Session approach for log in has two implications for scalability. First, since you are consuming server memory for each logged in user (the identity data), and servers have finite memory, you place some upper limit on the number of users that can be logged in at once on a single server. Second, if you use multiple servers in a cluster to host the same application, you may need to allow the servers to share Session state in some way. Sharing state between servers in a cluster adds network traffic between those servers, which may eventually become a bottleneck to scalability. Moreover, if session state is simply replicated among all the servers in the cluster, you can only increase the maximum number of logged in users by decreasing the size of the identity data or increasing the amount of memory on each server.

In general, a good way to design for scalability is first, to avoid server-side state entirely, and second, if you can't avoid state, to avoid sharing that state among multiple servers. If you are using the Session approach to implementing log in, you've accepted using in-memory state to store the identity data. Whether or not you need to share that state among servers in a cluster depends on how many nines of reliability you want on your users' authentication sessions. For security reasons, you'll probably want your users' authentication sessions to expire after some length of inactivity. After that period the user will have to log in again. The number of nines in question here is the percentage of time (99.9% , 99.999%, etc.) a user will remain logged in prior to your chosen inactivity timeout.

In front of your server cluster, you'll likely have some kind of load balancer. The first strategy you should probably consider using is session affinity: configuring the load balancer to always send requests containing session IDs back to the server from which the session ID originated. If you use session affinity, then you'll get quite a few nines without sharing session state. If a server crashes, the load balancer will detect the failure and send subsequent requests to other servers in the cluster. Users that were logged into the crashed server will find themselves abruptly logged off, and will need to log in again. For many applications, however, this may be acceptable. If so, session state need not be shared, at least not for log in. (Sessions are also often used to hold conversational state, which you may decide you need to share across the cluster even if you don't need to share the identity data.) One important implication of not sharing Session data is that you will be able to increase the maximum number of users logged into your cluster by simply adding more servers to the cluster.

If you do decide the Session data should be shared, on the other hand, the simplest approach may be to replicate the session across all servers in the cluster, so that every server will have a copy of every Session. If full replication becomes a drag on scalability, you can switch to a partitioned approach, in which each Session is "backed up" to one or two other servers rather than replicated to all. Alternatively, the session data could be backed up by saving it to a third party such as a shared network file system, database, or JavaSpace. The combination of session affinity with a partitioned approach to sharing session state should enable you to increase the amount of memory available to hold sessions horizontally by adding servers to your cluster, rather than vertically by adding memory to each server.

Considering clusters of clusters

The Session approach to implementing log in, along with session affinity and session sharing techniques, has worked just fine for a large number of J2EE applications. However, in thinking about scalability for Artima's new architecture, which will serve up a network of sites, I became concerned about the Session approach. As I described in my previous weblog entry, Database Partitioning for Scale, we are planning to make it possible to scale our database horizontally by partitioning sites data into multiple databases. We haven't decided whether we will actually deploy multiple databases, but we wanted to make it easy to do so if we later decide to take that approach. Each sites database (whether we have one or a hundred) will be accessed by a “mini-cluster,” a small cluster of servers, and different mini-clusters may or may not be driven by different load balancers.

On top of this cluster of clusters network topology, we want to implement single-sign on across the network. If you log into one site in our network, and then follow a link to another site in our network, we want the second site to recognize you. In other words, you wouldn't log into a site in the Artima network, you'd log into the entire network. In addition, we don't want a server crash or reboot to log our users off. We will likely deploy new software quite often, such as on a weekly basis, and when we do that we may need to reboot servers. Though being logged off unexpectedly is likely only slightly annoying to users, to me kicking users off the network while they are actively using it seems unprofessional.

Given our cluster of clusters network topology, the single-sign on requirement, and our desire that authentication sessions survive server restarts, I began wondering if there was a better way than the usual Sessions approach for log in. The main source of my concern was that the technique of session affinity is most effective when every server participating in the authentication session belongs to the same cluster, and that wouldn't necessarily true in our cluster of clusters topology. For example, if you log into a site served by mini-cluster A, a server in A would create the session ID and return it. Thereafter, requests to that site, and any other site hosted by mini-cluster A, would go back to the load balancer fronting A, which would direct the requests back to the originating server that created the Session. However, if the user clicked on a link to a site served by mini-cluster B, that request might end up at a different load balancer (the one for mini-cluster B) that has never heard of the session ID. In that case, the server in mini-cluster B that receives the request would need to get the session state from the appropriate server in mini-cluster A. Thereafter, the load balancer for B could redirect all requests with that session ID to the same server.

The thousand servers thought experiment

One of the techniques I have used to design for scalability has been to ask myself how I would implement our requirements across 1000 servers. If it will scale to 1000 servers, I figured, it should work on 10, or 100, or however many we may ever need to deploy. The cluster of clusters topology mixed with the single-sign on requirement adds a bit of complexity to Session sharing, and a bit more drag on scalability, but I believe it could be done. When thinking about single-sign on across 1000 servers partitioned into multiple mini-clusters, however, I began to wonder if a better way existed. Is there a way to implement our requirements that doesn't require Session data at all?

One potential Session-less approach to log in is HTTP authentication. When using this aspect of the HTTP standard, users provide a username and password to the browser, and the browser sends these credentials in one form or another to the server on subsequent requests. The server can authenticate the user by essentially logging them in again on each request, for example, by computing a hash of the password sent via HTTP Basic Authentication and comparing the supplied username and hash to that stored in a shared database. (In our case, since we want single-sign on across our network, we had already decided to provide usernames and password hashes to all servers via a shared database.) Unfortunately, although HTTP authentication would help with scalability by eliminating the need to share any state between servers beyond usernames and password hashes to support log in, it brings up several other concerns, which I described in an earlier weblog entry, HTTP Authentication Woes.

Despite HTTP authentication's problems, however, I wondered if I could potentially take a cue from it. HTTP authentication does not require data other than a username and password hash to be shared across servers primarily because it includes the username and password, in some form, with every request in the authentication session. In other words, once you use HTTP authentication to log into a realm, an area of a site, the credentials will be sent in some form along with every request to that realm until the browser is exited. By including some form of user log in credentials in the session ID placed in a cookie or embedded in URLs, I mused, a server could determine the identity of a user solely by inspecting the session ID that arrived with the request, and referring to user data that's already shared among the servers via our shared database. I'll call this the “embedded” approach, because the session ID is not just a hard-to-guess string, but a hard-to-guess string that includes embedded user credentials.

In the embedded approach, the server could still store identity data in a hash table using the session ID (or part of it) as a key. However, such state is now transformed into a cache that serves merely as a performance optimization. The server-side state is not necessary. If memory gets low on a server because too many users have logged in, some of those cached identities, probably the least recently used, could be evicted from the cache. If a request later arrives that includes one of the session IDs whose identity data had been evicted, the server could use the credentials embedded in the session ID itself to re-authenticate the user. Moreover, given that a server can authenticate a user solely from the session ID and shared user data, any cached identity information need not be shared between servers.

For example, if a user logs into a site in the Artima network hosted by mini-cluster A, the load balancer driving cluster A, because of session affinity, will subsequently send all requests to the server that handled the log in. Most likely, that server will contain the identity data in a cache keyed by the session ID. This means that most often authentication of a request will be efficiently performed through a simple hash table lookup. If a request arrives containing a session ID for which the server has evicted the identity data from the cache because of low memory, the server will have to once again perform “full-blown” authentication by extracting the credentials from the session ID and comparing them against the shared user data. If the full-blown authentication succeeds, identity data can once again be placed in the cache, possibly squeezing out of the cache some other now least recently used identity information.

If the server crashes, the load balancer will direct subsequent requests with that session ID to a different server in mini-cluster A. When the first such request arrives at this “fail-over” server, the session ID will not exist in its cache. The fail-over server will therefore need to perform full-blown authentication. On subsequent requests, however, the fail-over server will likely have the identity data in its cache, yielding efficient authentication via hash table lookup. If the user at some point clicks on a link to a site hosted by mini-cluster B, the receiving server will on the first request need to perform full-blown authentication using the credentials embedded in the session ID, and thereafter will be likely be able to use hash-table-lookup authentication.

Security implications

Probably the main weakness of using session IDs stored in cookies or rewritten URLs for authentication is that session IDs can be rather easily hijacked. For example, if a session ID is transmitted in plain text over HTTP (not HTTPS), it can be intercepted by monitoring the network traffic between you and the server. A session ID may also be hijacked via a cross-site scripting attack, or by the person who uses a public computer after you walk away from it without logging out. Or, if your session ID shows up in a rewritten URL that you email to a friend, and they click on the URL while your session is still active, they get logged in as you. (This is one way in which URL rewriting is less secure than cookies.) To reduce the potential for session hijacking, it is useful if the session ID times out after a period of time. If someone does obtain a session ID from one of your active sessions, they can only act as you while that session is active. After you log out, or after your session times out due to inactivity, the session ID is worthless.

Another potential problem with session IDs is that they may contain encoded information, such as server IP addresses or session ID counts, that should not be revealed to the public. Also, the session ID generation algorithm, if poorly designed, could enable an attacker to guess neighboring session IDs from a few legitimately obtained session IDs. Lastly, session IDs must be assigned such that they are unique across the entire cluster. If two servers assigned the same session ID for you and your archenemy, and a request from your archenemy ended up at your server, he would assume your identity. To avoid these problems, session IDs should be assigned in a way that is difficult to guess and unique across the cluster, with any encoded information either already public knowledge or very difficult to extract.

Implementing the embedded credentials approach

With these security issues in mind, my thought was that we could replicate a pair of "session passwords" across all servers, replacing each password every other 15 minutes. For example, if session password 0 is replaced at 2:00, session password 1 would be replaced at 2:15, session password 0 would again be replaced at 2:30, session password 1 again at 2:45, and so on. Each session password, therefore, would be in force for 30 minutes. The session ID could then include some hard-to-guess user credential encrypted with the latest session password. We would, therefore, also have to replicate a 0 or 1 to indicate which session password to use to encrypt user credentials, and this 0 or 1 could be included in the session ID as well. For the credential, we could use all or part of the user's password hash. (We don't store user passwords in the database, just a hash of the password, so we couldn't use the user's password as this credential.) But to avoid letting any string derived from the user's password back out the door, and to simplify matters when users change their password, I figure we'll generate a unique hard-to-guess string for each user and store it in the shared database when they create their account. This string could then be used as the credential to encrypt with the session password.

To ensure each session ID is unique without requiring servers to communicate with each other (except through the already shared user data), I figured we could include some non-encrypted string that is unique for each user in the session ID. If we decide that we don't mind letting the public know each user's ID (the primary key in the database), we could derive a string from that. Or, alternatively, we could generate yet another unique string when a user creates their account, save that in the shared database, and use it as the user identifier in the session ID.

For example, one form such a session ID could take is:

<session password index (0 or 1)> <user identifier> <separator character> <encrypted credential>

Each server could maintain a cache of user identities (and possibly other things such as roles and permissions) and the user's credential encrypted by one or both of latest session passwords, keyed by the user identifier. When a request arrives at a server that includes a session ID, the server can extract the user identifier from the session ID, and use it to look up this user's data in the cache. If found, the server would then compare the encrypted credential from the session ID with the corresponding one stored in the cache. If it matches, then the user is authenticated. If the corresponding credential does not appear in the cache, the server would encrypt the user credential with the session password identified by the index (0 or 1) in the session ID and place it in the cache. If the resulting string matches the encrypted credential in the session ID, the user is authenticated. If not, the user will have to log in again.

Several scenarios exist in which a session ID will arrive at a server for which the user's identity data is not stored in the cache. The data may have been in the cache earlier, but evicted because of low memory. Or, the data may have been in a different server that crashed, and the load balancer chose this server for fail-over. Or the user may have clicked on a link to a site hosted by this server's mini-cluster on a page obtained from a server in a different mini-cluster. For whatever reason, if a session ID arrives at a server and it finds no identity data in its cache, it will attempt to perform full-blown authentication. It will figure out which user the request is supposedly from (by looking at the user identifier in the session ID), and which password that user's credential was supposedly encrypted with (from the session password index in the session ID). It will encrypt that user's credential with the specified password and compare it with the encrypted credential in the session ID. If it matches, the user is authenticated. If not, the user will need to log in again.

Design tradeoffs

The advantage of the embedded approach over the traditional Session approach is that it minimizes the amount of data that needs to be shared among the servers. Instead of sharing all the sessions of all the logged in users, it requires sharing only three pieces of data: two session passwords and the index (0 or 1) of the latest password. Not only is this less data, it is less dynamic. This data changes—and those changes must therefore be replicated—only once every 15 minutes. Other than the session passwords, the only other data that needs to be shared between servers is data already available via our shared user database.

One downside from a security perspective is that you can't invalidate a session ID by logging off. When you log off in this scheme, you essentially log off your browser by removing the session ID cookie or removing the session ID from the URLs. If someone has hijacked your session ID in the meantime, they would still be able to use it if they make a request before the session password used to encrypt your credential was replaced (up to 30 minutes). One such scenario is if you were logged in via URL rewriting on a public computer, and didn't close the browser or otherwise purge the history after logging off. For a few minutes thereafter, the person using the computer after you could log back in as you by clicking the back button and returning to one of those rewritten URLs. (This scenario highlights another way that URL rewriting is less secure than cookies for holding session IDs.) By contrast, if you log out of a server using the traditional Session approach, you not only log out of the browser by removing the session ID from the cookies or URL, you also log out of the server by removing the Session object.

On the other hand, one security advantage of the embedded approach over the traditional Session approach is that it makes less harmful one kind of potential denial of service attack: a script that repeatedly logs a user in. Such an attack attempts to fill server memory with Sessions. In the embedded case, the memory impact of repeatedly logging in the same user would be that the user's identity data gets cached once on each server that receives the log in requests.

One important difference between the two approaches is that an embedded credential is only a token that can be used to authenticate a user. A traditional session ID, by contrast, is a token that can be used to authenticate a user and a handle for any other arbitrary state, such as conversational state, that may be stored on the server in the Session object. I will discuss conversational state in a later weblog post, but in our case conversational state need only be shared within a mini-cluster. Because of our single-sign on requirement, however, we need to recognize session IDs across all servers in all mini-clusters. So in our case, it seems natural to handle authentication and conversational state differently anyway.

In the embedded approach, at any one time two hard-to-guess strings exist that will authenticate a user when presented as a session ID in a cookie or rewritten URL. You can find out what the latest of those two strings is simply by logging in over HTTPS with your username and password. If cookies are enabled, the session ID will be stored as a cookie. If not, it will show up in rewritten URLs. On subsequent requests, if the session password has changed since the previous request, the response of the new request will contain a different session ID. So as you use the network, every 15 minutes or so, you'll get a new session ID. Most of the time the session ID will be transmitted in the clear over HTTP, so it has the same hijacking potential as traditional session IDs.

I recognize that the session passwords need to be hard to predict, and I'm not sure yet how to create them. We could use an intelligently seeded pseudo random number generator, or perhaps base them on some snapshot of server traffic, or a combination of the two. The user credential should also be difficult to predict. And of course an important part of the security is that the user credentials and session passwords, and the algorithm used to encrypt one with the other, be kept secret.

Although I don't like the loss of ability to log out of a server, I feel it is an acceptable design tradeoff since in exchange we have less state to share between our servers, and hence an easier path to scalability. In general, session IDs sent over HTTP are a rather insecure means of authentication, but they are good enough for a lot of purposes. My feeling is that the embedded approach is good enough to apply to the same sorts of authentication problems as the traditional Session approach, but with less drag on scalability. For certain situations, however, I feel that neither approach is sufficient and that other security and authentication mechanisms should be layered on top of the session ID. I'll talk more about that in a later weblog post.

What's your opinion? Have you heard of anyone taking an embedded approach for authentication in practice? Have you any experiences to relate about security or scaling in either this or the traditional Session approach?


Charles Miller

Posts: 1014
Nickname: carlfish
Registered: Feb, 2003

Re: Seeking Scalable Web Authentication Posted: May 14, 2006 7:54 PM
Reply to this message Reply
This is really just an SSO problem, right? The fact that it's SSO across a single application with no shared state, instead of across multiple applications, doesn't really change the problem domain much.

Bill Venners

Posts: 2284
Nickname: bv
Registered: Jan, 2002

Re: Seeking Scalable Web Authentication Posted: May 14, 2006 10:59 PM
Reply to this message Reply
> This is really just an SSO problem, right? The fact that
> it's SSO across a single application with no shared state,
> instead of across multiple applications, doesn't really
> change the problem domain much.
>
Well, I would say the key attribute of this design context is single-sign on across multiple server clusters, because it implies more sharing of identity data will be required. To me SSO means single-sign on across a multiple web sites more than multiple clusters. Multiple web sites implies multiple clusters, but the same website, if database partitioning is used, could be implemented across multiple clusters.

But even if you just have one cluster and use session affinity, if you want to have fail-over of log in sessions you've got to figure out a secure way to share between servers the knowledge of which user a session ID belongs to, and whether the session ID is still valid. Sharing all user Sessions between those servers seems more cumbersome to scalability than sharing a pair of session passwords. I'm curious if anyone has switched from the traditional approach to an embedded approach such as I described here, and why. Is there some advantage to implementing authentication the traditinal Session way that I'm not seeing? If not, why are we all doing it that way? (Or are we?)

Brian Lloyd-Newberry

Posts: 2
Nickname: newbeb
Registered: May, 2006

Re: Seeking Scalable Web Authentication Posted: May 16, 2006 10:07 AM
Reply to this message Reply
Sounds Like IBM's WebSphere LTPA cookies.

will gage

Posts: 2
Nickname: willgage
Registered: May, 2006

Re: Seeking Scalable Web Authentication Posted: May 16, 2006 11:57 AM
Reply to this message Reply
why use password based encryption for the credential? seems logically easier and certainly more secure to generate some variation of secret key. you can substitute "secret key" for "password" in your architecture with no other changes and get a significant security benefit. unless i'm missing something?

Bill Venners

Posts: 2284
Nickname: bv
Registered: Jan, 2002

Re: Seeking Scalable Web Authentication Posted: May 16, 2006 12:40 PM
Reply to this message Reply
> why use password based encryption for the credential?
> seems logically easier and certainly more secure to
> o generate some variation of secret key. you can
> substitute "secret key" for "password" in your
> architecture with no other changes and get a significant
> security benefit. unless i'm missing something?

The bare credential is opaque. I figured we'd generate some hard to guess string for each user to serve as the credential when they create the account. The only reason for encrypting the credential is that I can change the password every so often, so the actual session ID would only be good for a while, like 30 minutes or so. In some way I want to change the session ID, around every 30 minutes-ish. Were I to just use the credential and don't change it, then each user would have one session ID that would always work forever. So if someone hijacks your session ID, they could use it next month too to log in as you, without needing to keep pinging the server to get the new session IDs. I'm really not sure how much added security that gives me, but it seems worth the extra complexity of replicating the session passwords.

Another way this could possibly be done is add the time of day in there, and just encrypt the result with the same password. Instead of replicating new passwords, the servers would share knowledge of what time it is. That might be easier, because chances are I'm going to be trying to keep time in sync as much as possible anyway. But if anyone ever figured out somehow the password used to encrypt the bare credential and time, they could decrypt any one's session ID and always become that person. And it could fail if the time gets out of sync, which it is always to some extent. Maybe that's easier, though.

Regardless, the security I think is useful, and which you get with the traditional approach, is that if you hijack someone's session ID, you have to keep it alive to keep using it. The next time they log in, they'll get a different session ID. The old one will no longer work.

Oh, you know I think maybe your question might be that you think I mean the user's password. I just mean a generated secret key. We'd generate a new one every 15 minutes.

will gage

Posts: 2
Nickname: willgage
Registered: May, 2006

Re: Seeking Scalable Web Authentication Posted: May 16, 2006 3:54 PM
Reply to this message Reply
no, i understood what you were saying except that when you said "password" i figured you were going to use something like a PBEKey which would be both more subject to attack than some combination of a secret key and a standard symmetric cipher algorithm and unnecessary, since you're not so worried about the key being mnemonic.

Jim Jewett

Posts: 11
Nickname: jimj
Registered: Apr, 2005

Re: Seeking Scalable Web Authentication Posted: Jun 29, 2006 2:00 PM
Reply to this message Reply
> you can't invalidate a session ID by logging off.

Why not? It can't be strictly client-side, but when they request a logoff, there is nothing to keep you from pushing the next two magic keys early -- and pushing keys which happen not to work.

Janick Reynders

Posts: 1
Nickname: janick
Registered: Dec, 2009

Re: Seeking Scalable Web Authentication Posted: Dec 19, 2009 2:32 AM
Reply to this message Reply
I was thinking about sessionless authentication for one of my projects. Thanks to google I stumbled upon this old (but very interesting) article.

Was this approach actually implemented? I guess not, because I still see a JSESSIONID in the cookie sent by artima. I'm very interested in the reasons why this idea was not implemented (was it less secure? Didn't it turn out to be as scalable as first thought of? Was the session replication in a cluster of clusters scalable enough? ...) or in your findings otherwise.

Flat View: This topic has 8 replies on 1 page
Topic: I Believe in Design Previous Topic   Next Topic Topic: The visibility of failed software architectures

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use