Fix ref-counting when CompositeByteBuf is used with retainedSlice() (#8497)
Motivation:
ByteBuf.retainedSlice() and similar methods produce sliced buffers with
an independent refcount to the buffer that they wrap.
One of the optimizations in 10539f4dc7
was
to use the ref to the unwrapped buffer object for added slices, but this
did not take into account the above special case when later releasing.
Thanks to @rkapsi for discovering this via #8495.
Modifications:
Since a reference to the slice is still kept in the Component class,
just changed Component.freeIfNecessary() to release the slice in
preference to the unwrapped buf.
Also added a unit test which reproduces the bug.
Result:
Fixes #8495
This commit is contained in:
parent
4c73d24ea8
commit
804e1fa9cc
@ -513,11 +513,11 @@ public class CompositeByteBuf extends AbstractReferenceCountedByteBuf implements
|
|||||||
public CompositeByteBuf removeComponent(int cIndex) {
|
public CompositeByteBuf removeComponent(int cIndex) {
|
||||||
checkComponentIndex(cIndex);
|
checkComponentIndex(cIndex);
|
||||||
Component comp = components[cIndex];
|
Component comp = components[cIndex];
|
||||||
removeComp(cIndex);
|
|
||||||
if (lastAccessed == comp) {
|
if (lastAccessed == comp) {
|
||||||
lastAccessed = null;
|
lastAccessed = null;
|
||||||
}
|
}
|
||||||
comp.freeIfNecessary();
|
comp.freeIfNecessary();
|
||||||
|
removeComp(cIndex);
|
||||||
if (comp.length() > 0) {
|
if (comp.length() > 0) {
|
||||||
// Only need to call updateComponentOffsets if the length was > 0
|
// Only need to call updateComponentOffsets if the length was > 0
|
||||||
updateComponentOffsets(cIndex);
|
updateComponentOffsets(cIndex);
|
||||||
@ -1815,7 +1815,15 @@ public class CompositeByteBuf extends AbstractReferenceCountedByteBuf implements
|
|||||||
}
|
}
|
||||||
|
|
||||||
void freeIfNecessary() {
|
void freeIfNecessary() {
|
||||||
buf.release(); // We should not get a NPE here. If so, it must be a bug.
|
// Release the slice if present since it may have a different
|
||||||
|
// refcount to the unwrapped buf if it is a PooledSlicedByteBuf
|
||||||
|
ByteBuf buffer = slice;
|
||||||
|
if (buffer != null) {
|
||||||
|
buffer.release();
|
||||||
|
} else {
|
||||||
|
buf.release();
|
||||||
|
}
|
||||||
|
// null out in either case since it could be racy
|
||||||
slice = null;
|
slice = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2181,7 +2189,6 @@ public class CompositeByteBuf extends AbstractReferenceCountedByteBuf implements
|
|||||||
}
|
}
|
||||||
int newSize = size - to + from;
|
int newSize = size - to + from;
|
||||||
for (int i = newSize; i < size; i++) {
|
for (int i = newSize; i < size; i++) {
|
||||||
components[i].slice = null;
|
|
||||||
components[i] = null;
|
components[i] = null;
|
||||||
}
|
}
|
||||||
componentCount = newSize;
|
componentCount = newSize;
|
||||||
|
@ -1144,6 +1144,40 @@ public abstract class AbstractCompositeByteBufTest extends AbstractByteBufTest {
|
|||||||
assertEquals(0, buffer.refCnt());
|
assertEquals(0, buffer.refCnt());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testReleasesItsComponents2() {
|
||||||
|
// It is important to use a pooled allocator here to ensure
|
||||||
|
// the slices returned by readRetainedSlice are of type
|
||||||
|
// PooledSlicedByteBuf, which maintains an independent refcount
|
||||||
|
// (so that we can be sure to cover this case)
|
||||||
|
ByteBuf buffer = PooledByteBufAllocator.DEFAULT.buffer(); // 1
|
||||||
|
|
||||||
|
buffer.writeBytes(new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10});
|
||||||
|
|
||||||
|
// use readRetainedSlice this time - produces different kind of slices
|
||||||
|
ByteBuf s1 = buffer.readRetainedSlice(2); // 2
|
||||||
|
ByteBuf s2 = s1.readRetainedSlice(2); // 3
|
||||||
|
ByteBuf s3 = s2.readRetainedSlice(2); // 4
|
||||||
|
ByteBuf s4 = s3.readRetainedSlice(2); // 5
|
||||||
|
|
||||||
|
ByteBuf composite = Unpooled.compositeBuffer()
|
||||||
|
.addComponent(s1)
|
||||||
|
.addComponents(s2, s3, s4)
|
||||||
|
.order(ByteOrder.LITTLE_ENDIAN);
|
||||||
|
|
||||||
|
assertEquals(1, composite.refCnt());
|
||||||
|
assertEquals(2, buffer.refCnt());
|
||||||
|
|
||||||
|
// releasing composite should release the 4 components
|
||||||
|
composite.release();
|
||||||
|
assertEquals(0, composite.refCnt());
|
||||||
|
assertEquals(1, buffer.refCnt());
|
||||||
|
|
||||||
|
// last remaining ref to buffer
|
||||||
|
buffer.release();
|
||||||
|
assertEquals(0, buffer.refCnt());
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testReleasesOnShrink() {
|
public void testReleasesOnShrink() {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user