Problem with eid-id cache in case of negative matches
Activity

David Horwitz October 14, 2010 at 7:36 AM
Closing based on UCT production experience

David Horwitz August 11, 2010 at 7:11 AM
Also need to invalidate the user cache as that also maps this data:
if (rv.size() > 0)
{
String eid = (String) rv.get(0);
cache.put(new Element(IDCACHE+eid,id));
cache.put(new Element(EIDCACHE+id,eid));
return eid;
}
cache.put(new Element(EIDCACHE+id,null));

David Horwitz August 11, 2010 at 5:35 AMEdited
I think the issue here is the authentication cache:
// the evidence id must match a defined User
User user = userDirectoryService().authenticate(evidence.getIdentifier(), evidence.getPassword());
if (user == null)
{
authenticationCache().putAuthenticationFailure(evidence.getIdentifier(), evidence.getPassword());
throw new AuthenticationException("Invalid Login: Either user not found or password incorrect.");
}
Basically an observer should invalidate that entry on a user.add event . It would seem the solution would be a listener in UserAuthnComponent that invalidated these entries in that case

Ian Boston January 29, 2009 at 2:27 AM
I am unassigning this issue as it gives the wrong impression. I dont have enough hours in the day to look at this issue at the moment and keeping it assigned to me give the reporter hope that I might be able to look at it. I am very sorry. If this issue is a real blocker for production then I would suggest you look for resource in the community to fix the problem, I am happy to respond to emails and guide. Where the code base is Rwiki or Search, I have absolutely no problem with someone else working on the code, this after all is a community.
Stephen Marquard April 23, 2008 at 6:14 AM
Still unresolved as far as I'm aware.
In cases where users are stored localy the eid-id cache can create problems:
Scenario:
1) User attempts to login to node a with account that doesn't exits
2) Administrator creates account on node b
3) user attemts to login to node a again but fails
So either the cache time for the not found case should be a lot shorter or not cached at all