This is an automated email from the ASF dual-hosted git repository.
cshannon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq.git
The following commit(s) were added to refs/heads/main by this push:
new 2d60a8518d Fix AMQP Object message decompression (#2256)
2d60a8518d is described below
commit 2d60a8518d635205879fb8dc391bfb312755cb6a
Author: Christopher L. Shannon <[email protected]>
AuthorDate: Tue Jul 28 10:26:34 2026 -0400
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.
---
.../transport/amqp/message/AmqpMessageSupport.java | 4 ++--
.../message/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 102a1701a5..6b6e034718 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 final class AmqpMessageSupport {
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 368649056b..7e5d48bf3b 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
@@ -583,9 +583,32 @@ public class JMSMappingOutboundTransformerTest {
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();
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact