You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@activemq.apache.org by "Marcel Meulemans (JIRA)" <ji...@apache.org> on 2015/10/13 22:44:05 UTC

[jira] [Created] (AMQ-6010) AMQP SSL Transport "leaking" currentTransportCounts

Marcel Meulemans created AMQ-6010:
-------------------------------------

             Summary: AMQP SSL Transport "leaking" currentTransportCounts
                 Key: AMQ-6010
                 URL: https://issues.apache.org/jira/browse/AMQ-6010
             Project: ActiveMQ
          Issue Type: Bug
          Components: AMQP
    Affects Versions: 5.12.0, 5.11.1
            Reporter: Marcel Meulemans


When using the AMQP SSL transport the currentTransportCount (variable that tracks connection count in TcpTransportServer.java) can "leak" when the SSL connection is aborted during handshake. In this case the TcpTransportServer class the currentTransportCount is incremented in handleSocket but never decremented in stopped. This eventually leads to ExceededMaximumConnectionsException being thrown from handleSocket. The SSL connection is aborted during handshake if needClientAuth is configured on the transport and a client with an invalid certificate tries to connect.

*Reproduction*
1. Enable the AMQP SSL transport: {{<transportConnector name="amqp+ssl" uri="amqp+ssl://0.0.0.0:5671?needClientAuth=true&amp;maximumConnections=10"/>}}
2. Try to connect with no/invalid client certificate: {{openssl s_client -connect localhost:5671}}
3. After 10 attempts ActiveMQ logs will start showing ExceededMaximumConnectionsException exceptions.

*Bug*
During the SSL handshake phase the protocol converter in the AMQP transport is set to the AMQPProtocolDiscriminator which silently swallows exceptions:
{code:java}
public void onAMQPException(IOException error) {
}
{code}
Which in turn cause the normal stop sequence (via asyncStop) to be skipped.

*Fix*
Change the AMQPProtocolDiscriminator to handle the error instead of swallow it:
{code:java}
public void onAMQPException(IOException error) {
    transport.sendToActiveMQ(error);
}
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)