2014-04-12 19:21:09 +00:00
|
|
|
/*
|
2019-02-27 21:34:40 +00:00
|
|
|
* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
|
2014-04-12 19:21:09 +00:00
|
|
|
* 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
|
2016-04-27 19:36:02 +00:00
|
|
|
* @bug 8036979 8072384 8044773
|
2019-04-16 20:06:23 +00:00
|
|
|
* @library /test/lib
|
2017-12-13 19:59:55 +00:00
|
|
|
* @requires !vm.graal.enabled
|
2014-04-12 19:21:09 +00:00
|
|
|
* @run main/othervm -Xcheck:jni OptionsTest
|
2015-06-04 17:16:25 +00:00
|
|
|
* @run main/othervm -Xcheck:jni -Djava.net.preferIPv4Stack=true OptionsTest
|
2016-08-10 22:51:25 +00:00
|
|
|
* @run main/othervm --limit-modules=java.base OptionsTest
|
2014-04-12 19:21:09 +00:00
|
|
|
*/
|
|
|
|
|
2016-04-27 19:36:02 +00:00
|
|
|
import java.lang.reflect.Method;
|
2014-04-12 19:21:09 +00:00
|
|
|
import java.net.*;
|
|
|
|
import java.util.*;
|
2019-04-16 20:06:23 +00:00
|
|
|
import jdk.test.lib.net.IPSupport;
|
2014-04-12 19:21:09 +00:00
|
|
|
|
|
|
|
public class OptionsTest {
|
|
|
|
|
|
|
|
static class Test {
|
|
|
|
Test(SocketOption<?> option, Object testValue) {
|
|
|
|
this.option = option;
|
|
|
|
this.testValue = testValue;
|
|
|
|
}
|
|
|
|
static Test create (SocketOption<?> option, Object testValue) {
|
|
|
|
return new Test(option, testValue);
|
|
|
|
}
|
|
|
|
Object option;
|
|
|
|
Object testValue;
|
2016-04-27 19:36:02 +00:00
|
|
|
}
|
2014-04-12 19:21:09 +00:00
|
|
|
|
|
|
|
// The tests set the option using the new API, read back the set value
|
|
|
|
// which could be diferent, and then use the legacy get API to check
|
|
|
|
// these values are the same
|
|
|
|
|
|
|
|
static Test[] socketTests = new Test[] {
|
|
|
|
Test.create(StandardSocketOptions.SO_KEEPALIVE, Boolean.TRUE),
|
|
|
|
Test.create(StandardSocketOptions.SO_SNDBUF, Integer.valueOf(10 * 100)),
|
|
|
|
Test.create(StandardSocketOptions.SO_RCVBUF, Integer.valueOf(8 * 100)),
|
|
|
|
Test.create(StandardSocketOptions.SO_REUSEADDR, Boolean.FALSE),
|
2016-02-23 17:41:00 +00:00
|
|
|
Test.create(StandardSocketOptions.SO_REUSEPORT, Boolean.FALSE),
|
2014-04-12 19:21:09 +00:00
|
|
|
Test.create(StandardSocketOptions.SO_LINGER, Integer.valueOf(80)),
|
|
|
|
Test.create(StandardSocketOptions.IP_TOS, Integer.valueOf(100))
|
|
|
|
};
|
|
|
|
|
|
|
|
static Test[] serverSocketTests = new Test[] {
|
|
|
|
Test.create(StandardSocketOptions.SO_RCVBUF, Integer.valueOf(8 * 100)),
|
2015-06-04 17:16:25 +00:00
|
|
|
Test.create(StandardSocketOptions.SO_REUSEADDR, Boolean.FALSE),
|
2016-02-23 17:41:00 +00:00
|
|
|
Test.create(StandardSocketOptions.SO_REUSEPORT, Boolean.FALSE),
|
2015-06-04 17:16:25 +00:00
|
|
|
Test.create(StandardSocketOptions.IP_TOS, Integer.valueOf(100))
|
2014-04-12 19:21:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static Test[] dgSocketTests = new Test[] {
|
|
|
|
Test.create(StandardSocketOptions.SO_SNDBUF, Integer.valueOf(10 * 100)),
|
|
|
|
Test.create(StandardSocketOptions.SO_RCVBUF, Integer.valueOf(8 * 100)),
|
|
|
|
Test.create(StandardSocketOptions.SO_REUSEADDR, Boolean.FALSE),
|
2016-02-23 17:41:00 +00:00
|
|
|
Test.create(StandardSocketOptions.SO_REUSEPORT, Boolean.FALSE),
|
2014-04-12 19:21:09 +00:00
|
|
|
Test.create(StandardSocketOptions.IP_TOS, Integer.valueOf(100))
|
|
|
|
};
|
|
|
|
|
|
|
|
static Test[] mcSocketTests = new Test[] {
|
|
|
|
Test.create(StandardSocketOptions.IP_MULTICAST_IF, getNetworkInterface()),
|
|
|
|
Test.create(StandardSocketOptions.IP_MULTICAST_TTL, Integer.valueOf(10)),
|
|
|
|
Test.create(StandardSocketOptions.IP_MULTICAST_LOOP, Boolean.TRUE)
|
|
|
|
};
|
|
|
|
|
|
|
|
static NetworkInterface getNetworkInterface() {
|
|
|
|
try {
|
|
|
|
Enumeration<NetworkInterface> nifs = NetworkInterface.getNetworkInterfaces();
|
2016-01-07 09:54:41 +00:00
|
|
|
while (nifs.hasMoreElements()) {
|
|
|
|
NetworkInterface ni = (NetworkInterface)nifs.nextElement();
|
|
|
|
if (ni.supportsMulticast()) {
|
|
|
|
return ni;
|
|
|
|
}
|
2014-04-12 19:21:09 +00:00
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void doSocketTests() throws Exception {
|
|
|
|
try (
|
2019-05-02 10:55:16 +00:00
|
|
|
ServerSocket srv = new ServerSocket(0, 50, InetAddress.getLoopbackAddress());
|
2019-02-27 21:34:40 +00:00
|
|
|
Socket c = new Socket(InetAddress.getLoopbackAddress(), srv.getLocalPort());
|
2014-04-12 19:21:09 +00:00
|
|
|
Socket s = srv.accept();
|
|
|
|
) {
|
2016-02-23 17:41:00 +00:00
|
|
|
Set<SocketOption<?>> options = c.supportedOptions();
|
|
|
|
boolean reuseport = options.contains(StandardSocketOptions.SO_REUSEPORT);
|
2014-04-12 19:21:09 +00:00
|
|
|
for (int i=0; i<socketTests.length; i++) {
|
|
|
|
Test test = socketTests[i];
|
2016-02-23 17:41:00 +00:00
|
|
|
if (!(test.option == StandardSocketOptions.SO_REUSEPORT && !reuseport)) {
|
|
|
|
c.setOption((SocketOption)test.option, test.testValue);
|
|
|
|
Object getval = c.getOption((SocketOption)test.option);
|
|
|
|
Object legacyget = legacyGetOption(Socket.class, c,test.option);
|
|
|
|
if (!getval.equals(legacyget)) {
|
|
|
|
Formatter f = new Formatter();
|
|
|
|
f.format("S Err %d: %s/%s", i, getval, legacyget);
|
|
|
|
throw new RuntimeException(f.toString());
|
|
|
|
}
|
2014-04-12 19:21:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void doDgSocketTests() throws Exception {
|
|
|
|
try (
|
|
|
|
DatagramSocket c = new DatagramSocket(0);
|
|
|
|
) {
|
2016-02-23 17:41:00 +00:00
|
|
|
Set<SocketOption<?>> options = c.supportedOptions();
|
|
|
|
boolean reuseport = options.contains(StandardSocketOptions.SO_REUSEPORT);
|
2014-04-12 19:21:09 +00:00
|
|
|
for (int i=0; i<dgSocketTests.length; i++) {
|
|
|
|
Test test = dgSocketTests[i];
|
2016-02-23 17:41:00 +00:00
|
|
|
if (!(test.option == StandardSocketOptions.SO_REUSEPORT && !reuseport)) {
|
|
|
|
c.setOption((SocketOption)test.option, test.testValue);
|
|
|
|
Object getval = c.getOption((SocketOption)test.option);
|
|
|
|
Object legacyget = legacyGetOption(DatagramSocket.class, c,test.option);
|
|
|
|
if (!getval.equals(legacyget)) {
|
|
|
|
Formatter f = new Formatter();
|
|
|
|
f.format("DG Err %d: %s/%s", i, getval, legacyget);
|
|
|
|
throw new RuntimeException(f.toString());
|
|
|
|
}
|
2014-04-12 19:21:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void doMcSocketTests() throws Exception {
|
|
|
|
try (
|
|
|
|
MulticastSocket c = new MulticastSocket(0);
|
|
|
|
) {
|
|
|
|
for (int i=0; i<mcSocketTests.length; i++) {
|
|
|
|
Test test = mcSocketTests[i];
|
|
|
|
c.setOption((SocketOption)test.option, test.testValue);
|
|
|
|
Object getval = c.getOption((SocketOption)test.option);
|
|
|
|
Object legacyget = legacyGetOption(MulticastSocket.class, c,test.option);
|
|
|
|
if (!getval.equals(legacyget)) {
|
|
|
|
Formatter f = new Formatter();
|
|
|
|
f.format("MC Err %d: %s/%s", i, getval, legacyget);
|
|
|
|
throw new RuntimeException(f.toString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void doServerSocketTests() throws Exception {
|
|
|
|
try (
|
|
|
|
ServerSocket c = new ServerSocket(0);
|
|
|
|
) {
|
2016-02-23 17:41:00 +00:00
|
|
|
Set<SocketOption<?>> options = c.supportedOptions();
|
|
|
|
boolean reuseport = options.contains(StandardSocketOptions.SO_REUSEPORT);
|
2014-04-12 19:21:09 +00:00
|
|
|
for (int i=0; i<serverSocketTests.length; i++) {
|
|
|
|
Test test = serverSocketTests[i];
|
2016-02-23 17:41:00 +00:00
|
|
|
if (!(test.option == StandardSocketOptions.SO_REUSEPORT && !reuseport)) {
|
|
|
|
c.setOption((SocketOption)test.option, test.testValue);
|
|
|
|
Object getval = c.getOption((SocketOption)test.option);
|
|
|
|
Object legacyget = legacyGetOption(
|
|
|
|
ServerSocket.class, c, test.option
|
|
|
|
);
|
|
|
|
if (!getval.equals(legacyget)) {
|
|
|
|
Formatter f = new Formatter();
|
|
|
|
f.format("SS Err %d: %s/%s", i, getval, legacyget);
|
|
|
|
throw new RuntimeException(f.toString());
|
|
|
|
}
|
2014-04-12 19:21:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static Object legacyGetOption(
|
|
|
|
Class<?> type, Object s, Object option)
|
|
|
|
|
|
|
|
throws Exception
|
|
|
|
{
|
|
|
|
if (type.equals(Socket.class)) {
|
|
|
|
Socket socket = (Socket)s;
|
2016-02-23 17:41:00 +00:00
|
|
|
Set<SocketOption<?>> options = socket.supportedOptions();
|
|
|
|
boolean reuseport = options.contains(StandardSocketOptions.SO_REUSEPORT);
|
2014-04-12 19:21:09 +00:00
|
|
|
|
|
|
|
if (option.equals(StandardSocketOptions.SO_KEEPALIVE)) {
|
|
|
|
return Boolean.valueOf(socket.getKeepAlive());
|
|
|
|
} else if (option.equals(StandardSocketOptions.SO_SNDBUF)) {
|
|
|
|
return Integer.valueOf(socket.getSendBufferSize());
|
|
|
|
} else if (option.equals(StandardSocketOptions.SO_RCVBUF)) {
|
|
|
|
return Integer.valueOf(socket.getReceiveBufferSize());
|
|
|
|
} else if (option.equals(StandardSocketOptions.SO_REUSEADDR)) {
|
|
|
|
return Boolean.valueOf(socket.getReuseAddress());
|
2016-02-23 17:41:00 +00:00
|
|
|
} else if (option.equals(StandardSocketOptions.SO_REUSEPORT) && reuseport) {
|
|
|
|
return Boolean.valueOf(socket.getOption(StandardSocketOptions.SO_REUSEPORT));
|
2014-04-12 19:21:09 +00:00
|
|
|
} else if (option.equals(StandardSocketOptions.SO_LINGER)) {
|
|
|
|
return Integer.valueOf(socket.getSoLinger());
|
|
|
|
} else if (option.equals(StandardSocketOptions.IP_TOS)) {
|
|
|
|
return Integer.valueOf(socket.getTrafficClass());
|
|
|
|
} else if (option.equals(StandardSocketOptions.TCP_NODELAY)) {
|
|
|
|
return Boolean.valueOf(socket.getTcpNoDelay());
|
|
|
|
} else {
|
|
|
|
throw new RuntimeException("unexecpted socket option");
|
|
|
|
}
|
|
|
|
} else if (type.equals(ServerSocket.class)) {
|
|
|
|
ServerSocket socket = (ServerSocket)s;
|
2016-02-23 17:41:00 +00:00
|
|
|
Set<SocketOption<?>> options = socket.supportedOptions();
|
|
|
|
boolean reuseport = options.contains(StandardSocketOptions.SO_REUSEPORT);
|
|
|
|
|
2014-04-12 19:21:09 +00:00
|
|
|
if (option.equals(StandardSocketOptions.SO_RCVBUF)) {
|
|
|
|
return Integer.valueOf(socket.getReceiveBufferSize());
|
|
|
|
} else if (option.equals(StandardSocketOptions.SO_REUSEADDR)) {
|
|
|
|
return Boolean.valueOf(socket.getReuseAddress());
|
2016-02-23 17:41:00 +00:00
|
|
|
} else if (option.equals(StandardSocketOptions.SO_REUSEPORT) && reuseport) {
|
|
|
|
return Boolean.valueOf(socket.getOption(StandardSocketOptions.SO_REUSEPORT));
|
2015-06-04 17:16:25 +00:00
|
|
|
} else if (option.equals(StandardSocketOptions.IP_TOS)) {
|
2016-04-27 19:36:02 +00:00
|
|
|
return getServerSocketTrafficClass(socket);
|
2014-04-12 19:21:09 +00:00
|
|
|
} else {
|
|
|
|
throw new RuntimeException("unexecpted socket option");
|
|
|
|
}
|
|
|
|
} else if (type.equals(DatagramSocket.class)) {
|
|
|
|
DatagramSocket socket = (DatagramSocket)s;
|
2016-02-23 17:41:00 +00:00
|
|
|
Set<SocketOption<?>> options = socket.supportedOptions();
|
|
|
|
boolean reuseport = options.contains(StandardSocketOptions.SO_REUSEPORT);
|
2014-04-12 19:21:09 +00:00
|
|
|
|
|
|
|
if (option.equals(StandardSocketOptions.SO_SNDBUF)) {
|
|
|
|
return Integer.valueOf(socket.getSendBufferSize());
|
|
|
|
} else if (option.equals(StandardSocketOptions.SO_RCVBUF)) {
|
|
|
|
return Integer.valueOf(socket.getReceiveBufferSize());
|
|
|
|
} else if (option.equals(StandardSocketOptions.SO_REUSEADDR)) {
|
|
|
|
return Boolean.valueOf(socket.getReuseAddress());
|
2016-02-23 17:41:00 +00:00
|
|
|
} else if (option.equals(StandardSocketOptions.SO_REUSEPORT) && reuseport) {
|
|
|
|
return Boolean.valueOf(socket.getOption(StandardSocketOptions.SO_REUSEPORT));
|
2014-04-12 19:21:09 +00:00
|
|
|
} else if (option.equals(StandardSocketOptions.IP_TOS)) {
|
|
|
|
return Integer.valueOf(socket.getTrafficClass());
|
|
|
|
} else {
|
|
|
|
throw new RuntimeException("unexecpted socket option");
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (type.equals(MulticastSocket.class)) {
|
|
|
|
MulticastSocket socket = (MulticastSocket)s;
|
2016-02-23 17:41:00 +00:00
|
|
|
Set<SocketOption<?>> options = socket.supportedOptions();
|
|
|
|
boolean reuseport = options.contains(StandardSocketOptions.SO_REUSEPORT);
|
2014-04-12 19:21:09 +00:00
|
|
|
|
|
|
|
if (option.equals(StandardSocketOptions.SO_SNDBUF)) {
|
|
|
|
return Integer.valueOf(socket.getSendBufferSize());
|
|
|
|
} else if (option.equals(StandardSocketOptions.SO_RCVBUF)) {
|
|
|
|
return Integer.valueOf(socket.getReceiveBufferSize());
|
|
|
|
} else if (option.equals(StandardSocketOptions.SO_REUSEADDR)) {
|
|
|
|
return Boolean.valueOf(socket.getReuseAddress());
|
2016-02-23 17:41:00 +00:00
|
|
|
} else if (option.equals(StandardSocketOptions.SO_REUSEPORT) && reuseport) {
|
|
|
|
return Boolean.valueOf(socket.getOption(StandardSocketOptions.SO_REUSEPORT));
|
2014-04-12 19:21:09 +00:00
|
|
|
} else if (option.equals(StandardSocketOptions.IP_TOS)) {
|
|
|
|
return Integer.valueOf(socket.getTrafficClass());
|
|
|
|
} else if (option.equals(StandardSocketOptions.IP_MULTICAST_IF)) {
|
|
|
|
return socket.getNetworkInterface();
|
|
|
|
} else if (option.equals(StandardSocketOptions.IP_MULTICAST_TTL)) {
|
|
|
|
return Integer.valueOf(socket.getTimeToLive());
|
|
|
|
} else if (option.equals(StandardSocketOptions.IP_MULTICAST_LOOP)) {
|
|
|
|
return Boolean.valueOf(socket.getLoopbackMode());
|
|
|
|
} else {
|
|
|
|
throw new RuntimeException("unexecpted socket option");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw new RuntimeException("unexecpted socket type");
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void main(String args[]) throws Exception {
|
2019-04-16 20:06:23 +00:00
|
|
|
IPSupport.skipIfCurrentConfigurationIsInvalid();
|
2014-04-12 19:21:09 +00:00
|
|
|
doSocketTests();
|
|
|
|
doServerSocketTests();
|
|
|
|
doDgSocketTests();
|
|
|
|
doMcSocketTests();
|
|
|
|
}
|
2016-04-27 19:36:02 +00:00
|
|
|
|
|
|
|
// Reflectively access jdk.net.Sockets.getOption so that the test can run
|
|
|
|
// without the jdk.net module.
|
|
|
|
static Object getServerSocketTrafficClass(ServerSocket ss) throws Exception {
|
|
|
|
try {
|
|
|
|
Class<?> c = Class.forName("jdk.net.Sockets");
|
|
|
|
Method m = c.getDeclaredMethod("getOption", ServerSocket.class, SocketOption.class);
|
|
|
|
return m.invoke(null, ss, StandardSocketOptions.IP_TOS);
|
|
|
|
} catch (ClassNotFoundException e) {
|
|
|
|
// Ok, jdk.net module not present, just fall back
|
|
|
|
System.out.println("jdk.net module not present, falling back.");
|
|
|
|
return Integer.valueOf(ss.getOption(StandardSocketOptions.IP_TOS));
|
|
|
|
} catch (ReflectiveOperationException e) {
|
|
|
|
throw new AssertionError(e);
|
|
|
|
}
|
|
|
|
}
|
2014-04-12 19:21:09 +00:00
|
|
|
}
|