Ensure we reject protocol version that we don't currently support.
This commit is contained in:
Timothy Bish 2016-03-03 12:41:59 -05:00
parent e8f44a29dd
commit f3544f248f
3 changed files with 100 additions and 2 deletions

View File

@ -140,7 +140,11 @@
<artifactId>activemq-kahadb-store</artifactId> <artifactId>activemq-kahadb-store</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency> <dependency>
<groupId>org.eclipse.paho</groupId> <groupId>org.eclipse.paho</groupId>
<artifactId>org.eclipse.paho.client.mqttv3</artifactId> <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
@ -311,7 +315,7 @@
</build> </build>
</profile> </profile>
</profiles> </profiles>
<repositories> <repositories>
<!-- for the paho dependency --> <!-- for the paho dependency -->
<repository> <repository>

View File

@ -240,6 +240,21 @@ public class MQTTProtocolConverter {
} }
this.connect = connect; this.connect = connect;
// The Server MUST respond to the CONNECT Packet with a CONNACK return code 0x01
// (unacceptable protocol level) and then disconnect the Client if the Protocol Level
// is not supported by the Server [MQTT-3.1.2-2].
if (connect.version() < 3 || connect.version() > 4) {
CONNACK ack = new CONNACK();
ack.code(CONNACK.Code.CONNECTION_REFUSED_UNACCEPTED_PROTOCOL_VERSION);
try {
getMQTTTransport().sendToMQTT(ack.encode());
getMQTTTransport().onException(IOExceptionSupport.create("Unsupported or invalid protocol version", null));
} catch (IOException e) {
getMQTTTransport().onException(IOExceptionSupport.create(e));
}
return;
}
String clientId = ""; String clientId = "";
if (connect.clientId() != null) { if (connect.clientId() != null) {
clientId = connect.clientId().toString(); clientId = connect.clientId().toString();

View File

@ -0,0 +1,79 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.transport.mqtt;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import java.io.IOException;
import org.apache.activemq.broker.BrokerService;
import org.fusesource.mqtt.codec.CONNACK;
import org.fusesource.mqtt.codec.CONNECT;
import org.fusesource.mqtt.codec.MQTTFrame;
import org.junit.Before;
import org.junit.Test;
import org.mockito.ArgumentCaptor;
import org.mockito.Mockito;
/**
* Tests for various usage scenarios of the protocol converter
*/
public class MQTTProtocolConverterTest {
private MQTTTransport transport;
private BrokerService broker;
@Before
public void setUp() throws Exception {
transport = Mockito.mock(MQTTTransport.class);
broker = Mockito.mock(BrokerService.class);
}
@Test
public void testConnectWithInvalidProtocolVersionToLow() throws IOException {
doTestConnectWithInvalidProtocolVersion(2);
}
@Test
public void testConnectWithInvalidProtocolVersionToHigh() throws IOException {
doTestConnectWithInvalidProtocolVersion(5);
}
private void doTestConnectWithInvalidProtocolVersion(int version) throws IOException {
MQTTProtocolConverter converter = new MQTTProtocolConverter(transport, broker);
CONNECT connect = Mockito.mock(CONNECT.class);
Mockito.when(connect.version()).thenReturn(version);
converter.onMQTTConnect(connect);
ArgumentCaptor<IOException> capturedException = ArgumentCaptor.forClass(IOException.class);
Mockito.verify(transport).onException(capturedException.capture());
assertTrue(capturedException.getValue().getMessage().contains("version"));
ArgumentCaptor<MQTTFrame> capturedFrame = ArgumentCaptor.forClass(MQTTFrame.class);
Mockito.verify(transport).sendToMQTT(capturedFrame.capture());
MQTTFrame response = capturedFrame.getValue();
assertEquals(CONNACK.TYPE, response.messageType());
CONNACK connAck = new CONNACK().decode(response);
assertEquals(CONNACK.Code.CONNECTION_REFUSED_UNACCEPTED_PROTOCOL_VERSION, connAck.code());
}
}