Skip to content

Commit

Permalink
AVRO-1407: Java: Fix infinite loop on slow connect in NettyTransceive…
Browse files Browse the repository at this point in the history
…r. Contributed by Gareth Davis.

git-svn-id: https://svn.apache.org/repos/asf/avro/trunk@1641894 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
cutting committed Nov 26, 2014
1 parent ad27ed0 commit fbaf3c3
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ Trunk (not yet released)
AVRO-1564. Java: Fix handling of optional byte field in Thrift.
(Michael Pershyn via cutting)

AVRO-1407: Java: Fix infinite loop on slow connect in NettyTransceiver.
(Gareth Davis via cutting)

Avro 1.7.7 (23 July 2014)

NEW FEATURES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,18 @@ public ChannelPipeline getPipeline() throws Exception {
stateLock.readLock().lock();
try {
getChannel();
} catch (Throwable e) {
// must attempt to clean up any allocated channel future
if (channelFuture != null) {
channelFuture.getChannel().close();
}

if (e instanceof IOException)
throw (IOException)e;
if (e instanceof RuntimeException)
throw (RuntimeException)e;
// all that's left is Error
throw (Error)e;
} finally {
stateLock.readLock().unlock();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
/**
* 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.avro.ipc;

import junit.framework.Assert;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.socket.SocketChannel;
import org.jboss.netty.channel.socket.nio.NioClientSocketChannelFactory;
import org.junit.Test;

import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.ServerSocket;
import java.util.concurrent.Executors;

import static org.junit.Assert.assertEquals;

/**
* This is a very specific test that verifies that if the NettyTransceiver fails
* to connect it cleans up the netty channel that it has created.
*/
public class NettyTransceiverWhenFailsToConnect {

@Test(expected = IOException.class)
public void testNettyTransceiverReleasesNettyChannelOnFailingToConnect() throws Exception {
ServerSocket serverSocket = null;
LastChannelRememberingChannelFactory socketChannelFactory = null;

try {
serverSocket = new ServerSocket(0);
socketChannelFactory = new LastChannelRememberingChannelFactory();

try {
new NettyTransceiver(
new InetSocketAddress(serverSocket.getLocalPort()),
socketChannelFactory,
1L
);
} finally {
assertEquals("expected that the channel opened by the transceiver is closed",
false, socketChannelFactory.lastChannel.isOpen());
}
} finally {

if (serverSocket != null) {
// closing the server socket will actually free up the open channel in the
// transceiver, which would have hung otherwise (pre AVRO-1407)
serverSocket.close();
}

if (socketChannelFactory != null) {
socketChannelFactory.releaseExternalResources();
}
}
}

class LastChannelRememberingChannelFactory extends NioClientSocketChannelFactory implements ChannelFactory {

volatile SocketChannel lastChannel;

@Override
public SocketChannel newChannel(ChannelPipeline pipeline) {
return lastChannel= super.newChannel(pipeline);
}
}
}

0 comments on commit fbaf3c3

Please sign in to comment.