Skip to content

Commit

Permalink
8280113: (dc) DatagramSocket.receive does not always throw when the c…
Browse files Browse the repository at this point in the history
…hannel is closed

Reviewed-by: jpai, dfuchs
  • Loading branch information
Alan Bateman committed Feb 22, 2023
1 parent f54e108 commit b6ecca1
Show file tree
Hide file tree
Showing 2 changed files with 135 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/java.base/share/classes/sun/nio/ch/DatagramChannelImpl.java
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2001, 2022, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2001, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -581,7 +581,7 @@ public SocketAddress receive(ByteBuffer dst) throws IOException {
n = receive(dst, connected);
}
}
if (n >= 0) {
if (n > 0 || (n == 0 && isOpen())) {
// sender address is in socket address buffer
sender = sourceSocketAddress();
}
Expand Down Expand Up @@ -701,7 +701,7 @@ private SocketAddress trustedBlockingReceive(ByteBuffer dst)
park(Net.POLLIN);
n = receive(dst, connected);
}
if (n >= 0) {
if (n > 0 || (n == 0 && isOpen())) {
// sender address is in socket address buffer
sender = sourceSocketAddress();
}
Expand Down Expand Up @@ -738,7 +738,7 @@ private SocketAddress trustedBlockingReceive(ByteBuffer dst, long nanos)
park(Net.POLLIN, remainingNanos);
n = receive(dst, connected);
}
if (n >= 0) {
if (n > 0 || (n == 0 && isOpen())) {
// sender address is in socket address buffer
sender = sourceSocketAddress();
}
Expand Down Expand Up @@ -787,9 +787,9 @@ private int receiveIntoNativeBuffer(ByteBuffer bb, int rem, int pos,
NIO_ACCESS.acquireSession(bb);
try {
int n = receive0(fd,
((DirectBuffer)bb).address() + pos, rem,
sourceSockAddr.address(),
connected);
((DirectBuffer)bb).address() + pos, rem,
sourceSockAddr.address(),
connected);
if (n > 0)
bb.position(pos + n);
return n;
Expand Down
@@ -0,0 +1,128 @@
/*
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

/*
* @test
* @bug 8280113
* @summary Test async close of a DatagramSocket obtained from a DatagramChannel where
* the DatagramChannel's internal socket address caches are already populated
* @enablePreview
* @library /test/lib
* @run junit AdaptorAsyncCloseAfterReceive
*/

import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
import java.net.SocketException;
import java.nio.ByteBuffer;
import java.nio.channels.DatagramChannel;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;

import jdk.test.lib.thread.VThreadRunner;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.AfterAll;
import static org.junit.jupiter.api.Assertions.*;

class AdaptorAsyncCloseAfterReceive {

// used for scheduling socket close
private static ScheduledExecutorService scheduler;

@BeforeAll
static void setup() {
scheduler = Executors.newSingleThreadScheduledExecutor();
}

@AfterAll
static void finish() {
scheduler.shutdown();
}

/**
* Test closing a DatagramSocket, obtained from a DatagramChannel, while the main
* thread is blocked in receive. The receive method should throw rather than
* completing with the sender address of a previous datagram.
*/
@ParameterizedTest
@CsvSource({"0,0", "100,0", "0,60000", "100,60000"})
void testReceive(int maxLength, int timeout) throws Exception {
try (DatagramChannel dc = DatagramChannel.open()) {
dc.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
SocketAddress localAddress = dc.getLocalAddress();

populateSocketAddressCaches(dc);

DatagramSocket s = dc.socket();
s.setSoTimeout(timeout);

// schedule socket to be closed while main thread blocked in receive
Future<?> future = scheduler.schedule(() -> s.close(), 1, TimeUnit.SECONDS);
try {
while (true) {
byte[] ba = new byte[maxLength];
DatagramPacket p = new DatagramPacket(ba, maxLength);
s.receive(p);
SocketAddress sender = p.getSocketAddress();
if (sender.equals(localAddress)) {
fail("Received datagram from " + sender);
} else {
System.err.format("Datagram from %s ignored%n", sender);
}
}
} catch (SocketException e) {
// expected
} finally {
future.cancel(true);
}
}
}

/**
* Send and receive a few messages to ensure that the DatagramChannel internal
* socket address cache is populated. This setup is also done in a virtual
* thread to ensure that the underlying socket is non-blocking.
*/
private void populateSocketAddressCaches(DatagramChannel dc) throws Exception {
VThreadRunner.run(() -> {
InetSocketAddress remote = (InetSocketAddress) dc.getLocalAddress();
if (remote.getAddress().isAnyLocalAddress()) {
InetAddress lb = InetAddress.getLoopbackAddress();
remote = new InetSocketAddress(lb, dc.socket().getLocalPort());
}
for (int i = 0; i < 2; i++) {
ByteBuffer bb = ByteBuffer.allocate(32);
dc.send(bb, remote);
bb.rewind();
dc.receive(bb);
}
});
}
}

1 comment on commit b6ecca1

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.