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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
|
/*
* Copyright (c) 2001, 2016, 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 4414843
* @summary This test tries all the different ways in which an SSL
* connection can be established to exercise different SSLSocketImpl
* constructors.
* @run main/othervm/timeout=300 SocketCreation
*
* SunJSSE does not support dynamic system properties, no way to re-use
* system properties in samevm/agentvm mode.
*/
import java.io.*;
import java.net.*;
import javax.net.ssl.*;
/**
* This test has been adapted from JSSEClientServerTemplate.java. It runs
* the client and server multiple times while it iterates through the
* different ways in which an SSL connection can be established.
*
* The meat of this test is contained in doClientSide() and
* doServerSide(). The loop is contained in the constructor
* SocketCreation().
*/
public class SocketCreation {
/*
* =============================================================
* Set the various variables needed for the tests, then
* specify what tests to run on each side.
*/
/*
* Should we run the client or server in a separate thread?
* Both sides can throw exceptions, but do you have a preference
* as to which side should be the main thread.
*/
static boolean separateServerThread = true;
/*
* Where do we find the keystores?
*/
static String pathToStores = "../../../../javax/net/ssl/etc";
static String keyStoreFile = "keystore";
static String trustStoreFile = "truststore";
static String passwd = "passphrase";
/*
* Is the server ready to serve?
*/
volatile static boolean serverReady = false;
/*
* Turn on SSL debugging?
*/
static boolean debug = false;
/*
* If the client or server is doing some kind of object creation
* that the other side depends on, and that thread prematurely
* exits, you may experience a hang. The test harness will
* terminate all hung threads after its timeout has expired,
* currently 3 minutes by default, but you might try to be
* smart about it....
*/
/*
* Accepts a connection from a client and exchanges an int with it. The
* connection can be established in one of three different ways:
* 1. As a regular SSL server socket
* 2. As an SSL server socket that is first unbound
* 3. As an SSL socket layered over a regular TCP/IP socket
*
* If the server prematurely exits, serverReady will be set to true
* to avoid infinite hangs.
*/
void doServerSide(int style) throws Exception {
Socket sslSocket = null;
// Change the for loop in SocketCreation() if you add more cases
switch (style) {
case 0:
sslSocket = acceptNormally0();
break;
case 1:
sslSocket = acceptNormally1();
break;
case 2:
sslSocket = acceptNormally2();
break;
case 3:
sslSocket = acceptUnbound();
break;
case 4:
sslSocket = acceptLayered();
break;
default:
throw new Exception("Incorrectly written test for server side!");
}
InputStream sslIS = sslSocket.getInputStream();
OutputStream sslOS = sslSocket.getOutputStream();
System.out.println("Server read: " + sslIS.read());
sslOS.write(85);
sslOS.flush();
sslSocket.close();
}
private Socket acceptNormally0() throws Exception {
SSLServerSocketFactory sslssf =
(SSLServerSocketFactory) SSLServerSocketFactory.getDefault();
System.out.println("Server: Will call createServerSocket(int)");
ServerSocket sslServerSocket = sslssf.createServerSocket(0);
serverPort = sslServerSocket.getLocalPort();
System.out.println("Server: Will accept on SSL server socket...");
serverReady = true;
Socket sslSocket = sslServerSocket.accept();
sslServerSocket.close();
return sslSocket;
}
private Socket acceptNormally1() throws Exception {
SSLServerSocketFactory sslssf =
(SSLServerSocketFactory) SSLServerSocketFactory.getDefault();
System.out.println("Server: Will call createServerSocket(int, int)");
ServerSocket sslServerSocket = sslssf.createServerSocket(0,
1);
serverPort = sslServerSocket.getLocalPort();
System.out.println("Server: Will accept on SSL server socket...");
serverReady = true;
Socket sslSocket = sslServerSocket.accept();
sslServerSocket.close();
return sslSocket;
}
private Socket acceptNormally2() throws Exception {
SSLServerSocketFactory sslssf =
(SSLServerSocketFactory) SSLServerSocketFactory.getDefault();
System.out.println("Server: Will call createServerSocket(int, " +
" int, InetAddress)");
ServerSocket sslServerSocket = sslssf.createServerSocket(0,
1,
InetAddress.getByName("localhost"));
serverPort = sslServerSocket.getLocalPort();
System.out.println("Server: Will accept on SSL server socket...");
serverReady = true;
Socket sslSocket = sslServerSocket.accept();
sslServerSocket.close();
return sslSocket;
}
private Socket acceptUnbound() throws Exception {
SSLServerSocketFactory sslssf =
(SSLServerSocketFactory) SSLServerSocketFactory.getDefault();
System.out.println("Server: Will create unbound SSL server socket...");
ServerSocket sslServerSocket = sslssf.createServerSocket();
if (sslServerSocket.isBound())
throw new Exception("Server socket is already bound!");
sslServerSocket.bind(new java.net.InetSocketAddress(0));
if (!sslServerSocket.isBound())
throw new Exception("Server socket is not bound!");
serverPort = sslServerSocket.getLocalPort();
System.out.println("Server: Bound SSL server socket to port " +
serverPort + "...");
serverReady = true;
System.out.println("Server: Will accept on SSL server socket...");
Socket sslSocket = sslServerSocket.accept();
sslServerSocket.close();
return sslSocket;
}
private Socket acceptLayered() throws Exception {
SSLSocketFactory sslsf =
(SSLSocketFactory) SSLSocketFactory.getDefault();
ServerSocket ss = new ServerSocket(0);
serverPort = ss.getLocalPort();
System.out.println("Server: Created normal server socket bound"
+ " to port " + serverPort + "...");
System.out.println("Server: Will accept on server socket...");
serverReady = true;
Socket s = ss.accept();
ss.close();
System.out.println("Server: Will layer SSLSocket on top of" +
" server socket...");
SSLSocket sslSocket =
(SSLSocket) sslsf.createSocket(s,
s.getInetAddress().getHostName(),
s.getPort(),
true);
sslSocket.setUseClientMode(false);
return sslSocket;
}
/*
* Connects to a server and exchanges an int with it. The
* connection can be established in one of three different ways:
* 1. As a regular SSL socket
* 2. As an SSL socket that is first unconnected
* 3. As an SSL socket layered over a regular TCP/IP socket
*
* If the server prematurely exits, serverReady will be set to true
* to avoid infinite hangs.
*/
void doClientSide(int style) throws Exception {
Socket sslSocket = null;
/*
* Wait for server to get started.
*/
while (!serverReady) {
Thread.sleep(50);
}
// Change the for loop in SocketCreation() if you add more cases
switch (style) {
case 0:
sslSocket = connectNormally0();
break;
case 1:
sslSocket = connectNormally1();
break;
case 2:
sslSocket = connectNormally2();
break;
case 3:
sslSocket = connectNormally3();
break;
case 4:
sslSocket = connectUnconnected();
break;
case 5:
sslSocket = connectLayered();
break;
default:
throw new Exception("Incorrectly written test for client side!");
}
InputStream sslIS = sslSocket.getInputStream();
OutputStream sslOS = sslSocket.getOutputStream();
sslOS.write(280);
sslOS.flush();
System.out.println("Client read: " + sslIS.read());
sslSocket.close();
}
private Socket connectNormally0() throws Exception {
SSLSocketFactory sslsf =
(SSLSocketFactory) SSLSocketFactory.getDefault();
System.out.println("Client: Will call createSocket(String, int)");
return sslsf.createSocket("localhost", serverPort);
}
private Socket connectNormally1() throws Exception {
SSLSocketFactory sslsf =
(SSLSocketFactory) SSLSocketFactory.getDefault();
System.out.println("Client: Will call createSocket(InetAddress, int)");
return sslsf.createSocket(InetAddress.getByName("localhost"),
serverPort);
}
private Socket connectNormally2() throws Exception {
SSLSocketFactory sslsf =
(SSLSocketFactory) SSLSocketFactory.getDefault();
System.out.println("Client: Will call createSocket(String," +
" int, InetAddress, int)");
return sslsf.createSocket("localhost", serverPort,
InetAddress.getByName("localhost"),
0);
}
private Socket connectNormally3() throws Exception {
SSLSocketFactory sslsf =
(SSLSocketFactory) SSLSocketFactory.getDefault();
System.out.println("Client: Will call createSocket(InetAddress," +
" int, InetAddress, int)");
return sslsf.createSocket(InetAddress.getByName("localhost"),
serverPort,
InetAddress.getByName("localhost"),
0);
}
private Socket connectUnconnected() throws Exception {
SSLSocketFactory sslsf =
(SSLSocketFactory) SSLSocketFactory.getDefault();
System.out.println("Client: Will call createSocket()");
Socket sslSocket = sslsf.createSocket();
if (sslSocket.isConnected())
throw new Exception("Client socket is already connected!");
System.out.println("Client: Will connect to server on port " +
serverPort + "...");
sslSocket.connect(new java.net.InetSocketAddress("localhost",
serverPort));
if (!sslSocket.isConnected())
throw new Exception("Client socket is not connected!");
return sslSocket;
}
private Socket connectLayered() throws Exception {
SSLSocketFactory sslsf =
(SSLSocketFactory) SSLSocketFactory.getDefault();
System.out.println("Client: Will connect to server on port " +
serverPort + "...");
Socket s = new Socket("localhost", serverPort);
System.out.println("Client: Will layer SSL socket on top...");
return sslsf.createSocket(s, "localhost", serverPort, true);
}
/*
* =============================================================
* The remainder is just support stuff
*/
// use any free port by default
volatile int serverPort = 0;
volatile Exception serverException = null;
volatile Exception clientException = null;
public static void main(String[] args) throws Exception {
String keyFilename =
System.getProperty("test.src", "./") + "/" + pathToStores +
"/" + keyStoreFile;
String trustFilename =
System.getProperty("test.src", "./") + "/" + pathToStores +
"/" + trustStoreFile;
System.setProperty("javax.net.ssl.keyStore", keyFilename);
System.setProperty("javax.net.ssl.keyStorePassword", passwd);
System.setProperty("javax.net.ssl.trustStore", trustFilename);
System.setProperty("javax.net.ssl.trustStorePassword", passwd);
if (debug)
System.setProperty("javax.net.debug", "all");
/*
* Start the tests.
*/
new SocketCreation();
}
Thread clientThread = null;
Thread serverThread = null;
/*
* Primary constructor, used to drive remainder of the test.
*
* Performs a loop where each iteration establishes one client-server
* connection using a particular way of socket creation. There are
* three ways in each side can create a socket:
* 1. Normal (The client has 4 variations of this and the server 3)
* 2. Unbound/Unconnected
* 3. Layered
* Each side goes through all three of them giving us a total of 5x6
* possibilites.
*/
SocketCreation() throws Exception {
for (int serverStyle = 0; serverStyle < 5; serverStyle++) {
System.out.println("-------------------------------------");
for (int clientStyle = 0; clientStyle < 6; clientStyle++) {
serverReady = false;
startServer(separateServerThread, serverStyle);
startClient(!separateServerThread, clientStyle);
/*
* Wait for other side to close down.
*/
if (separateServerThread) {
serverThread.join();
} else {
clientThread.join();
}
/*
* When we get here, the test is pretty much over.
*
* If the main thread excepted, that propagates back
* immediately. If the other thread threw an exception, we
* should report back.
*/
if (serverException != null)
throw serverException;
if (clientException != null)
throw clientException;
System.out.println();
}
}
}
void startServer(boolean newThread, final int style) throws Exception {
if (newThread) {
serverThread = new Thread() {
public void run() {
try {
doServerSide(style);
} catch (Exception e) {
/*
* Our server thread just died.
*
* Release the client, if not active already...
*/
System.err.println("Server died..." + e);
serverReady = true;
serverException = e;
}
}
};
serverThread.start();
} else {
doServerSide(style);
}
}
void startClient(boolean newThread, final int style) throws Exception {
if (newThread) {
clientThread = new Thread() {
public void run() {
try {
doClientSide(style);
} catch (Exception e) {
/*
* Our client thread just died.
*/
System.err.println("Client died...");
clientException = e;
}
}
};
clientThread.start();
} else {
doClientSide(style);
}
}
}
|