Class NIOConnection
- java.lang.Object
-
- org.jivesoftware.openfire.nio.NIOConnection
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Connection
public class NIOConnection extends Object implements Connection
Implementation ofConnection
interface specific for NIO connections when using the Apache MINA framework.- Author:
- Gaston Dombiak
- See Also:
- Apache MINA
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jivesoftware.openfire.Connection
Connection.ClientAuth, Connection.CompressionPolicy, Connection.State, Connection.TLSPolicy
-
-
Constructor Summary
Constructors Constructor Description NIOConnection(org.apache.mina.core.session.IoSession session, PacketDeliverer packetDeliverer, ConnectionConfiguration configuration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addCompression()
Adds the compression filter to the connection but only filter incoming traffic.void
close()
Close this session including associated socket connection.void
deliver(org.xmpp.packet.Packet packet)
Delivers the packet to this connection without checking the recipient.void
deliverRawText(String text)
Delivers raw text to this connection.byte[]
getAddress()
Returns the raw IP address of thisInetAddress
object.Connection.CompressionPolicy
getCompressionPolicy()
Returns whether compression is optional or is disabled.ConnectionConfiguration
getConfiguration()
Returns a representation of the desired state for this connection.String
getHostAddress()
Returns the IP address string in textual presentation.String
getHostName()
Gets the host name for this IP address.Certificate[]
getLocalCertificates()
Returns the local underlyingX509Certificate
chain for the connection.int
getMajorXMPPVersion()
Returns the major version of XMPP being used by this connection (major_version.minor_version.int
getMinorXMPPVersion()
Returns the minor version of XMPP being used by this connection (major_version.minor_version.PacketDeliverer
getPacketDeliverer()
Returns the packet deliverer to use when delivering a packet over the socket fails.Certificate[]
getPeerCertificates()
Returns the underlyingX509Certificate
for the connection of the peer.protected StanzaHandler
getStanzaHandler()
Connection.TLSPolicy
getTlsPolicy()
Returns whether TLS is mandatory, optional or is disabled.void
init(LocalSession owner)
Initializes the connection with it's owning session.boolean
isClosed()
Returns true if the connection/session is closed.boolean
isCompressed()
Returns true if the connection is using compression.boolean
isFlashClient()
Returns true if the connected client is a flash client.boolean
isSecure()
Returns true if this connection is secure.boolean
isUsingSelfSignedCertificate()
Returns true if the other peer of this session presented a self-signed certificate.void
registerCloseListener(ConnectionCloseListener listener, Object callback)
Registers a listener for close event notification.void
reinit(LocalSession owner)
Reinitializes the connection to switch to a different session.void
removeCloseListener(ConnectionCloseListener listener)
Removes a registered close event listener.void
setCompressionPolicy(Connection.CompressionPolicy compressionPolicy)
Sets whether compression is enabled or is disabled.void
setFlashClient(boolean flashClient)
Sets whether the connected client is a flash client.void
setTlsPolicy(Connection.TLSPolicy tlsPolicy)
Sets whether TLS is mandatory, optional or is disabled.void
setUsingSelfSignedCertificate(boolean isSelfSigned)
Keeps track if the other peer of this session presented a self-signed certificate.void
setXMPPVersion(int majorVersion, int minorVersion)
Sets the XMPP version information.void
startCompression()
Start compressing outgoing traffic for this connection.void
startTLS(boolean clientMode, boolean directTLS)
Secures the plain connection by negotiating TLS with the other peer.void
systemShutdown()
Notification message indicating that the server is being shutdown.String
toString()
boolean
validate()
Verifies that the connection is still live.
-
-
-
Field Detail
-
CHARSET
public static final String CHARSET
The utf-8 charset for decoding and encoding XMPP packet streams.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NIOConnection
public NIOConnection(org.apache.mina.core.session.IoSession session, PacketDeliverer packetDeliverer, ConnectionConfiguration configuration)
-
-
Method Detail
-
validate
public boolean validate()
Description copied from interface:Connection
Verifies that the connection is still live. Typically this is done by sending a whitespace character between packets.- Specified by:
validate
in interfaceConnection
- Returns:
- true if the socket remains valid, false otherwise.
-
registerCloseListener
public void registerCloseListener(ConnectionCloseListener listener, Object callback)
Description copied from interface:Connection
Registers a listener for close event notification. Registrations after the Session is closed will be immediately notified before the registration call returns (within the context of the registration call). An optional handback object can be associated with the registration if the same listener is registered to listen for multiple connection closures.- Specified by:
registerCloseListener
in interfaceConnection
- Parameters:
listener
- the listener to register for events.callback
- the object to send in the event notification.
-
removeCloseListener
public void removeCloseListener(ConnectionCloseListener listener)
Description copied from interface:Connection
Removes a registered close event listener. Registered listeners must be able to receive close events up until the time this method returns. (i.e. it is possible to call unregister, receive a close event registration, and then have the unregister call return.)- Specified by:
removeCloseListener
in interfaceConnection
- Parameters:
listener
- the listener to deregister for close events.
-
getAddress
public byte[] getAddress() throws UnknownHostException
Description copied from interface:Connection
Returns the raw IP address of thisInetAddress
object. The result is in network byte order: the highest order byte of the address is ingetAddress()[0]
.- Specified by:
getAddress
in interfaceConnection
- Returns:
- the raw IP address of this object.
- Throws:
UnknownHostException
- if IP address of host could not be determined.
-
getHostAddress
public String getHostAddress() throws UnknownHostException
Description copied from interface:Connection
Returns the IP address string in textual presentation.- Specified by:
getHostAddress
in interfaceConnection
- Returns:
- the raw IP address in a string format.
- Throws:
UnknownHostException
- if IP address of host could not be determined.
-
getHostName
public String getHostName() throws UnknownHostException
Description copied from interface:Connection
Gets the host name for this IP address.If this InetAddress was created with a host name, this host name will be remembered and returned; otherwise, a reverse name lookup will be performed and the result will be returned based on the system configured name lookup service. If a lookup of the name service is required, call
getCanonicalHostName
.If there is a security manager, its
checkConnect
method is first called with the hostname and-1
as its arguments to see if the operation is allowed. If the operation is not allowed, it will return the textual representation of the IP address.- Specified by:
getHostName
in interfaceConnection
- Returns:
- the host name for this IP address, or if the operation is not allowed by the security check, the textual representation of the IP address.
- Throws:
UnknownHostException
- if IP address of host could not be determined.- See Also:
InetAddress.getCanonicalHostName()
,SecurityManager.checkConnect(java.lang.String, int)
-
getLocalCertificates
public Certificate[] getLocalCertificates()
Description copied from interface:Connection
Returns the local underlyingX509Certificate
chain for the connection.- Specified by:
getLocalCertificates
in interfaceConnection
- Returns:
- an ordered array of certificates, with the local certificate
first followed by any certificate authorities. If no certificates
is present for the connection, then
null
is returned.
-
getPeerCertificates
public Certificate[] getPeerCertificates()
Description copied from interface:Connection
Returns the underlyingX509Certificate
for the connection of the peer.- Specified by:
getPeerCertificates
in interfaceConnection
- Returns:
- an ordered array of peer certificates, with the peer's own certificate first followed by any certificate authorities.
-
setUsingSelfSignedCertificate
public void setUsingSelfSignedCertificate(boolean isSelfSigned)
Description copied from interface:Connection
Keeps track if the other peer of this session presented a self-signed certificate. When using self-signed certificate for server-2-server sessions then SASL EXTERNAL will not be used and instead server-dialback will be preferred for vcerifying the identify of the remote server.- Specified by:
setUsingSelfSignedCertificate
in interfaceConnection
- Parameters:
isSelfSigned
- true if the other peer presented a self-signed certificate.
-
isUsingSelfSignedCertificate
public boolean isUsingSelfSignedCertificate()
Description copied from interface:Connection
Returns true if the other peer of this session presented a self-signed certificate. When using self-signed certificate for server-2-server sessions then SASL EXTERNAL will not be used and instead server-dialback will be preferred for vcerifying the identify of the remote server.- Specified by:
isUsingSelfSignedCertificate
in interfaceConnection
- Returns:
- true if the other peer of this session presented a self-signed certificate.
-
getPacketDeliverer
public PacketDeliverer getPacketDeliverer()
Description copied from interface:Connection
Returns the packet deliverer to use when delivering a packet over the socket fails. The packet deliverer will retry to send the packet using some other connection, will store the packet offline for later retrieval or will just drop it.- Specified by:
getPacketDeliverer
in interfaceConnection
- Returns:
- the packet deliverer to use when delivering a packet over the socket fails.
-
close
public void close()
Description copied from interface:Connection
Close this session including associated socket connection. The order of events for closing the session is:- Set closing flag to prevent redundant shutdowns.
- Call notifyEvent all listeners that the channel is shutting down.
- Close the socket.
Closeable.close()
contract (idempotent, try-with-resources, etc.)- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfaceConnection
-
systemShutdown
public void systemShutdown()
Description copied from interface:Connection
Notification message indicating that the server is being shutdown. Implementors should send a stream error whose condition is system-shutdown before closing the connection.- Specified by:
systemShutdown
in interfaceConnection
-
init
public void init(LocalSession owner)
Description copied from interface:Connection
Initializes the connection with it's owning session. Allows the connection class to configure itself with session related information (e.g. stream ID).- Specified by:
init
in interfaceConnection
- Parameters:
owner
- the session that owns this connection
-
reinit
public void reinit(LocalSession owner)
Description copied from interface:Connection
Reinitializes the connection to switch to a different session. This allows for XEP-0198 resumption and transport-switching.- Specified by:
reinit
in interfaceConnection
- Parameters:
owner
- The new session now owning the connection.
-
getStanzaHandler
protected StanzaHandler getStanzaHandler()
-
isClosed
public boolean isClosed()
Description copied from interface:Connection
Returns true if the connection/session is closed.- Specified by:
isClosed
in interfaceConnection
- Returns:
- true if the connection is closed.
-
isSecure
public boolean isSecure()
Description copied from interface:Connection
Returns true if this connection is secure.- Specified by:
isSecure
in interfaceConnection
- Returns:
- true if the connection is secure (e.g. SSL/TLS)
-
deliver
public void deliver(org.xmpp.packet.Packet packet) throws UnauthorizedException
Description copied from interface:Connection
Delivers the packet to this connection without checking the recipient. The method essentially callssocket.send(packet.getWriteBuffer())
. Use with caution! This code is unlikely to be called directly. Instead, ensure that data sent to the entities is sent through the appropriate LocalSession object. For clients, this prevents, for example, synchronisation issues with stanza counts related to Stream Management (XEP-0198).- Specified by:
deliver
in interfaceConnection
- Parameters:
packet
- the packet to deliver.- Throws:
UnauthorizedException
- if a permission error was detected.
-
deliverRawText
public void deliverRawText(String text)
Description copied from interface:Connection
Delivers raw text to this connection. This is a very low level way for sending XML stanzas to the client. This method should not be used unless you have very good reasons for not usingConnection.deliver(org.xmpp.packet.Packet)
.This method avoids having to get the writer of this connection and mess directly with the writer. Therefore, this method ensures a correct delivery of the stanza even if other threads were sending data concurrently.
- Specified by:
deliverRawText
in interfaceConnection
- Parameters:
text
- the XML stanzas represented kept in a String.
-
startTLS
public void startTLS(boolean clientMode, boolean directTLS) throws Exception
Description copied from interface:Connection
Secures the plain connection by negotiating TLS with the other peer. In a server-2-server connection the server requesting the TLS negotiation will be the client and the other server will be the server during the TLS negotiation. Therefore, the server requesting the TLS negotiation must passtrue
in theclientMode
parameter and the server receiving the TLS request must passfalse
in theclientMode
parameter.In the case of client-2-server the XMPP server must pass
false
in theclientMode
parameter since it will behave as the server in the TLS negotiation.- Specified by:
startTLS
in interfaceConnection
- Parameters:
clientMode
- boolean indicating if this entity is a client or a server in the TLS negotiation.directTLS
- boolean indicating if the negotiation is directTLS (true) or startTLS (false).- Throws:
Exception
- if an error occured while securing the connection.
-
addCompression
public void addCompression()
Description copied from interface:Connection
Adds the compression filter to the connection but only filter incoming traffic. Do not filter outgoing traffic since we still need to send an uncompressed stanza to the client indicating that he can start compressing the traffic. After we sent the uncompresses stanza we can start compression outgoing traffic as well.- Specified by:
addCompression
in interfaceConnection
-
startCompression
public void startCompression()
Description copied from interface:Connection
Start compressing outgoing traffic for this connection. Compression will only be available after TLS has been negotiated. This means that a connection can never be using compression before TLS. However, it is possible to use compression without TLS.- Specified by:
startCompression
in interfaceConnection
-
getConfiguration
public ConnectionConfiguration getConfiguration()
Description copied from interface:Connection
Returns a representation of the desired state for this connection. Note that this is different from the current state of the connection. For example, TLS can be required by configuration, but while the connection has yet to be fully initialized, the current state might not be TLS-encrypted.- Specified by:
getConfiguration
in interfaceConnection
- Returns:
- The desired configuration for the connection (never null).
-
isFlashClient
public boolean isFlashClient()
Description copied from interface:Connection
Returns true if the connected client is a flash client. Flash clients need to receive a special character (i.e. \0) at the end of each xml packet. Flash clients may send the character \0 in incoming packets and may start a connection using another openning tag such as: "flash:client".- Specified by:
isFlashClient
in interfaceConnection
- Returns:
- true if the connected client is a flash client.
-
setFlashClient
public void setFlashClient(boolean flashClient)
Description copied from interface:Connection
Sets whether the connected client is a flash client. Flash clients need to receive a special character (i.e. \0) at the end of each xml packet. Flash clients may send the character \0 in incoming packets and may start a connection using another openning tag such as: "flash:client".- Specified by:
setFlashClient
in interfaceConnection
- Parameters:
flashClient
- true if the if the connection is a flash client.
-
getMajorXMPPVersion
public int getMajorXMPPVersion()
Description copied from interface:Connection
Returns the major version of XMPP being used by this connection (major_version.minor_version. In most cases, the version should be "1.0". However, older clients using the "Jabber" protocol do not set a version. In that case, the version is "0.0".- Specified by:
getMajorXMPPVersion
in interfaceConnection
- Returns:
- the major XMPP version being used by this connection.
-
getMinorXMPPVersion
public int getMinorXMPPVersion()
Description copied from interface:Connection
Returns the minor version of XMPP being used by this connection (major_version.minor_version. In most cases, the version should be "1.0". However, older clients using the "Jabber" protocol do not set a version. In that case, the version is "0.0".- Specified by:
getMinorXMPPVersion
in interfaceConnection
- Returns:
- the minor XMPP version being used by this connection.
-
setXMPPVersion
public void setXMPPVersion(int majorVersion, int minorVersion)
Description copied from interface:Connection
Sets the XMPP version information. In most cases, the version should be "1.0". However, older clients using the "Jabber" protocol do not set a version. In that case, the version is "0.0".- Specified by:
setXMPPVersion
in interfaceConnection
- Parameters:
majorVersion
- the major version.minorVersion
- the minor version.
-
isCompressed
public boolean isCompressed()
Description copied from interface:Connection
Returns true if the connection is using compression.- Specified by:
isCompressed
in interfaceConnection
- Returns:
- true if the connection is using compression.
-
getCompressionPolicy
public Connection.CompressionPolicy getCompressionPolicy()
Description copied from interface:Connection
Returns whether compression is optional or is disabled.- Specified by:
getCompressionPolicy
in interfaceConnection
- Returns:
- whether compression is optional or is disabled.
-
setCompressionPolicy
public void setCompressionPolicy(Connection.CompressionPolicy compressionPolicy)
Description copied from interface:Connection
Sets whether compression is enabled or is disabled.- Specified by:
setCompressionPolicy
in interfaceConnection
- Parameters:
compressionPolicy
- whether Compression is enabled or is disabled.
-
getTlsPolicy
public Connection.TLSPolicy getTlsPolicy()
Description copied from interface:Connection
Returns whether TLS is mandatory, optional or is disabled. When TLS is mandatory clients are required to secure their connections or otherwise their connections will be closed. On the other hand, when TLS is disabled clients are not allowed to secure their connections using TLS. Their connections will be closed if they try to secure the connection. in this last case.- Specified by:
getTlsPolicy
in interfaceConnection
- Returns:
- whether TLS is mandatory, optional or is disabled.
-
setTlsPolicy
public void setTlsPolicy(Connection.TLSPolicy tlsPolicy)
Description copied from interface:Connection
Sets whether TLS is mandatory, optional or is disabled. When TLS is mandatory clients are required to secure their connections or otherwise their connections will be closed. On the other hand, when TLS is disabled clients are not allowed to secure their connections using TLS. Their connections will be closed if they try to secure the connection. in this last case.- Specified by:
setTlsPolicy
in interfaceConnection
- Parameters:
tlsPolicy
- whether TLS is mandatory, optional or is disabled.
-
-