0N/A/*
2362N/A * Copyright (c) 2001, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 4476378
0N/A * @summary Check the specific behaviour of the setReuseAddress(boolean)
0N/A * method.
5107N/A * @run main Basic
5107N/A * @run main/othervm -Dsun.net.useExclusiveBind Basic
0N/A */
0N/Aimport java.net.*;
0N/A
0N/Apublic class Basic {
0N/A
0N/A static int testCount = 0;
0N/A static int failures = 0;
0N/A
0N/A void test(String msg) {
0N/A testCount++;
0N/A System.out.println("***************************************");
0N/A System.out.println("Test " + testCount + ": " + msg);
0N/A }
0N/A
0N/A void passed() {
0N/A System.out.println("Test passed.");
0N/A }
0N/A
0N/A void failed() {
0N/A failures++;
0N/A System.out.println("Test failed.");
0N/A }
0N/A
0N/A void check(boolean pass) {
0N/A if (pass) {
0N/A passed();
0N/A } else {
0N/A failed();
0N/A }
0N/A }
0N/A
0N/A void SocketTests() throws Exception {
0N/A Socket s1 = new Socket();
0N/A
0N/A test("Socket should be created with SO_REUSEADDR disabled");
0N/A check(!s1.getReuseAddress());
0N/A
0N/A test("Socket.setReuseAddress(true)");
0N/A s1.setReuseAddress(true);
0N/A check(s1.getReuseAddress());
0N/A
0N/A test("Socket.setReuseAddress(false)");
0N/A s1.setReuseAddress(false);
0N/A check(!s1.getReuseAddress() );
0N/A
0N/A /* bind to any port */
0N/A s1.bind( new InetSocketAddress(0) );
0N/A
0N/A test("Binding Socket to port already in use should throw " +
0N/A "a BindException");
0N/A Socket s2 = new Socket();
0N/A try {
0N/A s2.bind( new InetSocketAddress(s1.getLocalPort()) );
0N/A failed();
0N/A } catch (BindException e) {
0N/A passed();
0N/A }
0N/A s2.close();
0N/A
0N/A s1.close();
0N/A }
0N/A
0N/A void ServerSocketTests() throws Exception {
0N/A ServerSocket s1 = new ServerSocket();
0N/A
0N/A test("ServerSocket.setReuseAddress(true)");
0N/A s1.setReuseAddress(true);
0N/A check(s1.getReuseAddress());
0N/A
0N/A test("Socket.setReuseAddress(false)");
0N/A s1.setReuseAddress(false);
0N/A check(!s1.getReuseAddress() );
0N/A
0N/A /* bind to any port */
0N/A s1.bind( new InetSocketAddress(0) );
0N/A
0N/A test("Binding ServerSocket to port already in use should throw " +
0N/A "a BindException");
0N/A ServerSocket s2 = new ServerSocket();
0N/A try {
0N/A s2.bind( new InetSocketAddress(s1.getLocalPort()) );
0N/A failed();
0N/A } catch (BindException e) {
0N/A passed();
0N/A }
0N/A s2.close();
0N/A
0N/A s1.close();
0N/A }
0N/A
0N/A void DatagramSocketTests() throws Exception {
0N/A DatagramSocket s1 = new DatagramSocket(null);
0N/A
0N/A test("DatagramSocket should be created with SO_REUSEADDR disabled");
0N/A check(!s1.getReuseAddress());
0N/A
0N/A test("DatagramSocket.setReuseAddress(true)");
0N/A s1.setReuseAddress(true);
0N/A check(s1.getReuseAddress());
0N/A
0N/A test("DatagramSocket.setReuseAddress(false)");
0N/A s1.setReuseAddress(false);
0N/A check(!s1.getReuseAddress() );
0N/A
0N/A /* bind to any port */
0N/A s1.bind( new InetSocketAddress(0) );
0N/A
0N/A test("Binding datagram socket to port already in use should throw " +
0N/A "a BindException");
0N/A DatagramSocket s2 = new DatagramSocket(null);
0N/A try {
0N/A s2.bind( new InetSocketAddress(s1.getLocalPort()) );
0N/A failed();
0N/A } catch (BindException e) {
0N/A passed();
0N/A }
0N/A s2.close();
0N/A s1.close();
0N/A
0N/A // bind with SO_REUSEADDR enabled
0N/A
0N/A s1 = new DatagramSocket(null);
0N/A s1.setReuseAddress(true);
0N/A s1.bind( new InetSocketAddress(0) );
0N/A
0N/A test("Bind 2 datagram sockets to the same port - second " +
0N/A "bind doesn't have SO_REUSEADDR enabled");
0N/A s2 = new DatagramSocket(null);
0N/A try {
0N/A s2.bind( new InetSocketAddress(s1.getLocalPort()) );
0N/A failed();
0N/A } catch (BindException e) {
0N/A passed();
0N/A }
0N/A s2.close();
0N/A
0N/A test("Bind 2 datagram sockets to the same port - both have " +
0N/A "SO_REUSEADDR enabled");
0N/A s2 = new DatagramSocket(null);
0N/A s2.setReuseAddress(true);
0N/A try {
0N/A s2.bind( new InetSocketAddress(s1.getLocalPort()) );
0N/A passed();
0N/A } catch (BindException e) {
5107N/A if (System.getProperty("sun.net.useExclusiveBind") != null) {
5107N/A // exclusive bind enabled - expected result
5107N/A passed();
5107N/A } else {
5107N/A failed();
5107N/A }
0N/A }
0N/A s2.close();
0N/A
0N/A s1.close();
0N/A
0N/A }
0N/A
0N/A void MulticastSocketTests() throws Exception {
0N/A test("Check SO_REUSEADDR is enabled in MulticastSocket()");
0N/A MulticastSocket s1 = new MulticastSocket();
0N/A check(s1.getReuseAddress());
0N/A s1.close();
0N/A
0N/A test("Check that SO_REUSEADDR is not disabled by " +
0N/A "MulticastSocket.bind()");
0N/A
0N/A s1 = new MulticastSocket(null);
0N/A
0N/A // bind to specific address
0N/A InetSocketAddress isa = new InetSocketAddress(
0N/A InetAddress.getLocalHost(), 0);
0N/A s1.bind(isa);
0N/A check(s1.getReuseAddress());
0N/A s1.close();
0N/A }
0N/A
0N/A Basic() throws Exception {
0N/A
0N/A SocketTests();
0N/A ServerSocketTests();
0N/A DatagramSocketTests();
0N/A MulticastSocketTests();
0N/A
0N/A System.out.println("***************************************");
0N/A System.out.println(testCount + " test(s) executed, " +
0N/A failures + " failure(s).");
0N/A if (failures > 0) {
0N/A throw new Exception(failures + " test(s) failed");
0N/A }
0N/A }
0N/A
0N/A public static void main(String args[]) throws Exception {
0N/A new Basic();
0N/A }
0N/A
0N/A}