Skip to content

Commit 07fc539

Browse files
author
Julia Boes
committedDec 9, 2019
8232513: java/net/DatagramSocket/PortUnreachable.java still fails intermittently with BindException
Increase the number of bind retries and test repeats, best effort only Reviewed-by: msheppar, dfuchs, vtewari
1 parent 3ea25ec commit 07fc539

File tree

1 file changed

+26
-10
lines changed

1 file changed

+26
-10
lines changed
 

‎test/jdk/java/net/DatagramSocket/PortUnreachable.java

+26-10
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@
2525
* @test
2626
* @bug 4361783
2727
* @key intermittent
28-
* @summary Test to see if ICMP Port Unreachable on non-connected
29-
* DatagramSocket causes a SocketException "socket closed"
30-
* exception on Windows 2000.
28+
* @summary Test to see if ICMP Port Unreachable on non-connected
29+
* DatagramSocket causes a SocketException "socket closed"
30+
* exception on Windows 2000.
31+
* @run main/othervm PortUnreachable
3132
*/
33+
3234
import java.net.BindException;
3335
import java.net.DatagramPacket;
3436
import java.net.DatagramSocket;
@@ -56,6 +58,7 @@ public void serverSend() {
5658
b = "Greetings from the server".getBytes();
5759
packet = new DatagramPacket(b, b.length, addr, clientPort);
5860
sock.send(packet);
61+
Thread.sleep(500); // give time to the kernel to send packet
5962
sock.close();
6063
} catch (Exception e) {
6164
e.printStackTrace();
@@ -70,15 +73,15 @@ DatagramSocket recreateServerSocket (int serverPort) throws Exception {
7073
serverPort);
7174
// it's possible that this method intermittently fails, if some other
7275
// process running on the machine grabs the port we want before us,
73-
// and doesn't release it before the 5 * 500 ms are elapsed...
76+
// and doesn't release it before the 10 * 500 ms are elapsed...
7477
while (serverSocket == null) {
7578
try {
7679
serverSocket = new DatagramSocket(serverPort, InetAddress.getLocalHost());
7780
} catch (BindException bEx) {
78-
if (retryCount++ < 5) {
79-
sleeptime += sleepAtLeast(500);
81+
if (retryCount++ < 10) {
82+
sleeptime += sleepAtLeast(500);
8083
} else {
81-
System.out.println("Give up after 5 retries and " + sleeptime(sleeptime));
84+
System.out.println("Give up after 10 retries and " + sleeptime(sleeptime));
8285
System.out.println("Has some other process grabbed port " + serverPort + "?");
8386
throw bEx;
8487
}
@@ -154,6 +157,7 @@ void execute () throws Exception{
154157
clientSock.send(packet);
155158

156159
serverSend();
160+
157161
// try to receive
158162
b = new byte[25];
159163
packet = new DatagramPacket(b, b.length, addr, serverPort);
@@ -166,8 +170,20 @@ void execute () throws Exception{
166170
}
167171

168172
public static void main(String[] args) throws Exception {
169-
PortUnreachable test = new PortUnreachable();
170-
test.execute();
171-
}
173+
// A BindException might be thrown intermittently. In that case retry
174+
// 3 times before propagating the exception to finish execution.
175+
int catchCount = 0;
172176

177+
while (true) {
178+
try {
179+
PortUnreachable test = new PortUnreachable();
180+
test.execute();
181+
return;
182+
} catch (BindException bEx) {
183+
if (++catchCount > 3) {
184+
throw bEx;
185+
}
186+
}
187+
}
188+
}
173189
}

0 commit comments

Comments
 (0)
Please sign in to comment.