Skip to content

Commit 8125664

Browse files
committed
Fix not connected/bound error handling for Channels
On Linux, we may need to cast InvalidArgumentSocketException to NotYetBoundException/NotYetConnectedException.
1 parent 44acf55 commit 8125664

File tree

3 files changed

+23
-11
lines changed

3 files changed

+23
-11
lines changed

junixsocket-common/src/main/java/org/newsclub/net/unix/AFSomeSocketChannel.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
*/
1818
package org.newsclub.net.unix;
1919

20-
import java.io.Closeable;
2120
import java.io.IOException;
2221
import java.nio.channels.DatagramChannel;
22+
import java.nio.channels.InterruptibleChannel;
2323
import java.nio.channels.SelectableChannel;
2424
import java.nio.channels.ServerSocketChannel;
2525
import java.nio.channels.SocketChannel;
@@ -33,7 +33,8 @@
3333
* @see AFServerSocketChannel
3434
* @see AFDatagramChannel
3535
*/
36-
public interface AFSomeSocketChannel extends Closeable, FileDescriptorAccess, AFSomeSocketThing {
36+
public interface AFSomeSocketChannel extends InterruptibleChannel, FileDescriptorAccess,
37+
AFSomeSocketThing {
3738
/**
3839
* Checks if the channel is configured blocking. The result may be cached, and therefore not
3940
* invoke native code to check if the underlying socket is actually configured that way.

junixsocket-common/src/main/java/org/newsclub/net/unix/InterruptibleChannelUtil.java

+20-8
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
import java.nio.channels.NotYetBoundException;
2525
import java.nio.channels.NotYetConnectedException;
2626
import java.nio.channels.spi.AbstractInterruptibleChannel;
27-
28-
import org.eclipse.jdt.annotation.NonNull;
27+
import java.util.Objects;
2928

3029
/**
3130
* Helper methods when working with {@link AbstractInterruptibleChannel} subclasses.
@@ -53,8 +52,8 @@ interface EndMethod {
5352
* @param exception An optional exception that was caught in the try-catch-finally block.
5453
* @throws AsynchronousCloseException on error.
5554
*/
56-
static void endInterruptable(AbstractInterruptibleChannel channel, EndMethod end,
57-
boolean complete, Exception exception) throws AsynchronousCloseException {
55+
static void endInterruptable(AFSomeSocketChannel channel, EndMethod end, boolean complete,
56+
Exception exception) throws AsynchronousCloseException {
5857
if (!complete) {
5958
if (exception instanceof ClosedChannelException) {
6059
// we already have caught a valid exception; we don't need to throw one from within "end"
@@ -68,8 +67,8 @@ static void endInterruptable(AbstractInterruptibleChannel channel, EndMethod end
6867
}
6968
}
7069

71-
private static <T extends Exception> T closeAndThrow(AbstractInterruptibleChannel channel,
72-
@NonNull T exc) {
70+
private static <T extends Exception> T closeAndThrow(AFSomeSocketChannel channel, T exc) {
71+
Objects.requireNonNull(exc);
7372
if (channel.isOpen()) {
7473
try {
7574
channel.close();
@@ -99,14 +98,27 @@ static IOException ioExceptionOrThrowRuntimeException(Exception exception) {
9998
* @param e The exception
10099
* @return The exception.
101100
*/
102-
@SuppressWarnings("null")
103-
static Exception handleException(AbstractInterruptibleChannel channel, IOException e) {
101+
@SuppressWarnings("PMD.CognitiveComplexity")
102+
static Exception handleException(AFSomeSocketChannel channel, IOException e) {
104103
if (e instanceof NotConnectedSocketException) {
105104
return (NotYetConnectedException) new NotYetConnectedException().initCause(e);
106105
} else if (e instanceof NotBoundSocketException) {
107106
return (NotYetBoundException) new NotYetBoundException().initCause(e);
108107
}
109108

109+
if (e instanceof InvalidArgumentSocketException) {
110+
if (channel instanceof AFServerSocketChannel<?>) {
111+
AFServerSocketChannel<?> sc = (AFServerSocketChannel<?>) channel;
112+
if (!sc.socket().isBound()) {
113+
return (NotYetBoundException) new NotYetBoundException().initCause(e);
114+
}
115+
} else if (channel instanceof AFSocketChannel<?>) {
116+
if (!((AFSocketChannel<?>) channel).socket().isConnected()) {
117+
return (NotYetConnectedException) new NotYetConnectedException().initCause(e);
118+
}
119+
}
120+
}
121+
110122
if (e instanceof SocketClosedException || e instanceof ClosedChannelException
111123
|| e instanceof BrokenPipeSocketException) {
112124
Thread t = Thread.currentThread();

junixsocket-common/src/test/java/org/newsclub/net/unix/jep380/SocketChannelTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,4 @@ protected void cleanupTestBindNull(ServerSocketChannel sc, SocketAddress addr)
6262
Path p = Paths.get(addr.toString());
6363
Files.delete(p);
6464
}
65-
6665
}

0 commit comments

Comments
 (0)