1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* 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
* @bug 8071599
* @run main/othervm SendUrgentData
* @run main/othervm SendUrgentData -inline
* @summary Test sending of urgent data.
*/
import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
import java.net.SocketException;
import java.nio.ByteBuffer;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
public class SendUrgentData {
/**
* The arguments may be one of the following:
* <ol>
* <li>-server</li>
* <li>-client host port [-inline]</li>
* <li>[-inline]</li>
* </ol>
* The first option creates a standalone server, the second a standalone
* client, and the third a self-contained server-client pair on the
* local host.
*
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
ServerSocketChannelThread serverThread
= new ServerSocketChannelThread("SendUrgentDataServer");
serverThread.start();
boolean b = serverThread.isAlive();
String host = null;
int port = 0;
boolean inline = false;
if (args.length > 0 && args[0].equals("-server")) {
System.out.println(serverThread.getAddress());
Thread.currentThread().suspend();
} else {
if (args.length > 0 && args[0].equals("-client")) {
host = args[1];
port = Integer.parseInt(args[2]);
if (args.length > 3) {
inline = args[2].equals("-inline");
}
} else {
host = "localhost";
port = serverThread.getAddress().getPort();
if (args.length > 0) {
inline = args[0].equals("-inline");
}
}
}
System.out.println("OOB Inline : "+inline);
SocketAddress sa = new InetSocketAddress(host, port);
try (SocketChannel sc = SocketChannel.open(sa)) {
sc.configureBlocking(false);
sc.socket().setOOBInline(inline);
sc.socket().sendUrgentData(0);
System.out.println("wrote 1 OOB byte");
ByteBuffer bb = ByteBuffer.wrap(new byte[100 * 1000]);
int blocked = 0;
long total = 0;
int n;
do {
n = sc.write(bb);
if (n == 0) {
System.out.println("blocked, wrote " + total + " so far");
if (++blocked == 10) {
break;
}
Thread.sleep(100);
} else {
total += n;
bb.rewind();
}
} while (n > 0);
long attempted = 0;
while (attempted < total) {
bb.rewind();
n = sc.write(bb);
System.out.println("wrote " + n + " normal bytes");
attempted += bb.capacity();
String osName = System.getProperty("os.name").toLowerCase();
try {
sc.socket().sendUrgentData(0);
} catch (IOException ex) {
if (osName.contains("linux")) {
if (!ex.getMessage().contains("Socket buffer full")) {
throw new RuntimeException("Unexpected message", ex);
}
} else if (osName.contains("os x") || osName.contains("mac")) {
if (!ex.getMessage().equals("No buffer space available")) {
throw new RuntimeException("Unexpected message", ex);
}
} else if (osName.contains("windows")) {
if (!(ex instanceof SocketException)) {
throw new RuntimeException("Unexpected exception", ex);
} else if (!ex.getMessage().contains("Resource temporarily unavailable")) {
throw new RuntimeException("Unexpected message", ex);
}
} else {
throw new RuntimeException("Unexpected IOException", ex);
}
}
try {
Thread.sleep(100);
} catch (InterruptedException ex) {
// don't want to fail on this so just print trace and break
ex.printStackTrace();
break;
}
}
} finally {
serverThread.close();
}
}
static class ServerSocketChannelThread extends Thread {
private ServerSocketChannel ssc;
private ServerSocketChannelThread(String name) {
super(name);
try {
ssc = ServerSocketChannel.open();
ssc.bind(new InetSocketAddress((0)));
} catch (IOException ex) {
throw new RuntimeException(ex);
}
}
public void run() {
while (ssc.isOpen()) {
try {
Thread.sleep(100);
} catch (InterruptedException ex) {
throw new RuntimeException(ex);
}
}
try {
ssc.close();
} catch (IOException ex) {
throw new RuntimeException(ex);
}
System.out.println("ServerSocketChannelThread exiting ...");
}
public InetSocketAddress getAddress() throws IOException {
if (ssc == null) {
throw new IllegalStateException("ServerSocketChannel not created");
}
return (InetSocketAddress) ssc.getLocalAddress();
}
public void close() {
try {
ssc.close();
} catch (IOException ex) {
throw new RuntimeException(ex);
}
}
}
}
|