-
Notifications
You must be signed in to change notification settings - Fork 73
/
TLSWithTomcatDemo.java
511 lines (441 loc) · 19.7 KB
/
TLSWithTomcatDemo.java
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) 2023, THL A29 Limited, a Tencent company. 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.
*/
package com.tencent.kona.ssl.demo;
import com.tencent.kona.ssl.TestUtils;
import com.tencent.kona.sun.security.x509.SMCertificate;
import org.apache.catalina.Context;
import org.apache.catalina.LifecycleException;
import org.apache.catalina.connector.Connector;
import org.apache.catalina.connector.CoyoteAdapter;
import org.apache.catalina.startup.Tomcat;
import org.apache.coyote.http11.AbstractHttp11JsseProtocol;
import org.apache.juli.logging.Log;
import org.apache.juli.logging.LogFactory;
import org.apache.tomcat.util.net.SSLHostConfig;
import org.apache.tomcat.util.net.SSLHostConfigCertificate;
import org.apache.tomcat.util.net.SSLUtil;
import org.apache.tomcat.util.net.SSLUtilBase;
import org.apache.tomcat.util.net.jsse.JSSEImplementation;
import org.eclipse.jetty.client.HttpClient;
import org.eclipse.jetty.client.api.ContentResponse;
import org.eclipse.jetty.util.ssl.SslContextFactory;
import org.junit.jupiter.api.Test;
import javax.net.ssl.KeyManager;
import javax.net.ssl.KeyManagerFactory;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLEngine;
import javax.net.ssl.SSLParameters;
import javax.net.ssl.SSLServerSocketFactory;
import javax.net.ssl.SSLSessionContext;
import javax.net.ssl.TrustManager;
import javax.net.ssl.TrustManagerFactory;
import javax.net.ssl.X509KeyManager;
import javax.net.ssl.X509TrustManager;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.net.URI;
import java.nio.charset.StandardCharsets;
import java.nio.file.Paths;
import java.security.KeyFactory;
import java.security.KeyManagementException;
import java.security.KeyStore;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.PrivateKey;
import java.security.SecureRandom;
import java.security.cert.Certificate;
import java.security.cert.CertificateFactory;
import java.security.cert.X509Certificate;
import java.security.spec.PKCS8EncodedKeySpec;
import java.util.Arrays;
import java.util.Base64;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.concurrent.TimeUnit;
/**
* A comprehensive demo for TLS 1.3 connection with RFC 8998-defined
* cipher suite, named group and signature scheme.
*/
public class TLSWithTomcatDemo {
/* The CA certificate.
*
* Certificate:
* Data:
* Version: 3 (0x2)
* Serial Number:
* 66:b3:f0:17:73:ea:58:60:dc:ae:15:5b:7b:ca:d7:e0:3c:09:98:45
* Signature Algorithm: sm3WithSM2Sign
* Issuer: CN = ca-sm2sm2
* Validity
* Not Before: Sep 11 20:15:16 2021 GMT
* Not After : Sep 9 20:15:16 2031 GMT
* Subject: CN = intca-sm2sm2-sm2sm2
* Subject Public Key Info:
* Public Key Algorithm: id-ecPublicKey
* Public-Key: (256 bit)
* pub:
* 04:62:d7:db:de:87:3d:46:51:c4:25:00:d3:0b:68:
* ed:f9:64:ff:e4:62:9b:80:85:fb:6a:f8:c3:3f:4b:
* 38:e5:72:5c:92:b8:d8:33:0f:9f:50:da:53:93:52:
* 06:d2:e6:90:f2:ae:55:c8:c1:40:4f:50:17:a4:b8:
* e2:7b:ba:8f:64
* ASN1 OID: SM2
* X509v3 extensions:
* X509v3 Subject Key Identifier:
* BD:AA:64:6D:4D:40:33:81:B7:50:B3:4D:2F:12:7D:8E:A6:EF:64:42
* X509v3 Authority Key Identifier:
* keyid:0A:61:C1:22:D6:20:06:80:48:68:8A:96:EF:08:47:75:FF:32:01:84
*
* X509v3 Basic Constraints: critical
* CA:TRUE
* X509v3 Key Usage: critical
* Digital Signature, Certificate Sign, CRL Sign
* X509v3 Extended Key Usage: critical
* OCSP Signing
* Signature Algorithm: sm3WithSM2Sign
* 30:45:02:20:61:67:6c:27:97:6b:b2:29:bb:d4:d9:d2:4b:df:
* 51:75:e9:a4:8c:4d:6a:47:dd:5a:80:87:0e:e2:3e:65:ca:3c:
* 02:21:00:eb:87:26:69:1c:14:0b:ff:43:32:16:1d:bd:21:b3:
* b5:8d:fe:dd:ec:ad:d7:60:ff:c2:43:77:87:9e:63:b4:16
*/
private static final String CA =
"-----BEGIN CERTIFICATE-----\n" +
"MIIBrzCCAVWgAwIBAgIUZrPwF3PqWGDcrhVbe8rX4DwJmEUwCgYIKoEcz1UBg3Uw\n" +
"FDESMBAGA1UEAwwJY2Etc20yc20yMB4XDTIxMDkxMTIwMTUxNloXDTMxMDkwOTIw\n" +
"MTUxNlowHjEcMBoGA1UEAwwTaW50Y2Etc20yc20yLXNtMnNtMjBZMBMGByqGSM49\n" +
"AgEGCCqBHM9VAYItA0IABGLX296HPUZRxCUA0wto7flk/+Rim4CF+2r4wz9LOOVy\n" +
"XJK42DMPn1DaU5NSBtLmkPKuVcjBQE9QF6S44nu6j2SjezB5MB0GA1UdDgQWBBS9\n" +
"qmRtTUAzgbdQs00vEn2Opu9kQjAfBgNVHSMEGDAWgBQKYcEi1iAGgEhoipbvCEd1\n" +
"/zIBhDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAWBgNVHSUBAf8E\n" +
"DDAKBggrBgEFBQcDCTAKBggqgRzPVQGDdQNIADBFAiBhZ2wnl2uyKbvU2dJL31F1\n" +
"6aSMTWpH3VqAhw7iPmXKPAIhAOuHJmkcFAv/QzIWHb0hs7WN/t3srddg/8JDd4ee\n" +
"Y7QW\n" +
"-----END CERTIFICATE-----";
// The CA private key.
private static final String CA_KEY =
"MIGHAgEAMBMGByqGSM49AgEGCCqBHM9VAYItBG0wawIBAQQgKWfrthUXfdgXGGI9\n" +
"qBJO/uIvABG6E4gcq/vMeGldll+hRANCAARi19vehz1GUcQlANMLaO35ZP/kYpuA\n" +
"hftq+MM/SzjlclySuNgzD59Q2lOTUgbS5pDyrlXIwUBPUBekuOJ7uo9k";
/* The end entity certificate with ID "custom-id".
*
* Certificate:
* Data:
* Version: 3 (0x2)
* Serial Number:
* 47:d5:15:57:b6:d3:34:d8:dc:c8:8e:1f:e6:37:0e:62:1f:b1:98:a7
* Signature Algorithm: SM2-with-SM3
* Issuer: CN = intca-sm2sm2-sm2sm2
* Validity
* Not Before: Jan 20 04:36:34 2022 GMT
* Not After : Jan 18 04:36:34 2032 GMT
* Subject: CN = localhost
* Subject Public Key Info:
* Public Key Algorithm: id-ecPublicKey
* Public-Key: (256 bit)
* pub:
* 04:99:43:82:0c:7a:2e:39:32:45:61:0f:24:85:8e:
* 90:f5:d7:b3:33:e5:f2:6c:1f:cb:81:b6:5b:47:67:
* 32:4f:a3:0d:e8:b0:d2:0e:1c:b7:4d:57:8d:e0:45:
* c8:28:e6:07:be:b8:9b:12:a0:bb:f2:d3:48:fd:fd:
* 73:8a:b0:05:4e
* ASN1 OID: SM2
* X509v3 extensions:
* X509v3 Subject Key Identifier:
* E5:C6:9A:5B:66:F4:49:EF:2D:A9:74:FF:BB:5B:15:A9:EE:7E:2E:6F
* X509v3 Authority Key Identifier:
* keyid:BD:AA:64:6D:4D:40:33:81:B7:50:B3:4D:2F:12:7D:8E:A6:EF:64:42
*
* Signature Algorithm: SM2-with-SM3
* 30:45:02:21:00:e9:87:48:f5:05:67:7b:1f:4e:33:62:73:b7:
* 9c:06:2b:97:65:bf:29:66:dc:69:04:e9:53:fa:e2:60:db:63:
* bb:02:20:43:3c:cd:5f:2b:e3:2a:e6:74:e9:a4:2d:d0:15:bf:
* a2:36:1d:fd:a6:b4:df:f3:c1:88:71:2d:99:7e:c9:8d:1b
*/
private static final String EE =
"-----BEGIN CERTIFICATE-----\n" +
"MIIBdjCCARygAwIBAgIUR9UVV7bTNNjcyI4f5jcOYh+xmKcwCgYIKoEcz1UBg3Uw\n" +
"HjEcMBoGA1UEAwwTaW50Y2Etc20yc20yLXNtMnNtMjAeFw0yMjAxMjAwNDM2MzRa\n" +
"Fw0zMjAxMTgwNDM2MzRaMBQxEjAQBgNVBAMMCWxvY2FsaG9zdDBZMBMGByqGSM49\n" +
"AgEGCCqBHM9VAYItA0IABJlDggx6LjkyRWEPJIWOkPXXszPl8mwfy4G2W0dnMk+j\n" +
"Deiw0g4ct01XjeBFyCjmB764mxKgu/LTSP39c4qwBU6jQjBAMB0GA1UdDgQWBBTl\n" +
"xppbZvRJ7y2pdP+7WxWp7n4ubzAfBgNVHSMEGDAWgBS9qmRtTUAzgbdQs00vEn2O\n" +
"pu9kQjAKBggqgRzPVQGDdQNIADBFAiEA6YdI9QVnex9OM2Jzt5wGK5dlvylm3GkE\n" +
"6VP64mDbY7sCIEM8zV8r4yrmdOmkLdAVv6I2Hf2mtN/zwYhxLZl+yY0b\n" +
"-----END CERTIFICATE-----";
private static final String EE_ID = "custom-id";
// The end entity private key.
private static final String EE_KEY =
"MIGHAgEAMBMGByqGSM49AgEGCCqBHM9VAYItBG0wawIBAQQgyfT1QME3uMIbjAWB\n" +
"A0dXvT6J6Jkwv5IAd20IAKgjatGhRANCAASZQ4IMei45MkVhDySFjpD117Mz5fJs\n" +
"H8uBtltHZzJPow3osNIOHLdNV43gRcgo5ge+uJsSoLvy00j9/XOKsAVO";
private static final String PASSWORD = "keystorepass";
@Test
public void tlsDemo() throws Exception {
// Output debug info.
// System.setProperty("com.tencent.kona.ssl.debug", "all");
// Just use SM2 curve for key share
System.setProperty("com.tencent.kona.ssl.namedGroups", "curveSM2");
// Add providers.
TestUtils.addProviders();
KonaConnector httpsConnector = new KonaConnector("HTTP/1.1");
httpsConnector.setPort(0);
httpsConnector.setProperty("SSLEnabled", "true");
SSLHostConfig sslConfig = new KonaSSLHostConfig();
SSLHostConfigCertificate certConfig = new SSLHostConfigCertificate(
sslConfig, SSLHostConfigCertificate.Type.EC);
certConfig.setCertificateKeystoreType("PKCS12");
certConfig.setCertificateKeystore(createKeyStore(EE, EE_ID, EE_KEY));
certConfig.setCertificateKeystorePassword(PASSWORD);
certConfig.setCertificateKeyAlias("tls-ee-demo");
sslConfig.addCertificate(certConfig);
sslConfig.setTrustStore(createTrustStore(CA, null));
httpsConnector.addSslHostConfig(sslConfig);
Tomcat tomcat = new Tomcat();
tomcat.setBaseDir("build/tomcat");
tomcat.getService().addConnector(httpsConnector);
tomcat.setConnector(httpsConnector);
Context rootCtx = tomcat.addContext(
"", Paths.get(".").toFile().getAbsolutePath());
Tomcat.addServlet(rootCtx, "Hello", new HelloServlet());
rootCtx.addServletMappingDecoded("/hello", "Hello");
tomcat.start();
// Wait for the server
TimeUnit.MILLISECONDS.sleep(500);
HttpClient client = createClient();
client.start();
// Access Servlet /hello over HTTPS scheme.
ContentResponse response = client.GET(
new URI(String.format("https://localhost:%d/hello",
tomcat.getConnector().getLocalPort())));
client.stop();
System.out.println(response.getContentAsString());
tomcat.stop();
}
// Create Jetty client, which supports TLS connection.
private static HttpClient createClient() throws Exception {
SslContextFactory.Client sslContextFactory = new SslContextFactory.Client();
sslContextFactory.setSslContext(createContext());
HttpClient httpClient = new HttpClient(sslContextFactory);
return httpClient;
}
private static SSLContext createContext() throws Exception {
KeyStore trustStore = createTrustStore(CA, null);
TrustManagerFactory tmf = TrustManagerFactory.getInstance("PKIX", "KonaSSL");
tmf.init(trustStore);
KeyStore keyStore = createKeyStore(EE, EE_ID, EE_KEY);
KeyManagerFactory kmf = KeyManagerFactory.getInstance("NewSunX509", "KonaSSL");
kmf.init(keyStore, PASSWORD.toCharArray());
SSLContext context = SSLContext.getInstance("TLS", "KonaSSL");
context.init(kmf.getKeyManagers(), tmf.getTrustManagers(), new SecureRandom());
return context;
}
private static KeyStore createTrustStore(String caStr, String caId)
throws Exception {
KeyStore trustStore = KeyStore.getInstance("PKCS12", "KonaPKIX");
trustStore.load(null, null);
trustStore.setCertificateEntry("tls-trust-demo", loadCert(caStr, caId));
return trustStore;
}
private static KeyStore createKeyStore(
String eeStr, String eeId, String eeKeyStr)
throws Exception {
KeyStore keyStore = KeyStore.getInstance("PKCS12", "KonaPKIX");
keyStore.load(null, null);
PrivateKey privateKey = loadPrivateKey(eeKeyStr);
keyStore.setKeyEntry("tls-ee-demo",
privateKey,
PASSWORD.toCharArray(),
new Certificate[] { loadCert(eeStr, eeId) } );
return keyStore;
}
private static X509Certificate loadCert(String certPEM, String id)
throws Exception {
CertificateFactory certFactory = CertificateFactory.getInstance(
"X.509", "KonaPKIX");
X509Certificate x509Cert = (X509Certificate) certFactory.generateCertificate(
new ByteArrayInputStream(certPEM.getBytes()));
if (id != null && !id.isEmpty()) {
((SMCertificate) x509Cert).setId(id.getBytes(
StandardCharsets.UTF_8));
}
return x509Cert;
}
private static PrivateKey loadPrivateKey(String keyPEM) throws Exception {
PKCS8EncodedKeySpec privateKeySpec = new PKCS8EncodedKeySpec(
Base64.getMimeDecoder().decode(keyPEM));
KeyFactory keyFactory = KeyFactory.getInstance("EC", "KonaCrypto");
return keyFactory.generatePrivate(privateKeySpec);
}
public static class KonaConnector extends Connector {
public KonaConnector(String protocol) {
super(protocol);
}
@Override
protected void initInternal() throws LifecycleException {
// Initialize adapter
adapter = new CoyoteAdapter(this);
protocolHandler.setAdapter(adapter);
// Make sure parseBodyMethodsSet has a default
if (parseBodyMethodsSet == null) {
setParseBodyMethods(getParseBodyMethods());
}
// Use custom JSSEImplementation
((AbstractHttp11JsseProtocol<?>) protocolHandler).setSslImplementationName(
KonaSSLImpl.class.getName());
try {
protocolHandler.init();
} catch (Exception e) {
throw new LifecycleException(sm.getString(
"coyoteConnector.protocolHandlerInitializationFailed"), e);
}
}
}
public static class KonaSSLHostConfig extends SSLHostConfig {
private static final long serialVersionUID = 3931709572625017292L;
@Override
public List<String> getJsseCipherNames() {
return Collections.singletonList("TLS_SM4_GCM_SM3");
}
}
public static class KonaSSLImpl extends JSSEImplementation {
@Override
public SSLUtil getSSLUtil(SSLHostConfigCertificate certificate) {
return new KonaSSLUtil(certificate);
}
}
public static class KonaSSLUtil extends SSLUtilBase {
private static final Log LOG = LogFactory.getLog(KonaSSLUtil.class);
protected KonaSSLUtil(SSLHostConfigCertificate certificate) {
super(certificate);
}
protected KonaSSLUtil(SSLHostConfigCertificate certificate,
boolean warnTls13) {
super(certificate, warnTls13);
}
@Override
protected Log getLog() {
return LOG;
}
@Override
protected Set<String> getImplementedProtocols() {
return Collections.singleton("TLSv1.3");
}
@Override
protected Set<String> getImplementedCiphers() {
return Collections.singleton("TLS_SM4_GCM_SM3");
}
@Override
protected boolean isTls13RenegAuthAvailable() {
// TLS 1.3 does not support authentication after the initial handshake
return false;
}
@Override
public org.apache.tomcat.util.net.SSLContext createSSLContextInternal(
List<String> negotiableProtocols)
throws NoSuchAlgorithmException, NoSuchProviderException {
return new KonaSSLContext(sslHostConfig.getSslProtocol());
}
}
public static class KonaSSLContext
implements org.apache.tomcat.util.net.SSLContext {
private final SSLContext context;
private KeyManager[] kms;
private TrustManager[] tms;
public KonaSSLContext(String protocol)
throws NoSuchAlgorithmException, NoSuchProviderException {
context = SSLContext.getInstance(protocol, "KonaSSL");
}
@Override
public void init(KeyManager[] kms, TrustManager[] tms, SecureRandom random)
throws KeyManagementException {
this.kms = kms;
this.tms = tms;
context.init(kms, tms, random);
}
@Override
public void destroy() {
}
@Override
public SSLSessionContext getServerSessionContext() {
return context.getServerSessionContext();
}
@Override
public SSLEngine createSSLEngine() {
return context.createSSLEngine();
}
@Override
public SSLServerSocketFactory getServerSocketFactory() {
return context.getServerSocketFactory();
}
@Override
public SSLParameters getSupportedSSLParameters() {
return context.getSupportedSSLParameters();
}
@Override
public X509Certificate[] getCertificateChain(String alias) {
X509Certificate[] result = null;
if (kms != null) {
for (int i = 0; i < kms.length && result == null; i++) {
if (kms[i] instanceof X509KeyManager) {
result = ((X509KeyManager) kms[i]).getCertificateChain(alias);
}
}
}
return result;
}
@Override
public X509Certificate[] getAcceptedIssuers() {
Set<X509Certificate> certs = new HashSet<>();
if (tms != null) {
for (TrustManager tm : tms) {
if (tm instanceof X509TrustManager) {
X509Certificate[] accepted = ((X509TrustManager) tm).getAcceptedIssuers();
if (accepted != null) {
certs.addAll(Arrays.asList(accepted));
}
}
}
}
return certs.toArray(new X509Certificate[0]);
}
}
public static class HelloServlet extends HttpServlet {
private static final long serialVersionUID = -3697586958032851435L;
@Override
public void doGet(
HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/plain");
response.setStatus(HttpServletResponse.SC_OK);
response.getWriter().println("Hello!");
}
@Override
public void doPost(
HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
}
}