/*
|
* CDDL HEADER START
|
*
|
* The contents of this file are subject to the terms of the
|
* Common Development and Distribution License, Version 1.0 only
|
* (the "License"). You may not use this file except in compliance
|
* with the License.
|
*
|
* You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
|
* or http://forgerock.org/license/CDDLv1.0.html.
|
* See the License for the specific language governing permissions
|
* and limitations under the License.
|
*
|
* When distributing Covered Code, include this CDDL HEADER in each
|
* file and include the License file at legal-notices/CDDLv1_0.txt.
|
* If applicable, add the following below this CDDL HEADER, with the
|
* fields enclosed by brackets "[]" replaced with your own identifying
|
* information:
|
* Portions Copyright [yyyy] [name of copyright owner]
|
*
|
* CDDL HEADER END
|
*
|
*
|
* Copyright 2008-2010 Sun Microsystems, Inc.
|
* Portions copyright 2011-2014 ForgeRock AS
|
*/
|
package org.opends.server.core;
|
|
import java.util.EnumSet;
|
import java.util.HashSet;
|
import java.util.Set;
|
import java.util.concurrent.CopyOnWriteArraySet;
|
import java.util.concurrent.locks.ReentrantReadWriteLock;
|
|
import org.opends.messages.Message;
|
import org.opends.server.api.ClientConnection;
|
import org.opends.server.api.DITCacheMap;
|
import org.opends.server.api.plugin.InternalDirectoryServerPlugin;
|
import org.opends.server.api.plugin.PluginResult.PostResponse;
|
import org.opends.server.loggers.debug.DebugTracer;
|
import org.opends.server.types.*;
|
import org.opends.server.types.operation.PostResponseDeleteOperation;
|
import org.opends.server.types.operation.PostResponseModifyDNOperation;
|
import org.opends.server.types.operation.PostResponseModifyOperation;
|
|
import static org.opends.messages.CoreMessages.*;
|
import static org.opends.server.api.plugin.PluginType.*;
|
import static org.opends.server.loggers.debug.DebugLogger.*;
|
|
/**
|
* This class provides a data structure which maps an authenticated user DN to
|
* the set of client connections authenticated as that user. Note that a single
|
* client connection may be registered with two different user DNs if the client
|
* has different authentication and authorization identities.
|
* <BR><BR>
|
* This class also provides a mechanism for detecting changes to authenticated
|
* user entries and notifying the corresponding client connections so that they
|
* can update their cached versions.
|
*/
|
public class AuthenticatedUsers extends InternalDirectoryServerPlugin
|
{
|
/**
|
* The tracer object for the debug logger.
|
*/
|
private static final DebugTracer TRACER = getTracer();
|
|
/**
|
* The mapping between authenticated user DNs and the associated client
|
* connection objects.
|
*/
|
private final DITCacheMap<CopyOnWriteArraySet<ClientConnection>> userMap;
|
|
/** Lock to protect internal data structures. */
|
private final ReentrantReadWriteLock lock;
|
|
/** Dummy configuration DN. */
|
private static final String CONFIG_DN = "cn=Authenticated Users,cn=config";
|
|
/**
|
* Creates a new instance of this authenticated users object.
|
*/
|
public AuthenticatedUsers()
|
{
|
super(toDN(CONFIG_DN), EnumSet.of(
|
// No implementation is required for add operations, since a connection
|
// can not be authenticated as a user that does not exist yet.
|
POST_RESPONSE_MODIFY, POST_RESPONSE_MODIFY_DN, POST_RESPONSE_DELETE),
|
true);
|
userMap = new DITCacheMap<CopyOnWriteArraySet<ClientConnection>>();
|
lock = new ReentrantReadWriteLock();
|
|
DirectoryServer.registerInternalPlugin(this);
|
}
|
|
private static DN toDN(String dn)
|
{
|
try
|
{
|
return DN.decode(dn);
|
}
|
catch (DirectoryException e)
|
{
|
throw new RuntimeException(e);
|
}
|
}
|
|
/**
|
* Registers the provided user DN and client connection with this object.
|
*
|
* @param userDN The DN of the user associated with the provided
|
* client connection.
|
* @param clientConnection The client connection over which the user is
|
* authenticated.
|
*/
|
public void put(DN userDN, ClientConnection clientConnection)
|
{
|
lock.writeLock().lock();
|
try
|
{
|
CopyOnWriteArraySet<ClientConnection> connectionSet = userMap.get(userDN);
|
if (connectionSet == null)
|
{
|
connectionSet = new CopyOnWriteArraySet<ClientConnection>();
|
connectionSet.add(clientConnection);
|
userMap.put(userDN, connectionSet);
|
}
|
else
|
{
|
connectionSet.add(clientConnection);
|
}
|
}
|
finally
|
{
|
lock.writeLock().unlock();
|
}
|
}
|
|
|
|
/**
|
* Deregisters the provided user DN and client connection with this object.
|
*
|
* @param userDN The DN of the user associated with the provided
|
* client connection.
|
* @param clientConnection The client connection over which the user is
|
* authenticated.
|
*/
|
public void remove(DN userDN, ClientConnection clientConnection)
|
{
|
lock.writeLock().lock();
|
try
|
{
|
CopyOnWriteArraySet<ClientConnection> connectionSet = userMap.get(userDN);
|
if (connectionSet != null)
|
{
|
connectionSet.remove(clientConnection);
|
if (connectionSet.isEmpty())
|
{
|
userMap.remove(userDN);
|
}
|
}
|
}
|
finally
|
{
|
lock.writeLock().unlock();
|
}
|
}
|
|
|
|
/**
|
* Retrieves the set of client connections authenticated as the specified
|
* user. This method is only intended for internal testing use and should not
|
* be called for any other purpose.
|
*
|
* @param userDN The DN of the user for which to retrieve the corresponding
|
* set of client connections.
|
*
|
* @return The set of client connections authenticated as the specified user,
|
* or {@code null} if there are none.
|
*/
|
public CopyOnWriteArraySet<ClientConnection> get(DN userDN)
|
{
|
lock.readLock().lock();
|
try
|
{
|
return userMap.get(userDN);
|
}
|
finally
|
{
|
lock.readLock().unlock();
|
}
|
}
|
|
/** {@inheritDoc} */
|
@Override
|
public PostResponse doPostResponse(PostResponseDeleteOperation op)
|
{
|
if (op.getResultCode() != ResultCode.SUCCESS) {
|
return PostResponse.continueOperationProcessing();
|
}
|
|
final DN entryDN = op.getEntryDN();
|
// Identify any client connections that may be authenticated
|
// or authorized as the user whose entry has been deleted and terminate them
|
Set<CopyOnWriteArraySet<ClientConnection>> arraySet =
|
new HashSet<CopyOnWriteArraySet<ClientConnection>>();
|
lock.writeLock().lock();
|
try
|
{
|
userMap.removeSubtree(entryDN, arraySet);
|
}
|
finally
|
{
|
lock.writeLock().unlock();
|
}
|
|
for (CopyOnWriteArraySet<ClientConnection> connectionSet : arraySet)
|
{
|
for (ClientConnection conn : connectionSet)
|
{
|
Message message = WARN_CLIENTCONNECTION_DISCONNECT_DUE_TO_DELETE.get(
|
String.valueOf(entryDN));
|
|
conn.disconnect(DisconnectReason.INVALID_CREDENTIALS, true, message);
|
}
|
}
|
return PostResponse.continueOperationProcessing();
|
}
|
|
/** {@inheritDoc} */
|
@Override
|
public PostResponse doPostResponse(PostResponseModifyOperation op)
|
{
|
if (op.getResultCode() != ResultCode.SUCCESS) {
|
return PostResponse.continueOperationProcessing();
|
}
|
|
final Entry oldEntry = op.getCurrentEntry();
|
final Entry newEntry = op.getModifiedEntry();
|
// Identify any client connections that may be authenticated
|
// or authorized as the user whose entry has been modified
|
// and update them with the latest version of the entry.
|
lock.writeLock().lock();
|
try
|
{
|
CopyOnWriteArraySet<ClientConnection> connectionSet = userMap.get(oldEntry.getDN());
|
if (connectionSet != null)
|
{
|
for (ClientConnection conn : connectionSet)
|
{
|
conn.updateAuthenticationInfo(oldEntry, newEntry);
|
}
|
}
|
}
|
finally
|
{
|
lock.writeLock().unlock();
|
}
|
return PostResponse.continueOperationProcessing();
|
}
|
|
/** {@inheritDoc} */
|
@Override
|
public PostResponse doPostResponse(PostResponseModifyDNOperation op)
|
{
|
if (op.getResultCode() != ResultCode.SUCCESS) {
|
return PostResponse.continueOperationProcessing();
|
}
|
|
Entry oldEntry = op.getOriginalEntry();
|
Entry newEntry = op.getUpdatedEntry();
|
String oldDNString = oldEntry.getDN().toNormalizedString();
|
String newDNString = newEntry.getDN().toNormalizedString();
|
|
// Identify any client connections that may be authenticated
|
// or authorized as the user whose entry has been modified
|
// and update them with the latest version of the entry.
|
lock.writeLock().lock();
|
try
|
{
|
Set<CopyOnWriteArraySet<ClientConnection>> arraySet =
|
new HashSet<CopyOnWriteArraySet<ClientConnection>>();
|
userMap.removeSubtree(oldEntry.getDN(), arraySet);
|
for (CopyOnWriteArraySet<ClientConnection> connectionSet : arraySet)
|
{
|
DN authNDN = null;
|
DN authZDN = null;
|
DN newAuthNDN = null;
|
DN newAuthZDN = null;
|
CopyOnWriteArraySet<ClientConnection> newAuthNSet = null;
|
CopyOnWriteArraySet<ClientConnection> newAuthZSet = null;
|
for (ClientConnection conn : connectionSet)
|
{
|
if (authNDN == null)
|
{
|
authNDN = conn.getAuthenticationInfo().getAuthenticationDN();
|
try
|
{
|
newAuthNDN = getNewAuthDN(authNDN, oldDNString, newDNString);
|
}
|
catch (Exception e)
|
{
|
// Should not happen.
|
if (debugEnabled())
|
{
|
TRACER.debugCaught(DebugLogLevel.ERROR, e);
|
}
|
}
|
}
|
if (authZDN == null)
|
{
|
authZDN = conn.getAuthenticationInfo().getAuthorizationDN();
|
try
|
{
|
newAuthZDN = getNewAuthDN(authZDN, oldDNString, newDNString);
|
}
|
catch (Exception e)
|
{
|
// Should not happen.
|
if (debugEnabled())
|
{
|
TRACER.debugCaught(DebugLogLevel.ERROR, e);
|
}
|
}
|
}
|
if (newAuthNDN != null && authNDN != null &&
|
authNDN.isDescendantOf(oldEntry.getDN()))
|
{
|
if (newAuthNSet == null)
|
{
|
newAuthNSet = new CopyOnWriteArraySet<ClientConnection>();
|
}
|
conn.getAuthenticationInfo().setAuthenticationDN(newAuthNDN);
|
newAuthNSet.add(conn);
|
}
|
if (newAuthZDN != null && authZDN != null &&
|
authZDN.isDescendantOf(oldEntry.getDN()))
|
{
|
if (newAuthZSet == null)
|
{
|
newAuthZSet = new CopyOnWriteArraySet<ClientConnection>();
|
}
|
conn.getAuthenticationInfo().setAuthorizationDN(newAuthZDN);
|
newAuthZSet.add(conn);
|
}
|
}
|
if (newAuthNDN != null && newAuthNSet != null)
|
{
|
userMap.put(newAuthNDN, newAuthNSet);
|
}
|
if (newAuthZDN != null && newAuthZSet != null)
|
{
|
userMap.put(newAuthZDN, newAuthZSet);
|
}
|
}
|
}
|
finally
|
{
|
lock.writeLock().unlock();
|
}
|
return PostResponse.continueOperationProcessing();
|
}
|
|
private DN getNewAuthDN(DN authDN, String oldDNString, String newDNString) throws DirectoryException
|
{
|
// FIXME once we move to the SDK:
|
// Matt suggests we should be using the following code here:
|
// return authDN.rename(oldDNString, newDNString);
|
final StringBuilder builder = new StringBuilder(authDN.toNormalizedString());
|
final int oldDNIndex = builder.lastIndexOf(oldDNString);
|
builder.replace(oldDNIndex, builder.length(), newDNString);
|
return DN.decode(builder.toString());
|
}
|
}
|