1
1
/*
2
- * Copyright (c) 2018, 2021 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2018, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
26
26
27
27
/*
28
28
* @test
29
- * @bug 8211806 8277881
29
+ * @bug 8211806 8277881 8277307
30
30
* @summary TLS 1.3 handshake server name indication is missing on a session resume
31
31
* @run main/othervm ResumeTLS13withSNI
32
32
*/
@@ -102,7 +102,7 @@ public static void main(String args[]) throws Exception {
102
102
SSLParameters cliSSLParams = clientEngine .getSSLParameters ();
103
103
cliSSLParams .setServerNames (List .of (SNI_NAME ));
104
104
clientEngine .setSSLParameters (cliSSLParams );
105
- clientEngine .setEnabledProtocols (new String [] { "TLSv1.3" });
105
+ clientEngine .setEnabledProtocols (new String [] { "TLSv1.2" , "TLSv1. 3" });
106
106
107
107
SSLEngine serverEngine = makeEngine (sslCtx , kmf , tmf , false );
108
108
SSLParameters servSSLParams = serverEngine .getSSLParameters ();
@@ -114,7 +114,7 @@ public static void main(String args[]) throws Exception {
114
114
// Create a new client-side engine which can initiate TLS session
115
115
// resumption
116
116
SSLEngine newCliEngine = makeEngine (sslCtx , kmf , tmf , true );
117
- newCliEngine .setEnabledProtocols (new String [] { "TLSv1.3" });
117
+ newCliEngine .setEnabledProtocols (new String [] { "TLSv1.2" , "TLSv1. 3" });
118
118
ByteBuffer resCliHello = getResumptionClientHello (newCliEngine );
119
119
120
120
dumpBuffer ("Resumed ClientHello Data" , resCliHello );
@@ -394,6 +394,16 @@ private static void checkResumedClientHelloSNI(ByteBuffer resCliHello)
394
394
System .err .println ("* Found pre_shared_key Extension" );
395
395
resCliHello .position (resCliHello .position () + extLen );
396
396
break ;
397
+ case 35 : // session_ticket
398
+ // This is a TLS1.2 extension; should be empty since we're
399
+ // negotiating TLS1.3. See JDK-8277307
400
+ System .err .format ("* Found session_ticket extension " +
401
+ "(%d bytes)\n " , extLen );
402
+ if (extLen != 0 ) {
403
+ throw new Exception ("Unexpected session_ticket content" );
404
+ }
405
+ resCliHello .position (resCliHello .position () + extLen );
406
+ break ;
397
407
default :
398
408
System .err .format ("* Found extension %d (%d bytes)\n " ,
399
409
extType , extLen );
0 commit comments