blob: d24b03c79f3cb3c6d26c10a6bb3c13e23147a633 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23
24/*
25 * @test
26 * @bug 4742177
27 * @summary Re-test IPv6 (and specifically MulticastSocket) with latest Linux & USAGI code
28 */
29import java.net.*;
30import java.util.concurrent.*;
31import java.util.*;
32
33
34public class SetOutgoingIf {
35 private static int PORT = 9001;
36 private static String osname;
37
38 static boolean isWindows() {
39 if (osname == null)
40 osname = System.getProperty("os.name");
41 return osname.contains("Windows");
42 }
43
44 private static boolean hasIPv6() throws Exception {
45 List<NetworkInterface> nics = Collections.list(
46 NetworkInterface.getNetworkInterfaces());
47 for (NetworkInterface nic : nics) {
48 List<InetAddress> addrs = Collections.list(nic.getInetAddresses());
49 for (InetAddress addr : addrs) {
50 if (addr instanceof Inet6Address)
51 return true;
52 }
53 }
54
55 return false;
56 }
57
58 public static void main(String[] args) throws Exception {
59 if (isWindows()) {
60 System.out.println("The test only run on non-Windows OS. Bye.");
61 return;
62 }
63
64 if (!hasIPv6()) {
65 System.out.println("No IPv6 available. Bye.");
66 return;
67 }
68
69 // We need 2 or more network interfaces to run the test
70 //
71 List<NetworkInterface> nics = new ArrayList<NetworkInterface>();
72 for (NetworkInterface nic : Collections.list(NetworkInterface.getNetworkInterfaces())) {
73 if (!nic.isLoopback())
74 nics.add(nic);
75 }
76 if (nics.size() <= 1) {
77 System.out.println("Need 2 or more network interfaces to run. Bye.");
78 return;
79 }
80
81 // We will send packets to one ipv4, one ipv4-mapped, and one ipv6
82 // multicast group using each network interface :-
83 // 224.1.1.1 --|
84 // ::ffff:224.1.1.2 -----> using network interface #1
85 // ff02::1:1 --|
86 // 224.1.2.1 --|
87 // ::ffff:224.1.2.2 -----> using network interface #2
88 // ff02::1:2 --|
89 // and so on.
90 //
91 List<InetAddress> groups = new ArrayList<InetAddress>();
92 for (int i = 0; i < nics.size(); i++) {
93 InetAddress groupv4 = InetAddress.getByName("224.1." + (i+1) + ".1");
94 InetAddress groupv4mapped = InetAddress.getByName("::ffff:224.1." + (i+1) + ".2");
95 InetAddress groupv6 = InetAddress.getByName("ff02::1:" + (i+1));
96 groups.add(groupv4);
97 groups.add(groupv4mapped);
98 groups.add(groupv6);
99
100 // use a separated thread to send to those 3 groups
101 Thread sender = new Thread(new Sender(nics.get(i), groupv4, groupv4mapped, groupv6, PORT));
102 sender.setDaemon(true); // we want sender to stop when main thread exits
103 sender.start();
104 }
105
106 // try to receive on each group, then check if the packet comes
107 // from the expected network interface
108 //
109 byte[] buf = new byte[1024];
110 for (InetAddress group : groups) {
111 MulticastSocket mcastsock = new MulticastSocket(PORT);
112 mcastsock.setSoTimeout(5000); // 5 second
113 DatagramPacket packet = new DatagramPacket(buf, 0, buf.length);
114
115 mcastsock.joinGroup(new InetSocketAddress(group, PORT), nics.get(groups.indexOf(group) / 3));
116
117 try {
118 mcastsock.receive(packet);
119 } catch (Exception e) {
120 // test failed if any exception
121 throw new RuntimeException(e);
122 }
123
124 // now check which network interface this packet comes from
125 NetworkInterface from = NetworkInterface.getByInetAddress(packet.getAddress());
126 NetworkInterface shouldbe = nics.get(groups.indexOf(group) / 3);
127 if (!from.equals(shouldbe)) {
128 System.out.println("Packets on group "
129 + group + " should come from "
130 + shouldbe.getName() + ", but came from "
131 + from.getName());
132 //throw new RuntimeException("Test failed.");
133 }
134
135 mcastsock.leaveGroup(new InetSocketAddress(group, PORT), nics.get(groups.indexOf(group) / 3));
136 }
137 }
138}
139
140class Sender implements Runnable {
141 private NetworkInterface nic;
142 private InetAddress group1;
143 private InetAddress group2;
144 private InetAddress group3;
145 private int port;
146
147 public Sender(NetworkInterface nic,
148 InetAddress groupv4, InetAddress groupv4mapped, InetAddress groupv6,
149 int port) {
150 this.nic = nic;
151 group1 = groupv4;
152 group2 = groupv4mapped;
153 group3 = groupv6;
154 this.port = port;
155 }
156
157 public void run() {
158 try {
159 MulticastSocket mcastsock = new MulticastSocket();
160 mcastsock.setNetworkInterface(nic);
161
162 byte[] buf = "hello world".getBytes();
163 DatagramPacket packet1 = new DatagramPacket(buf, buf.length,
164 new InetSocketAddress(group1, port));
165 DatagramPacket packet2 = new DatagramPacket(buf, buf.length,
166 new InetSocketAddress(group2, port));
167 DatagramPacket packet3 = new DatagramPacket(buf, buf.length,
168 new InetSocketAddress(group3, port));
169
170 for (;;) {
171 mcastsock.send(packet1);
172 mcastsock.send(packet2);
173 mcastsock.send(packet3);
174
175 Thread.currentThread().sleep(1000); // sleep 1 second
176 }
177 } catch (Exception e) {
178 throw new RuntimeException(e);
179 }
180 }
181}