Package org.opends.server.api
Class ClientConnection
- java.lang.Object
-
- org.opends.server.api.ClientConnection
-
- All Implemented Interfaces:
RequestHandler
- Direct Known Subclasses:
JmxClientConnection,LdapClientConnection
@PublicAPI(stability=VOLATILE, mayInstantiate=true, mayExtend=true, mayInvoke=true) public abstract class ClientConnection extends Object implements RequestHandler
This class defines the set of methods and structures that must be implemented by a Directory Server client connection.This class is deprecated, it should be replaced by
ConnectionContext, see OPENDJ-3620
-
-
Field Summary
Fields Modifier and Type Field Description protected AuthenticationInfoauthenticationInfoThe set of authentication information for this client connection.protected AtomicBooleanbindInProgressIndicates if a bind request is currently in progress on this client connection.protected AtomicBooleansaslBindInProgressIndicates whether a multistage SASL bind is currently in progress on this client connection.protected AtomicBooleanstartTLSInProgressIndicates if a Start TLS request is currently in progress on this client connection.
-
Constructor Summary
Constructors Modifier Constructor Description protectedClientConnection(ServerContext serverContext)Performs the appropriate initialization generic to all client connections.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidderegisterPersistentSearch(PersistentSearch persistentSearch)Deregisters the provided persistent search for this client.abstract voiddisconnect(DisconnectReason disconnectReason, boolean sendNotification, LocalizableMessage message)Closes the connection to the client, optionally sending it a message indicating the reason for the closure.protected voidfinalizeConnectionInternal()Performs any internal cleanup that may be necessary when this client connection is disconnected.voidfinishBind()Indicates a bind or start TLS request processing is finished and the client connection may start processing data read from the socket again.voidfinishSaslBind()Indicates a multistage SASL bind operation is finished and the client connection may accept additional LDAP messages.voidfinishStartTLS()Indicates a bind or start TLS request processing is finished and the client connection may start processing data read from the socket again.AuthenticationInfogetAuthenticationInfo()Retrieves information about the authentication that has been performed for this connection.abstract StringgetClientAddress()Retrieves a string representation of the address of the client.StringgetClientHostPort()Retrieves the address and port (if available) of the client system, separated by a colon.abstract intgetClientPort()Retrieves the port number for this connection on the client system if available.abstract ConnectionHandler<?>getConnectionHandler()Retrieves the connection handler that accepted this client connection.abstract longgetConnectionID()Retrieves the unique identifier that has been assigned to this connection.protected StringgetConnectTimeString()Retrieves a string representation of the time that this connection was established.longgetIdleTime()Retrieves the length of time in milliseconds that this client connection has been idle.longgetIdleTimeLimit()Retrieves the maximum length of time in milliseconds that this client connection will be allowed to remain idle before it should be disconnected.DngetKeyManagerProviderDN()Retrieves the DN of the key manager provider that should be used for operations requiring access to a key manager.longgetMaxBlockedWriteTimeLimit()Retrieves the maximum length of time in milliseconds that attempts to write data to the client should be allowed to block.intgetMaxCandidateSetSize()Retrieves the default maximum number of entry IDs the server may retrieve while cursoring through an index during a search.abstract JsonValuegetMonitorSummary()Returns a summary of this client connection in JSON (format that is both human readable and machine parseable).abstract OperationgetOperationInProgress(int messageID)Retrieves the operation in progress with the specified message ID.List<PersistentSearch>getPersistentSearches()Retrieves the set of persistent searches registered for this client.abstract StringgetProtocol()Retrieves the protocol that the client is using to communicate with the Directory Server.abstract InetAddressgetRemoteAddress()Retrieves theInetAddressassociated with the remote client system.ObjectgetSASLAuthStateInfo()Retrieves an opaque set of information that may be used for processing multi-stage SASL binds.abstract StringgetServerAddress()Retrieves a string representation of the address on the server to which the client connected.protected ServerContextgetServerContext()Returns the server context.StringgetServerHostPort()Retrieves the address and port of the server system, separated by a colon.abstract intgetServerPort()Retrieves the port number for this connection on the server system if available.intgetSizeLimit()Retrieves the size limit that will be enforced for searches performed using this client connection.abstract intgetSSF()Return the Security Strength Factor of a client connection.intgetTimeLimit()Retrieves the time limit that will be enforced for searches performed using this client connection.booleanhasAllPrivileges(Privilege[] privileges, Operation operation)Indicates whether the authenticate client has all of the specified privileges.static booleanhasPrivilege(Entry authorizationEntry, Privilege privilege, ServerContext serverContext)Indicate whether the specified authorization entry parameter has the specified privilege.booleanhasPrivilege(Privilege privilege, Operation operation)Indicates whether the authenticated client has the specified privilege.abstract booleanisConnectionValid()Returns whether the Directory Server believes this connection to be valid and available for communication.booleanisInnerConnection()Returns whether this connection is used for inner work not directly requested by an external client.abstract booleanisSecure()Indicates whether this client connection is currently using a secure mechanism to communicate with the server.booleanmustChangePassword()Indicates whether the user associated with this client connection must change their password before they will be allowed to do anything else.voidregisterPersistentSearch(PersistentSearch persistentSearch)Registers the provided persistent search for this client.abstract voidremoveOperationInProgress(int messageID)Removes the provided operation from the set of operations in progress for this client connection.protected abstract booleansendIntermediateResponseMessage(Operation operation, IntermediateResponse intermediateResponse)Sends the provided intermediate response message to the client.voidsendResponse(Operation operation)Removes the provided operation from the set of operations in progress of this client connection and sends a response to the client based on the information in the provided operation.protected voidsendResponse(Operation operation, int ldapVersion, SslOptions startTlsOptions)Removes the provided operation from the set of operations in progress of this client connection and sends a response to the client based on the information in the provided operation.abstract voidsendSearchEntry(SearchOperation searchOperation, SearchResultEntry searchEntry)Sends the provided search result entry to the client.abstract booleansendSearchReference(SearchOperation searchOperation, SearchResultReference searchReference)Sends the provided search result reference to the client.voidsetAuthenticationInfo(AuthenticationInfo authenticationInfo)Specifies information about the authentication that has been performed for this connection.voidsetIdleTimeLimit(long idleTimeLimitMs)Specifies the maximum length of time in milliseconds that this client connection will be allowed to remain idle before it should be disconnected.voidsetMaxCandidateSetSize(int maxCandidateSetSize)Specifies the default maximum number of entry IDs the server may retrieve while cursoring through an index during a search.voidsetMustChangePassword(boolean mustChangePassword)Specifies whether the user associated with this client connection must change their password before they will be allowed to do anything else.voidsetResourceLimits(Entry userEntry)Set the resource limits from the specified user entry.voidsetSASLAuthStateInfo(Object saslAuthState)Specifies an opaque set of information that may be used for processing multi-stage SASL binds.voidsetSizeLimit(int sizeLimit)Specifies the size limit that will be enforced for searches performed using this client connection.voidsetTimeLimit(int timeLimitSec)Specifies the time limit that will be enforced for searches performed using this client connection.voidsetUnauthenticated()Sets properties in this client connection to indicate that the client is unauthenticated.StringtoString()Retrieves a string representation of this client connection.abstract voidtoString(StringBuilder buffer)Appends a string representation of this client connection to the provided buffer.voidupdateAuthenticationInfo(Entry oldEntry, Entry newEntry)Updates the cached entry associated with either the authentication and/or authorization identity with the provided version.protected voidupdatePrivileges(Entry entry)Updates the privileges associated with this client connection object based on the provided entry for the authentication identity.protected static LdapExceptionwriteTimeLimitExceeded(Duration timeout)Returns a new LdapException for max blocked write time limit exceeded.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.opends.server.api.RequestHandler
handle
-
-
-
-
Field Detail
-
authenticationInfo
protected AuthenticationInfo authenticationInfo
The set of authentication information for this client connection.
-
saslBindInProgress
protected final AtomicBoolean saslBindInProgress
Indicates whether a multistage SASL bind is currently in progress on this client connection. If so, then no other operations should be allowed until the bind completes.
-
bindInProgress
protected final AtomicBoolean bindInProgress
Indicates if a bind request is currently in progress on this client connection. If so, then no further socket reads will occur until the request completes.
-
startTLSInProgress
protected final AtomicBoolean startTLSInProgress
Indicates if a Start TLS request is currently in progress on this client connection. If so, then no further socket reads will occur until the request completes.
-
-
Constructor Detail
-
ClientConnection
protected ClientConnection(ServerContext serverContext)
Performs the appropriate initialization generic to all client connections.- Parameters:
serverContext- the server context
-
-
Method Detail
-
finalizeConnectionInternal
@PublicAPI(stability=PRIVATE, mayInvoke=true, notes="This method should only be invoked by connection handlers.") protected final void finalizeConnectionInternal()
Performs any internal cleanup that may be necessary when this client connection is disconnected. In this case, it will be used to ensure that the connection is deregistered with theAuthenticatedUsersmanager, and will then invoke thefinalizeClientConnectionmethod.
-
getConnectTimeString
protected final String getConnectTimeString()
Retrieves a string representation of the time that this connection was established.- Returns:
- A string representation of the time that this connection was established.
-
getConnectionID
public abstract long getConnectionID()
Retrieves the unique identifier that has been assigned to this connection.- Returns:
- The unique identifier that has been assigned to this connection.
-
getConnectionHandler
public abstract ConnectionHandler<?> getConnectionHandler()
Retrieves the connection handler that accepted this client connection.- Returns:
- The connection handler that accepted this client connection.
-
getProtocol
public abstract String getProtocol()
Retrieves the protocol that the client is using to communicate with the Directory Server.- Returns:
- The protocol that the client is using to communicate with the Directory Server.
-
getClientAddress
public abstract String getClientAddress()
Retrieves a string representation of the address of the client.- Returns:
- A string representation of the address of the client.
-
getClientPort
public abstract int getClientPort()
Retrieves the port number for this connection on the client system if available.- Returns:
- The port number for this connection on the client system or -1 if there is no client port associated with this connection (e.g. internal client).
-
getClientHostPort
public final String getClientHostPort()
Retrieves the address and port (if available) of the client system, separated by a colon.- Returns:
- The address and port of the client system, separated by a colon.
-
getServerAddress
public abstract String getServerAddress()
Retrieves a string representation of the address on the server to which the client connected.- Returns:
- A string representation of the address on the server to which the client connected.
-
getServerPort
public abstract int getServerPort()
Retrieves the port number for this connection on the server system if available.- Returns:
- The port number for this connection on the server system or -1 if there is no server port associated with this connection (e.g. internal client).
-
getServerHostPort
public final String getServerHostPort()
Retrieves the address and port of the server system, separated by a colon.- Returns:
- The address and port of the server system, separated by a colon.
-
getRemoteAddress
public abstract InetAddress getRemoteAddress()
Retrieves theInetAddressassociated with the remote client system.- Returns:
- The
InetAddressassociated with the remote client system. It may benullif the client is not connected over an IP-based connection.
-
isConnectionValid
public abstract boolean isConnectionValid()
Returns whether the Directory Server believes this connection to be valid and available for communication.- Returns:
- true if the connection is valid, false otherwise
-
isSecure
public abstract boolean isSecure()
Indicates whether this client connection is currently using a secure mechanism to communicate with the server. Note that this may change over time based on operations performed by the client or server (e.g., it may go fromfalsetotrueif the client uses the StartTLS extended operation).- Returns:
trueif the client connection is currently using a secure mechanism to communicate with the server, orfalseif not.
-
getMaxBlockedWriteTimeLimit
public long getMaxBlockedWriteTimeLimit()
Retrieves the maximum length of time in milliseconds that attempts to write data to the client should be allowed to block.- Returns:
- The maximum length of time in milliseconds that attempts to write data to the client should be allowed to block.
-
writeTimeLimitExceeded
protected static LdapException writeTimeLimitExceeded(Duration timeout)
Returns a new LdapException for max blocked write time limit exceeded.- Parameters:
timeout- the value for the timeout- Returns:
- a new LdapException for max blocked write time limit exceeded
-
sendResponse
public void sendResponse(Operation operation)
Removes the provided operation from the set of operations in progress of this client connection and sends a response to the client based on the information in the provided operation.Note that this does not make any attempt to cancel any processing that may already be in progress for the operation.
- Parameters:
operation- The operation for which to send the response
-
sendResponse
protected void sendResponse(Operation operation, int ldapVersion, SslOptions startTlsOptions)
Removes the provided operation from the set of operations in progress of this client connection and sends a response to the client based on the information in the provided operation.Note that this does not make any attempt to cancel any processing that may already be in progress for the operation.
- Parameters:
operation- The operation for which to send the responseldapVersion- The ldap protocol versionstartTlsOptions- The options for StartTLS- See Also:
sendResponse(Operation)
-
sendSearchEntry
public abstract void sendSearchEntry(SearchOperation searchOperation, SearchResultEntry searchEntry)
Sends the provided search result entry to the client.- Parameters:
searchOperation- The search operation with which the entry is associated.searchEntry- The search result entry to be sent to the client.
-
sendSearchReference
public abstract boolean sendSearchReference(SearchOperation searchOperation, SearchResultReference searchReference)
Sends the provided search result reference to the client.- Parameters:
searchOperation- The search operation with which the reference is associated.searchReference- The search result reference to be sent to the client.- Returns:
trueif the client is able to accept referrals, orfalseif the client cannot handle referrals and no more attempts should be made to send them for the associated search operation.
-
sendIntermediateResponseMessage
protected abstract boolean sendIntermediateResponseMessage(Operation operation, IntermediateResponse intermediateResponse)
Sends the provided intermediate response message to the client.- Parameters:
operation- The operation with which the intermediate response is associated.intermediateResponse- The intermediate response message to be sent.- Returns:
trueif processing on the associated operation should continue, orfalseif not.
-
disconnect
public abstract void disconnect(DisconnectReason disconnectReason, boolean sendNotification, LocalizableMessage message)
Closes the connection to the client, optionally sending it a message indicating the reason for the closure. Note that the ability to send a notice of disconnection may not be available for all protocols or under all circumstances. Also note that when attempting to disconnect a client connection as a part of operation processing (e.g., within a plugin or other extension), thedisconnectClientmethod within that operation should be called rather than invoking this method directly.All subclasses must invoke the
finalizeConnectionInternalmethod during the course of processing this method.- Parameters:
disconnectReason- The disconnect reason that provides the generic cause for the disconnect.sendNotification- Indicates whether to try to provide notification to the client that the connection will be closed.message- The message to send to the client. It may benullif no notification is to be sent.
-
mustChangePassword
public final boolean mustChangePassword()
Indicates whether the user associated with this client connection must change their password before they will be allowed to do anything else.- Returns:
trueif the user associated with this client connection must change their password before they will be allowed to do anything else, orfalseif not.
-
setMustChangePassword
public final void setMustChangePassword(boolean mustChangePassword)
Specifies whether the user associated with this client connection must change their password before they will be allowed to do anything else.- Parameters:
mustChangePassword- Specifies whether the user associated with this client connection must change their password before they will be allowed to do anything else.
-
getOperationInProgress
public abstract Operation getOperationInProgress(int messageID)
Retrieves the operation in progress with the specified message ID.- Parameters:
messageID- The message ID of the operation to retrieve.- Returns:
- The operation in progress with the specified message ID, or
nullif no such operation could be found.
-
removeOperationInProgress
public abstract void removeOperationInProgress(int messageID)
Removes the provided operation from the set of operations in progress for this client connection. Note that this does not make any attempt to cancel any processing that may already be in progress for the operation.- Parameters:
messageID- The message ID of the operation to remove from the set of operations in progress.
-
getPersistentSearches
public final List<PersistentSearch> getPersistentSearches()
Retrieves the set of persistent searches registered for this client.- Returns:
- The set of persistent searches registered for this client.
-
registerPersistentSearch
@PublicAPI(stability=PRIVATE) public final void registerPersistentSearch(PersistentSearch persistentSearch)
Registers the provided persistent search for this client. Note that this should only be called byDirectoryServer.registerPersistentSearchand not through any other means.- Parameters:
persistentSearch- The persistent search to register for this client.
-
deregisterPersistentSearch
@PublicAPI(stability=PRIVATE) public final void deregisterPersistentSearch(PersistentSearch persistentSearch)
Deregisters the provided persistent search for this client. Note that this should only be called byDirectoryServer.deregisterPersistentSearchand not through any other means.- Parameters:
persistentSearch- The persistent search to deregister for this client.
-
getAuthenticationInfo
public AuthenticationInfo getAuthenticationInfo()
Retrieves information about the authentication that has been performed for this connection.- Returns:
- Information about the user that is currently authenticated on this connection.
-
setAuthenticationInfo
public void setAuthenticationInfo(AuthenticationInfo authenticationInfo)
Specifies information about the authentication that has been performed for this connection.- Parameters:
authenticationInfo- Information about the authentication that has been performed for this connection. It should not benull.
-
updateAuthenticationInfo
public final void updateAuthenticationInfo(Entry oldEntry, Entry newEntry)
Updates the cached entry associated with either the authentication and/or authorization identity with the provided version.- Parameters:
oldEntry- The user entry currently serving as the authentication and/or authorization identity.newEntry- The updated entry that should replace the existing entry. It may optionally have a different DN than the old entry.
-
setUnauthenticated
public void setUnauthenticated()
Sets properties in this client connection to indicate that the client is unauthenticated. This includes setting the authentication info structure to an empty default, as well as setting the size and time limit values to their defaults.
-
hasPrivilege
public static boolean hasPrivilege(Entry authorizationEntry, Privilege privilege, ServerContext serverContext)
Indicate whether the specified authorization entry parameter has the specified privilege. The method can be used to perform a "what-if" scenario.- Parameters:
authorizationEntry- The authentication entry to use.privilege- The privilege to check for.serverContext- The server context- Returns:
trueif the authentication entry has the specified privilege, orfalseif not.
-
hasPrivilege
public boolean hasPrivilege(Privilege privilege, Operation operation)
Indicates whether the authenticated client has the specified privilege.- Parameters:
privilege- The privilege for which to make the determination.operation- The operation being processed which needs to make the privilege determination, ornullif there is no associated operation.- Returns:
trueif the authenticated client has the specified privilege, orfalseif not.
-
hasAllPrivileges
public boolean hasAllPrivileges(Privilege[] privileges, Operation operation)
Indicates whether the authenticate client has all of the specified privileges.- Parameters:
privileges- The array of privileges for which to make the determination.operation- The operation being processed which needs to make the privilege determination, ornullif there is no associated operation.- Returns:
trueif the authenticated client has all of the specified privileges, orfalseif not.
-
updatePrivileges
protected final void updatePrivileges(Entry entry)
Updates the privileges associated with this client connection object based on the provided entry for the authentication identity.- Parameters:
entry- The entry for the authentication identity associated with this client connection.
-
getSASLAuthStateInfo
public final Object getSASLAuthStateInfo()
Retrieves an opaque set of information that may be used for processing multi-stage SASL binds.- Returns:
- An opaque set of information that may be used for processing multi-stage SASL binds.
-
setSASLAuthStateInfo
public final void setSASLAuthStateInfo(Object saslAuthState)
Specifies an opaque set of information that may be used for processing multi-stage SASL binds.- Parameters:
saslAuthState- An opaque set of information that may be used for processing multi-stage SASL binds.
-
getServerContext
protected ServerContext getServerContext()
Returns the server context.- Returns:
- the server context
-
getSizeLimit
public final int getSizeLimit()
Retrieves the size limit that will be enforced for searches performed using this client connection.- Returns:
- The size limit that will be enforced for searches performed using this client connection.
-
setSizeLimit
public void setSizeLimit(int sizeLimit)
Specifies the size limit that will be enforced for searches performed using this client connection.- Parameters:
sizeLimit- The size limit that will be enforced for searches performed using this client connection.
-
getIdleTimeLimit
public final long getIdleTimeLimit()
Retrieves the maximum length of time in milliseconds that this client connection will be allowed to remain idle before it should be disconnected.- Returns:
- The maximum length of time in milliseconds that this client connection will be allowed to remain idle before it should be disconnected.
-
setIdleTimeLimit
public void setIdleTimeLimit(long idleTimeLimitMs)
Specifies the maximum length of time in milliseconds that this client connection will be allowed to remain idle before it should be disconnected.- Parameters:
idleTimeLimitMs- The maximum length of time in milliseconds that this client connection will be allowed to remain idle before it should be disconnected.
-
getMaxCandidateSetSize
public int getMaxCandidateSetSize()
Retrieves the default maximum number of entry IDs the server may retrieve while cursoring through an index during a search.- Returns:
- The default maximum number of entry IDs the server may retrieve while cursoring through an index during a search.
-
setMaxCandidateSetSize
public void setMaxCandidateSetSize(int maxCandidateSetSize)
Specifies the default maximum number of entry IDs the server may retrieve while cursoring through an index during a search.- Parameters:
maxCandidateSetSize- The default maximum number of entry IDs the server may retrieve while cursoring through an index during a search.
-
getTimeLimit
public final int getTimeLimit()
Retrieves the time limit that will be enforced for searches performed using this client connection.- Returns:
- The time limit that will be enforced for searches performed using this client connection.
-
setTimeLimit
public void setTimeLimit(int timeLimitSec)
Specifies the time limit that will be enforced for searches performed using this client connection.- Parameters:
timeLimitSec- The time limit that will be enforced for searches performed using this client connection.
-
setResourceLimits
public void setResourceLimits(Entry userEntry)
Set the resource limits from the specified user entry.Note code is duplicated from
org.opends.server.core.BindOperation.setResourceLimits(Entry).- Parameters:
userEntry- The user's entry which may contain resource limits
-
getMonitorSummary
public abstract JsonValue getMonitorSummary()
Returns a summary of this client connection in JSON (format that is both human readable and machine parseable).- Returns:
- A summary of this client connection in JSON.
-
getKeyManagerProviderDN
public Dn getKeyManagerProviderDN()
Retrieves the DN of the key manager provider that should be used for operations requiring access to a key manager. The default implementation returnsnullto indicate that no key manager provider is available, but subclasses should override this method to return a valid DN if they perform operations which may need access to a key manager.- Returns:
- The DN of the key manager provider that should be used for operations requiring access to a key manager,
or
nullif there is no key manager provider configured for this client connection.
-
toString
public final String toString()
Retrieves a string representation of this client connection.
-
toString
public abstract void toString(StringBuilder buffer)
Appends a string representation of this client connection to the provided buffer.- Parameters:
buffer- The buffer to which the information should be appended.
-
getIdleTime
public long getIdleTime()
Retrieves the length of time in milliseconds that this client connection has been idle.Note that the default implementation will always return zero. Subclasses associated with connection handlers should override this method if they wish to provided idle time limit functionality.
- Returns:
- The length of time in milliseconds that this client connection has been idle.
-
getSSF
public abstract int getSSF()
Return the Security Strength Factor of a client connection.- Returns:
- An integer representing the SSF value of a connection.
-
finishBind
public void finishBind()
Indicates a bind or start TLS request processing is finished and the client connection may start processing data read from the socket again. This must be called after processing each bind request in a multistage SASL bind.
-
finishStartTLS
public void finishStartTLS()
Indicates a bind or start TLS request processing is finished and the client connection may start processing data read from the socket again. This must be called after processing each bind request in a multistage SASL bind.
-
finishSaslBind
public void finishSaslBind()
Indicates a multistage SASL bind operation is finished and the client connection may accept additional LDAP messages.
-
isInnerConnection
public boolean isInnerConnection()
Returns whether this connection is used for inner work not directly requested by an external client.- Returns:
trueif this is an inner connection,falseotherwise
-
-