From 007884ab8fa79d5764622ffa94ceb3239492433a Mon Sep 17 00:00:00 2001 From: "Christopher L. Shannon" Date: Tue, 28 Jul 2026 10:26:34 -0400 Subject: [PATCH] Fix AMQP Object message decompression (#2256) This fixes the AmqpMessageSupport utility to correctly decompress the body of Object Message's in all cases. Previously the decompression could stop early and not decompress the entire stream of data. This was due to the loop incorrectly casting the read int from the inflater stream as a byte before comparing to -1 to look for end of stream. This is incorrect because the read() method can return a value between -1 and 255. Java uses Two's Complement to represent signed ints, so if the returned value int is 255 and is cast to a byte it becomes -1. This meant that reading 255 would return -1 leading to the code to exit thinking end of stream has been reached. (cherry picked from commit 2d60a8518d635205879fb8dc391bfb312755cb6a) --- .../amqp/message/AmqpMessageSupport.java | 4 +-- .../JMSMappingOutboundTransformerTest.java | 25 ++++++++++++++++++- 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/activemq-amqp/src/main/java/org/apache/activemq/transport/amqp/message/AmqpMessageSupport.java b/activemq-amqp/src/main/java/org/apache/activemq/transport/amqp/message/AmqpMessageSupport.java index c454b79af72..40d69d20711 100644 --- a/activemq-amqp/src/main/java/org/apache/activemq/transport/amqp/message/AmqpMessageSupport.java +++ b/activemq-amqp/src/main/java/org/apache/activemq/transport/amqp/message/AmqpMessageSupport.java @@ -256,8 +256,8 @@ public static Binary getBinaryFromMessageBody(ActiveMQObjectMessage message) thr InputStream iis = MarshallingSupport.createInflaterInputStream( message.getMaxInflatedDataSize(), is)) { - byte value; - while ((value = (byte) iis.read()) != -1) { + int value; + while ((value = iis.read()) != -1) { os.write(value); } diff --git a/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/message/JMSMappingOutboundTransformerTest.java b/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/message/JMSMappingOutboundTransformerTest.java index afb9548a754..9c91e5c13fd 100644 --- a/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/message/JMSMappingOutboundTransformerTest.java +++ b/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/message/JMSMappingOutboundTransformerTest.java @@ -580,9 +580,32 @@ public void testConvertObjectMessageToAmqpMessageWithAmqpValueBody() throws Exce assertTrue(value instanceof UUID); } + @Test + public void testConvertCompressedObjectMessageToAmqpMessageByte255() throws Exception { + // This specific UUID tests a decompression edge case found for Objects messages and + // is used to verify AmqpMessageSupport.getBinaryFromMessageBody() is correct. + // + // Previously the decompression could stop early and not decompress the entire stream of + // data. This was due to the loop incorrectly casting the read int from the inflater + // stream as a byte before comparing to -1 to look for end of stream. + // + // This is incorrect because the read() method can return a value between -1 and 255. + // Java uses Two's Complement to represent signed ints, so if the returned value int + // is 255 and is cast to a byte it becomes -1. This meant that reading 255 would return -1 + // leading to the code to exit thinking end of stream has been reached. + // + // This particular UUID includes a byte of 255 when decompressed to test this edge case. + testConvertCompressedObjectMessageToAmqpMessageWithDataBody( + UUID.fromString("14faffdc-387d-4e2e-8b44-748d47eaaf06")); + } + @Test public void testConvertCompressedObjectMessageToAmqpMessageWithDataBody() throws Exception { - ActiveMQObjectMessage outbound = createObjectMessage(TEST_OBJECT_VALUE, true); + testConvertCompressedObjectMessageToAmqpMessageWithDataBody(TEST_OBJECT_VALUE); + } + + private void testConvertCompressedObjectMessageToAmqpMessageWithDataBody(UUID uuid) throws Exception { + ActiveMQObjectMessage outbound = createObjectMessage(uuid, true); outbound.onSend(); outbound.storeContent();