jdk/test/java/net/MulticastSocket/NoLoopbackPackets.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 5143 a1682a41e70f
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug 4742177
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Re-test IPv6 (and specifically MulticastSocket) with latest Linux & USAGI code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.net.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
public class NoLoopbackPackets {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
    private static int PORT = 9001;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
    private static String osname;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
    static boolean isWindows() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
        if (osname == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
            osname = System.getProperty("os.name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        return osname.contains("Windows");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    private static boolean hasIPv6() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        List<NetworkInterface> nics = Collections.list(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
                                        NetworkInterface.getNetworkInterfaces());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        for (NetworkInterface nic : nics) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
            if (!nic.isLoopback()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
                List<InetAddress> addrs = Collections.list(nic.getInetAddresses());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
                for (InetAddress addr : addrs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
                    if (addr instanceof Inet6Address) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
                        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        if (isWindows()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            System.out.println("The test only run on non-Windows OS. Bye.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        if (!hasIPv6()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            System.out.println("No IPv6 available. Bye.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        // we will send packets to three multicast groups :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        // 224.1.1.1, ::ffff:224.1.1.2, and ff02::1:1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        List<SocketAddress> groups = new ArrayList<SocketAddress>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        groups.add(new InetSocketAddress(InetAddress.getByName("224.1.1.1"), PORT));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        groups.add(new InetSocketAddress(InetAddress.getByName("::ffff:224.1.1.2"), PORT));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        groups.add(new InetSocketAddress(InetAddress.getByName("ff02::1:1"), PORT));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        Thread sender = new Thread(new Sender(groups));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        sender.setDaemon(true); // we want sender to stop when main thread exits
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        sender.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        // Now try to receive multicast packets. we should not see any of them
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        // since we disable loopback mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        MulticastSocket msock = new MulticastSocket(PORT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        msock.setSoTimeout(5000);       // 5 seconds
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        byte[] buf = new byte[1024];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        DatagramPacket packet = new DatagramPacket(buf, 0, buf.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        List<SocketAddress> failedGroups = new ArrayList<SocketAddress>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        for (SocketAddress group : groups) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            msock.joinGroup(group, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                msock.receive(packet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                // it is an error if we receive something
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                failedGroups.add(group);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            } catch (SocketTimeoutException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                // we expect this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            msock.leaveGroup(group, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        if (failedGroups.size() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            System.out.println("We should not receive anything from following groups, but we did:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            for (SocketAddress group : failedGroups)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                System.out.println(group);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            throw new RuntimeException("test failed.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
class Sender implements Runnable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    private List<SocketAddress> sendToGroups;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    public Sender(List<SocketAddress> groups) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        sendToGroups = groups;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        byte[] buf = "hello world".getBytes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        List<DatagramPacket> packets = new ArrayList<DatagramPacket>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            for (SocketAddress group : sendToGroups) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                DatagramPacket packet = new DatagramPacket(buf, buf.length, group);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                packets.add(packet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            MulticastSocket msock = new MulticastSocket();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            msock.setLoopbackMode(true);    // disable loopback mode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
                for (DatagramPacket packet : packets) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
                    msock.send(packet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
                Thread.currentThread().sleep(1000);     // 1 second
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            throw new RuntimeException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
}