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
|
/*
* Copyright (c) 2018, 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. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* 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.
*/
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.SocketException;
import java.net.SocketTimeoutException;
import java.security.KeyFactory;
import java.security.KeyStore;
import java.security.PrivateKey;
import java.security.Security;
import java.security.cert.Certificate;
import java.security.cert.CertificateFactory;
import java.security.spec.PKCS8EncodedKeySpec;
import java.util.Base64;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import javax.net.ssl.KeyManagerFactory;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLServerSocket;
import javax.net.ssl.SSLServerSocketFactory;
import javax.net.ssl.SSLSocket;
import javax.net.ssl.SSLSocketFactory;
import javax.net.ssl.TrustManagerFactory;
/*
* @test
* @bug 8208496
* @summary Test to verify concurrent behavior of TLS.
* @run main/othervm ConcurrentClientAccessTest
*/
public class ConcurrentClientAccessTest {
private static final int THREADS = 50;
public static void main(String[] args) throws Exception {
Security.setProperty("jdk.tls.disabledAlgorithms", "");
for (String tlsProtocol : new String[]{"TLSv1.3", "TLSv1.2",
"TLSv1.1", "TLSv1"}) {
System.out.printf("Protocol: %s%n", tlsProtocol);
CountDownLatch tillServerReady = new CountDownLatch(1);
Server server = new Server(tlsProtocol, tillServerReady);
server.start();
// Wait till server is ready to accept connection.
tillServerReady.await();
CountDownLatch tillClientComplete = new CountDownLatch(THREADS);
ExecutorService executor = null;
try {
executor = newExecutorService();
// Run 50 TLS clients for concurrent access to TLS Port.
for (int count = 1; count <= THREADS; count++) {
Client client = new Client(tlsProtocol, server.port,
tillClientComplete);
executor.execute(client);
// If Client has any Exception indicates problem
if (client.exception != null) {
throw new RuntimeException(client.exception);
}
}
// Wait till all client thread complete execution
tillClientComplete.await();
System.out.println("All client processed successfully.");
} finally {
if (executor != null) {
executor.shutdown();
}
// Fail Safe: Shutdown the server
server.stopServer();
}
// If Sever has any Exception indicates problem
if (server.exception != null) {
throw new RuntimeException(server.exception);
}
System.out.println();
}
}
public static class Server implements Runnable {
private volatile int port = 0;
private final String tlsProtocol;
private final CountDownLatch tillServerReady;
private volatile Exception exception;
private SSLServerSocket sslServerSocket;
public Server(String tlsProtocol, CountDownLatch tillServerReady) {
this.tlsProtocol = tlsProtocol;
this.tillServerReady = tillServerReady;
}
public void start() {
ExecutorService executor = null;
try {
executor = newExecutorService();
executor.execute(this);
} finally {
if (executor != null) {
executor.shutdown();
}
}
}
/*
* Define the server side operation.
*/
void doServerSide() throws Exception {
SSLContext ctx = getSSLContext(tlsProtocol);
SSLServerSocketFactory sslssf = ctx.getServerSocketFactory();
sslServerSocket = (SSLServerSocket) sslssf.createServerSocket(port);
port = sslServerSocket.getLocalPort();
System.out.println("Server listening on port: " + port);
sslServerSocket.setEnabledProtocols(new String[]{tlsProtocol});
// ServerSocket will timeout after waiting for 20 seconds
// before accepting a connection
sslServerSocket.setSoTimeout(20000);
// Signal Client, the server is ready to accept client request.
tillServerReady.countDown();
while (sslServerSocket != null && !sslServerSocket.isClosed()) {
try (SSLSocket sslSocket
= (SSLSocket) sslServerSocket.accept()) {
try (InputStream sslIS = sslSocket.getInputStream();
OutputStream sslOS
= sslSocket.getOutputStream();) {
sslIS.read();
sslOS.write(85);
sslOS.flush();
}
} catch (SocketTimeoutException | SocketException e) {
// Let the server exit
return;
}
}
}
@Override
public void run() {
try {
doServerSide();
} catch (Exception e) {
this.exception = e;
} finally {
// Stop server
stopServer();
}
}
public void stopServer() {
if (sslServerSocket != null && !sslServerSocket.isClosed()) {
System.out.println("Stopping Server.");
try {
sslServerSocket.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
}
/*
* Define the client side of the test.
*/
public static class Client implements Runnable {
private final int serverPort;
private final String tlsProtocol;
private final CountDownLatch tillClientComplete;
private volatile Exception exception;
public Client(String tlsProtocol, int serverPort,
CountDownLatch tillClientComplete) {
this.tlsProtocol = tlsProtocol;
this.serverPort = serverPort;
this.tillClientComplete = tillClientComplete;
}
void doClientSide() throws Exception {
SSLContext ctx = getSSLContext(this.tlsProtocol);
SSLSocketFactory sslsf = ctx.getSocketFactory();
try (SSLSocket sslSocket
= (SSLSocket) sslsf.createSocket("localhost", serverPort)) {
sslSocket.setEnabledProtocols(new String[]{this.tlsProtocol});
try (InputStream sslIS = sslSocket.getInputStream();
OutputStream sslOS = sslSocket.getOutputStream()) {
sslOS.write(86);
sslOS.flush();
sslIS.read();
}
} finally {
tillClientComplete.countDown();
}
}
@Override
public void run() {
try {
doClientSide();
} catch (Exception e) {
// Print the exception for debug purpose.
e.printStackTrace(System.out);
this.exception = e;
}
}
}
// Get the ssl context
protected static SSLContext getSSLContext(String tlsProtocol)
throws Exception {
// Generate certificate from cert string
CertificateFactory cf = CertificateFactory.getInstance("X.509");
// Create a key store
KeyStore ts = KeyStore.getInstance("PKCS12");
KeyStore ks = KeyStore.getInstance("PKCS12");
ts.load(null, null);
ks.load(null, null);
char passphrase[] = "passphrase".toCharArray();
// Import the trusted cert
ts.setCertificateEntry("trusted-cert-"
+ KeyType.rsa_pkcs1_sha256.getKeyType(),
cf.generateCertificate(new ByteArrayInputStream(
KeyType.rsa_pkcs1_sha256.getTrustedCert().getBytes())));
boolean hasKeyMaterials = KeyType.rsa_pkcs1_sha256.getEndCert() != null
&& KeyType.rsa_pkcs1_sha256.getPrivateKey() != null;
if (hasKeyMaterials) {
// Generate the private key.
PKCS8EncodedKeySpec priKeySpec = new PKCS8EncodedKeySpec(
Base64.getMimeDecoder().decode(
KeyType.rsa_pkcs1_sha256.getPrivateKey()));
KeyFactory kf = KeyFactory.getInstance(
KeyType.rsa_pkcs1_sha256.getKeyType());
PrivateKey priKey = kf.generatePrivate(priKeySpec);
// Generate certificate chain
Certificate keyCert = cf.generateCertificate(
new ByteArrayInputStream(
KeyType.rsa_pkcs1_sha256.getEndCert().getBytes()));
Certificate[] chain = new Certificate[]{keyCert};
// Import the key entry.
ks.setKeyEntry("cert-" + KeyType.rsa_pkcs1_sha256.getKeyType(),
priKey, passphrase, chain);
}
// Create SSL context
TrustManagerFactory tmf = TrustManagerFactory.getInstance("PKIX");
tmf.init(ts);
SSLContext context = SSLContext.getInstance(tlsProtocol);
if (hasKeyMaterials) {
KeyManagerFactory kmf = KeyManagerFactory.getInstance("NewSunX509");
kmf.init(ks, passphrase);
context.init(kmf.getKeyManagers(), tmf.getTrustManagers(), null);
} else {
context.init(null, tmf.getTrustManagers(), null);
}
return context;
}
private static ExecutorService newExecutorService() {
return Executors.newCachedThreadPool((Runnable r) -> {
Thread t = Executors.defaultThreadFactory()
.newThread(r);
t.setDaemon(true);
return t;
});
}
}
enum KeyType {
rsa_pkcs1_sha256(
"RSA",
/**
* Signature Algorithm: sha256WithRSAEncryption
* Issuer: CN = localhost
* Validity Not Before: Jun 4 15:22:04 2018 GMT
* Not After: May 30 15:22:04 2038 GMT
* Subject: CN = localhost
* Public Key Algorithm: rsaEncryption
*/
"-----BEGIN CERTIFICATE-----\n"
+ "MIIDBjCCAe6gAwIBAgIUc8yTYekR2LuXkkCJYqWlS/pBMKIwDQYJKoZIhvcNAQEL\n"
+ "BQAwFDESMBAGA1UEAwwJbG9jYWxob3N0MB4XDTE4MDYwNDE1MjIwNFoXDTM4MDUz\n"
+ "MDE1MjIwNFowFDESMBAGA1UEAwwJbG9jYWxob3N0MIIBIjANBgkqhkiG9w0BAQEF\n"
+ "AAOCAQ8AMIIBCgKCAQEA2jDPGMogc9dq2w5b+FHqbfaGPokRmyObiU8y/l/dqkM5\n"
+ "9IV+qj8VQUI4NtpdCTWr16812z4AjXrk5HIBrECfQbHPUcm1rme5YVZ0WxV0+Ufy\n"
+ "hDmrGwDLhkxGqc3hOhRrlF2wdXeUfjIzhvS9+S/401++t/jvq+cqFF1BHnzYOu+l\n"
+ "nbi/o95Oqo8MlwiRqg3xy3fNRfqXk7DWy+QT8s+Vc3Pcj1EW6K0iJJ23BVTdv6YT\n"
+ "Ja5IKiWL4XsLht3fWvZwF+PoYfKb+JYflt0rafpxg9xkowe7GnGh2SpV7bJaH/QN\n"
+ "3PTFEKQWgWHjWwjR171GOzSaEgaklvKde6+zNWeYKwIDAQABo1AwTjAdBgNVHQ4E\n"
+ "FgQUqCtGe8/Ky4O6pH7xeTUy9yrv4n0wHwYDVR0jBBgwFoAUqCtGe8/Ky4O6pH7x\n"
+ "eTUy9yrv4n0wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAuqch30im\n"
+ "M09sARarbfK3OExqYK2xoyuUscgTqQNDpNL2gMdXY9e0lTmGVgw9pVYtNZPZRxem\n"
+ "jR5an2XegvG9qVU6vLENDwLCqZgsTb2gvmXngiG8NVcYd81GNqD228mkgBosNJku\n"
+ "6BR+C8zlURzsNEt657eVvIp9ObGomdAbWhpdqihBD180PP18DIBWopyfHfJtT5FA\n"
+ "U2kSPBp+P1EtdceW0zfwv3rF8hwRbnQBzuoYrZfn2PiMYaGUqOgbqUltCMD/Dp9G\n"
+ "xK0nfAXEwIqHWWnijGwAd6YrszMjBUcSGmlehdF+XZK6jHNlw64RB4WTfavr+rY0\n"
+ "dTe6g4o5GYr9nQ==\n"
+ "-----END CERTIFICATE-----\n",
//
// Private key.
//
"MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDaMM8YyiBz12rb\n"
+ "Dlv4Uept9oY+iRGbI5uJTzL+X92qQzn0hX6qPxVBQjg22l0JNavXrzXbPgCNeuTk\n"
+ "cgGsQJ9Bsc9RybWuZ7lhVnRbFXT5R/KEOasbAMuGTEapzeE6FGuUXbB1d5R+MjOG\n"
+ "9L35L/jTX763+O+r5yoUXUEefNg676WduL+j3k6qjwyXCJGqDfHLd81F+peTsNbL\n"
+ "5BPyz5Vzc9yPURborSIknbcFVN2/phMlrkgqJYvhewuG3d9a9nAX4+hh8pv4lh+W\n"
+ "3Stp+nGD3GSjB7sacaHZKlXtslof9A3c9MUQpBaBYeNbCNHXvUY7NJoSBqSW8p17\n"
+ "r7M1Z5grAgMBAAECggEAHs/7vw10TcejEHJTrJqs14CT7qresKDzqw1jLycMn6nE\n"
+ "unJLs/EaqE+Yrq5hqxZIQTo+CcsUuuYbAuPStqedleJtW6h3nryJImTaI67BCR8O\n"
+ "8XtPXY3cMAf/hqVLZC9UDey5Ka2Ma9HdEvbnCRSsN/VycnqWJhmMCLouowaQZqoE\n"
+ "VopscUix8GqELv0vEo2CszZfUjtSVbNTlNgwDf5U7eSKXMuFsnSn/LE7AMvHsEyo\n"
+ "HatxogwlM/WjpTnf/WIeJY3VhaK10IsP6OEgUn/p4VtI2DQ/TJdgYrvD5vhjY8ip\n"
+ "XuUPuPILRvJWo8dRXJqa4diXB12q5YhP8iiOp4BgkQKBgQD1GtlOR+JVgOzpQ11h\n"
+ "s5/iJOsczee80pQscbSRJnzSsIaP9WM8CyJgvbPxIQxLUQeYnxM/bxNKkpJtzxRK\n"
+ "pob+v4NoRn8PTpqbOp1obmWJT7uHTaoeavQo7r7uZI4i3eEgHCCQkMzpqzz7UFTY\n"
+ "2Yst7bBTPUivlSVQQBEc8bLpeQKBgQDj47EjpAlh8DmJRTElg58t+XJehXGTqmlx\n"
+ "nYu8DQLSzGbOQ/Z4srakC1mkM0LHCmULIIWk3KhV1GBCeArv7DlZ9A1SkI95bsq9\n"
+ "GBeQpovL0PXKkOOWMJBklP/CTECO4eyA8r6c1d8wytBb6MrJ8bi74DdT+JlFjK5A\n"
+ "zNoeNx6JwwKBgQCehIPABeuSYvRVlDTDqFkh98B6+4wBaatc5xjhuyOFW5dbaVeJ\n"
+ "kKXmLSpAK6B44WnpQhA/uUWfuBWtoPy9nt+1yARjnxwzuSFyfUEqNiPC32coBYmd\n"
+ "bIyGIIopQa1PTXJ4wtgoxw1PnmitHHITYPaLeKrN2te0fuAH+7dVodeU+QKBgAct\n"
+ "VJbaw7Dh7+3yz+lui8TW5lMzwK/13fxGCfCSOFSLO3Gjkk+a0UW5VclmE+RQ333K\n"
+ "OGtIx8RsO9vcC/wiZGwA06qWAu7AHoJ2D8fudtikbBlFFuXUAbgpOSTVYfMeCmTF\n"
+ "QFuQIMdYm9dJLZnOkxLXrOZoHeui0poX2Ya6FawhAoGAAI/QCyDbuvnJzGmjSbvl\n"
+ "5Ndr9lNAansCXaUzXuVLp6dD6PnB8HVCE8tdETZrcXseyTBeltaxAhj+tCybJvDO\n"
+ "sV8UmPR0w9ibExmUIVGX5BpoRlB/KWxEG3ar/wJbUZVZ2oSdIAZvCvdbN956SLDg\n"
+ "Pg5M5wrRqs71s2EiIJd0HrU="
);
private final String keyType;
private final String trustedCert;
private final String endCert;
private final String privateKey;
private KeyType(String keyType, String selfCert, String privateKey) {
this.keyType = keyType;
this.trustedCert = selfCert;
this.endCert = selfCert;
this.privateKey = privateKey;
}
public String getKeyType() {
return keyType;
}
public String getTrustedCert() {
return trustedCert;
}
public String getEndCert() {
return endCert;
}
public String getPrivateKey() {
return privateKey;
}
}
|