author | alanb |
Thu, 01 Dec 2016 08:57:53 +0000 | |
changeset 42338 | a60f280f803c |
parent 39140 | 86f21a96d0ab |
child 45028 | b0ea3c0bfb81 |
permissions | -rw-r--r-- |
39140
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
1 |
/* |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
2 |
* Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved. |
26337
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
4 |
* |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it under |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
6 |
* the terms of the GNU General Public License version 2 only, as published by |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
7 |
* the Free Software Foundation. |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
8 |
* |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT ANY |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
10 |
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
11 |
* A PARTICULAR PURPOSE. See the GNU General Public License version 2 for more |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
12 |
* details (a copy is included in the LICENSE file that accompanied this code). |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
13 |
* |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License version 2 |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
15 |
* along with this work; if not, write to the Free Software Foundation, Inc., 51 |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
16 |
* Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
17 |
* |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
18 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA or |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
19 |
* visit www.oracle.com if you need additional information or have any |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
20 |
* questions. |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
21 |
*/ |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
22 |
|
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
23 |
import java.io.InputStream; |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
24 |
import java.io.OutputStream; |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
25 |
import java.security.cert.Certificate; |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
26 |
import javax.net.ssl.KeyManager; |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
27 |
import javax.net.ssl.SSLContext; |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
28 |
import javax.net.ssl.SSLSession; |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
29 |
import javax.net.ssl.SSLSocket; |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
30 |
import javax.net.ssl.SSLSocketFactory; |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
31 |
import javax.net.ssl.TrustManager; |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
32 |
|
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
33 |
class JSSEClient extends CipherTestUtils.Client { |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
34 |
|
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
35 |
private static final String DEFAULT = "DEFAULT"; |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
36 |
private static final String TLS = "TLS"; |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
37 |
|
39140
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
38 |
private final SSLContext context; |
26337
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
39 |
private final MyX509KeyManager keyManager; |
39140
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
40 |
private final int port; |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
41 |
private final String host; |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
42 |
private final String protocol; |
26337
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
43 |
|
39140
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
44 |
JSSEClient(CipherTestUtils cipherTest, String host, int port, |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
45 |
String protocols, String ciphersuite) throws Exception { |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
46 |
super(cipherTest, ciphersuite); |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
47 |
this.host = host; |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
48 |
this.port = port; |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
49 |
this.protocol = protocols; |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
50 |
this.keyManager = new MyX509KeyManager( |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
51 |
cipherTest.getClientKeyManager()); |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
52 |
context = SSLContext.getInstance(TLS); |
26337
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
53 |
} |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
54 |
|
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
55 |
@Override |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
56 |
void runTest(CipherTestUtils.TestParameters params) throws Exception { |
39140
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
57 |
keyManager.setAuthType(params.clientAuth); |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
58 |
context.init( |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
59 |
new KeyManager[]{ keyManager }, |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
60 |
new TrustManager[]{ cipherTest.getClientTrustManager() }, |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
61 |
CipherTestUtils.secureRandom); |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
62 |
SSLSocketFactory factory = (SSLSocketFactory)context.getSocketFactory(); |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
63 |
|
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
64 |
System.out.println("Connecting to server..."); |
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
65 |
try (SSLSocket socket = (SSLSocket) factory.createSocket(host, port)) { |
26337
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
66 |
socket.setSoTimeout(CipherTestUtils.TIMEOUT); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
67 |
socket.setEnabledCipherSuites(params.cipherSuite.split(",")); |
39140
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
68 |
if (params.protocol != null && !params.protocol.trim().isEmpty() |
26337
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
69 |
&& !params.protocol.trim().equals(DEFAULT)) { |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
70 |
socket.setEnabledProtocols(params.protocol.split(",")); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
71 |
} |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
72 |
CipherTestUtils.printInfo(socket); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
73 |
InputStream in = socket.getInputStream(); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
74 |
OutputStream out = socket.getOutputStream(); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
75 |
sendRequest(in, out); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
76 |
SSLSession session = socket.getSession(); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
77 |
session.invalidate(); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
78 |
String cipherSuite = session.getCipherSuite(); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
79 |
if (params.cipherSuite.equals(cipherSuite) == false) { |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
80 |
throw new RuntimeException("Negotiated ciphersuite mismatch: " |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
81 |
+ cipherSuite + " != " + params.cipherSuite); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
82 |
} |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
83 |
String protocol = session.getProtocol(); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
84 |
if (!DEFAULT.equals(params.protocol) |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
85 |
&& !params.protocol.contains(protocol)) { |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
86 |
throw new RuntimeException("Negotiated protocol mismatch: " |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
87 |
+ protocol + " != " + params.protocol); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
88 |
} |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
89 |
if (!cipherSuite.contains("DH_anon")) { |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
90 |
session.getPeerCertificates(); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
91 |
} |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
92 |
Certificate[] certificates = session.getLocalCertificates(); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
93 |
if (params.clientAuth == null) { |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
94 |
if (certificates != null) { |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
95 |
throw new RuntimeException("Local certificates " |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
96 |
+ "should be null"); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
97 |
} |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
98 |
} else { |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
99 |
if ((certificates == null) || (certificates.length == 0)) { |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
100 |
throw new RuntimeException("Certificates missing"); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
101 |
} |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
102 |
String keyAlg = certificates[0].getPublicKey().getAlgorithm(); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
103 |
if ("EC".equals(keyAlg)) { |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
104 |
keyAlg = "ECDSA"; |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
105 |
} |
39140
86f21a96d0ab
8152745: javax/net/ssl/TLS/TestJSSE.java fails intermittently: Unsupported or unrecognized SSL message
asmotrak
parents:
26337
diff
changeset
|
106 |
if (!params.clientAuth.equals(keyAlg)) { |
26337
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
107 |
throw new RuntimeException("Certificate type mismatch: " |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
108 |
+ keyAlg + " != " + params.clientAuth); |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
109 |
} |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
110 |
} |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
111 |
} |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
112 |
} |
39f3ee5364e5
8049429: Tests for java client server communications with various TLS/SSL combinations.
xuelei
parents:
diff
changeset
|
113 |
} |